section.home-hero-v2 {
  position: relative;
  height: 100vh;
  max-height: 930px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: #fff;
}
section.home-hero-v2 .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
section.home-hero-v2 .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  background: transparent linear-gradient(181deg, rgba(38, 34, 35, 0) 0%, #242021 100%) 0% 0% no-repeat padding-box;
}
section.home-hero-v2 .hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
section.home-hero-v2 h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 0;
}
section.home-hero-v2 h1 {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.1;
}
section.home-hero-v2 p {
  font-size: 50px;
  font-weight: 200;
  margin-bottom: 30px;
}
section.home-hero-v2 .btn-yellow:hover {
  background-color: #D46E09;
  color: #FFFCFC;
}
@media (max-width: 1200px) {
  section.home-hero-v2 {
    padding: 0 60px;
  }
  section.home-hero-v2 h1 {
    font-size: 56px;
  }
  section.home-hero-v2 p {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  section.home-hero-v2 {
    padding: 0 40px;
  }
  section.home-hero-v2 h2 {
    font-size: 36px;
  }
  section.home-hero-v2 h1 {
    font-size: 66px;
  }
  section.home-hero-v2 p {
    font-size: 38px;
  }
}
@media (max-width: 578px) {
  section.home-hero-v2 {
    height: auto;
    min-height: 100vh;
    padding: 80px 20px 60px;
  }
  section.home-hero-v2 h2 {
    font-size: 20px;
  }
  section.home-hero-v2 h1 {
    font-size: 28px;
  }
  section.home-hero-v2 p {
    font-size: 24px;
  }
}

section.home-offer-v2 {
  color: #fff;
  padding: 30px 0;
}
section.home-offer-v2 .top {
  text-align: center;
  margin: -25px auto 50px auto;
  position: relative;
  z-index: 99;
}
section.home-offer-v2 .top h2 {
  margin: 0;
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(26px, 3.2vw, 42px);
}
section.home-offer-v2 .top p {
  margin: 6px 0 20px 0;
  font-weight: 300;
  line-height: 1.2;
  font-size: clamp(18px, 2.2vw, 60px);
  opacity: 0.95;
}
section.home-offer-v2 .content {
  margin: 14px auto 50px auto;
  text-align: center;
}
section.home-offer-v2 .content p {
  margin: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.9;
  opacity: 0.8;
}
section.home-offer-v2 .boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
section.home-offer-v2 .box {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #757575;
  padding: 6px;
}
section.home-offer-v2 .box .image {
  overflow: hidden;
  border-radius: 15px;
  display: block;
}
section.home-offer-v2 .box .image img {
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100px;
  width: 100%;
}
section.home-offer-v2 .box:hover .image img {
  transform: scale(1.1);
}
section.home-offer-v2 .box h3 {
  margin: 10px 5px 5px 5px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
}
section.home-offer-v2 .box .icon {
  position: relative;
  height: 0;
}
section.home-offer-v2 .box .icon i {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5b400;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
  section.home-offer-v2 .boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  section.home-offer-v2 .top,
  section.home-offer-v2 .content {
    text-align: left;
  }
  section.home-offer-v2 .boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  section.home-offer-v2 .boxes h3 {
    font-size: 12px;
  }
  section.home-offer-v2 .boxes .icon i {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
  section.home-offer-v2 .box img {
    height: 100px;
  }
}

section.home-agent-v2 .contact-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  margin: 30px auto;
  max-width: 700px;
}
section.home-agent-v2 .contact-popup-btn img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}
section.home-agent-v2 .contact-popup-btn span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 64px;
  border: 1px solid #fff;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  overflow: hidden;
  background-clip: padding-box;
  transform: translateZ(0);
  border: 1px solid #FFFFFF;
  border-radius: 31px;
  transition: all 0.3s ease;
}
section.home-agent-v2 .contact-popup-btn span:hover {
  background: rgba(255, 255, 255, 0.2823529412);
  backdrop-filter: blur(3px);
}
@media (max-width: 578px) {
  section.home-agent-v2 .contact-popup-btn span {
    font-size: 12px;
  }
}

