@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*colors*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  list-style: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

body {
  position: relative;
  background: #eff8ff;
}

.button-mobile-menu {
  display: none;
  position: absolute;
  right: 12px;
  padding: 7px;
  cursor: pointer;
  z-index: 101;
}
@media only screen and (max-width: 991px) {
  .button-mobile-menu {
    display: block;
  }
}
.button-mobile-menu.open .icon span {
  background: #0B0F11;
}
.button-mobile-menu.open .icon span:first-child {
  top: 5px;
  transform: rotate(225deg);
}
.button-mobile-menu.open .icon span:nth-child(2) {
  top: calc(50% - 2px);
  display: none;
}
.button-mobile-menu.open .icon span:last-child {
  top: 5px;
  transform: rotate(135deg);
}
.button-mobile-menu .icon {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
  top: 0;
}
.button-mobile-menu .icon span {
  height: 2px;
  width: 100%;
  border-radius: 3px;
  background: #FFF;
  display: inline-block;
  float: left;
  position: absolute;
  left: 0;
}
.button-mobile-menu .icon span:first-child {
  top: 0;
  transition: all 0.25s;
}
.button-mobile-menu .icon span:nth-child(2) {
  top: calc(50% - 1px);
  transition: all 0.25s;
}
.button-mobile-menu .icon span:last-child {
  bottom: 0;
  transition: all 0.25s;
}

.mobile-content {
  background: #ffffff;
  z-index: 99;
  padding: 15px;
  overflow: hidden;
  transition: max-height 0.8s ease;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  display: none;
}
.mobile-content.open {
  display: flex;
}
.mobile-content .logo {
  display: flex;
  justify-content: center;
}
.mobile-content .logo img {
  height: 100px;
}
.mobile-content .menu {
  margin-top: 30px;
}
.mobile-content .menu nav ul li {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e6e6e6;
}
.mobile-content .menu nav ul li a {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #0B0F11;
}
.mobile-content .button-survey {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.mobile-content .button-survey a {
  border-radius: 10px;
  padding: 10px 24px;
  max-width: 345px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 67%;
  color: #fff;
  background: #003da5;
}
.mobile-content .button-survey a:hover {
  background: rgba(254, 190, 16, 0.84);
}
.mobile-content .button-survey a:active {
  background: rgba(254, 190, 16, 0.84);
}

header {
  backdrop-filter: blur(24px);
  background: #003DA5;
  position: relative;
  z-index: 99;
}
header .content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px 12px 30px;
}
@media only screen and (max-width: 991px) {
  header .content {
    justify-content: flex-start;
  }
}
header .content .left-content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header .content .left-content {
    display: none;
  }
}
header .content .logo {
  height: 56px;
}
@media only screen and (max-width: 991px) {
  header .content .logo {
    height: 36px;
  }
}
header .content .logo a {
  display: block;
  height: 56px;
}
@media only screen and (max-width: 991px) {
  header .content .logo a {
    height: 36px;
  }
}
header .content .logo a img {
  height: 56px;
}
@media only screen and (max-width: 991px) {
  header .content .logo a img {
    height: 36px;
  }
}
header .content .menu {
  max-width: 607px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  header .content .menu {
    display: none;
  }
}
header .content .menu nav .ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .content .menu nav .ul .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .content .menu nav .ul .nav-btn .button-survey a {
  color: #FFF;
  max-width: 121px;
  width: 121px;
  height: 28px;
  border-radius: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
}
header .content .menu nav .ul .nav-btn .button-survey a:hover {
  text-decoration: none;
}
header .content .menu nav .ul .li {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0;
}
header .content .menu nav .ul .li:last-child {
  padding: 0;
}
header .content .menu nav .ul .li:last-child a:before {
  display: none;
}
header .content .menu nav .ul .li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 123%;
  color: #FFF;
  padding: 6px 12px;
}
@media only screen and (max-width: 991px) {
  header .content .button-survey {
    display: none;
  }
}
header .content .button-survey a {
  border-radius: 4px;
  padding: 10px 14px;
  width: 136px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #FFF;
  background: #FEBE10;
}
header .content .button-survey a:hover {
  background: rgba(254, 190, 16, 0.84);
}
header .content .button-survey a:active {
  background: rgba(254, 190, 16, 0.84);
}

