@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&family=Tilt+Neon&display=swap");
*, :after, :before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #FF5A03;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.563vw;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
}

main {
  position: relative;
}

select, input, option {
  font-family: "Roboto Condensed", sans-serif;
}

.menu {
  display: flex;
  list-style-type: none;
  gap: 0.3vw;
  font-weight: 400;
  font-size: 1.25vw;
}
@media screen and (max-width: 767px) {
  .menu {
    gap: 0.1vw;
    margin: 0 auto;
  }
}
.menu a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  font-size: 1.042vw;
  transition: opacity 0.25s ease;
  text-shadow: 1px 1px 1px black;
}
@media screen and (max-width: 767px) {
  .menu a {
    font-size: 2.4vw;
    text-align: center;
  }
}
.menu li {
  padding: 0.629vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu li {
    padding: 1.2vw;
  }
}
.menu li.has-submenu {
  border-radius: 0.938vw 0.938vw 0 0;
  transition: all 0.25s;
}
.menu li.has-submenu:hover {
  background: rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .menu li.has-submenu:hover {
    background: rgba(0, 0, 0, 0.75);
  }
}
.menu li.has-submenu:hover .submenu {
  visibility: visible !important;
  opacity: 1 !important;
}
.menu .submenu {
  list-style-type: none;
  padding: 0 0 0.629vw;
  margin: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 0 0.938vw 0.938vw;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}
@media screen and (max-width: 767px) {
  .menu .submenu {
    padding: 0;
    background: rgba(0, 0, 0, 0.75);
  }
}
.menu .submenu li {
  padding-top: 0;
  padding-bottom: 0;
}
.menu .submenu li a {
  width: 100%;
  display: block;
  color: #FFFE00;
  font-size: 1vw;
}
@media screen and (max-width: 767px) {
  .menu .submenu li a {
    text-align: left;
    padding-top: 1.75vw;
    padding-bottom: 1.75vw;
    font-size: 2.3vw;
  }
}
.menu .submenu li:not(:last-child) a {
  padding-bottom: 0.45vw;
  margin-bottom: 0.45vw;
  border-bottom: 1px solid #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .menu .submenu li:not(:last-child) a {
    margin: 0;
    padding-top: 1.75vw;
    padding-bottom: 1.75vw;
  }
}

section.section-top-lines {
  padding-top: 3.5vw;
  position: relative;
  margin-top: -2.2vw;
  z-index: 1;
  min-height: 40vw;
}
section.section-top-lines:before {
  content: "";
  width: 100%;
  height: 9.74vw;
  position: absolute;
  left: 0;
  top: -6.1vw;
  background: url("../img/section-top.png") top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  section.section-top-lines:before {
    height: 13vw;
  }
}
@media screen and (max-width: 767px) {
  section.section-top-lines {
    padding-top: 8vw;
  }
}
section.next-lines {
  padding-bottom: 9vw !important;
}

h3 {
  color: #FFFE00;
  font-size: 1.979vw;
  font-weight: 300;
}

.header {
  padding: 0 5.833vw;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  margin-top: 3.8vw;
  display: flex;
  align-items: center;
  gap: 3.646vw;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 3vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header .logo img {
  width: 12.188vw;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .header .logo img {
    width: 26vw;
  }
}

.section-title {
  text-align: center;
  color: #FFFE00;
  font-size: 2.5vw;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 3.85vw;
  }
}

.section-subtitle {
  font-size: 2.5vw;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 3.85vw;
    margin-top: 2vw;
  }
}

.button {
  font-size: 1.667vw;
  padding: 1.258vw 1.275vw;
  min-width: 17.969vw;
  text-align: center;
  border-radius: 0.938vw;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 3.147vw;
    padding: 2.333vw 2.233vw;
    border-radius: 2.227vw;
    min-width: 27.969vw;
  }
}
.button:active {
  top: 2px;
}
.button.orange {
  color: #fff;
  background: var(--orange);
}
.button.orange:hover {
  color: var(--orange);
  background: #fff;
}
.button.bordered {
  color: #fff;
  border: 0.078vw solid #fff;
}
.button.bordered:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}
.button.white {
  color: var(--orange);
  background: #fff;
}