section.home-reviews-v2 {
  background: #242021;
  color: #fff;
  padding: 30px 0 30px 0;
}
section.home-reviews-v2 .top {
  text-align: center;
  margin: -25px auto 50px auto;
  position: relative;
  z-index: 99;
}
section.home-reviews-v2 .top h2 {
  margin: 0;
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(26px, 3.2vw, 42px);
}
section.home-reviews-v2 .top p {
  margin: 6px 0 20px 0;
  font-weight: 300;
  line-height: 1.2;
  font-size: clamp(18px, 2.2vw, 60px);
  opacity: 0.95;
}
section.home-reviews-v2 .container {
  position: relative;
  z-index: 2;
}

section.home-aboutus-v2 {
  background-size: cover;
  background-position: center center;
  padding: 220px 0 50px 0;
  margin-top: -200px;
  position: relative;
}
@media (max-width: 992px) {
  section.home-aboutus-v2 {
    padding: 250px 20px 100px 20px;
  }
}
section.home-aboutus-v2 .wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  section.home-aboutus-v2 .wrapper {
    flex-direction: column;
  }
}
section.home-aboutus-v2 .wrapper .left {
  width: 40%;
}
@media (max-width: 992px) {
  section.home-aboutus-v2 .wrapper .left {
    width: 100%;
    margin-bottom: 40px;
  }
}
section.home-aboutus-v2 .wrapper .left h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 15px 0;
}
section.home-aboutus-v2 .wrapper .left p {
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.5;
}
section.home-aboutus-v2 .wrapper .left .btn-yellow {
  margin-top: 40px;
  transition: all 0.3s ease;
}
section.home-aboutus-v2 .wrapper .left .btn-yellow:hover {
  background-color: #D46E09;
  color: #FFFCFC;
}
section.home-aboutus-v2 .wrapper .right {
  width: 60%;
}
@media (max-width: 992px) {
  section.home-aboutus-v2 .wrapper .right {
    width: 100%;
  }
}
section.home-aboutus-v2 .wrapper .right .content p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  section.home-aboutus-v2 .wrapper .right .content p {
    font-size: 16px;
  }
}
section.home-aboutus-v2::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #000000;
}

section.home-our-team-v2 {
  padding: 100px 0 80px 0;
  background-color: #191818;
}
@media (max-width: 992px) {
  section.home-our-team-v2 {
    padding: 100px 0 50px 0;
  }
}
section.home-our-team-v2 h2 {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 80px;
}
section.home-our-team-v2 .slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  section.home-our-team-v2 .slider {
    padding: 0;
  }
}
section.home-our-team-v2 .slider .swiper-button-prev {
  color: #FFAB23;
  top: calc(50% - 45px);
  left: 0;
}
section.home-our-team-v2 .slider .swiper-button-prev:after {
  font-size: 50px;
}
section.home-our-team-v2 .slider .swiper-button-next {
  color: #FFAB23;
  top: calc(50% - 45px);
  right: 0;
}
section.home-our-team-v2 .slider .swiper-button-next:after {
  font-size: 50px;
}
section.home-our-team-v2 .slider .person {
  text-align: center;
}
section.home-our-team-v2 .slider .person img {
  border-radius: 20px;
  height: 162px;
  width: auto;
  object-fit: cover;
}
section.home-our-team-v2 .slider .person h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
}
section.home-our-team-v2 .slider .person .description {
  color: #FFAB23;
  font-size: 10px;
  font-weight: 400;
  margin: 10px 20px 5px 20px;
}
section.home-our-team-v2 .slider .person .phone {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  margin: 5px 0;
}

/*# sourceMappingURL=page-home.css.map */