.banner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .banner {
    padding-bottom: 0;
    background: #e4f2fd;
  }
}
.banner .background {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 560px;
  margin: 0 auto;
  left: 0;
  right: 0;
  max-width: 1440px;
}
@media only screen and (max-width: 991px) {
  .banner .background {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner .background {
    display: none;
  }
}
.banner .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #245AB3;
  padding: 40px 40px 40px 0px;
}
@media only screen and (max-width: 991px) {
  .banner .banner-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 15px;
  }
}
.banner .banner-bottom .banner-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .banner .banner-bottom .banner-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.banner .banner-bottom .banner-trust img {
  height: 40px;
}
.banner .banner-bottom .banner-trust p {
  color: #FFFFFF;
  padding: 0;
}
.banner .banner-bottom p {
  margin: 0;
}
.banner-content {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 60px;
}
@media only screen and (max-width: 991px) {
  .banner-content {
    padding: 40px 0;
  }
}
.banner-content h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 117%;
  color: #003da5;
  margin-bottom: 10px;
  margin-left: 118px;
}
@media only screen and (max-width: 991px) {
  .banner-content h1 {
    font-weight: 900;
    font-size: 40px;
    line-height: 135%;
    color: #003da5;
    margin-left: 0;
    padding: 0 15px;
  }
}
.banner-content h1 span:nth-of-type(1) {
  font-weight: 700;
  font-size: 27px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 14px;
}
@media only screen and (max-width: 991px) {
  .banner-content h1 span:nth-of-type(1) {
    font-size: 27px;
    line-height: 27px;
  }
}
.banner-content h1 span:nth-of-type(2) {
  display: inline-block;
}
.banner-content p {
  font-weight: 400;
  font-size: 22px;
  line-height: 118%;
  color: #000;
  max-width: 346px;
  width: 100%;
  margin-bottom: 86px;
  margin-left: 118px;
}
@media only screen and (max-width: 991px) {
  .banner-content p {
    font-weight: 400;
    font-size: 22px;
    line-height: 118%;
    color: #000;
    margin-left: 0;
    padding: 0 15px;
    margin-bottom: 50px;
  }
}
.banner-content .button-survey {
  margin-left: 118px;
  /* for testing purposes to ensure the animation lined up correctly */
}
@media only screen and (max-width: 991px) {
  .banner-content .button-survey {
    margin-left: 0;
  }
}
.banner-content .button-survey a {
  border-radius: 10px;
  padding: 10px 14px;
  width: 219px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #245ab3;
  background: #CDDC3A;
  text-decoration: none;
  font-size: 20px;
  line-height: 80%;
}
.banner-content .button-survey a:hover {
  background: rgba(0, 69, 112, 0.84);
  text-decoration: none;
  color: #fff;
}
.banner-content .button-survey .logo-slider-wrap {
  position: relative;
  margin-top: 240px;
}
@media only screen and (max-width: 991px) {
  .banner-content .button-survey .logo-slider-wrap {
    margin-top: 294px;
  }
}
.banner-content .button-survey .logo-slider-wrap h3 {
  max-width: 1440px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 40px;
}
@media only screen and (max-width: 991px) {
  .banner-content .button-survey .logo-slider-wrap h3 {
    padding: 0 15px;
    margin: 0 auto 10px;
  }
}
.banner-content .button-survey .logo-slider {
  height: 83px;
  display: flex;
  align-items: center;
}
.banner-content .button-survey .scroller {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.banner-content .button-survey .scroller[data-animated=true] {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.banner-content .button-survey .scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  gap: 64px;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.banner-content .button-survey .scroller[data-direction=right] {
  --_animation-direction: reverse;
}
.banner-content .button-survey .scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.banner-content .button-survey .scroller[data-speed=fast] {
  --_animation-duration: 20s;
}
.banner-content .button-survey .scroller[data-speed=slow] {
  --_animation-duration: 60000s;
}
.banner-content .button-survey .scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .banner-content .button-survey .scroller__inner {
    gap: 30px;
    display: flex;
    align-items: center;
  }
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 32px));
  }
}
.banner-content .button-survey .tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}
.banner-content .button-survey .tag-list li {
  display: flex;
  align-items: center;
}
.banner-content .button-survey .tag-list li:hover svg g {
  opacity: 1;
}
.banner-content .button-survey .tag-list li:hover img {
  opacity: 1;
}
.banner-content .button-survey .tag-list li img {
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s, easy;
}
.banner-content .button-survey .test {
  background: red !important;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (max-width: 991px) {
  main {
    padding: 0 5px;
  }
}

.services-section {
  padding: 98px 0 112px;
}
@media only screen and (max-width: 991px) {
  .services-section {
    padding: 15px 0;
  }
}
.services-section .services-content {
  margin: 0 auto;
}
.services-section .services-content h2 {
  font-weight: 800;
  font-size: 70px;
  line-height: 120%;
  color: #000;
  margin-bottom: 46px;
  max-width: 1133px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .services-section .services-content h2 {
    font-size: 40px;
    line-height: 135%;
    margin-bottom: 40px;
  }
}
.services-section .services-content .services-grid {
  display: grid;
  grid-template-columns: minmax(0, 416px) minmax(0, 443px) minmax(0, 500px);
  grid-template-rows: auto auto;
  gap: 17px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .services-section .services-content .services-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .services-section .services-content .services-grid .service-item {
    order: 0;
  }
  .services-section .services-content .services-grid .service-item:nth-child(1) {
    order: 2;
  }
  .services-section .services-content .services-grid .service-item:nth-child(2) {
    order: 1;
  }
  .services-section .services-content .services-grid .service-item:nth-child(3) {
    order: 4;
  }
  .services-section .services-content .services-grid .service-item:nth-child(4) {
    order: 3;
  }
}
.services-section .services-content .services-grid .service-item {
  border-radius: 37px;
  padding: 30px;
  width: 100%;
}
.services-section .services-content .services-grid .service-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.services-section .services-content .services-grid .service-item:nth-child(1) h3 {
  max-width: 90%;
}
.services-section .services-content .services-grid .service-item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.services-section .services-content .services-grid .service-item:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
.services-section .services-content .services-grid .service-item:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2/3;
}
.services-section .services-content .services-grid .service-item.white-bg {
  background-color: #FFF;
}
.services-section .services-content .services-grid .service-item.white-bg .service-text h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  color: #003da5;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .services-section .services-content .services-grid .service-item.white-bg .service-text h3 {
    font-size: 40px;
  }
}
.services-section .services-content .services-grid .service-item.white-bg .service-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: #000;
  margin-bottom: 40px;
}
.services-section .services-content .services-grid .service-item.white-bg .service-link a {
  color: #003da5;
  font-weight: 500;
  font-size: 24px;
  line-height: 66%;
  padding: 12px 20px;
  border: 1px solid #003da5;
  border-radius: 10px;
  display: inline-block;
}
.services-section .services-content .services-grid .service-item.white-bg .service-link a:hover {
  background-color: #003da5;
  color: #FFF;
}
.services-section .services-content .services-grid .service-item.red-bg {
  background-color: #eff1f4;
  color: #000;
  display: flex;
  align-items: center;
}
.services-section .services-content .services-grid .service-item.red-bg .service-text p {
  font-weight: 500;
  font-size: 26px;
  line-height: 104%;
  color: #000;
}
.services-section .services-content .services-summary {
  border-radius: 37px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1359px;
  width: 100%;
  margin: 0 auto;
  gap: 12px;
}
.services-section .services-content .services-summary.red-bg {
  background-color: #003da5;
}
@media only screen and (max-width: 768px) {
  .services-section .services-content .services-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.services-section .services-content .services-summary .services-summary-text p {
  font-weight: 500;
  font-size: 24px;
  line-height: 108%;
  color: #FFF;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .services-section .services-content .services-summary .services-summary-text p {
    font-size: 18px;
  }
}
.services-section .services-content .services-summary .services-summary-link {
  max-width: 348px;
  width: 100%;
}
.services-section .services-content .services-summary .services-summary-link a {
  white-space: nowrap;
  width: 100%;
  height: 48px;
  color: #003da5;
  font-weight: 500;
  font-size: 32px;
  line-height: 50%;
  padding: 16px 20px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats-section {
  padding: 80px 0 0;
}
@media only screen and (max-width: 991px) {
  .stats-section {
    padding: 40px 5px;
  }
}
.stats-section .stats-content {
  margin: 0 auto;
}
.stats-section .stats-content .stats-title {
  display: flex;
  justify-content: space-between;
  max-width: 1251px;
  width: 100%;
  margin: 0 0 127px auto;
  gap: 40px;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content .stats-title {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content .stats-title img {
    height: 180px;
  }
}
.stats-section .stats-content .stats-title-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content .stats-title-info {
    flex-direction: column;
  }
}
.stats-section .stats-content .stats-title-info img {
  height: 200px;
}
.stats-section .stats-content h2 {
  font-weight: 800;
  font-size: 54px;
  line-height: 1.37;
  color: #000;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content h2 {
    font-size: 40px;
    line-height: 135%;
    margin-bottom: 30px;
  }
}
.stats-section .stats-content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 105%;
  text-align: center;
  color: #78828c;
}
.stats-section .stats-content .stats-info {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content .stats-info {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.stats-section .stats-content .stats-info .stats-text {
  background-color: #E8EFEF;
  border-radius: 37px;
  padding: 30px;
  width: 100%;
  max-width: 678px;
}
.stats-section .stats-content .stats-info .stats-text p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.05;
  color: #78828C;
}
.stats-section .stats-content .stats-info .stats-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  width: 100%;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content .stats-info .stats-blocks {
    flex-direction: column;
  }
}
.stats-section .stats-content .stats-info .stats-blocks > * {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 991px) {
  .stats-section .stats-content .stats-info .stats-blocks > * {
    width: 100%;
  }
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block {
  border-radius: 37px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block .stats-number {
  font-weight: 400;
  font-size: 96px;
  line-height: 96px;
  margin-bottom: 20px;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block .stats-label {
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block.white-bg {
  background-color: #FFF;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block.white-bg .stats-number {
  color: #003da5;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block.white-bg .stats-label {
  color: #78828C;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block.red-bg {
  background-color: #003da5;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block.red-bg .stats-number {
  color: #FFF;
}
.stats-section .stats-content .stats-info .stats-blocks .stats-block.red-bg .stats-label {
  color: #FFF;
}

.contact-help2 {
  padding: 40px;
  background: #003da5;
}
@media only screen and (max-width: 991px) {
  .contact-help2 {
    display: none;
  }
}
.contact-help2 h2 {
  font-size: 36px;
  line-height: 44px;
  color: #FFF;
  margin-bottom: 24px;
}
.contact-help2 p {
  font-size: 18px;
  line-height: 28px;
  max-width: 586px;
  width: 100%;
  color: #FFF;
}

footer {
  background: #fff;
}
footer .footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px;
}
footer .footer-company-info p {
  max-width: 460px;
  width: 100%;
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}
footer .footer-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  footer .footer-main {
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer-main {
    gap: 40px;
  }
}
footer .logo {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  footer .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
footer .logo img {
  height: 56px;
}
footer .logo p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  margin-left: 24px;
  max-width: 336px;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  footer .logo p {
    margin-left: 0;
  }
}
footer .contact {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  max-width: 890px;
}
@media only screen and (max-width: 991px) {
  footer .contact {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  footer .contact {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
footer .contact-item {
  max-width: 185px;
  width: 100%;
}
footer .contact-item:not(:first-of-type) h5 {
  visibility: hidden;
}
footer .contact-item h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #72bff3;
  margin-bottom: 6px;
}
footer .contact-item:last-of-type {
  max-width: none;
}
footer .contact-item .country {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 100% */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
footer .contact-item .country img {
  width: 21px;
  height: 15px;
}
footer .contact-item .country span {
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .contact-item .info > p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 100% */
  margin-bottom: 10px;
}
footer .contact-item address {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px; /* 131.25% */
}
@media only screen and (max-width: 991px) {
  footer .contact-item .contacts {
    margin-left: 0;
  }
}
footer .contact-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #72bff3;
  margin-bottom: 6px;
}
footer .contact-item p:last-of-type {
  margin-top: 10px;
}
footer .contact-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 9px;
  white-space: nowrap;
}
footer .copyright {
  background: #f5f9ff;
}
footer .copyright-content {
  padding: 16px 40px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  footer .copyright-content {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 16px 30px;
  }
}
footer .copyright-content-text {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  footer .copyright-content-text {
    flex-direction: column;
    gap: 20px;
  }
}
footer .copyright span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px; /* 100% */
}
footer .copyright p {
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px; /* 100% */
}
footer .copyright a {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 14px; /* 100% */
}

.reviews-section {
  margin-bottom: 112px;
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .reviews-section {
    display: none;
  }
}
.reviews-section.mobile {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .reviews-section.mobile {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .reviews-section {
    padding: 40px 0;
    margin: 0;
  }
}
.reviews-section .reviews-content {
  max-width: 1305px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}
.reviews-section .reviews-title {
  font-size: 40px;
  font-weight: 900;
  color: #152C44;
  text-align: center;
  margin-bottom: 17px;
  line-height: 120%;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 991px) {
  .reviews-section .reviews-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #152c44;
  }
}
.reviews-section .reviews-subtitle {
  font-size: 18px;
  color: #191919;
  text-align: center;
  max-width: 570px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  .reviews-section .reviews-subtitle {
    margin-bottom: 30px;
  }
}
.reviews-section .reviews-rating-block {
  background: #F7F7F7;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .reviews-section .reviews-rating-block {
    margin-right: 0;
  }
}
.reviews-section .reviews-rating-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 200px;
}
.reviews-section .reviews-rating-label {
  font-size: 24px;
  color: #191919;
  font-family: "Liberation Sans", Arial, sans-serif;
  margin-bottom: 12px;
}
.reviews-section .reviews-rating-stars {
  display: flex;
  margin-bottom: 12px;
}
.reviews-section .reviews-rating-based {
  font-size: 13px;
  color: #191919;
  margin-bottom: 15px;
}
.reviews-section .reviews-rating-count {
  font-weight: 700;
  color: #191919;
}
.reviews-section .reviews-rating-trustpilot {
  margin-left: 8px;
  display: flex;
  align-items: center;
}
.reviews-section .reviews-rating-desc {
  font-size: 13px;
  color: #191919;
  margin-top: 8px;
}
.reviews-section .reviews-list {
  width: 100%;
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
@media only screen and (max-width: 1350px) {
  .reviews-section .reviews-list {
    flex-direction: column;
  }
}
.reviews-section .review-item {
  display: flex;
  flex-direction: column;
  background: #F7F7F7;
  border-radius: 16px;
  width: 303px !important;
  max-width: 303px !important;
  flex: 0 0 303px !important;
  margin: 0 20px;
  padding: 0 20px;
}
@media only screen and (max-width: 600px) {
  .reviews-section .review-item {
    flex-direction: column;
    gap: 10px;
    padding: 16px 10px;
  }
}
.reviews-section .review-stars {
  display: flex;
  gap: 2px;
  min-width: 90px;
  margin-bottom: 12px;
}
.reviews-section .review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviews-section .review-title-content {
  display: flex;
  gap: 9px;
  margin-bottom: 4px;
}
.reviews-section .review-title {
  font-size: 14px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 6px;
}
.reviews-section .review-text {
  font-size: 13px;
  color: #191919;
  line-height: 1.23;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reviews-section .review-meta {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  align-items: center;
}
.reviews-section .review-author {
  font-weight: 700;
}
.reviews-section .review-date {
  font-weight: 400;
}

.contact-image {
  height: auto;
  width: 100%;
  max-width: 452px;
}
.contact-image img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .contact-image {
    display: none;
  }
}

.faq {
  padding: 34px 40px 0;
  background: #fff;
  margin-bottom: 112px;
  /*Accordion*/
}
@media only screen and (max-width: 991px) {
  .faq {
    padding: 34px 15px 0;
    margin-bottom: 30px;
  }
}
.faq-content {
  max-width: 1072px;
  width: 100%;
  margin: 0 auto;
}
.faq .tabs {
  display: flex;
  border-bottom: 1px solid #AABCC8;
}
@media only screen and (max-width: 991px) {
  .faq .tabs {
    flex-direction: column;
    border: none;
  }
}
.faq .tab-btn {
  border: none;
  padding: 18px 24px;
  cursor: pointer;
  max-width: 33.3333333333%;
  width: 100%;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  color: #0B0F11;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
  background-color: #ffffff;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .faq .tab-btn {
    max-width: 100%;
    text-align: left;
    padding: 21px 0;
    border-bottom: 1px solid #AABCC8;
    color: #315576;
  }
}
.faq .tab-btn.active {
  border-bottom: 3px solid #e2a328;
}
.faq .tab-btn:hover {
  border-bottom: 3px solid #e2a328;
}
.faq .tab-content {
  display: none;
  position: relative;
}
.faq .tab-content h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  padding: 20px 0 48px;
  text-align: center;
  border-bottom: 1px solid #AABCC8;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 991px) {
  .faq .tab-content h2 {
    display: block;
  }
}
.faq .tab-content.active {
  display: block;
  padding: 20px 0 0;
}
.faq .list-block {
  border-bottom: 1px solid #AABCC8;
  padding: 28px 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding-bottom 0.3s ease-out;
}
.faq .list-block:last-of-type {
  margin: 0;
  border: none;
}
.faq .list-block.open .list {
  margin-top: 16px;
}
@media only screen and (max-width: 991px) {
  .faq .list-block.active {
    min-height: auto;
  }
}
.faq .list-block.active .list-block-icon {
  border-bottom: 2px solid #231F20;
}
.faq .list-block-title {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 48px;
}
.faq .list-block-icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 24px;
  width: 24px;
}
.faq .list-block-icon img {
  width: 24px;
  height: 24px;
}
.faq .list-block h4 {
  color: #0B0F11;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}
.faq .list-block .ul {
  margin-bottom: 30px;
}
.faq .list-block .ul li {
  color: rgba(11, 15, 17, 0.8);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.faq .list-block .list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
  opacity: 1;
}
.faq .list-block .list p {
  color: rgba(11, 15, 17, 0.8);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.faq .list-block .list-item {
  color: #231F20;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 4px;
  list-style: disc outside;
}
@media only screen and (max-width: 991px) {
  .faq .list-block .list-item {
    font-size: 16px;
    letter-spacing: 3.2px;
  }
}

.about-us-info {
  max-width: 1140px;
  margin: 0 auto;
  margin-top: 60px;
}
.about-us-info-cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .about-us-info-cta {
    flex-direction: column;
    gap: 40px;
  }
}
.about-us-info-cta h2 {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.2;
  color: #000103;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .about-us-info-cta h2 {
    font-weight: 800;
    font-size: 44px;
    color: #000103;
  }
}
.about-us-info-cta p {
  font-weight: 400;
  font-size: 18px;
  color: #161a1e;
  margin-bottom: 24px;
  max-width: 593px;
}
.about-us-info-cta a {
  font-weight: 700;
  font-size: 17px;
  line-height: 129%;
  text-align: center;
  color: #fff;
  background: #003da5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: 300px;
}
@media only screen and (max-width: 991px) {
  .about-us-info-text p {
    max-width: none;
  }
}
.about-us-info-img {
  max-width: 469px;
  width: 100%;
}
.about-us-info-img img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  height: auto;
}
.about-us-info-desc {
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .about-us-info-desc {
    flex-direction: column;
  }
}
.about-us-info-desc .col {
  width: calc(33.3333333333% - 30px);
}
@media only screen and (max-width: 991px) {
  .about-us-info-desc .col {
    width: 100%;
  }
}
.about-us-info-desc .col:last-of-type p {
  margin-bottom: 10px;
}
.about-us-info-desc p {
  font-weight: 400;
  font-size: 17px;
  line-height: 129%;
  color: #1b1b1b;
}