.main-screen {
  padding-bottom: 0 !important;
  z-index: 0;
  position: relative;
}
.main-screen-block {
  display: grid;
  grid-template-columns: 1fr 30%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .main-screen-block {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    z-index: 0;
    margin-top: 7vw;
  }
}
.main-screen-button {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .main-screen-button {
    margin-top: auto;
    margin-right: auto;
  }
}
.main-screen-text {
  max-width: 37.5vw;
  z-index: 1;
  margin-top: auto;
}
.main-screen-text .button {
  margin: 0 0 0 4vw;
}
@media screen and (max-width: 767px) {
  .main-screen-text {
    margin: 14vw auto 2vw;
    max-width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.main-screen-img {
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.main-screen-img img {
  width: 48.177vw;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .main-screen-img img {
    width: 100%;
  }
}
.main-screen-pagination {
  position: absolute;
  bottom: 6vw !important;
  z-index: 2;
  padding: 0 16.8vw;
}
.main-screen-pagination .swiper-pagination-bullet {
  width: 0.938vw;
  height: 0.938vw;
  background: #202941;
  margin: 0 0.885vw;
  opacity: 1;
}
.main-screen-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .main-screen-pagination {
    display: none;
  }
}
.main-screen-slider {
  overflow: hidden;
  position: static;
}
.main-screen-slider .swiper-slide {
  min-height: 43.771vw;
  padding: 8vw 5.8vw 9vw;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide {
    min-height: 107.771vw;
  }
}
.main-screen-slider .swiper-slide .slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  left: 0;
  top: 0;
}
.main-screen-slider .swiper-slide h1 b {
  text-transform: uppercase;
  font-weight: 900;
}
.main-screen-slider .swiper-slide.slider-2 h1 {
  font-size: 3.75vw;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-2 h1 {
    font-size: 5vw;
    text-align: center;
  }
  .main-screen-slider .swiper-slide.slider-2 h1 br {
    display: none;
  }
}
.main-screen-slider .swiper-slide.slider-2 .subtitle {
  font-size: 1.979vw;
  color: #40E2FF;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0.5vw 0 1.4vw;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-2 .subtitle {
    font-size: 3.279vw;
    margin: 1.5vw 0 2.4vw;
  }
}
.main-screen-slider .swiper-slide.slider-2 .description {
  line-height: 1.1;
  font-size: 1.146vw;
  font-weight: 700;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-2 .description {
    font-size: 2.246vw;
  }
}
.main-screen-slider .swiper-slide.slider-2 .description span {
  color: #40E2FF;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-2 .button {
    margin: auto 0 0 auto;
  }
}
.main-screen-slider .swiper-slide.slider-3 .main-screen-text {
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-3 .main-screen-text {
    margin: 14vw auto 2vw;
  }
}
.main-screen-slider .swiper-slide.slider-3 h1 {
  font-size: 3.646vw;
  font-weight: 400;
  line-height: 1.1;
}
.main-screen-slider .swiper-slide.slider-3 h1 b {
  font-weight: 700;
  color: #FFFE00;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-3 h1 {
    font-size: 4.946vw;
  }
}
.main-screen-slider .swiper-slide.slider-3 .button {
  margin: 1vw 0 0 4vw;
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-3 .button {
    margin: auto auto 0 0;
  }
}
.main-screen-slider .swiper-slide.slider-3 .img {
  position: absolute;
  z-index: 1;
  left: 42%;
  top: 50%;
  transform: translateY(-60%);
}
@media screen and (max-width: 767px) {
  .main-screen-slider .swiper-slide.slider-3 .img {
    width: 55%;
    left: 0;
    transform: translateY(-37%);
  }
}

