@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 60vh;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner {
    height: 50vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 31.25%, rgba(0, 0, 0, 0.65) 100%);
}
.home-banner video, .home-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .bg-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 93%;
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper {
    max-width: 90%;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper {
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: 30%;
    transform: translate(-50%, -50%);
  }
}
.home-banner .bg-wrapper .heading {
  max-width: 585px;
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper .heading {
    margin: 0 auto;
    text-align: center;
  }
}
.home-banner .bg-wrapper .heading h3 {
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .heading h3 {
    text-align: center;
  }
}
.home-banner .bg-wrapper .heading p {
  font-family: Lato;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .heading p {
    text-align: center;
  }
}
.home-banner .btns-wrapper {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 93%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home-banner .btns-wrapper {
    bottom: 40px;
    max-width: 90%;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .btns-wrapper {
    bottom: 20px;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .btns-wrapper .scollTo {
    display: none;
  }
}
.home-banner .btns-wrapper .scollTo img {
  width: 50px;
  animation: scrollBounce 1.3s ease-in-out infinite;
}
@media only screen and (max-width: 768px) {
  .home-banner .btns-wrapper .scollTo img {
    width: 40px;
  }
}
.home-banner .btns-wrapper .play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .home-banner .btns-wrapper .play-wrap {
    gap: 12px;
  }
}
.home-banner .btns-wrapper .play-wrap p {
  color: rgb(255, 255, 255);
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-secA {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    min-height: auto;
    padding: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA {
    padding: 45px 0;
  }
}
.home-secA video, .home-secA img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: -1;
}
.home-secA::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(21, 42, 86, 0.8) 0%, rgba(21, 42, 86, 0.784) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 18, 43, 0.65) 84.62%);
  z-index: 0;
}
.home-secA .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .home-secA .container {
    max-width: 95%;
    padding: 0 15px;
  }
}
.home-secA .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  height: 70vh;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .home-secA .content-wrapper {
    gap: 60px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .content-wrapper {
    gap: 40px;
  }
}
.home-secA .header-row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media only screen and (max-width: 991px) {
  .home-secA .header-row {
    flex-direction: column;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .header-row {
    gap: 30px;
  }
}
.home-secA .header-row h3 {
  color: #fff;
  margin: 0;
  font-weight: 500;
}
.home-secA .header-row .intro-text-box {
  width: 45%;
}
@media only screen and (max-width: 991px) {
  .home-secA .header-row .intro-text-box {
    width: 100%;
    max-width: 600px;
  }
}
.home-secA .header-row .intro-text-box p {
  color: #fff;
  opacity: 0.8;
  margin-bottom: 20px;
}
.home-secA .header-row .intro-text-box .toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.home-secA .features-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 40px;
}
@media only screen and (max-width: 991px) {
  .home-secA .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    display: grid;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .features-grid {
    padding-top: 20px;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .features-grid {
    grid-template-columns: 1fr;
  }
}
.home-secA .features-grid .feature-item {
  width: 100%;
  max-width: 279px;
}
@media only screen and (max-width: 991px) {
  .home-secA .features-grid .feature-item {
    max-width: 100%;
  }
}
.home-secA .features-grid .feature-item h6 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.home-secA .features-grid .feature-item p {
  color: #fff;
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .home-secA .features-grid .feature-item p {
    font-size: 0.85rem;
  }
}

.home-secB .heading, .home-secC .heading {
  padding: 60px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home-secB .heading, .home-secC .heading {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading, .home-secC .heading {
    padding: 30px 0;
  }
}
.home-secB .wrapper, .home-secC .wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home-secB .wrapper, .home-secC .wrapper {
    min-height: 70vh;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .wrapper, .home-secC .wrapper {
    min-height: 60vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .wrapper, .home-secC .wrapper {
    min-height: 45vh;
  }
}
.home-secB .wrapper video, .home-secB .wrapper img, .home-secC .wrapper video, .home-secC .wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.home-secB .wrapper::before, .home-secC .wrapper::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-secB .wrapper .content, .home-secC .wrapper .content {
  position: relative;
  z-index: 3;
  max-width: 400px;
  height: 50vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 7%;
}
@media only screen and (max-width: 991px) {
  .home-secB .wrapper .content, .home-secC .wrapper .content {
    max-width: 350px;
    height: 40vh;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .wrapper .content, .home-secC .wrapper .content {
    height: auto;
    gap: 30px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 65%;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .wrapper .content, .home-secC .wrapper .content {
    gap: 20px;
    max-width: 90%;
    width: 100%;
  }
}
.home-secB .wrapper .content .label, .home-secC .wrapper .content .label {
  color: var(--lightblue);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 20px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .home-secB .wrapper .content .label, .home-secC .wrapper .content .label {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .wrapper .content .label, .home-secC .wrapper .content .label {
    font-size: 18px;
  }
}
.home-secB .wrapper .content .wrap h3, .home-secC .wrapper .content .wrap h3 {
  color: #ffffff;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .home-secB .wrapper .content .wrap h3, .home-secC .wrapper .content .wrap h3 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .wrapper .content .wrap h3, .home-secC .wrapper .content .wrap h3 {
    margin-bottom: 20px;
  }
}
.home-secB .wrapper .content .wrap .btn img, .home-secC .wrapper .content .wrap .btn img {
  width: 10px;
  transform: rotate(270deg);
}

.home-secD {
  background: var(--gradient-a);
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .home-secD {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD {
    padding: 40px 0;
  }
}
.home-secD .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 991px) {
  .home-secD .grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .grid {
    gap: 51px;
  }
}
.home-secD .item-content {
  width: 100%;
  max-width: 440px;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .home-secD .item-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.home-secD .item-content h3 {
  color: var(--white);
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home-secD .item-content h3 {
    margin-bottom: 15px;
  }
}
.home-secD .item-content p {
  color: var(--white);
  opacity: 0.7;
}
.home-secD .item-img {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .home-secD .item-img {
    max-width: 500px;
    margin: 0 auto;
  }
}
.home-secD .item-img img {
  width: 100%;
  display: block;
}
.home-secD .map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}
@media only screen and (max-width: 768px) {
  .home-secD .map-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  }
}
.home-secD .map-dot:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.home-secD .map-dot::after {
  content: attr(data-city);
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .home-secD .map-dot::after {
    font-size: 11px;
    padding: 4px 8px;
  }
}
.home-secD .map-dot::before {
  content: "";
  position: absolute;
  bottom: 145%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.home-secD .map-dot:hover::after, .home-secD .map-dot:hover::before {
  opacity: 1;
}
.home-secD .map-dot:nth-child(2) {
  top: 52%;
  left: 35%;
}
.home-secD .map-dot:nth-child(3) {
  top: 45%;
  left: 27%;
}
.home-secD .map-dot:nth-child(4) {
  top: 61%;
  left: 31%;
}
.home-secD .map-dot:nth-child(5) {
  top: 46%;
  left: 42%;
}
.home-secD .map-dot:nth-child(6) {
  top: 55%;
  left: 48%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transform: translate(-50%, -50%) scale(1);
  }
}
.home-secE {
  padding: 70px 0;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secE {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secE {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE {
    padding: 30px 0;
  }
}
.home-secE .heading {
  text-align: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .home-secE .heading {
    max-width: 90%;
  }
}
.home-secE .heading p {
  opacity: 0.7;
  margin-top: 10px;
}
.home-secE .row {
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .home-secE .row {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .row {
    margin-top: 30px;
  }
}
.home-secE .row .swiperD .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home-secE .row .swiperD .swiper-slide img {
    max-width: 120px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .row .swiperD .swiper-slide img {
    max-width: 100px;
  }
}

.home-secF {
  background: rgb(243, 243, 243);
  padding: 80px 0;
}
@media only screen and (max-width: 991px) {
  .home-secF {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF {
    padding: 40px 0;
  }
}
.home-secF .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media only screen and (max-width: 991px) {
  .home-secF .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF .grid {
    gap: 2rem;
  }
}
.home-secF .grid .quotes-slide {
  width: 100%;
  position: relative;
}
.home-secF .grid .quotes-slide .swiper-wrapper {
  display: flex;
}
.home-secF .grid .quotes-slide .swiper-slide {
  height: auto;
}
.home-secF .grid .quotes-slide .item {
  background: var(--primary);
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .quotes-slide .item {
    padding: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .quotes-slide .item {
    padding: 15px;
  }
}
.home-secF .grid .quotes-slide .item img {
  width: 80px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .quotes-slide .item img {
    width: 60px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .quotes-slide .item img {
    width: 50px;
  }
}
.home-secF .grid .quotes-slide .item .img-quote {
  position: absolute;
  bottom: 0;
  right: 0;
}
.home-secF .grid .quotes-slide .item .img-quote img {
  width: 150px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .quotes-slide .item .img-quote img {
    width: 100px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .quotes-slide .item .img-quote img {
    width: 80px;
  }
}
.home-secF .grid .quotes-slide .item p {
  color: var(--white);
  line-height: 1.6;
}
.home-secF .grid .quotes-slide .item .name h6 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .quotes-slide .item .name h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .quotes-slide .item .name h6 {
    font-size: 14px;
  }
}
.home-secF .grid .quotes-slide .item .name p {
  color: var(--white);
  opacity: 0.7;
  margin: 0;
}
.home-secF .grid .quotes-slide .swiper-pagination {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .quotes-slide .swiper-pagination {
    bottom: 10px;
  }
}
.home-secF .grid .quotes-slide .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.3;
  margin: 0 4px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .quotes-slide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}
.home-secF .grid .quotes-slide .swiper-pagination-bullet-active {
  opacity: 1;
}
.home-secF .grid .item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-secF .grid .item-right .arrow {
  margin: 0 0 40px;
  display: flex;
  justify-content: flex-end;
  width: 40px;
  margin-left: auto;
}
@media only screen and (max-width: 991px) {
  .home-secF .grid .item-right .arrow {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .item-right .arrow {
    margin-bottom: 20px;
    width: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right .arrow {
    margin-bottom: 10px;
    width: 24px;
  }
}
.home-secF .grid .item-right h5 {
  width: 100%;
  max-width: 494px;
}
@media only screen and (max-width: 991px) {
  .home-secF .grid .item-right h5 {
    max-width: 100%;
  }
}
.home-secF .grid .item-right h5 span {
  color: var(--primary);
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .item-right h5 span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right h5 span {
    font-size: 24px;
  }
}
.home-secF .grid .item-right .profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .item-right .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right .profile-grid {
    grid-template-columns: 1fr;
  }
}
.home-secF .grid .item-right .profile-grid .card .img-content {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .item-right .profile-grid .card .img-content {
    margin-bottom: 10px;
  }
}
.home-secF .grid .item-right .profile-grid .card .img-content img {
  width: 100%;
}
.home-secF .grid .item-right .profile-grid .card .img-content .play-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  --btnsize: 35px;
  width: var(--btnsize);
  height: var(--btnsize);
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right .profile-grid .card .img-content .play-btn {
    --btnsize: 40px;
    right: 24px;
    bottom: 24px;
  }
}
.home-secF .grid .item-right .profile-grid .card .img-content .play-btn svg {
  width: 18px;
}
@media only screen and (max-width: 768px) {
  .home-secF .grid .item-right .profile-grid .card .img-content .play-btn svg {
    width: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right .profile-grid .card .img-content .play-btn svg {
    width: 12px;
  }
}
.home-secF .grid .item-right .profile-grid .card span {
  font-size: 14px;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right .profile-grid .card span {
    text-align: center;
    display: block;
  }
}
.home-secF .grid .item-right .profile-grid .card p {
  color: var(--black);
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .home-secF .grid .item-right .profile-grid .card p {
    text-align: center;
  }
}/*# sourceMappingURL=home.css.map */