.about-us-section {
  padding: 80px 0 0 0;
}
@media only screen and (max-width: 991px) {
  .about-us-section {
    padding: 40px 0;
  }
}
.about-us-section .about-us-container {
  max-width: 1440px;
  margin: 0 auto;
}
.about-us-section .about-us-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
@media only screen and (max-width: 991px) {
  .about-us-section .about-us-row {
    flex-direction: column;
    gap: 24px;
  }
}
.about-us-section .about-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-us-section .about-us-title {
  font-weight: 400;
  font-size: 70px;
  line-height: 120%;
  color: #000103;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .about-us-section .about-us-title {
    font-size: 40px;
    line-height: 135%;
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
.about-us-section .about-us-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .about-us-section .about-us-blocks {
    grid-template-columns: 1fr;
  }
}
.about-us-section .about-us-block {
  background: #FFFFFF;
  border-radius: 37px;
  padding: 24px 40px;
  margin-bottom: 0;
  max-width: 674px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .about-us-section .about-us-block {
    max-width: 100%;
  }
}
.about-us-section .about-us-block.about-us-image {
  padding: 0;
}
.about-us-section .about-us-block.about-us-image img {
  max-width: 674px;
  height: 100%;
  object-fit: cover;
  border-radius: 37px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .about-us-section .about-us-block.about-us-image img {
    max-width: 100%;
  }
}
.about-us-section .about-us-features {
  background: #fff0f0;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-weight: 500;
}
.about-us-section p, .about-us-section .about-us-text {
  color: #161a1e;
  font-size: 24px;
  line-height: 117%;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .about-us-section p, .about-us-section .about-us-text {
    font-size: 16px;
  }
}