.platform {
  background: linear-gradient(180deg, #202941 3.1%, #31567F 80.23%);
}
.platform-slider {
  padding: 0 5.833vw;
  margin-top: 3.646vw;
}
@media screen and (max-width: 767px) {
  .platform-slider {
    padding: 0 7.833vw;
  }
}
.platform-slide {
  display: flex;
  flex-direction: column;
}
.platform-slide h4 {
  color: #00F6FF;
  font-size: 1.666vw;
  text-align: center;
  margin-top: 2.604vw;
}
@media screen and (max-width: 767px) {
  .platform-slide h4 {
    font-size: 2.3vw;
  }
}
.platform-slide img {
  width: 26.563vw;
  object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .platform-slide img {
    width: 95%;
  }
}

.services {
  background-image: url("../img/services-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 5.833vw;
}
.services-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75vw;
  margin-top: 8.688vw;
}
@media screen and (max-width: 767px) {
  .services-items {
    gap: 1.233vw;
    margin-top: 11.688vw;
  }
}
.services-items .column {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.services-items .item {
  border: 0.365vw solid #FFFE00;
  border-radius: 0.938vw;
  padding: 0 2.369vw 2.969vw;
  background: linear-gradient(180deg, rgba(49, 86, 127, 0.92) 0%, rgba(32, 41, 65, 0.92) 100%);
  text-align: center;
  min-height: 38.542vw;
}
@media screen and (max-width: 767px) {
  .services-items .item {
    height: 100%;
    border-width: 0.5vw;
    border-radius: 1.3vw;
  }
}
.services-items .item .img {
  height: 13.021vw;
  position: relative;
}
.services-items .item .img img {
  position: absolute;
  object-fit: contain;
  height: 23.958vw;
  bottom: -1.5vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .services-items .item .img img {
    height: 25.958vw;
  }
}
.services-items .item .info {
  position: relative;
  z-index: 1;
}
.services-items .item .title {
  font-size: 1.354vw;
  color: #00F6FF;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .services-items .item .title {
    font-size: 1.964vw;
    margin-bottom: 0.2vw;
    min-height: 4.267vw;
  }
}
.services-items .item .percent {
  font-size: 2.754vw;
  font-weight: 700;
  color: #FFFE00;
}
@media screen and (max-width: 767px) {
  .services-items .item .percent {
    font-size: 4.24vw;
  }
}
.services-items .item .description {
  margin-top: 1.563vw;
}
@media screen and (max-width: 767px) {
  .services-items .item .description {
    font-size: 2vw;
    line-height: 1.3;
  }
}
.services-items .button {
  margin: 2vw auto 0;
  min-width: 20.969vw;
}
@media screen and (max-width: 767px) {
  .services-items .button {
    font-size: 2.3vw;
    padding: 1.333vw 1.233vw;
    border-radius: 1.227vw;
  }
}
@media screen and (max-width: 767px) {
  .services {
    padding: 0 2.833vw;
  }
}

.numeric-list {
  margin-top: 3.125vw;
}
@media screen and (max-width: 767px) {
  .numeric-list {
    margin-top: 3.5vw;
  }
}
.numeric-list .title {
  color: #FFFE00;
  font-size: 2.5vw;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.563vw;
  padding-left: 5.365vw;
}
@media screen and (max-width: 767px) {
  .numeric-list .title {
    font-size: 3.85vw;
    text-align: center;
    margin-bottom: 3.5vw;
    padding: 0;
  }
}
.numeric-list .tagline {
  font-size: 1.354vw;
  text-transform: uppercase;
  color: #00F6FF;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 767px) {
  .numeric-list .tagline {
    font-size: 2.1vw;
  }
}
.numeric-list p {
  font-size: 1.354vw;
  max-width: 40.469vw;
}
@media screen and (max-width: 767px) {
  .numeric-list p {
    font-size: 1.9vw;
    max-width: 100%;
  }
}
.numeric-list ol {
  list-style-type: none;
  counter-reset: my-counter;
  display: flex;
  flex-direction: column;
  gap: 3.646vw;
}
@media screen and (max-width: 767px) {
  .numeric-list ol {
    gap: 5vw;
  }
}
.numeric-list ol li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 5.365vw;
}
.numeric-list ol li:before {
  content: counter(my-counter);
  font-size: 6.25vw;
  color: #00F6FF;
  font-weight: 700;
  position: absolute;
  width: 3.646vw;
  left: 0;
  top: -0.5vw;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .numeric-list ol li:before {
    font-size: 7.8vw;
  }
}
@media screen and (max-width: 767px) {
  .numeric-list ol li {
    padding-left: 7vw;
  }
}

