:root {
  --main-font-family: "Asap", sans-serif;
  --Orange: #FE8836;
  --text-color: #585858;
  --Light-Blue: #0097DD;
  --light-grey: #F8F8F8;
  --navy: #1c3c70;
  --Main-Blue: #1D3E70;
}

/* Fonts */
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap/Asap-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Media */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font-family);
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 425px) {
  .container {
    max-width: 370px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
}
.header__inner {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
}
.header__link {
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: 0.2s;
}
.header__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .header__link {
    margin: -18px 0 0 11px;
  }
}
@media screen and (max-width: 600px) {
  .header__logo {
    max-width: 102px;
  }
}
.header__bg {
  position: absolute;
  width: 505px;
  height: 100%;
  top: 0;
  left: -246px;
}
@media screen and (max-width: 600px) {
  .header__bg {
    top: -20px;
    left: -312px;
  }
}
.header__logo {
  position: relative;
  z-index: 1;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .hero-banner {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .hero-banner {
    padding-bottom: 32px;
  }
}
.hero-banner__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.hero-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 2000px) {
  .hero-banner__bg img {
    object-position: center top;
  }
}
@media screen and (max-width: 1440px) {
  .hero-banner__bg img {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .hero-banner__bg img {
    width: 100%;
  }
}
.hero-banner__inner {
  min-height: 680px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  .hero-banner__inner {
    flex-direction: column;
  }
}
.hero-banner__texts {
  width: 100%;
  max-width: 740px;
  color: #fff;
  padding-top: 90px;
}
@media screen and (max-width: 820px) {
  .hero-banner__texts {
    padding-top: 160px;
  }
}
@media screen and (max-width: 600px) {
  .hero-banner__texts {
    padding-top: 111px;
    padding-left: 10px;
  }
}
.hero-banner__texts h1 {
  font-weight: 900;
  font-size: 68px;
  line-height: 115%;
  letter-spacing: 1.1px;
  margin: 0 0 40px 0;
  position: relative;
}
.hero-banner__texts h1:after {
  content: "";
  display: block;
  width: 630px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(101.57deg, #FFFFFF 22.57%, rgba(255, 255, 255, 0) 86.33%);
  position: absolute;
  left: -2px;
  bottom: -20px;
}
@media screen and (max-width: 1024px) {
  .hero-banner__texts h1:after {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .hero-banner__texts h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 600px) {
  .hero-banner__texts h1 {
    font-size: 38px;
    letter-spacing: 0.6px;
  }
}
.hero-banner__sub {
  font-size: 24px;
  line-height: 125%;
  margin: 0 0 20px 0;
  max-width: 600px;
}
@media screen and (max-width: 600px) {
  .hero-banner__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 420px) {
  .hero-banner__sub {
    max-width: 290px;
    margin: 0 0 6px 0;
  }
}
.hero-banner__form-wrapper {
  width: 100%;
  max-width: 394px;
  height: 600px;
  border-radius: 20px;
  background-color: #fff;
  flex-shrink: 0;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px 20px 30px;
}
@media screen and (max-width: 600px) {
  .hero-banner__form-wrapper {
    margin: 0;
  }
}
@media screen and (max-width: 450px) {
  .hero-banner__form-wrapper {
    max-width: 330px;
    max-height: 571px;
    padding: 20px;
  }
}
.hero-banner__form-wrapper .form-ty {
  display: none;
}
.hero-banner__form-wrapper.form-filled {
  position: relative;
  max-height: 478px;
  min-height: 478px;
}
.hero-banner__form-wrapper.form-filled .form-ty {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border-radius: inherit;
  z-index: 2;
}
.hero-banner__form-wrapper.form-filled .form-ty p {
  text-transform: uppercase;
  color: #005EAB;
  font-size: 38px;
  font-weight: 800;
  margin: 25px 0 0 0;
}
@media screen and (max-width: 450px) {
  .hero-banner__form-wrapper.form-filled .form-ty p {
    font-size: 26px;
    margin: 15px 0 0 0;
  }
}
@media screen and (max-width: 450px) {
  .hero-banner__form-wrapper.form-filled .form-ty svg {
    width: 50px;
    height: 50px;
  }
}
.hero-banner__form-heading {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: var(--Main-Blue);
  margin: 24px 0 10px 0;
}
@media screen and (max-width: 450px) {
  .hero-banner__form-heading {
    margin: 24px 0 15px 0;
  }
}
.hero-banner__form-subheading {
  text-align: center;
  color: var(--Main-Blue);
}

.clients-logo {
  overflow: hidden;
}

.our-clients__wrapper-flexbox {
  animation: marquee-scroll-accolades 120s linear infinite;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 20px;
  height: 99px;
  padding: 23px 0;
  gap: 83px;
}
@media screen and (max-width: 600px) {
  .our-clients__wrapper-flexbox {
    height: 75px;
    padding: 22px 0;
    gap: 45px;
  }
}
.our-clients__wrapper-flexbox .our-item {
  width: auto;
  height: auto;
}
.our-clients__wrapper-flexbox .our-item img {
  width: auto;
  height: 100%;
  max-height: 53px;
}
@media screen and (max-width: 600px) {
  .our-clients__wrapper-flexbox .our-item img {
    max-height: 35px;
  }
}
.our-clients__wrapper-flexbox .our-item svg {
  width: auto;
  height: 100%;
  max-height: 53px;
}
@media screen and (max-width: 600px) {
  .our-clients__wrapper-flexbox .our-item svg {
    max-height: 35px;
  }
}

.challenges-section {
  padding: 100px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .challenges-section {
    padding: 60px 0;
  }
}
.challenges-section__inner h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 auto;
  max-width: 820px;
}
@media screen and (max-width: 768px) {
  .challenges-section__inner h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .challenges-section__inner h2 {
    font-size: 26px;
    line-height: 115%;
  }
}
.challenges-section__cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
}
@media screen and (max-width: 820px) {
  .challenges-section__cards {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
.challenges-section__card {
  width: 100%;
  max-width: 456px;
  border-radius: 20px;
  border: 2px solid #007AFF;
  position: relative;
  padding: 50px 20px 40px 23px;
}
@media screen and (max-width: 600px) {
  .challenges-section__card {
    padding: 50px 20px 43px 23px;
  }
}
@media screen and (max-width: 600px) {
  .challenges-section__card:first-child .challenges-section__card-icon {
    top: -55px;
  }
}
.challenges-section__card-icon {
  position: absolute;
  top: -40px;
  left: 22px;
}
.challenges-section__card-heading {
  color: #007AFF;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  margin: 0 0 12px 0;
}
@media screen and (max-width: 600px) {
  .challenges-section__card-heading {
    font-size: 22px;
  }
}
.challenges-section__card-text {
  font-size: 18px;
  line-height: 130%;
  margin: 0 0 4px 0;
  color: var(--text-color);
}
@media screen and (max-width: 600px) {
  .challenges-section__card-text {
    font-size: 16px;
  }
}
.challenges-section__btn {
  margin: 68px auto 0 auto;
  padding: 19px 21px;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(67.71deg, #EE3124 0%, #FAAA23 71.97%);
  display: flex;
  gap: 16px;
  border-radius: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .challenges-section__btn {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .challenges-section__btn {
    margin: 39px auto 0 auto;
    font-size: 14px;
    padding: 15px 21px;
  }
}
.challenges-section__btn span:has(svg) {
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .challenges-section__btn span:has(svg) {
    display: none;
  }
}
.challenges-section__btn:hover {
  opacity: 0.9;
}
.challenges-section__btn:hover span:has(svg) {
  transform: translateX(5px);
}

.cta-cards {
  padding: 100px 0;
  background-color: #E8F6FF;
}
@media screen and (max-width: 768px) {
  .cta-cards {
    padding: 50px 0;
  }
}
.cta-cards__inner h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .cta-cards__inner h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .cta-cards__inner h2 {
    font-size: 26px;
    line-height: 115%;
  }
}
.cta-cards__cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 61px;
}
@media screen and (max-width: 820px) {
  .cta-cards__cards {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .cta-cards__cards {
    margin-top: 32px;
    gap: 30px;
  }
}
.cta-cards__card {
  width: 100%;
  max-width: 456px;
  padding: 35px 30px 32px 35px;
  background-color: #0195DC;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .cta-cards__card {
    padding: 33px 20px 34px 21px;
  }
}
.cta-cards__card:before {
  content: "";
  display: block;
  width: 241px;
  height: 241px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 211, 255, 0.8) 0%, rgba(117, 211, 255, 0.2) 50%, rgba(117, 211, 255, 0) 100%);
  filter: blur(50px);
  position: absolute;
  top: -100px;
  left: 10px;
  z-index: 0;
}
.cta-cards__card:nth-child(2) {
  background-color: #005EAC;
}
.cta-cards__card:nth-child(2):before {
  background: radial-gradient(circle, rgb(47, 155, 241) 0%, rgba(117, 211, 255, 0.2) 50%, rgba(117, 211, 255, 0) 100%);
}
.cta-cards__card:nth-child(3) {
  background-color: var(--navy);
}
@media screen and (max-width: 425px) {
  .cta-cards__card:nth-child(3) .cta-cards__title {
    max-width: 210px;
  }
}
.cta-cards__card:nth-child(3):before {
  background: radial-gradient(circle, rgba(0, 102, 255, 0.46) 0%, rgba(117, 211, 255, 0.2) 50%, rgba(117, 211, 255, 0) 100%);
}
.cta-cards__title {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  line-height: 125%;
  margin: 7px 0 10px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .cta-cards__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .cta-cards__title br {
    display: none;
  }
}
.cta-cards__text {
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .cta-cards__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1333px) {
  .cta-cards__text br {
    display: none;
  }
}
.cta-cards__cta {
  width: 100%;
  border-radius: 20px;
  background-color: #fff;
  padding: 24px 30px 24px 33px;
  margin: 62px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .cta-cards__cta {
    max-width: 456px;
    flex-direction: column;
    margin: 32px auto 0 auto;
    align-items: flex-start;
    padding: 24px 20px 24px 20px;
  }
}
.cta-cards__cta-global-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-cards__cta-text {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}
@media screen and (max-width: 600px) {
  .cta-cards__cta-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .cta-cards__cta-text {
    max-width: 245px;
  }
}
.cta-cards__cta-btn {
  flex-shrink: 0;
  padding: 19px 21px;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(67.71deg, #EE3124 0%, #FAAA23 71.97%);
  display: flex;
  gap: 16px;
  border-radius: 100px;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .cta-cards__cta-btn {
    font-size: 14px;
    margin-top: 20px;
    padding: 14px 20px;
  }
}
.cta-cards__cta-btn span:has(svg) {
  transition: 0.2s;
}
.cta-cards__cta-btn:hover {
  opacity: 0.9;
}
.cta-cards__cta-btn:hover span:has(svg) {
  transform: translateX(5px);
}

.our-audiences {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .our-audiences {
    padding: 74px 0 60px 0;
  }
}
.our-audiences__inner h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .our-audiences__inner h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .our-audiences__inner h2 {
    font-size: 26px;
    line-height: 115%;
  }
}
.our-audiences__inner h3 {
  font-size: 40px;
  line-height: 56px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .our-audiences__inner h3 {
    font-size: 22px;
    line-height: 115%;
    margin: 30px 0 20px 0;
  }
}
.our-audiences__inner-block {
  width: 100%;
  display: flex;
  gap: 98px;
  align-items: center;
  background: linear-gradient(219.97deg, #026BB5 -2.45%, #0E044B 86.56%);
  position: relative;
  height: 150px;
  border-radius: 20px;
  margin: 48px 0 48px 0;
  padding: 20px 65px;
}
@media screen and (max-width: 1440px) {
  .our-audiences__inner-block {
    gap: 40px;
  }
}
@media screen and (max-width: 1380px) {
  .our-audiences__inner-block {
    gap: 30px;
    overflow: hidden;
  }
}
@media screen and (max-width: 1200px) {
  .our-audiences__inner-block {
    padding: 20px;
  }
}
@media screen and (max-width: 1150px) {
  .our-audiences__inner-block {
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .our-audiences__inner-block {
    gap: 30px;
  }
}
@media screen and (max-width: 820px) {
  .our-audiences__inner-block {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .our-audiences__inner-block {
    flex-direction: column;
    align-items: center;
    max-width: 328px;
    height: 539px;
    margin: 42px auto 0 auto;
    padding: 30px 20px 20px 20px;
    gap: 23px;
  }
}
.our-audiences__inner-block img {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .our-audiences__inner-block img {
    display: none;
  }
}
.our-audiences__inner-block img.mob {
  display: none;
}
@media screen and (max-width: 1024px) {
  .our-audiences__inner-block img.mob {
    display: block;
    right: 0;
    top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .our-audiences__inner-block img.mob {
    top: unset;
    bottom: 20px;
    left: 0;
  }
}
@media screen and (max-width: 1380px) {
  .our-audiences__inner-block img {
    right: -65px;
    z-index: 0;
  }
}
@media screen and (max-width: 1380px) {
  .our-audiences__inner-block-texts {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .our-audiences__inner-block-texts {
    text-align: center;
  }
}
.our-audiences__inner-block-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #fff;
  line-height: 43px;
}
@media screen and (max-width: 1150px) {
  .our-audiences__inner-block-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .our-audiences__inner-block-title {
    font-size: 40px;
    margin: 0 0 6px 0;
  }
}
.our-audiences__inner-block-text {
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1150px) {
  .our-audiences__inner-block-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .our-audiences__inner-block-text {
    font-size: 16px;
  }
}
.our-audiences__graph {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}
@media screen and (max-width: 934px) {
  .our-audiences__graph {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .our-audiences__graph {
    margin-top: 30px;
  }
}
.our-audiences__graph-col {
  width: 100%;
  max-width: 406px;
}
.our-audiences__graph-col:first-child .our-audiences__graph-item:nth-child(1) .our-audiences__graph-icon {
  background-color: #0D41E1;
}
.our-audiences__graph-col:first-child .our-audiences__graph-item:nth-child(1) .our-audiences__graph-text {
  background-color: #0D41E1;
}
.our-audiences__graph-col:first-child .our-audiences__graph-item:nth-child(2) .our-audiences__graph-icon {
  background-color: #0D52E4;
}
.our-audiences__graph-col:first-child .our-audiences__graph-item:nth-child(2) .our-audiences__graph-text {
  background-color: #0D52E4;
  max-width: 92%;
}
.our-audiences__graph-col:first-child .our-audiences__graph-item:nth-child(3) .our-audiences__graph-icon {
  background-color: #0C63E7;
}
.our-audiences__graph-col:first-child .our-audiences__graph-item:nth-child(3) .our-audiences__graph-text {
  background-color: #0C63E7;
  max-width: 83%;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-title {
  margin: 0 0 4px 63px;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-item:first-child .our-audiences__graph-icon {
  background-color: #0B74EA;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-item:first-child .our-audiences__graph-text {
  max-width: 80%;
  background-color: #0B74EA;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-item:nth-child(2) .our-audiences__graph-icon {
  background-color: #0A85ED;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-item:nth-child(2) .our-audiences__graph-text {
  background-color: #0A85ED;
  max-width: 72%;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-item:nth-child(3) .our-audiences__graph-icon {
  background-color: #0A96F0;
}
.our-audiences__graph-col:nth-child(2) .our-audiences__graph-item:nth-child(3) .our-audiences__graph-text {
  background-color: #0A96F0;
  max-width: 67%;
}
.our-audiences__graph-col:nth-child(3) .our-audiences__graph-item:first-child .our-audiences__graph-icon {
  background-color: #09A6F3;
}
.our-audiences__graph-col:nth-child(3) .our-audiences__graph-item:first-child .our-audiences__graph-text {
  background-color: #09A6F3;
  max-width: 61%;
}
.our-audiences__graph-col:nth-child(3) .our-audiences__graph-item:nth-child(2) .our-audiences__graph-icon {
  background-color: #08B7F6;
}
.our-audiences__graph-col:nth-child(3) .our-audiences__graph-item:nth-child(2) .our-audiences__graph-text {
  background-color: #08B7F6;
  max-width: 54.5%;
}
.our-audiences__graph-col:nth-child(3) .our-audiences__graph-item:nth-child(3) .our-audiences__graph-icon {
  background-color: #07C8F9;
}
.our-audiences__graph-col:nth-child(3) .our-audiences__graph-item:nth-child(3) .our-audiences__graph-text {
  background-color: #07C8F9;
  max-width: 47.5%;
}
.our-audiences__graph-item {
  margin-bottom: 38px;
}
.our-audiences__graph-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 4px 57px;
}
@media screen and (max-width: 600px) {
  .our-audiences__graph-title {
    font-size: 16px;
  }
}
.our-audiences__graph-wrapper {
  width: 100%;
  height: 44px;
  position: relative;
  background-color: #EFEFEF;
  border-radius: 40px;
}
.our-audiences__graph-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 8px solid #fff;
  left: -9px;
  top: 50%;
  margin-top: -36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0D41E1;
}
.our-audiences__graph-text {
  width: 100%;
  height: 100%;
  background-color: #0D41E1;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 28px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  min-width: 164px;
}
@media screen and (max-width: 600px) {
  .our-audiences__graph-text {
    padding-right: 22px;
    min-width: 158px;
  }
}
.our-audiences__cta-btn {
  padding: 19px 21px;
  margin: 25px auto 0 auto;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(67.71deg, #EE3124 0%, #FAAA23 71.97%);
  display: flex;
  gap: 16px;
  border-radius: 100px;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .our-audiences__cta-btn {
    font-size: 14px;
    padding: 15px 40px;
    margin: 8px auto 0 auto;
    text-align: center;
  }
}
.our-audiences__cta-btn span:has(svg) {
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .our-audiences__cta-btn span:has(svg) {
    display: none;
  }
}
.our-audiences__cta-btn:hover {
  opacity: 0.9;
}
.our-audiences__cta-btn:hover span:has(svg) {
  transform: translateX(5px);
}

.reviews-tabs-section {
  background-color: #E8F6FF;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .reviews-tabs-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .reviews-tabs-section {
    padding: 50px 0;
  }
}
.reviews-tabs-section h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 auto;
  max-width: 741px;
}
@media screen and (max-width: 768px) {
  .reviews-tabs-section h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .reviews-tabs-section h2 {
    font-size: 26px;
    line-height: 115%;
  }
}
@media screen and (max-width: 425px) {
  .reviews-tabs-section h2 {
    max-width: 300px;
  }
}

.our-reviews__subheading {
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
  color: var(--text-color);
  max-width: 620px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1024px) {
  .our-reviews__subheading {
    margin-bottom: 38px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .our-reviews__subheading {
    line-height: 1.25;
    margin-bottom: 31px;
  }
}
.our-reviews__tabs {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 47px;
}
@media screen and (max-width: 480px) {
  .our-reviews__tabs {
    margin-top: 49px;
  }
}
.our-reviews__tabs-header {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid rgba(28, 60, 112, 0.25);
}
@media screen and (max-width: 600px) {
  .our-reviews__tabs-header {
    justify-content: center;
  }
}
.our-reviews__tabs-item {
  min-width: 133px;
  height: 68px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.our-reviews__tabs-item:has(img) {
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .our-reviews__tabs-item {
    height: 66px;
  }
}
@media screen and (max-width: 600px) {
  .our-reviews__tabs-item {
    min-width: unset;
    flex: 1;
  }
}
.our-reviews__tabs-item:after {
  content: "";
  position: absolute;
  top: 100%;
  height: 2px;
  width: 100%;
  background-color: var(--navy);
  opacity: 0;
  transition: opacity 0.3s;
}
.our-reviews__tabs-item.active:after {
  opacity: 1;
}
.our-reviews__tabs-item.active .our-reviews__tabs-title {
  color: var(--navy);
}
.our-reviews__tabs-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text-color);
}
@media screen and (max-width: 1024px) {
  .our-reviews__tabs-title {
    font-size: 16px;
  }
}
.our-reviews__tabs-icon {
  width: 24px;
}
.our-reviews__tabs-content {
  padding: 32px 32px 38px;
}
@media screen and (max-width: 992px) {
  .our-reviews__tabs-content {
    max-width: 560px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .our-reviews__tabs-content {
    padding: 32px 0 38px;
  }
}
.our-reviews .swiper {
  --swiper-navigation-mt: 40px;
  height: calc(100% - 112px);
}
.our-reviews .swiper__navigation {
  width: 100%;
  max-width: 168px;
  position: relative;
  justify-content: space-between;
  display: flex;
  margin: 41px auto 0 auto;
}
.our-reviews .swiper__navigation .swiper-pagination {
  position: absolute;
  top: 1px;
  height: fit-content;
}
.our-reviews .swiper-btn__prev {
  transform: rotate(180deg);
  display: flex;
  align-items: flex-end;
}
.our-reviews .swiper-btn__next {
  display: flex;
  align-items: flex-start;
}
.our-reviews .swiper.swiper-backface-hidden .swiper-pagination {
  position: absolute;
  top: 0;
  height: fit-content;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .our-reviews .swiper {
    --swiper-navigation-mt: 43px;
  }
}
.our-reviews .swiper .swiper-slide {
  height: auto;
}
.our-reviews .swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: rgba(28, 60, 112, 0.3);
  --swiper-pagination-color: var(--navy);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  flex-shrink: 0;
  border-radius: 20px;
  transition: background-color 0.3s;
}
@media (min-width: 1025px) {
  .our-reviews .swiper-pagination-bullet:hover {
    background-color: rgba(28, 60, 112, 0.79);
  }
}
.our-reviews .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
}
.our-reviews__btn {
  --btn-padding: 12px 16px;
  --button-max-width: 317px;
  --font-color: white;
  --background-color-hover: #FE8836;
  --background-color-before-hover: #FE6000;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .our-reviews__btn {
    --button-max-width: 317px;
  }
}

.our-review__item {
  background-color: #fff;
  border-radius: 20px;
  cursor: grab;
  min-height: 312px;
  padding: 30px 32px 37px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .our-review__item {
    padding: 31px;
  }
}
.our-review__item.d-none {
  display: none;
}
.our-review__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-color);
  margin: 0 0 20px;
}
@media screen and (max-width: 1024px) {
  .our-review__title {
    font-size: 18px;
    line-height: 1.3;
  }
}
.our-review__description {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .our-review__description {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .our-review__description {
    margin-bottom: 15px;
  }
}
.our-review__description-text {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.our-review__description-more {
  text-decoration: underline;
  color: var(--Light-Blue);
  white-space: nowrap;
  display: inline-block;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1024px) {
  .our-review__description-more:hover {
    opacity: 0.8;
  }
}
.our-review__reviewer {
  font-size: 16px;
  line-height: 1.25;
  color: var(--text-color);
  margin-top: auto;
  display: grid;
  column-gap: 20px;
  grid-template-columns: 83px auto;
  position: relative;
}
@media screen and (max-width: 416px) {
  .our-review__reviewer {
    display: block;
  }
}
.our-review__reviewer-avatar {
  border-radius: 50%;
  width: 83px;
  height: 83px;
  overflow: hidden;
  grid-row: 1/4;
  align-self: center;
}
@media screen and (max-width: 416px) {
  .our-review__reviewer-avatar {
    margin-bottom: 5px;
  }
}
.our-review__reviewer-avatar img {
  max-width: 100%;
  height: auto;
}
.our-review__reviewer-info {
  margin: 0 0 5px;
  grid-row: 1/2;
}
.our-review__reviewer-info strong {
  font-weight: 700;
}
.our-review__reviewer-company {
  margin: 0;
  grid-row: 2/3;
}
.our-review__ratings {
  margin-top: 18px;
  grid-row: 3/4;
}
.our-review__ratings .rating-container {
  --star-color: #e5e5e5;
  --star-fill-color: var(--Orange);
  --star-size: 28px;
  display: flex;
  align-items: center;
  margin-left: -3px;
}
@media screen and (max-width: 600px) {
  .our-review__ratings .rating-container {
    --star-size: 20px;
    margin-left: 0;
  }
}
.our-review__ratings .stars {
  display: inline-block;
  position: relative;
  font-size: 0;
}
.our-review__ratings .stars-background {
  display: inline-block;
}
.our-review__ratings .stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: var(--rating);
}
.our-review__ratings .star {
  display: inline-block;
  width: var(--star-size);
  height: var(--star-size);
  padding: 0;
  margin: 0;
  margin-right: 1px;
}
.our-review__ratings .star-bg {
  fill: var(--star-color);
  stroke: none;
  stroke-width: 1px;
}
.our-review__ratings .star-fill {
  fill: var(--star-fill-color);
  stroke: none;
  stroke-width: 1px;
}
.our-review__rate {
  --rate-cut: 0%;
  margin: 0 4px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .our-review__rate {
    margin: 0;
  }
}
.our-review__rate svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 600px) {
  .our-review__rate svg {
    width: 13px;
    height: 13px;
  }
}
.our-review__rate-in {
  --rate-bg: #DDDDE2;
  display: flex;
  gap: 6px;
  transform: skewX(-23deg);
  padding: 0 3px;
  position: relative;
}
.our-review__rate-in--r {
  --rate-bg: #00B2A3;
  clip-path: inset(0 var(--rate-cut) 0 0);
  position: absolute;
  left: 0;
  top: 0;
}
.our-review__rate-in--s {
  --rate-bg: transparent;
  transform: none;
  position: absolute;
  left: 0;
  top: 0;
}
.our-review__rate-item {
  background-color: var(--rate-bg);
  border-radius: 3px;
  width: 23px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .our-review__rate-item {
    width: 17px;
    height: 19px;
  }
}
.our-review__cat-logo {
  position: absolute;
  bottom: -8px;
  right: 0;
}
@media screen and (max-width: 600px) {
  .our-review__cat-logo {
    bottom: -5px;
  }
}
@media screen and (max-width: 600px) {
  .our-review__cat-logo img {
    width: 28px;
    height: auto;
  }
}

.bottom-cta {
  padding: 100px 0;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .bottom-cta {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta {
    padding: 52px 0;
  }
}
.bottom-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .bottom-cta__inner {
    flex-direction: column;
    align-items: center;
  }
}
.bottom-cta__col {
  width: 100%;
}
.bottom-cta__col h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 auto;
  margin: 0 0 30px 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .bottom-cta__col h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col h2 {
    font-size: 26px;
    line-height: 115%;
  }
}
@media screen and (max-width: 1280px) {
  .bottom-cta__col h2 {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col h2 {
    margin: 0 0 20px 0;
  }
}
.bottom-cta__col:first-child {
  max-width: 600px;
}
@media screen and (max-width: 1280px) {
  .bottom-cta__col:first-child {
    max-width: 100%;
    text-align: center;
  }
}
.bottom-cta__col:last-child {
  max-width: 770px;
  display: flex;
  padding-top: 39px;
  justify-content: space-between;
  gap: 3px;
}
@media screen and (max-width: 820px) {
  .bottom-cta__col:last-child {
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col:last-child {
    padding-top: 10px;
  }
}
.bottom-cta__col:last-child a:has(svg) {
  transition: 0.2s;
}
.bottom-cta__col:last-child a:has(svg) svg {
  transition: 0.2s;
}
.bottom-cta__col:last-child a:has(svg):hover svg {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .bottom-cta__col:last-child a:has(svg):nth-child(1) svg {
    width: 76px;
    height: 75px;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col:last-child a:has(svg):nth-child(2) svg {
    width: 76px;
    height: 75px;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col:last-child a:has(svg):nth-child(3) svg {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col:last-child a:has(svg):nth-child(4) svg {
    width: 60px;
    height: 76px;
  }
}
.bottom-cta__col-icons {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 820px) {
  .bottom-cta__col-icons {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__col-icons {
    gap: 7px;
  }
}
.bottom-cta__sub {
  font-size: 18px;
  line-height: 130%;
  color: var(--text-color);
}
@media screen and (max-width: 600px) {
  .bottom-cta__sub {
    font-size: 16px;
    line-height: 115%;
  }
}
@media screen and (max-width: 425px) {
  .bottom-cta__sub {
    max-width: 290px;
    margin: 0 auto;
  }
}
.bottom-cta__cta-btn {
  padding: 19px;
  margin: 30px 0 0 0;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(67.71deg, #EE3124 0%, #FAAA23 71.97%);
  display: flex;
  gap: 16px;
  border-radius: 100px;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .bottom-cta__cta-btn {
    margin: 30px auto 0 auto;
  }
}
@media screen and (max-width: 425px) {
  .bottom-cta__cta-btn {
    margin: 20px auto 0 auto;
    max-width: 308px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.bottom-cta__cta-btn span:has(svg) {
  transition: 0.2s;
}
.bottom-cta__cta-btn:hover {
  opacity: 0.9;
}
.bottom-cta__cta-btn:hover span:has(svg) {
  transform: translateX(5px);
}
.bottom-cta__info {
  margin: -8px 0 0 -12px;
}
@media screen and (max-width: 1440px) {
  .bottom-cta__info {
    margin-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .bottom-cta__info {
    width: 100%;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .bottom-cta__info {
    margin: 18px auto 0 auto;
  }
}
.bottom-cta__stars {
  width: 234px;
  flex-shrink: 0;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 425px) {
  .bottom-cta__stars {
    margin: 0 0 1px -13px;
  }
}
.bottom-cta__stars p {
  font-weight: 800;
  font-size: 45px;
  margin: 0 10px 0 0;
  color: var(--navy);
}
@media screen and (max-width: 425px) {
  .bottom-cta__stars p {
    margin: 0 0 0 18px;
  }
}
.bottom-cta__stars-wrap {
  display: flex;
  gap: 8px;
  margin: 0 0 -6px 0;
}
@media screen and (max-width: 425px) {
  .bottom-cta__stars-wrap {
    margin: 0 0 -7px 9px;
  }
}
.bottom-cta__stars-wrap img {
  width: 24px;
  height: 24px;
}
.bottom-cta__stars-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
@media screen and (max-width: 425px) {
  .bottom-cta__stars-text {
    margin: 0 0 0 22px;
  }
}
@media screen and (max-width: 820px) {
  .bottom-cta__stars-text br {
    display: none;
  }
}

.our-accolades {
  padding: 90px 0 94px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .our-accolades {
    padding: 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .our-accolades {
    padding: 53px 0 60px 0;
  }
}
.our-accolades h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .our-accolades h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 600px) {
  .our-accolades h2 {
    font-size: 26px;
    line-height: 115%;
  }
}
.our-accolades__wrapper-flexbox {
  margin: 40px 0 54px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .our-accolades__wrapper-flexbox {
    margin: 34px 0 0;
  }
}
.our-accolades__wrapper-flexbox .our-accolades__item {
  animation: marquee-scroll-accolades 90s linear infinite;
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: stretch;
  gap: 20px;
}
.our-accolades__wrapper-flexbox .our-accolades__item-wrap {
  border-radius: 20px;
  background: var(--light-grey);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  padding: 48px 41px;
}
@media screen and (max-width: 600px) {
  .our-accolades__wrapper-flexbox .our-accolades__item-wrap {
    height: 90px;
    padding: 0 22px;
  }
}
.our-accolades__wrapper-flexbox .our-accolades__item-wrap svg,
.our-accolades__wrapper-flexbox .our-accolades__item-wrap img {
  width: auto;
  max-height: 70px;
}
@media screen and (max-width: 600px) {
  .our-accolades__wrapper-flexbox .our-accolades__item-wrap svg,
  .our-accolades__wrapper-flexbox .our-accolades__item-wrap img {
    max-height: 64px;
  }
}
.our-accolades-links {
  max-width: fit-content;
  padding: 16px 38px;
  --background-color-hover: #fe8836;
  --background-color-before-hover: #fe6000;
  --font-color: #fff;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

@keyframes marquee-scroll-accolades {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
.gradient-awards-logos, .global-svg-sprite {
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  z-index: -3;
}

.footer {
  background-color: #0c2145;
  position: relative;
  overflow: hidden;
}
.footer .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1440px) {
  .footer .container {
    max-width: 1231px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .container {
    max-width: 926px;
  }
}
@media screen and (max-width: 768px) {
  .footer .container {
    padding: 0 20px;
  }
}
.footer-left {
  grid-area: footer-left;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer-left .skewed-element {
    height: 127px;
    right: 40px;
  }
}
@media screen and (max-width: 425px) {
  .footer-left .footer-logo-logotype {
    padding: 23px 0 20px 11px;
  }
}
@media screen and (max-width: 1440px) {
  .footer-left .footer-logo-logotype img {
    max-width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .footer-left .footer-logo-logotype img {
    max-width: 125px;
  }
}
@media screen and (max-width: 799px) {
  .footer-left .footer-logo-logotype img {
    max-width: 110px;
  }
}
@media screen and (max-width: 425px) {
  .footer-left .footer-logo-logotype img {
    max-width: 98px;
  }
}
.footer-center {
  grid-area: footer-center;
  padding: 40px 14px 20px 0;
  width: 100%;
  display: flex;
  margin-left: -81px;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .footer-center {
    margin-left: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-center {
    max-width: 605px;
    padding: 25px 0 0 0;
    margin: 0 0 40px 0;
  }
}
@media screen and (max-width: 799px) {
  .footer-center {
    max-width: 100%;
    margin-top: 83px;
  }
}
@media screen and (max-width: 425px) {
  .footer-center {
    flex-direction: column;
    margin-top: 91px;
    padding-left: 9px;
  }
}
.footer-center .footer__desktop--menu-links {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1440px) {
  .footer-center .footer__desktop--menu-links {
    column-gap: 60px;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column li {
  width: 100%;
  margin-bottom: 20px;
  max-width: 100%;
  break-inside: avoid;
  list-style: none;
  font-size: 20px;
  line-height: 125%;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column li {
    margin-bottom: 20px;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column li .sub-menu-structure {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  padding: 0;
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li {
    margin-bottom: 0;
    max-width: unset;
    padding-bottom: 12px;
    width: 100%;
    margin-top: 15px;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li > a {
  color: var(--White, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s;
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li > a:after {
    content: "";
    width: 100%;
    height: 2px;
    background: hsla(0, 0%, 100%, 0.17);
    position: absolute;
    left: 0;
    top: 36px;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li > a:hover {
  color: #bfbfbf;
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children {
  max-width: 218px;
  width: 100%;
  margin-bottom: 26px;
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children {
    max-width: 100%;
  }
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children {
    position: relative;
  }
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/wp-content/themes/infuse-main/assets/images/global/chevron-up.svg");
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 1px;
    top: 0;
    background-color: transparent;
    transform: rotate(180deg);
    transition: 0.2s;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu {
  padding: 14px 0 0 0;
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu {
    overflow: hidden;
    max-height: 1px;
    padding: 0;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu > li {
  margin-bottom: 3px;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu > li {
    margin-bottom: 3px;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu > li:before {
  display: none;
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu > li > a {
  color: var(--White, #ffffff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: 0.2s;
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children .sub-menu > li > a:hover {
  color: #bfbfbf;
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children.active:after {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column > li.menu-item-has-children.active .sub-menu {
    max-height: fit-content;
    padding: 27px 0 0 0;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column:first-child {
  max-width: 204px;
}
@media screen and (max-width: 1440px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:first-child {
    max-width: fit-content;
  }
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:first-child {
    max-width: 100%;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child {
  max-width: 425px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media screen and (max-width: 1440px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child {
    max-width: unset;
    column-gap: 86px;
  }
}
@media screen and (max-width: 1251px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child {
    column-gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child {
    max-width: 100%;
    column-gap: 35%;
  }
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child {
    flex-direction: column;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child li {
  margin-bottom: 21px;
  max-width: 170px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child li {
    max-width: fit-content;
  }
}
@media screen and (max-width: 799px) {
  .footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child li {
    max-width: 100%;
    border-bottom: 0;
    margin-bottom: 0;
  }
}
.footer-center .footer__desktop--menu-links .footer__desktop--menu-column:last-child li ul.sub-menu {
  width: 100%;
}
.footer-badge-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 451px;
  width: 100%;
}
.footer-badges {
  width: 100%;
  max-width: 989px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  grid-area: footer-badges;
}
@media screen and (max-width: 1440px) {
  .footer-badges {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .footer-badges {
    justify-content: unset;
    row-gap: 7px;
  }
}
@media screen and (max-width: 992px) {
  .footer-badges {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
@media screen and (max-width: 425px) {
  .footer-badges {
    padding: 6px 0 0 11px;
  }
}
.footer-badges a {
  font-size: 0;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.footer-badges a:not(:last-child) {
  margin-right: 10px;
}
.footer-badges a:hover {
  opacity: 0.65;
}
@media screen and (max-width: 1024px) {
  .footer-badges a {
    max-width: 62px;
  }
}
@media screen and (max-width: 799px) {
  .footer-badges a {
    max-width: 57px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-badges svg {
    max-height: 60px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer-badges svg {
    max-height: 56px;
  }
}
.footer-badges img {
  width: auto;
}
.footer-bottom {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 0 10px 25px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}
@media screen and (max-width: 1440px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 23px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-bottom {
    padding: 18px 11px 32px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 425px) {
  .footer-bottom {
    padding: 28px 11px 22px;
    margin-top: 0;
  }
}
.footer-right {
  align-items: center;
  display: flex;
  flex-direction: column;
  grid-area: footer-right;
  padding: 62px 0 20px;
  position: relative;
  width: 100%;
}
.footer-right__form {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer-right {
    max-width: 320px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-right {
    max-width: 100%;
    padding: 0 0 30px 0;
  }
}
.footer-form {
  max-width: 318px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer-form {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .footer-form {
    max-width: 100%;
  }
}
.footer-form__title {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer-form__title {
    align-self: center;
    margin-top: 32px;
  }
}
@media screen and (max-width: 799px) {
  .footer-form__title {
    margin-top: 26px;
    font-size: 20px;
    margin-bottom: 17px;
  }
}
.footer .footer-social-wrapper {
  margin: 0 0 0 27.7%;
  padding: 11px 0 0 0;
}
@media screen and (max-width: 1440px) {
  .footer .footer-social-wrapper {
    margin: 0 0 0 20%;
  }
}
@media screen and (max-width: 425px) {
  .footer .footer-social-wrapper {
    margin: 0;
    padding: 7px 0 0 2px;
  }
}
.footer .footer-social-wrapper a {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: 0.2s;
}
.footer .footer-social-wrapper a:hover {
  opacity: 0.8;
}
.footer-address {
  margin: 14px 0 0;
}
@media screen and (max-width: 425px) {
  .footer-address {
    margin: 15px 0 11px 0;
  }
}
.footer-address a {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.footer-address p {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  margin: 22px 0 0;
}
@media screen and (max-width: 425px) {
  .footer-address p {
    max-width: 220px;
    font-weight: 300;
    line-height: 18px;
  }
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 19px;
  gap: 7px;
}
@media screen and (max-width: 425px) {
  .footer-social {
    margin-top: 7px;
    gap: 0;
  }
}
.footer-social-icon {
  fill: #fff;
  transition: fill 0.3s;
}
.footer-social a {
  width: 41px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  transition: 0.3s;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social a:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 425px) {
  .footer-social a {
    width: 30px;
    height: 30px;
  }
}
.footer-social a.footer-social-link_orange {
  background: var(--Orange, #fe8836);
  border-color: var(--Orange, #fe8836);
}
.footer-social a.footer-social-link_orange:hover {
  background-color: rgba(10, 39, 64, 0);
}
.footer-social a.footer-social-link_orange:hover .footer-social-icon {
  fill: var(--Orange, #fe8836);
}
.footer-social a.footer-social-link_green {
  background: #0caa41;
  border-color: #0caa41;
}
.footer-social a.footer-social-link_green:hover {
  background-color: rgba(10, 39, 64, 0);
}
.footer-social a.footer-social-link_green:hover .footer-social-icon {
  fill: #0caa41;
}
.footer-info {
  max-width: 215px;
  padding-left: 2px;
}
.footer-info > a {
  color: var(--White, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}
.footer-info-wrapper {
  display: flex;
}
@media screen and (max-width: 799px) {
  .footer-info-wrapper {
    flex-direction: column;
  }
}
.footer-info-wrapper > a {
  color: var(--White, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  margin-right: 21px;
}
.footer-info-wrapper .footer-info-tel-mobile {
  font-weight: 400;
  font-size: 14px;
  margin-right: 0;
}
@media screen and (max-width: 799px) {
  .footer-info-wrapper .footer-info-tel-mobile {
    margin-top: 13px;
  }
}
@media screen and (max-width: 425px) {
  .footer-info-wrapper .footer-info-tel-mobile {
    line-height: 15px;
  }
}
@media screen and (max-width: 425px) {
  .footer-address-tel {
    display: none;
  }
}
.footer-info-tel-mobile {
  display: none;
}
@media screen and (max-width: 425px) {
  .footer-info-tel-mobile {
    display: block;
  }
}
.footer-flex__container {
  display: flex;
  flex-direction: column;
}
.footer-top {
  display: grid;
  grid-template-columns: 11fr 15fr 7fr;
  grid-template-rows: auto auto;
  grid-template-areas: "footer-left footer-center footer-right" "footer-left footer-badges footer-right";
}
@media screen and (max-width: 1440px) {
  .footer-top {
    grid-template-columns: 7fr 15fr 8fr;
  }
}
@media screen and (max-width: 1024px) {
  .footer-top {
    grid-template-areas: "footer-left footer-center footer-center" "footer-left footer-right footer-right" "footer-badges footer-right footer-right";
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (max-width: 799px) {
  .footer-top {
    grid-template-areas: "footer-center" "footer-left" "footer-right" "footer-badges";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
.footer-logo {
  position: relative;
}
@media screen and (max-width: 799px) {
  .footer-logo {
    position: unset;
  }
}
.footer-logo-logotype {
  position: relative;
  z-index: 1;
  padding: 29px 0 20px 18px;
}
@media screen and (max-width: 1074px) {
  .footer-logo-logotype {
    padding: 29px 0 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo-logotype {
    padding: 34px 0 20px 0;
  }
}
@media screen and (max-width: 799px) {
  .footer-logo-logotype {
    padding: 30px 0;
    position: absolute;
    top: 0;
  }
  .footer-logo-logotype a {
    width: 134px;
    height: auto;
    display: inline-block;
  }
  .footer-logo-logotype a img {
    width: 100%;
    height: auto;
  }
}
.footer-logo .skewed-element {
  transform: skewX(-34deg);
  right: 38%;
  position: absolute;
  top: -1px;
  background: #fff;
  border-radius: 0 0 20px;
  bottom: 0;
  width: 100vw;
  z-index: 0;
  height: 133px;
}
@media screen and (max-width: 1440px) {
  .footer-logo .skewed-element {
    right: 66px;
    top: -7px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo .skewed-element {
    right: 40%;
    top: -24px;
  }
}
@media screen and (max-width: 850px) {
  .footer-logo .skewed-element {
    right: 32%;
  }
}
@media screen and (max-width: 799px) {
  .footer-logo .skewed-element {
    width: 225px;
    left: -35px;
    top: -36px;
    right: unset;
  }
}
@media screen and (max-width: 425px) {
  .footer-logo .skewed-element {
    left: -36px;
    top: -54px;
  }
}
.footer__privacy--menu-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.footer__privacy--menu-links li {
  position: relative;
}
.footer__privacy--menu-links li a {
  color: #86949f;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  text-decoration: none;
}
.footer__privacy--menu-links li:first-child {
  margin-right: 9px;
}
.footer__privacy--menu-links li:first-child:after {
  position: absolute;
  content: "-";
  width: 3px;
  color: #86949f;
  height: 1px;
  right: -5px;
}
.footer-copyright {
  display: flex;
  flex-direction: row;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-copyright {
    padding-top: 0;
  }
}
@media screen and (max-width: 769px) {
  .footer-copyright {
    flex-wrap: wrap;
  }
}
.footer-copyright p {
  margin: 0;
  color: var(--White, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer-copyright-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 769px) {
  .footer-copyright-menu {
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 450px) {
  .footer-copyright-menu {
    margin-top: 9px;
  }
}
@media screen and (max-width: 425px) {
  .footer-copyright-menu {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.footer-copyright-menu li.menu-item {
  margin-right: 29px;
}
.footer-copyright-menu li.menu-item a {
  color: #bfbfbf;
  font-family: Asap, sans-serif;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}
.footer-copyright-menu li.menu-item a:hover {
  color: #fff;
}
@media screen and (max-width: 1460px) {
  .footer-copyright-menu li.menu-item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .footer-copyright-menu li.menu-item {
    margin-right: 22px;
  }
}
@media screen and (max-width: 417px) {
  .footer-copyright-menu li.menu-item {
    margin-bottom: 10px;
  }
}
.footer-copyright-menu li.menu-item:last-child {
  margin-right: 0;
}
.footer-copyright-menu-item {
  color: #bfbfbf;
  text-decoration: none;
  font-family: Asap, sans-serif;
  margin-right: 28px;
  font-size: 14px;
}
@media screen and (max-width: 1460px) {
  .footer-copyright-menu-item {
    margin-right: 10px;
  }
}
.footer-copyright-menu-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1250px) {
  .footer-flex__container {
    flex-direction: column;
  }
  .footer .footer-center .footer__desktop--menu-links {
    row-gap: 23px;
    flex-wrap: nowrap;
    column-gap: 17%;
  }
}
@media screen and (max-width: 1250px) and (max-width: 1024px) {
  .footer .footer-center .footer__desktop--menu-links {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1250px) and (max-width: 799px) {
  .footer .footer-center .footer__desktop--menu-links {
    flex-direction: column;
    row-gap: 0;
  }
}
@media screen and (max-width: 1250px) {
  .footer .footer-center .footer__desktop--menu-links > li:not(.menu-item-has-children) {
    margin-right: 0;
    max-width: 50%;
    width: 100%;
  }
  .footer .footer-center .footer__desktop--menu-links > li.menu-item-has-children {
    max-width: 50%;
    width: 100%;
  }
  .footer .footer-center .footer__desktop--menu-links > li.menu-item-has-children .sub-menu li {
    max-width: 100%;
  }
}
.cmplz-btn:not(.cmplz-show) {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 1;
  transition: 0.5s;
  color: var(--font-color, #fe8836);
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  max-width: var(--button-max-width, 256px);
}
.cmplz-btn:not(.cmplz-show):before {
  background: var(--background-color-before-hover, #ffffff);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 100px;
}
.cmplz-btn:not(.cmplz-show):after {
  content: "";
  position: absolute;
  background: var(--background-color-hover, #fe8836);
  z-index: -1;
  border-radius: 100%;
  transition: 0.5s;
  width: 100%;
  height: 256px;
  top: 100%;
}
.cmplz-btn:not(.cmplz-show):hover {
  color: var(--font-color-hover, #ffffff);
}
.cmplz-btn:not(.cmplz-show):hover:after {
  top: -102.4px;
}

.cmplz-btn.cmplz-accept:before {
  display: none;
}
.cmplz-btn.cmplz-accept:after {
  background: #fe7136 !important;
}

.cmplz-btn.cmplz-deny:hover {
  color: #fff !important;
  border: 1px solid #1c3c70 !important;
}
.cmplz-btn.cmplz-deny:after {
  left: 0;
  background: #1c3c70 !important;
}

.cmplz-btn.cmplz-view-preferences:hover {
  color: #fff !important;
}
.cmplz-btn.cmplz-view-preferences:after {
  left: 0;
  background: #fe7136 !important;
}

@media screen and (max-width: 510px) {
  .cmplz-btn.cmplz-save-preferences {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 425px) {
  .cmplz-btn.cmplz-save-preferences {
    font-size: 16px !important;
  }
}
.cmplz-btn.cmplz-save-preferences:hover {
  color: #fff !important;
}
.cmplz-btn.cmplz-save-preferences:after {
  left: 0;
  background: #fe7136 !important;
}

.cmplz-btn.cmplz-hidden:before {
  display: none;
}
.cmplz-btn.cmplz-hidden:after {
  display: none;
}