.review-items.swiper {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1350px) {
  .review-items.swiper {
    max-width: 1016px;
    padding-bottom: 50px;
  }
}
.review-items-mobile.swiper {
  max-width: 323px;
  padding-bottom: 50px;
}
.review-items .swiper-wrapper-container {
  margin: 0 50px;
}
@media only screen and (max-width: 1199px) {
  .review-items .swiper-wrapper {
    display: none;
  }
}
.review-items .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}
.review-items .swiper-button-next,
.review-items .swiper-button-prev {
  color: transparent;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url("../images/review-btn.svg") center center no-repeat !important;
  background-size: 24px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.review-items .swiper-button-next:after,
.review-items .swiper-button-prev:after {
  display: none;
}
.review-items .swiper-button-prev {
  transform: translateY(-50%) scaleX(-1);
  left: 0;
}
.review-items .swiper-button-next {
  right: 0;
}
@media (max-width: 1199px) {
  .review-items .swiper-button-next,
  .review-items .swiper-button-prev {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .review-items .swiper-button-next {
    right: 48px;
  }
  .review-items .swiper-button-prev {
    left: 48px;
    transform: rotate(180deg);
  }
}
.review-items-mobile .swiper-button-next,
.review-items-mobile .swiper-button-prev {
  color: transparent;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url("../images/review-btn.svg") center center no-repeat !important;
  background-size: 24px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.review-items-mobile .swiper-button-next:after,
.review-items-mobile .swiper-button-prev:after {
  display: none;
}
.review-items-mobile .swiper-button-prev {
  transform: translateY(-50%) scaleX(-1);
  left: 0;
}
.review-items-mobile .swiper-button-next {
  right: 0;
}
@media (max-width: 1199px) {
  .review-items-mobile .swiper-button-next,
  .review-items-mobile .swiper-button-prev {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .review-items-mobile .swiper-button-next {
    right: 48px;
  }
  .review-items-mobile .swiper-button-prev {
    left: 48px;
    transform: rotate(180deg);
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E5E5E5;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 37px;
  max-width: 1342px;
  margin: 0 auto;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 20px 30px;
  margin: 0 auto;
}

.cookie-banner-text {
  flex: 1;
  max-width: 728px;
}

.cookie-banner-text p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3em;
  color: #000000;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 0.8125em;
  text-decoration: none;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: center;
}

.cookie-banner-btn-primary {
  background: #004570;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-banner-btn-primary:hover {
  background: #fff;
  color: #004570;
  border-color: #004570;
}

.cookie-banner-btn-secondary {
  background: #FFFFFF;
  color: #000000;
  border-color: #000000;
}

.cookie-banner-btn-secondary:hover {
  background: #004570;
  color: #fff;
  border-color: #004570;
}

@media only screen and (max-width: 991px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  .cookie-banner-text {
    max-width: 100%;
  }
  .cookie-banner-text p {
    font-size: 16px;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cookie-banner-btn {
    width: 100%;
    min-width: auto;
    font-size: 18px;
    padding: 14px 24px;
  }
}
@media only screen and (max-width: 768px) {
  .cookie-banner-content {
    padding: 16px;
  }
  .cookie-banner-text p {
    font-size: 14px;
  }
  .cookie-banner-btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}
.take-survey {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
@media only screen and (max-width: 991px) {
  .take-survey {
    padding: 10px;
  }
}
.take-survey .btn-close {
  position: absolute;
  right: 16px;
  top: 22px;
  cursor: pointer;
}
.take-survey .btn-close img {
  width: 28px;
  height: 28px;
}
@media only screen and (max-width: 991px) {
  .take-survey .btn-close img {
    width: 24px;
    height: 24px;
  }
}
.take-survey h2 {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin-bottom: 24px;
}
.take-survey p {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 991px) {
  .take-survey p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    padding-bottom: 26px;
  }
}
.take-survey .button-survey a {
  margin: 40px auto 0;
  border-radius: 4px;
  padding: 10px 24px;
  width: 265px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 0 rgba(15, 21, 27, 0.2);
  background: #003da5;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .take-survey .button-survey a {
    margin: 26px auto 0;
  }
}
.take-survey .button-survey a:hover {
  box-shadow: 4px 4px 0 0 rgba(15, 21, 27, 0.5);
  background: rgba(0, 61, 165, 0.83);
}
.take-survey .button-survey a:active {
  background: rgba(0, 61, 165, 0.83);
  box-shadow: none;
}
.take-survey .content-wrap {
  max-width: 908px;
  width: 100%;
  padding: 66px 40px;
  z-index: 1000;
  background: #fff;
  overflow: hidden;
  position: relative;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .take-survey .content-wrap {
    padding: 66px 20px 40px;
  }
}

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