.bottom-info {
  padding-left: 5.365vw;
  max-width: 45.469vw;
  margin-top: 5.208vw;
}
@media screen and (max-width: 767px) {
  .bottom-info {
    margin-top: 9vw;
    padding-left: 0;
  }
}
.bottom-info p {
  text-transform: uppercase;
  font-size: 3.75vw;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .bottom-info p {
    font-size: 6vw;
  }
}
.bottom-info .button {
  margin-top: 1vw;
  margin-left: 1vw;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .bottom-info {
    max-width: 55vw;
  }
}

.overflow-wrap {
  overflow: hidden;
  position: relative;
}

.gallery {
  padding-top: 12.719vw;
  padding-bottom: 11vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #202941;
  margin-top: -5vw;
}
.gallery .swiper-slide {
  width: 56.25vw;
}
@media screen and (max-width: 767px) {
  .gallery .swiper-slide {
    width: 83vw;
  }
}
.gallery .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .gallery {
    padding-bottom: 15vw;
    margin-top: -12vw;
    padding-top: 13vw;
  }
}

.agent {
  background: #202941;
  padding-bottom: 0 !important;
}
.agent .overflow-wrap {
  padding: 0 4.833vw 7vw;
}
@media screen and (max-width: 767px) {
  .agent .overflow-wrap {
    padding: 0 8.833vw 20vw;
  }
}
.agent .img {
  position: absolute;
  right: -11vw;
  top: 50%;
  transform: translateY(-45%);
  width: 66.146vw;
  object-fit: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .agent .img {
    right: -28vw;
    top: auto;
    transform: translateY(-10%) rotate(-11deg);
    width: 93vw;
    bottom: -5vw;
  }
}
.agent .gallery {
  background-image: url("../img/gallery-bg-1.png");
}
@media screen and (max-width: 767px) {
  .agent .section-subtitle {
    font-size: 3.4vw;
  }
  .agent .numeric-list ol li:nth-child(3) {
    max-width: 60%;
  }
}

.referral {
  background: #202941;
  padding-bottom: 0 !important;
}
.referral .numeric-list {
  max-width: 49.479vw;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .referral .numeric-list {
    max-width: 100%;
  }
  .referral .numeric-list ol {
    max-width: 50%;
    margin-left: auto;
    text-align: right;
  }
  .referral .numeric-list ol li {
    padding-left: 0;
    padding-right: 5vw;
  }
  .referral .numeric-list ol li:before {
    left: auto;
    right: 0;
  }
}
.referral .img {
  position: absolute;
  left: -3vw;
  top: 50%;
  transform: translateY(-45%);
  width: 58.292vw;
  object-fit: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .referral .img {
    left: -30vw;
    width: 95vw;
    transform: translateY(-44%) rotate(11deg);
  }
}
.referral .bottom-info {
  padding-left: 14vw;
  margin-top: 8vw;
}
@media screen and (max-width: 767px) {
  .referral .bottom-info {
    padding-left: 4vw;
    margin-top: 2vw;
  }
}
.referral .gallery {
  background-image: url("../img/gallery-bg-2.png");
  margin-top: -9vw;
}
@media screen and (max-width: 767px) {
  .referral .gallery {
    margin-top: -17vw;
    padding-top: 29vw;
  }
}
@media screen and (max-width: 767px) {
  .referral .section-subtitle {
    font-size: 3.5vw;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .referral .section-subtitle br {
    display: none;
  }
  .referral .overflow-wrap {
    padding: 0 8.833vw 0;
  }
}

.terminal {
  background-color: #202941;
  padding-bottom: 0 !important;
  background-image: url("../img/terminal-bg.png");
  background-repeat: no-repeat;
  background-size: 132%;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .terminal {
    background-image: url("../img/terminal-bg-mob.png");
    padding-top: 3vw !important;
    background-size: 100%;
  }
}
.terminal .overflow-wrap {
  padding: 5.208vw 2.604vw 14vw;
}
@media screen and (max-width: 767px) {
  .terminal .overflow-wrap {
    min-height: 127vw;
    padding: 0 8.604vw 0;
    display: flex;
  }
}
.terminal .img {
  position: absolute;
  right: 9vw;
  bottom: -2vw;
  object-fit: contain;
  width: 33.073vw;
}
@media screen and (max-width: 767px) {
  .terminal .img {
    right: auto;
    bottom: 6vw;
    width: 48.073vw;
    left: 10vw;
  }
}
.terminal .gallery {
  background-color: unset;
  margin-top: -11vw;
  background-image: url("../img/gallery-bg-1.png");
}
@media screen and (max-width: 767px) {
  .terminal .gallery {
    padding-top: 16vw;
  }
}
.terminal-text {
  max-width: 57.292vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.terminal-text .description-color {
  max-width: 30.729vw;
  color: #00F6FF;
  font-weight: 400;
  font-size: 1.563vw;
  margin-top: 1.563vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .terminal-text .description-color {
    max-width: 51.729vw;
    font-size: 2.563vw;
    margin: 0 auto;
  }
}
.terminal-text .description {
  font-size: 2.083vw;
}
@media screen and (min-width: 768px) {
  .terminal-text .description .button {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .terminal-text .description {
    margin-top: auto;
    align-self: center;
    font-size: 3.2vw;
    display: flex;
    align-items: center;
  }
  .terminal-text .description p br {
    display: none;
  }
  .terminal-text .description .button {
    font-size: 2.647vw;
    padding: 2.033vw 2.033vw;
  }
}
.terminal-text img {
  width: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .terminal-text img {
    max-width: 85%;
    margin: 0 auto;
  }
}
.terminal-text > .button {
  margin: 3.646vw 0 6vw;
}
@media screen and (max-width: 767px) {
  .terminal-text > .button {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .terminal-text {
    max-width: 100%;
  }
}

.videos {
  background-image: url("../img/videos-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.videos .swiper-slide {
  width: 48.75vw;
  border: 0.365vw solid #fff;
  border-radius: 1.838vw;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .videos .swiper-slide {
    width: 81vw;
    border-radius: 2.838vw;
    border-width: 0.6vw;
  }
}
.videos .swiper-slide iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.videos .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
}
@media screen and (max-width: 767px) {
  .videos .swiper-slide:after {
    height: 86%;
  }
}
.videos .gallery {
  background: unset;
  padding-top: 9vw;
}
@media screen and (max-width: 767px) {
  .videos .gallery {
    padding-top: 18vw;
  }
}

.testimonials {
  background: #202941;
  padding-bottom: 5.208vw;
}
@media screen and (max-width: 767px) {
  .testimonials {
    padding-bottom: 9.067vw;
  }
}
.testimonials h2 {
  font-size: 1.979vw;
  font-weight: 600;
  padding: 2.469vw 0 1.979vw;
  text-align: center;
  text-transform: uppercase;
  color: #00F6FF;
}
@media screen and (max-width: 767px) {
  .testimonials h2 {
    font-size: 3.529vw;
    padding: 0 0 3.333vw;
  }
}
.testimonials .slider {
  padding: 9vw 10.677vw 0;
}
.testimonials-card {
  max-width: 100%;
  position: relative;
  height: 100%;
  padding: 1.458vw;
}
@media screen and (max-width: 767px) {
  .testimonials-card {
    max-width: 100%;
  }
}
.testimonials-card .rating {
  margin: 0 auto 0.625vw;
}
.testimonials-card .rating img {
  width: 9.063vw;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .testimonials-card .rating img {
    width: 16.133vw;
  }
}
.testimonials-card .photo {
  position: absolute;
  width: 12.292vw;
  height: 12.292vw;
  object-fit: contain;
  left: 50%;
  transform: translateX(-50%);
  top: -7.3vw;
}
@media screen and (max-width: 767px) {
  .testimonials-card .photo {
    width: 21.867vw;
    height: 21.867vw;
    top: -13vw;
  }
}
.testimonials-card .info {
  background: #31567F;
  padding: 5.729vw 2.604vw 1.563vw;
  border-radius: 1.979vw;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 1.458vw rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .testimonials-card .info {
    padding: 10.133vw 1.9vw 1.6vw;
  }
}
.testimonials-card .description {
  font-weight: 300;
  font-size: 0.938vw;
  line-height: 1.3;
  margin-bottom: 1.927vw;
}
@media screen and (max-width: 767px) {
  .testimonials-card .description {
    font-size: 2.367vw;
    margin-bottom: 2.067vw;
  }
}
.testimonials-card .name {
  color: #00F6FF;
  font-weight: 300;
  font-size: 0.938vw;
  text-transform: uppercase;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .testimonials-card .name {
    font-size: 1.667vw;
  }
}
.testimonials-card .name span {
  font-size: 1.979vw;
  display: block;
  margin-bottom: 0.3vw;
}
@media screen and (max-width: 767px) {
  .testimonials-card .name span {
    font-size: 3.529vw;
  }
}
.testimonials-slider {
  padding-top: 8vw;
  max-width: 82.125vw;
  width: 100%;
}
.testimonials-slider-wrap {
  position: relative;
}
.testimonials-slider .swiper-slide {
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .testimonials-slider {
    padding-top: 13vw;
    max-width: 100%;
  }
}
.testimonials-slider .swiper-wrapper {
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .testimonials-slider .swiper-wrapper {
    margin-left: -16vw;
  }
}
.testimonials-slider .swiper-wrapper:has(.swiper-slide:last-child.swiper-slide-active) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .testimonials .slider-button-next,
.testimonials .slider-button-prev {
    display: none;
  }
}
.testimonials .slider-button-next:after,
.testimonials .slider-button-prev:after {
  content: "";
  border-left: 0.208vw solid #00F6FF;
  border-bottom: 0.208vw solid #00F6FF;
  width: 0.842vw;
  height: 0.842vw;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 3vw;
}
.testimonials .slider-button-next.swiper-button-disabled,
.testimonials .slider-button-prev.swiper-button-disabled {
  opacity: 0.4;
}
.testimonials .slider-button-next:after {
  transform: translateY(-50%) rotate(-135deg);
  right: 6.771vw;
}
.testimonials .slider-button-prev:after {
  left: 6.771vw;
  transform: translateY(-50%) rotate(45deg);
}

.banner {
  padding: 2vw 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #FF5A03;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 4.4vw 18vw 4.4vw;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
}
.banner-img {
  width: 42.76vw;
  position: absolute;
  bottom: 0;
  right: 2vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .banner-img {
    width: 95%;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner .social {
    margin-bottom: 3vw;
  }
}
.banner .social h2 {
  font-size: 2.167vw;
  font-weight: 300;
  margin-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  .banner .social h2 {
    font-size: 4.167vw;
  }
}
.banner .social ul {
  list-style: none;
  padding: 0.5vw 0.7vw;
  margin: 0;
  display: flex;
  background: #fff;
  border-radius: 0.938vw;
  gap: 0.5vw;
  max-width: 16.563vw;
  width: 100%;
  justify-content: space-evenly;
}
@media screen and (max-width: 767px) {
  .banner .social ul {
    max-width: 31.963vw;
    padding: 1.2vw 1.4vw;
    gap: 0.9vw;
    border-radius: 2.227vw;
  }
}
.banner .social ul:has(li:hover) li {
  opacity: 0.6;
}
.banner .social ul li {
  width: 3.416vw;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .banner .social ul li {
    width: 6.416vw;
  }
}
.banner .social ul li:hover {
  opacity: 1 !important;
}
.banner .social a {
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}
.banner .social img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2667%) hue-rotate(183deg) brightness(93%) contrast(83%);
}
.banner .btn-whatsapp {
  background-color: transparent;
  border: none;
  width: 100%;
  margin-top: 1.475vw;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.banner .btn-whatsapp img {
  filter: none;
}
.banner .btn-whatsapp:active {
  top: 2px;
}
@media screen and (max-width: 767px) {
  .banner .btn-whatsapp {
    width: 32vw;
  }
}
@media screen and (max-width: 767px) {
  .banner .button {
    min-width: 32vw;
  }
}

.footer {
  background: #31567F;
  padding: 4.583vw 7.156vw 2.083vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #00F6FF;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 7.067vw 6vw 6vw;
  }
}
.footer a {
  color: #00F6FF;
}
.footer .payments {
  width: 100%;
  object-fit: contain;
  padding: 0 1vw;
  margin-bottom: 1.406vw;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .footer .payments {
    display: none;
  }
}
.footer p {
  font-size: 0.729vw;
  line-height: 1.5;
  margin: 0 auto 1.563vw;
}
@media screen and (max-width: 767px) {
  .footer p {
    font-size: 1.867vw;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 auto 5.333vw;
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  font-size: 0.729vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    font-size: 1.867vw;
  }
}
.footer .logo {
  margin: 0 0.781vw;
}
.footer .logo img {
  width: 6.771vw;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer .logo img {
    width: 17.2vw;
  }
}
@media screen and (max-width: 767px) {
  .footer .logo {
    margin: 0 2vw;
  }
}

.whatsapp-btn {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 9999;
  border: none;
  background: none;
  cursor: pointer;
}
.whatsapp-btn img {
  display: block;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .whatsapp-btn {
    right: 3.733vw;
    left: auto;
  }
  .whatsapp-btn img {
    height: 10.667vw;
  }
}

.form-input label {
  margin-bottom: 0.5vw;
  color: #222c45;
}
@media screen and (max-width: 767px) {
  .form-input label {
    font-size: 4vw;
  }
}
.form-input input[type=text], .form-input input[type=tel], .form-input input[type=email], .form-input input[type=number] {
  padding: 1vw;
  font-size: 1.479vw;
}
.form-input input[type=text]:focus-visible, .form-input input[type=tel]:focus-visible, .form-input input[type=email]:focus-visible, .form-input input[type=number]:focus-visible {
  outline-color: #222c45;
}
@media screen and (max-width: 767px) {
  .form-input input[type=text], .form-input input[type=tel], .form-input input[type=email], .form-input input[type=number] {
    padding: 2vw;
    font-size: 3.8vw;
  }
}
.form-input select {
  padding: 1vw;
  font-size: 1.279vw;
  background-image: linear-gradient(45deg, transparent 50%, #222c45 50%), linear-gradient(135deg, #222c45 50%, transparent 50%);
  background-position: calc(100% - .77vw), calc(100% - .48vw);
  background-size: 0.31vw 0.3vw, 0.31vw 0.31vw, 1.17vw 1.17vw;
  background-repeat: no-repeat;
  appearance: none;
}
.form-input select:focus-visible {
  outline-color: #222c45;
}
@media screen and (max-width: 767px) {
  .form-input select {
    padding: 2vw 5vw 2vw 2vw;
    font-size: 3.8vw;
    background-position: calc(100% - 3.43vw), calc(100% - 2.04vw);
    background-size: 1.56vw 1.56vw, 1.56vw 1.56vw, 4.17vw 4.17vw;
  }
}

.modal.ldcv .inner {
  padding: 2.042vw;
  background: #ccc;
  border-radius: 1.979vw;
}
@media screen and (max-width: 767px) {
  .modal.ldcv .inner {
    padding: 4.467vw;
    border-radius: 5.067vw !important;
  }
}
@media screen and (max-width: 767px) {
  .modal.ldcv .base {
    width: 100%;
  }
}
.modal.ldcv form {
  display: flex;
  flex-direction: column;
}
.modal.ldcv form .form-input {
  display: flex;
  flex-direction: column;
  margin-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  .modal.ldcv form .form-input {
    margin-bottom: 3vw;
  }
}
.modal.ldcv .button {
  border: none;
}

/*# sourceMappingURL=app.css.map */
