header {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 111111;
}
header .header__union {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1280px;
  margin: 0 auto;
  padding: 20px 0px;
}
@media (max-width: 1300px) {
  header .header__union {
    width: 95%;
  }
}
header .header__union:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  height: 1px;
}
header .header__union .header__logo {
  width: 100.488px;
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header__union .header__logo_fixed {
  display: none;
}
header .header__union ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  header .header__union ul {
    display: none;
  }
}
header .header__union ul li {
  position: relative;
}
header .header__union ul li a {
  position: relative;
  margin: 0 35px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 1280px) {
  header .header__union ul li a {
    margin: 0 20px;
  }
}
header .header__union ul li a:after {
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  content: "";
  transition: width 0.3s ease-out;
}
header .header__union ul li a:hover:after, header .header__union ul li a:focus:after {
  width: 100%;
}
header .header__union ul li:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: inherit;
}
header .header__union .menu-item-has-children {
  position: relative;
}
header .header__union .menu-item-has-children:after {
  position: absolute;
  content: "";
  left: 0;
  top: -5px;
  background: transparent;
  width: 100%;
  height: 62px;
  cursor: pointer;
  z-index: 11;
}
header .header__union .menu-item-has-children a:after {
  display: none;
}
header .header__union .menu-item-has-children:before {
  position: absolute;
  content: "";
  right: 21px;
  top: 11px;
  width: 8px;
  height: 6px;
  background: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.6s all;
}
header .header__union .menu-item-has-children .sub-menu {
  position: absolute;
  left: 0;
  top: 31px;
  border-radius: 30px;
  background: linear-gradient(270deg, #f3f6fa 0%, #fff 50%);
  background: #fff;
  padding: 28px 35px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 330px;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  visibility: hidden;
}
header .header__union .menu-item-has-children .sub-menu li {
  margin-bottom: 18px;
}
header .header__union .menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
header .header__union .menu-item-has-children .sub-menu li a {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
header .header__union .menu-item-has-children .sub-menu li a:after {
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #192941;
  content: "";
  transition: width 0.3s ease-out;
}
header .header__union .menu-item-has-children .sub-menu li a:hover:after, header .header__union .menu-item-has-children .sub-menu li a:focus:after {
  width: 100%;
}
header .header__union .menu-item-has-children:hover:before {
  transform: rotate(180deg);
}
header .header__union .menu-item-title-industries-transformation:after {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  background: transparent;
  width: 100%;
  height: 62px;
  cursor: pointer;
  z-index: 11;
}
header .header__union .menu-item-title-industries-transformation a:after {
  display: none;
}
header .header__union .menu-item-title-industries-transformation:before {
  position: absolute;
  content: "";
  right: 21px;
  top: 11px;
  width: 8px;
  height: 6px;
  background: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.6s all;
}
header .header__union .menu-item-title-industries-transformation:hover .sub-menu-box {
  opacity: 1;
  transform: translateY(0);
  visibility: inherit;
}
header .header__union .menu-item-title-industries-transformation:hover:before {
  transform: rotate(180deg);
}
header .header__union .header__button {
  color: #1c3050;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.6px;
  width: 150px;
  height: 42px;
  border-radius: 90px;
  background: #fff;
  transition: 0.6s all;
  cursor: pointer;
}
@media (max-width: 990px) {
  header .header__union .header__button {
    display: none;
  }
}
header .header__union .header__button:hover {
  color: #fff;
  background: #efa057;
}
header .header__union .header__mobile_button {
  cursor: pointer;
}
@media (min-width: 991px) {
  header .header__union .header__mobile_button {
    display: none;
  }
}
header .sub-menu-box {
  position: absolute;
  left: -498px;
  top: 34px;
  box-shadow: 0px 10px 40px 0px rgba(130, 146, 169, 0.15);
  border-radius: 30px;
  width: 1280px;
  display: flex;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  visibility: hidden;
}
@media (max-width: 990px) {
  header .sub-menu-box {
    display: none;
  }
}
header .sub-menu-box .menu__left {
  width: 37%;
  background: #fff;
  padding: 30px;
  padding-left: 30px;
  padding-right: 20px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
header .sub-menu-box .menu__left .menu__item {
  cursor: pointer;
  border-radius: 20px;
  padding: 10px 30px;
  margin-bottom: 3px;
}
header .sub-menu-box .menu__left .menu__item:hover {
  background: #fdf1e6;
}
header .sub-menu-box .menu__left .menu__item .menu__title {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
header .sub-menu-box .menu__left .menu__item .menu__description {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  margin-top: 8px;
}
header .sub-menu-box .menu__left .menu__item_active {
  background: #fdf1e6;
}
header .sub-menu-box .menu__boxes {
  background: #f3f6fa;
  width: 63%;
  padding: 20px 40px;
  padding-top: 38px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
header .sub-menu-box .menu__boxes .menu__box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
header .sub-menu-box .menu__boxes .menu__box ul li {
  width: 30%;
  margin-bottom: 27px;
  margin-right: 24px;
  text-align: left;
}
header .sub-menu-box .menu__boxes .menu__box ul li a {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  cursor: pointer;
  margin-left: 0;
  text-align: left;
}
header .sub-menu-box .menu__boxes .menu__box ul li a:hover {
  color: #efa057;
}
header .sub-menu-box .menu__boxes .menu__box .menu__link_main {
  position: absolute;
  bottom: 50px;
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-right: 12px;
  margin-top: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 0px;
}
header .sub-menu-box .menu__boxes .menu__box .menu__link_main svg {
  margin-left: 10px;
}
header .sub-menu-box .menu__boxes .menu__box .menu__link_main:hover {
  transition: 0.6s all;
  color: #efa057;
}
header .sub-menu-box .menu__boxes .menu__box .menu__link_main:hover svg {
  transform: rotate(45deg);
}
header .sub-menu-box .menu__boxes .menu__box_2 {
  display: none;
}
header .sub-menu-box .menu__boxes .menu__box_3 {
  display: none;
}
header .header__mobile_menu {
  position: absolute;
  left: 0;
  top: 0;
  background: #192941;
  width: 100%;
  height: 100vh;
  display: none;
}
header .header__mobile_menu .menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  padding-bottom: 5px;
}
header .header__mobile_menu .menu__header .menu__logo {
  width: 99.2px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header__mobile_menu .menu__header .menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  header .header__mobile_menu .menu__body .sub-menu {
    display: none;
  }
}
header .header__mobile_menu .menu__body ul li a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Reddit Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: block;
  text-align: center;
}
header .header__mobile_menu .menu__body ul li a:after {
  position: absolute;
  content: "";
  right: 8px;
  top: 30px;
  background: url(../img/arrow-right.svg);
  background-size: contain;
  width: 20px;
  height: 15px;
  background-repeat: no-repeat;
}
header .header__mobile_menu .menu__body .header__button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 58px;
  border-radius: 90px;
  background: #efa057;
  width: 260px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
header .header__mobile_menu .menu__body .header__button span {
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 12px;
}
header .header__mobile_menu .menu__body .header__button span svg {
  width: 10.8px;
  height: 9px;
}
header .header__mobile_menu .menu__inside {
  position: absolute;
  top: 0;
  left: 0px;
  background: #fff;
  width: 100%;
  height: 100vh;
  display: none;
}
header .header__mobile_menu .menu__inside .menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  padding-bottom: 5px;
}
header .header__mobile_menu .menu__inside .menu__header .menu__title {
  color: #efa057;
  font-family: "Reddit Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
header .header__mobile_menu .menu__inside .menu__header .menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header__mobile_menu .menu__inside .menu__body {
  margin-top: 10px;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item {
  padding: 20px 15px;
  margin: 0px 5px;
  border-bottom: 1px solid rgba(28, 48, 80, 0.15);
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__title {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__description {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__content {
  border-top: 1px solid rgba(28, 48, 80, 0.15);
  margin-top: 16px;
  padding-top: 3px;
  display: none;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__content ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__content ul li {
  width: 49%;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__content ul li a {
  text-align: left;
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  display: block;
  margin: 0;
  padding: 0;
  margin-top: 18px;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__content .menu__link {
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  display: flex;
  align-items: center;
  margin-top: 23px;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item .menu__content .menu__link svg {
  margin-left: 10px;
}
header .header__mobile_menu .menu__inside .menu__body .menu__item_active {
  border-radius: 12px;
  background: #fdf1e6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
header .header__mobile_menu .menu__inside .menu__body .menu__item_active .menu__content {
  display: block;
}
header .header__mobile_menu .menu__company .menu__body ul li a {
  color: #192941;
}
@media (max-width: 990px) {
  header.header-landing .header__button {
    display: flex !important;
  }
}

.scrolled {
  position: fixed;
  background: #fff;
}
.scrolled .header__union .header__logo svg path {
  fill: #efa057;
}
.scrolled .header__union .header__logo_fixed {
  display: block;
}
.scrolled .header__union .header__logo_static {
  display: none;
}
.scrolled .header__union ul li a {
  color: #1c3458;
}
.scrolled .header__union ul li a:after {
  background-color: #efa057;
}
.scrolled .header__union .header__button {
  color: #fff;
  background: #efa057;
  transition: 0.6s all;
  cursor: pointer;
}
.scrolled .header__union .header__button:hover {
  background: #192941;
  color: #ffffff;
}
.scrolled .header__union .header__mobile_button svg rect {
  fill: #efa057;
}

.landing-advantage {
  background-color: #192941;
  padding: 74px 0;
}
@media (max-width: 1024px) {
  .landing-advantage {
    padding: 40px 0;
  }
}
@media (max-width: 1024px) {
  .landing-advantage > .container {
    display: flex;
    flex-direction: column;
  }
}
.landing-advantage__head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .landing-advantage__head {
    display: contents;
  }
}
.landing-advantage__head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 630px;
}
@media (max-width: 1024px) {
  .landing-advantage__head-text {
    order: 1;
    gap: 8px;
    max-width: none;
    margin-bottom: 32px;
  }
}
.landing-advantage__head-text .home-industry__head-label {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .landing-advantage__head-text .home-industry__head-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
  }
}
.landing-advantage__title {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.landing-advantage__title span {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-advantage__title {
    font-size: 24px;
    line-height: 1.6;
  }
}
.landing-advantage .services-hero__action {
  flex-shrink: 0;
  margin-top: 0;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .landing-advantage .services-hero__action {
    order: 5;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    margin-top: 0;
    padding: 10px 10px 10px 24px;
    gap: 10px;
    font-size: 14px;
    line-height: 28px;
    justify-content: space-between;
  }
  .landing-advantage .services-hero__action svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .landing-advantage .services-hero__action span {
    flex: 1;
    text-align: center;
  }
}
.landing-advantage__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px 80px;
}
@media all and (min-width: 1025px) {
  .landing-advantage__grid {
    gap: 100px;
  }
}
@media (max-width: 1024px) {
  .landing-advantage__grid {
    display: contents;
  }
}
.landing-advantage__media {
  position: sticky;
  top: 100px;
  flex: 0 0 520px;
  max-width: 520px;
  width: 100%;
  height: 428px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1c3458;
}
@media (max-width: 1024px) {
  .landing-advantage__media {
    position: relative;
    top: auto;
    order: 2;
    flex: none;
    max-width: none;
    height: 300px;
    margin-bottom: 16px;
  }
}
.landing-advantage__media-img {
  position: absolute;
  inset: 0;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.landing-advantage__media-shade {
  position: absolute;
  inset: 0;
  background: rgba(25, 41, 65, 0.1);
  pointer-events: none;
}
.landing-advantage__col {
  flex: 1 1 0;
  min-width: 0;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .landing-advantage__col {
    display: contents;
    max-width: none;
  }
}
.landing-advantage__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1024px) {
  .landing-advantage__list {
    order: 3;
    margin-bottom: 16px;
  }
}
.landing-advantage__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.landing-advantage__item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 1024px) {
  .landing-advantage__item {
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .landing-advantage__item:last-of-type {
    padding-bottom: 16px;
    border-bottom: none;
  }
}
.landing-advantage__item-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .landing-advantage__item-row {
    gap: 16px;
  }
}
.landing-advantage__item-num {
  flex-shrink: 0;
  width: 27px;
  margin: 0;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-advantage__item-num {
    width: 22px;
    font-size: 14px;
  }
}
.landing-advantage__item-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Reddit Sans";
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}
@media (max-width: 1024px) {
  .landing-advantage__item-title {
    font-size: 18px;
    line-height: 1.6;
  }
}
.landing-advantage__item-text {
  margin: 0;
  padding-left: 51px;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1024px) {
  .landing-advantage__item-text {
    padding-left: 38px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.landing-advantage__quote {
  margin: 0;
  padding: 32px 40px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .landing-advantage__quote {
    order: 4;
    padding: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .landing-advantage__quote figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
.landing-advantage__quote-icon {
  display: block;
  width: 27px;
  height: 27px;
  margin-bottom: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .landing-advantage__quote-icon {
    margin-bottom: 16px;
  }
}
.landing-advantage__quote-text {
  margin: 0 0 24px;
  font-family: "Reddit Sans";
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1024px) {
  .landing-advantage__quote-text {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.landing-advantage__quote-author {
  margin: 0;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
}
@media (max-width: 1024px) {
  .landing-advantage__quote-author {
    font-size: 16px;
    line-height: normal;
  }
}
.landing-advantage__quote-role {
  margin: 0;
  font-family: "Reddit Sans";
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1024px) {
  .landing-advantage__quote-role {
    font-size: 13px;
  }
}

.landing-benefits {
  background-color: #192941;
  padding: 74px 0;
}
@media (max-width: 1024px) {
  .landing-benefits {
    padding: 40px 0 56px;
  }
}
.landing-benefits__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px 80px;
}
@media all and (min-width: 1025px) {
  .landing-benefits__grid {
    gap: 100px;
  }
}
@media (max-width: 1024px) {
  .landing-benefits__grid {
    flex-direction: column;
    gap: 32px;
  }
}
.landing-benefits__col-visual {
  flex: 0 1 560px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .landing-benefits__col-visual {
    flex: none;
    max-width: none;
    order: 2;
    width: 100%;
  }
}
.landing-benefits__phone {
  position: relative;
  height: 446px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1c3458;
}
@media (max-width: 1024px) {
  .landing-benefits__phone {
    height: 300px;
  }
}
.landing-benefits__phone-fg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  pointer-events: none;
}
.landing-benefits__phone-shade {
  position: absolute;
  inset: -19px -11px -21px -11px;
  background: rgba(25, 41, 65, 0.1);
  pointer-events: none;
}
.landing-benefits__metrics {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  width: 100%;
}
@media (max-width: 1024px) {
  .landing-benefits__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.landing-benefits__metric {
  flex: 1 1 calc(50% - 5px);
  min-width: 140px;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .landing-benefits__metric {
    flex: none;
    min-width: 0;
    padding: 20px;
  }
}
.landing-benefits__metric-value {
  margin: 0;
  color: #efa057;
  font-family: "Reddit Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .landing-benefits__metric-value {
    font-size: 32px;
  }
}
.landing-benefits__metric-label {
  margin: 4px 0 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .landing-benefits__metric-label {
    font-size: 12px;
    line-height: 1.4;
  }
}
.landing-benefits__col-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media (max-width: 1024px) {
  .landing-benefits__col-content {
    display: contents;
  }
}
.landing-benefits__intro-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .landing-benefits__intro-block {
    order: 1;
    gap: 8px;
    width: 100%;
  }
}
.landing-benefits__intro-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .landing-benefits__intro-text {
    gap: 16px;
  }
}
.landing-benefits__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  height: 56px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.landing-benefits__brand img {
  display: block;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .landing-benefits__brand {
    height: 36px;
    padding: 8px 11px 8px 8px;
    gap: 8px;
  }
  .landing-benefits__brand img {
    max-height: 22px;
    width: auto;
  }
}
.landing-benefits__brand-icon {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.landing-benefits__brand-wordmark {
  width: 120px;
  height: auto;
  max-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.landing-benefits__title {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.landing-benefits__title span {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-benefits__title {
    font-size: 24px;
    line-height: 1.2;
    max-width: 14.1rem;
  }
}
.landing-benefits__lead {
  margin: 0;
  max-width: 446px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .landing-benefits__lead {
    font-size: 15px;
    line-height: 1.6;
    max-width: none;
  }
}
.landing-benefits__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .landing-benefits__features {
    order: 3;
  }
}
.landing-benefits__feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.landing-benefits__feature:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
@media (max-width: 1024px) {
  .landing-benefits__feature {
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 0;
  }
  .landing-benefits__feature:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .landing-benefits__feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.landing-benefits__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-benefits__feature-icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.landing-benefits__feature-icon--bolt {
  width: 33px;
}
@media (max-width: 1024px) {
  .landing-benefits__feature-icon {
    width: 29px;
    height: 29px;
  }
  .landing-benefits__feature-icon--bolt {
    width: 24px;
    height: 29px;
  }
}
.landing-benefits__feature-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}
@media (max-width: 1024px) {
  .landing-benefits__feature-body {
    gap: 4px;
  }
}
.landing-benefits__feature-title {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .landing-benefits__feature-title {
    font-size: 18px;
    line-height: 1.6;
  }
}
.landing-benefits__feature-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  white-space: normal;
}
@media (max-width: 1024px) {
  .landing-benefits__feature-text {
    font-size: 14px;
    padding-right: 46px;
    line-height: 1.6;
  }
}
.landing-benefits--reverse .landing-benefits__grid {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .landing-benefits--reverse .landing-benefits__grid {
    flex-direction: column;
  }
}
.landing-benefits--reverse .landing-benefits__phone {
  height: 337px;
}
@media (max-width: 1024px) {
  .landing-benefits--reverse .landing-benefits__phone {
    height: 300px;
  }
}
.landing-benefits--reverse .landing-benefits__phone-bg {
  left: 0;
  top: 0;
  transform: none;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.landing-benefits--reverse .landing-benefits__phone-shade {
  inset: 0;
}
.landing-benefits--reverse .landing-benefits__brand {
  justify-content: center;
}
.landing-benefits--reverse .landing-benefits__brand img:only-child {
  width: auto;
  max-width: 157px;
  -o-object-fit: contain;
     object-fit: contain;
}
.landing-benefits--reverse .landing-benefits__title {
  max-width: 535px;
}
@media (max-width: 1024px) {
  .landing-benefits--reverse .landing-benefits__title {
    max-width: none;
    padding-right: 20px;
  }
}
.landing-benefits--reverse .landing-benefits__lead {
  max-width: 489px;
}
.landing-benefits--reverse .landing-benefits__metric-value {
  font-size: 40px;
}
@media (max-width: 1024px) {
  .landing-benefits--reverse .landing-benefits__metric-value {
    font-size: 32px;
  }
}
.landing-benefits--reverse .landing-benefits__metric-label {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .landing-benefits--reverse .landing-benefits__metric-label {
    font-size: 12px;
    line-height: 1.4;
  }
}

.landing-call {
  background-color: #192941;
  padding: 20px 0 74px;
}
@media (max-width: 1024px) {
  .landing-call {
    padding: 20px 0 40px;
  }
}
.landing-call__panel {
  position: relative;
  min-height: 316px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #1c3458;
}
@media (max-width: 1024px) {
  .landing-call__panel {
    height: 316px;
    min-height: 316px;
    border-radius: 30px;
  }
}
.landing-call__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(81.81deg, #2e476d 0.87%, #33588f 79.36%);
}
@media (max-width: 1024px) {
  .landing-call__gradient {
    background: linear-gradient(87.56deg, #2e476d 0.87%, #33588f 79.36%);
  }
}
.landing-call .call__background {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 850px;
  height: 358px;
  max-width: none;
  transform: translate(calc(-50% + 222px), calc(-50% + 37px));
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .landing-call .call__background {
    display: block;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 118px;
    height: auto;
    transform: translateY(25%);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.landing-call__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .landing-call__intro {
    gap: 8px;
    align-items: center;
  }
}
.landing-call .call__inner-container {
  position: relative;
  z-index: 2;
  display: block;
  max-width: none;
  margin: 0;
  padding: 64px 90px;
}
@media (max-width: 1024px) {
  .landing-call .call__inner-container {
    display: flex;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    padding: 30px 20px 24px;
  }
}
.landing-call .call__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 582px;
}
@media (max-width: 1024px) {
  .landing-call .call__content {
    align-items: center;
    max-width: none;
    gap: 24px;
  }
}
.landing-call .call__title {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.landing-call .call__title span {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-call .call__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
}
.landing-call .call__description {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .landing-call .call__description {
    max-width: 224px;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }
}
.landing-call .services-hero__action {
  margin-top: 0;
  text-decoration: none;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .landing-call .services-hero__action {
    display: inline-flex;
    width: auto;
    align-self: center;
    height: 50px;
    min-height: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px 10px 24px;
    gap: 10px;
    font-size: 14px;
    line-height: 28px;
  }
  .landing-call .services-hero__action svg {
    width: 30px;
    height: 30px;
  }
}

.services-catalog {
  margin-top: 0;
}

.landing-challenge {
  background-color: #192941;
  padding: 40px 0 74px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .landing-challenge {
    padding: 32px 0 20px;
    margin-bottom: 32px;
  }
}
@media (max-width: 1024px) {
  .landing-challenge .container {
    padding: 0;
  }
}
.landing-challenge__sheet.home-industry__head {
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
  margin-top: 0;
  padding: 74px 60px;
}
@media (max-width: 1024px) {
  .landing-challenge__sheet.home-industry__head {
    gap: 32px;
    padding: 40px 20px 20px;
    border-radius: 30px;
  }
}
@media (max-width: 1024px) {
  .landing-challenge__sheet.home-industry__head .home-industry__head-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
  }
}
@media (max-width: 1024px) {
  .landing-challenge__sheet.home-industry__head .home-industry__head-title {
    margin: 0;
    max-width: 18rem;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
  }
  .landing-challenge__sheet.home-industry__head .home-industry__head-title span {
    color: #efa057;
  }
}
.landing-challenge__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 48px;
  width: 100%;
}
@media (max-width: 1024px) {
  .landing-challenge__row {
    flex-direction: column;
    gap: 32px;
  }
}
.landing-challenge__row .home-industry__head-left {
  max-width: 594px;
  margin-right: 0;
}
@media (max-width: 1024px) {
  .landing-challenge__row .home-industry__head-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: none;
  }
}
.landing-challenge__row .home-industry__head-title {
  margin-bottom: 0;
  max-width: 483px;
}
@media (max-width: 1024px) {
  .landing-challenge__row .home-industry__head-title {
    max-width: 18rem;
  }
}
.landing-challenge__intro {
  flex: 0 1 583px;
  max-width: 583px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.landing-challenge__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
}
@media (max-width: 1024px) {
  .landing-challenge__intro p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .landing-challenge__intro {
    max-width: none;
    flex: none;
    gap: 8px;
  }
}
.landing-challenge__stats {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .landing-challenge__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.landing-challenge__stat {
  flex: 1 1 calc(25% - 15px);
  min-width: 0;
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .landing-challenge__stat {
    flex: none;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 24px 16px;
  }
}
.landing-challenge__stat-value {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .landing-challenge__stat-value {
    font-size: 32px;
  }
}
.landing-challenge__stat-label {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .landing-challenge__stat-label {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
  }
}

.landing-connect {
  background-color: #efa057;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .landing-connect {
    padding: 40px 0;
  }
}
.landing-connect__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 48px;
}
@media (max-width: 1024px) {
  .landing-connect__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
.landing-connect__intro {
  flex: 0 1 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 270px;
}
@media (max-width: 1024px) {
  .landing-connect__intro {
    display: contents;
    flex: none;
    min-height: 0;
    gap: 0;
  }
}
.landing-connect__intro-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .landing-connect__intro-text {
    order: 1;
    gap: 8px;
    max-width: none;
  }
}
.landing-connect__intro-text .home-industry__head-label {
  margin-bottom: 0;
  color: #fff;
}
.landing-connect__intro-text .home-industry__head-label::after {
  background: #fff;
  filter: none;
}
@media (max-width: 1024px) {
  .landing-connect__intro-text .home-industry__head-label {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}
.landing-connect__title {
  margin: 0;
  max-width: 424px;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}
@media (max-width: 1024px) {
  .landing-connect__title {
    max-width: 16.375rem;
    font-size: 24px;
    line-height: 1.2;
  }
}
.landing-connect__cta.services-hero__action {
  margin-top: 0;
  align-self: flex-start;
  background: #fff;
  color: #192941;
}
.landing-connect__cta.services-hero__action svg circle {
  fill: #efa057;
}
.landing-connect__cta.services-hero__action svg path {
  stroke: #fff;
}
.landing-connect__cta.services-hero__action:hover {
  background: #192941;
  color: #fff;
}
.landing-connect__cta.services-hero__action:hover svg {
  transform: rotate(45deg);
}
.landing-connect__cta.services-hero__action:hover svg circle {
  fill: #fff;
}
.landing-connect__cta.services-hero__action:hover svg path {
  stroke: #efa057;
}
@media (max-width: 1024px) {
  .landing-connect__cta.services-hero__action {
    display: flex;
    order: 3;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    padding: 10px 10px 10px 24px;
    gap: 10px;
    font-size: 14px;
    line-height: 28px;
    justify-content: space-between;
  }
  .landing-connect__cta.services-hero__action span {
    flex: 1;
    text-align: center;
  }
  .landing-connect__cta.services-hero__action svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
}
.landing-connect__card {
  flex: 0 1 654px;
  max-width: 654px;
  width: 100%;
  padding: 32px 40px 40px;
  border-radius: 20px;
  background: #f3f6fa;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .landing-connect__card {
    order: 2;
    flex: none;
    max-width: none;
    padding: 24px;
  }
}
.landing-connect__card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.landing-connect__quote-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.landing-connect__quote-icon {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .landing-connect__quote-icon {
    width: 27px;
    height: 27px;
  }
}
.landing-connect__quote-text {
  margin: 0;
  max-width: 534px;
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .landing-connect__quote-text {
    max-width: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #1c3050;
  }
}
.landing-connect__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .landing-connect__author {
    gap: 16px;
  }
}
.landing-connect__avatar {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .landing-connect__avatar {
    width: 50px;
    height: 50px;
  }
}
.landing-connect__author-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 200px;
}
@media (max-width: 1024px) {
  .landing-connect__author-text {
    gap: 2px;
    max-width: 8.875rem;
  }
}
.landing-connect__author-name {
  margin: 0;
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1024px) {
  .landing-connect__author-name {
    font-size: 16px;
    color: #1c3050;
  }
}
.landing-connect__author-role {
  margin: 0;
  color: rgba(28, 48, 80, 0.7);
  font-family: "Reddit Sans";
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 1024px) {
  .landing-connect__author-role {
    font-size: 13px;
  }
}

@keyframes landing-hero-logos-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.landing-hero {
  position: relative;
  background-color: #192941;
  overflow: hidden;
  min-height: 780px;
}
@media (max-width: 1024px) {
  .landing-hero {
    min-height: 0;
  }
}
.landing-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .landing-hero__visual {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    overflow: visible;
  }
  .landing-hero__visual::before {
    content: "";
    background: linear-gradient(180deg, #192941 0%, rgba(25, 41, 65, 0) 50.12%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(180deg);
  }
}
.landing-hero__earth-wrap {
  position: absolute;
  top: 0;
  right: -80px;
  width: 1231px;
  height: 645px;
  max-width: none;
}
@media (max-width: 1024px) {
  .landing-hero__earth-wrap {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 381px;
    margin: -80px auto 0;
    transform: none;
  }
}
.landing-hero__earth {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .landing-hero__earth {
    -o-object-position: 55% 28%;
       object-position: 55% 28%;
    opacity: 1;
  }
}
.landing-hero__earth-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(87.48deg, #182740 1.59%, rgba(24, 39, 62, 0) 63.48%);
}
@media (max-width: 1024px) {
  .landing-hero__earth-fade {
    background: linear-gradient(180deg, #192941 0%, #192941 18%, rgba(25, 41, 65, 0.45) 42%, rgba(25, 41, 65, 0) 72%);
  }
}
.landing-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 48px;
  max-width: 1340px;
}
@media (max-width: 1024px) {
  .landing-hero__container {
    padding-bottom: 24px;
  }
}
.landing-hero__inner {
  max-width: 789px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1024px) {
  .landing-hero__inner {
    max-width: none;
    gap: 24px;
  }
}
.landing-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1024px) {
  .landing-hero__eyebrow {
    font-size: 12px;
    line-height: 1.6;
  }
}
.landing-hero__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.45);
}
.landing-hero__title {
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}
.landing-hero__title span {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-hero__title {
    max-width: 20rem;
    font-size: 32px;
    line-height: 1.1;
  }
}
.landing-hero__text {
  margin: 0;
  max-width: 602px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .landing-hero__text {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }
}
.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .landing-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
}
.landing-hero__trust {
  margin: 0;
  max-width: 220px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.8);
}
.landing-hero__trust strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .landing-hero__trust {
    max-width: 13rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }
}
.landing-hero .services-hero__action {
  margin-top: 0;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .landing-hero .services-hero__action {
    margin: 0;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 10px 10px 10px 24px;
    font-size: 14px;
    line-height: 28px;
  }
  .landing-hero .services-hero__action svg {
    flex-shrink: 0;
  }
}
.landing-hero__logos {
  position: relative;
  z-index: 1;
  padding-bottom: 44px;
  background: rgb(25, 41, 65);
}
@media (max-width: 1024px) {
  .landing-hero__logos {
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 28px;
    background: transparent;
  }
}
.landing-hero__logos::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 1024px) {
  .landing-hero__logos::before {
    display: none;
  }
}
.landing-hero__logos-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px 32px;
}
@media (max-width: 1024px) {
  .landing-hero__logos-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
  }
}
.landing-hero__logos-label {
  margin: 0;
  flex: 0 0 180px;
  width: 180px;
  max-width: 180px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  color: #fff;
}
@media (max-width: 1024px) {
  .landing-hero__logos-label {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
    align-self: flex-start;
    font-size: 12px;
    line-height: normal;
    text-align: center;
  }
}
.landing-hero__logos-viewport {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .landing-hero__logos-viewport {
    flex: none;
    width: 100%;
    align-self: center;
  }
}
.landing-hero__logos-viewport--marquee .landing-hero__logos-track {
  display: inline-flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  animation: landing-hero-logos-marquee var(--landing-hero-marquee-duration, 36s) linear infinite;
  will-change: transform;
}
.landing-hero__logos-viewport--marquee .landing-hero__logos-segment {
  flex: 0 0 auto;
  width: auto;
  min-width: -moz-max-content;
  min-width: max-content;
  justify-content: flex-start;
}
.landing-hero__logos-track {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.landing-hero__logos-segment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  gap: 16px;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .landing-hero__logos-segment {
    gap: 8px;
  }
}
.landing-hero__logos-viewport--marquee .landing-hero__logos-segment {
  opacity: 1;
}
.landing-hero__logos-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 200px;
}
@media (max-width: 1024px) {
  .landing-hero__logos-logo {
    width: 110px;
    height: 44px;
  }
}
.landing-hero__logos-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.landing-hero__logos-logo--lifechurch {
  gap: 4px;
}
.landing-hero__logos-logo--lifechurch img:first-child {
  max-height: 22px;
}
.landing-hero__logos-logo--lifechurch img:last-child {
  max-height: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__logos-viewport--marquee .landing-hero__logos-track {
    animation: none;
  }
}
.landing-industries {
  background-color: #192941;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .landing-industries {
    padding: 40px 0;
  }
}
@media (max-width: 1024px) {
  .landing-industries > .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.landing-industries__head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .landing-industries__head {
    display: contents;
    margin-bottom: 0;
  }
}
.landing-industries__head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 631px;
}
@media (max-width: 1024px) {
  .landing-industries__head-text {
    order: 1;
    gap: 8px;
    max-width: none;
    margin-bottom: 8px;
  }
}
.landing-industries__head-text .home-industry__head-label {
  margin-bottom: 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .landing-industries__head-text .home-industry__head-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
  }
}
.landing-industries__title {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}
.landing-industries__title span {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-industries__title {
    font-size: 24px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .landing-industries__title-part--light {
    display: none;
  }
}
.landing-industries__title-part--accent {
  color: #efa057;
}
.landing-industries__title-part--light {
  color: #fff;
}
.landing-industries .services-hero__action {
  flex-shrink: 0;
  margin-top: 0;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .landing-industries .services-hero__action {
    display: flex;
    order: 3;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    padding: 10px 10px 10px 24px;
    gap: 10px;
    font-size: 14px;
    line-height: 28px;
    justify-content: space-between;
  }
  .landing-industries .services-hero__action span {
    flex: 1;
    text-align: center;
  }
  .landing-industries .services-hero__action svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
}
.landing-industries__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .landing-industries__grid {
    order: 2;
    gap: 10px;
  }
}
.landing-industries__card {
  position: relative;
  flex: 1 1 280px;
  min-height: 446px;
  max-width: 100%;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
  background-color: #283e61;
  overflow: hidden;
}
@media all and (min-width: 1200px) {
  .landing-industries__card {
    flex: 1 1 0;
    max-width: calc(33.333% - 14px);
    min-width: 280px;
  }
}
@media (max-width: 1024px) {
  .landing-industries__card {
    min-height: 0;
    flex: 1 1 100%;
    max-width: none;
    padding: 24px;
  }
  .landing-industries__card:nth-child(3) {
    min-height: 230px;
    background-color: #283e61;
    background-image: url("../../../assets/img/landing/landing-industries-logistics-bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.landing-industries__card-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .landing-industries__card-row {
    align-items: center;
    margin-bottom: 8px;
  }
}
.landing-industries__card-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 26px;
  font-weight: 600;
  line-height: 34px;
}
@media (max-width: 1024px) {
  .landing-industries__card-title {
    font-size: 20px;
    line-height: 34px;
  }
}
.landing-industries__card-icon {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .landing-industries__card-icon {
    width: 50px;
    height: 50px;
  }
}
.landing-industries__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.landing-industries__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}
.landing-industries__bullet {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}
.landing-industries__item-text {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}
.landing-industries__item-text:hover {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-industries__item-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
  }
}

.landing-playbook {
  background-color: #192941;
  padding: 20px 0 80px;
}
@media (max-width: 1024px) {
  .landing-playbook {
    padding: 40px 0 48px;
  }
}
@media (max-width: 1024px) {
  .landing-playbook .container {
    padding: 0;
  }
}
.landing-playbook__panel {
  position: relative;
  border-radius: 30px;
  background-color: #1c3458;
  min-height: 521px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .landing-playbook__panel {
    min-height: 0;
    border-radius: 30px;
  }
}
.landing-playbook__panel-bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 1280px);
  height: 601px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .landing-playbook__panel-bg {
    top: 0;
    bottom: 0;
    height: auto;
    min-height: 100%;
    border-radius: 30px;
  }
}
.landing-playbook__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 40px;
  padding: 64px 60px 56px;
}
@media (max-width: 1024px) {
  .landing-playbook__layout {
    padding: 40px 20px 20px;
    flex-direction: column;
    gap: 32px;
  }
}
.landing-playbook__main {
  flex: 1 1 320px;
  max-width: 449px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .landing-playbook__main {
    flex: auto;
    max-width: none;
  }
}
.landing-playbook__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(157.73deg, #2e84ae 16.62%, #efa057 81.7%);
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .landing-playbook__badge {
    padding: 6px 12px;
    font-size: 12px;
    background: linear-gradient(158.21deg, #2e84ae 16.62%, #efa057 81.7%);
  }
}
.landing-playbook__title {
  margin: 0;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}
.landing-playbook__title span {
  color: #efa057;
}
@media (max-width: 1024px) {
  .landing-playbook__title {
    max-width: 16.125rem;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
  }
}
.landing-playbook__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Reddit Sans";
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .landing-playbook__lead {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
}
.landing-playbook__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .landing-playbook__stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
  }
}
.landing-playbook__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .landing-playbook__stat {
    gap: 8px;
  }
}
.landing-playbook__stat-value {
  margin: 0;
  color: #efa057;
  font-family: "Reddit Sans";
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 1024px) {
  .landing-playbook__stat-value {
    font-size: 32px;
    text-align: left;
  }
}
.landing-playbook__stat-label {
  margin: 0;
  max-width: 165px;
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .landing-playbook__stat-label {
    max-width: 5.625rem;
    font-size: 12px;
    line-height: 1.2;
  }
}
@media (max-width: 1024px) {
  .landing-playbook__stat:nth-child(2) .landing-playbook__stat-label {
    max-width: 6.625rem;
  }
}
.landing-playbook__aside {
  position: relative;
  flex: 1 1 520px;
  min-width: 0;
  min-height: 360px;
}
@media (max-width: 1024px) {
  .landing-playbook__aside {
    flex: none;
    width: 100%;
    min-height: 0;
    padding-bottom: 8px;
  }
}
.landing-playbook__mocks {
  position: absolute;
  right: clamp(0px, 8vw, 48px);
  top: 5px;
  width: 290px;
  height: 210px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .landing-playbook__mocks {
    display: block;
    position: relative;
    right: auto;
    top: 0;
    width: 290px;
    height: 128px;
    margin: 0 auto -48px;
    transform: scale(0.78);
    transform-origin: top center;
  }
}
.landing-playbook__mock {
  position: absolute;
  width: 138px;
  height: 195px;
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4.4px 4.4px rgba(0, 0, 0, 0.25);
}
.landing-playbook__mock--1 {
  left: 0;
  top: 0;
  transform: rotate(-6.94deg);
  z-index: 3;
  padding: 13px 12px 12px;
}
.landing-playbook__mock--2 {
  left: 75px;
  top: 10px;
  transform: rotate(-2.01deg);
  z-index: 2;
  padding: 16px 11px;
}
.landing-playbook__mock--3 {
  left: 137px;
  top: 25px;
  transform: rotate(4.42deg);
  z-index: 1;
  padding: 16px 15px;
}
.landing-playbook__mock-title {
  margin: 0 0 8px;
  font-family: "Reddit Sans";
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  color: #192941;
  max-width: 106px;
}
.landing-playbook__mock-title span {
  color: #efa057;
}
.landing-playbook__mock-lines {
  margin: 0;
  font-family: "Reddit Sans";
  font-size: 7px;
  font-weight: 300;
  line-height: 1.35;
  color: #1c3050;
}
.landing-playbook__card {
  position: absolute;
  right: 0;
  top: 115px;
  width: min(100%, 600px);
  padding: 32px;
  border-radius: 20px;
  background: #f3f6fa;
  box-sizing: border-box;
  z-index: 4;
}
@media (max-width: 1024px) {
  .landing-playbook__card {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    padding: 24px;
    margin-top: 0;
  }
}
.landing-playbook__card-title {
  margin: 0 0 24px;
  color: #192941;
  font-family: "Reddit Sans";
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .landing-playbook__card-title {
    margin-bottom: 16px;
  }
}
.landing-playbook__bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.landing-playbook__bullet {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1024px) {
  .landing-playbook__bullet {
    gap: 8px;
  }
}
.landing-playbook__bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .landing-playbook__bullet-icon {
    width: 17px;
    height: 17px;
    margin-top: 1px;
  }
}
.landing-playbook__bullet-text {
  margin: 0;
  color: #192941;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .landing-playbook__bullet-text {
    font-size: 14px;
    line-height: 1.4;
  }
}
.landing-playbook__form .wpcf7,
.landing-playbook__form .wpcf7 form,
.landing-playbook__form .wpcf7-form,
.landing-playbook__form p {
  margin: 0;
}
.landing-playbook__form .landing-playbook__form-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  gap: 0;
}
@media (max-width: 1024px) {
  .landing-playbook__form .landing-playbook__form-row {
    flex-direction: column;
    gap: 24px;
  }
}
.landing-playbook__form .landing-playbook__form-row > p {
  display: contents;
}
.landing-playbook__form .landing-playbook__form-row > p br,
.landing-playbook__form .landing-playbook__submit br {
  display: none;
}
.landing-playbook__form .wpcf7-form-control-wrap {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
.landing-playbook__form .wpcf7-spinner {
  display: none;
}
.landing-playbook__form .landing-playbook__form-row input.landing-playbook__input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 56px;
  margin: 0;
  padding: 12px 30px 12px 24px;
  border: 1px solid rgba(40, 62, 97, 0.15);
  border-radius: 12px;
  background: #f3f6fa;
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  caret-color: #efa057;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.landing-playbook__form .landing-playbook__form-row input.landing-playbook__input:focus {
  outline: none;
  background: #f3f6fa;
  border-color: rgba(40, 62, 97, 0.35);
}
.landing-playbook__form .landing-playbook__form-row input.landing-playbook__input::-moz-placeholder {
  color: #1c3050;
  font-weight: 300;
  opacity: 0.7;
}
.landing-playbook__form .landing-playbook__form-row input.landing-playbook__input::placeholder {
  color: #1c3050;
  font-weight: 300;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .landing-playbook__form .landing-playbook__form-row input.landing-playbook__input {
    margin-right: 0;
    width: 100%;
    height: 50px;
    padding: 11px 20px;
    font-size: 14px;
  }
  .landing-playbook__form .landing-playbook__form-row input.landing-playbook__input::-moz-placeholder {
    font-size: 14px;
  }
  .landing-playbook__form .landing-playbook__form-row input.landing-playbook__input::placeholder {
    font-size: 14px;
  }
}
@media all and (min-width: 1025px) {
  .landing-playbook__form .landing-playbook__form-row input.landing-playbook__input {
    margin-right: -29px;
  }
}
.landing-playbook__form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #1c3050;
  font-family: "Reddit Sans";
  font-size: 13px;
  line-height: 1.4;
}
.landing-playbook__form .wpcf7 form.invalid .wpcf7-response-output,
.landing-playbook__form .wpcf7 form.unaccepted .wpcf7-response-output,
.landing-playbook__form .wpcf7 form.payment-required .wpcf7-response-output,
.landing-playbook__form .wpcf7 form.sent .wpcf7-response-output,
.landing-playbook__form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 12px;
  font-family: "Reddit Sans";
  font-size: 14px;
  line-height: 1.4;
}
.landing-playbook__submit.services-hero__action {
  flex-shrink: 0;
  align-self: center;
  margin-top: 0;
  padding: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font: inherit;
}
@media (max-width: 1024px) {
  .landing-playbook__submit.services-hero__action {
    display: flex;
    align-self: stretch;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    width: 100%;
    height: 50px;
    min-height: 50px;
    padding: 10px 10px 10px 24px;
    gap: 10px;
    font-size: 14px;
    line-height: 28px;
    white-space: normal;
  }
  .landing-playbook__submit.services-hero__action span {
    flex: 1;
    text-align: center;
  }
  .landing-playbook__submit.services-hero__action svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
}
@media all and (min-width: 1025px) {
  .landing-playbook__submit.services-hero__action {
    position: relative;
    z-index: 1;
  }
}

.footer {
  background: #111d2f;
}
@media all and (max-width: 991px) {
  .footer-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 27px;
    padding: 60px 0 35px;
  }
}
@media all and (max-width: 500px) {
  .footer-info {
    gap: 15px;
  }
}
@media all and (max-width: 500px) {
  .footer-info__top {
    min-width: 150px;
  }
}
.footer-info__top .footer-link {
  display: none;
}
@media all and (max-width: 991px) {
  .footer-info__top .footer-link {
    display: flex;
    margin-top: 25px;
    font-size: 16px;
    padding: 10px 10px 10px 15px;
  }
  .footer-info__top .footer-link svg {
    width: 28px;
    height: 28px;
  }
}
.footer-top {
  padding: 90px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 1200px) {
  .footer-top {
    padding: 60px 0 40px;
  }
}
@media all and (max-width: 991px) {
  .footer-top {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}
.footer-logo {
  width: 178px;
  height: 30px;
}
@media all and (max-width: 1200px) {
  .footer-logo {
    width: 130px;
    height: 22px;
  }
}
.footer-logo img, .footer-logo svg {
  width: 100%;
  height: 100%;
}
.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 220px;
}
@media all and (max-width: 1200px) {
  .footer-content {
    gap: 60px;
  }
}
@media all and (max-width: 991px) {
  .footer-content {
    padding: 25px 0 39px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    gap: 26px;
  }
}
@media all and (max-width: 991px) {
  .footer-nav {
    width: 100%;
  }
}
.footer-nav__header {
  color: #fff;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 16px;
}
.footer-nav__list {
  max-width: 120px;
}
@media all and (max-width: 991px) {
  .footer-nav__list {
    max-width: none;
    width: 100%;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
.footer-nav__list li {
  margin: 6px 0;
}
@media all and (max-width: 991px) {
  .footer-nav__list li {
    margin: 0;
  }
  .footer-nav__list li:not(:first-child) {
    margin: 6px 0;
  }
}
.footer-nav__list a {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  transition: color 0.4s ease;
  word-break: break-word;
}
@media all and (max-width: 991px) {
  .footer-nav__list a {
    font-size: 13px;
    line-height: 26px;
  }
}
.footer-nav__list a:hover {
  color: #efa057;
}
.footer-nav__list.services {
  max-width: none;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media all and (max-width: 1200px) {
  .footer-nav__list.services {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media all and (max-width: 991px) {
  .footer-nav__list.services {
    max-width: none;
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
.footer-nav__list.services a {
  max-width: 180px;
  display: flex;
}
@media all and (max-width: 991px) {
  .footer-nav__list.services a {
    max-width: none;
  }
}
.footer-social {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media all and (max-width: 991px) {
  .footer-social {
    margin-top: 0;
    gap: 8px;
  }
}
.footer-social__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Reddit Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  transition: color 0.4s ease;
}
@media all and (max-width: 991px) {
  .footer-social__item {
    word-break: break-word;
    font-size: 14px;
  }
}
.footer-social__item:hover {
  color: #efa057;
}
.footer-social__item.email span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media all and (max-width: 500px) {
  .footer-social__item.email span {
    border-bottom: none;
    -webkit-text-decoration-color: rgba(255, 255, 255, 0.2);
            text-decoration-color: rgba(255, 255, 255, 0.2);
    text-decoration: underline;
  }
}
.footer-link {
  margin-top: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 90px;
  background: #efa057;
  padding: 10px 10px 10px 26px;
  color: #fff;
  text-align: center;
  font-family: "Reddit Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  transition: background-color 0.4s ease, color 0.4s ease;
}
@media all and (max-width: 991px) {
  .footer-link {
    display: none;
  }
}
.footer-link svg {
  transition: transform 0.4s ease;
}
.footer-link svg circle {
  transition: fill 0.4s ease;
}
.footer-link svg path {
  transition: stroke 0.4s ease;
}
.footer-link:hover {
  background: #fff;
  color: #efa057;
}
.footer-link:hover svg {
  transform: rotate(45deg);
}
.footer-link:hover svg circle {
  fill: #efa057;
}
.footer-link:hover svg path {
  stroke: white;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media all and (max-width: 991px) {
  .footer-bottom {
    border-top: none;
    padding: 15px 0;
    flex-direction: column;
  }
}
.footer-bottom__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media all and (max-width: 991px) {
  .footer-bottom__nav {
    gap: 12px;
  }
}
.footer-bottom__nav a {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Reddit Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}
@media all and (max-width: 991px) {
  .footer-bottom__nav a {
    font-size: 12px;
  }
}
.footer-bottom__nav-separator {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
}
@media all and (max-width: 991px) {
  .footer-bottom__nav-separator {
    height: 13px;
  }
}
.footer-rights {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Reddit Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}
@media all and (max-width: 991px) {
  .footer-rights {
    font-size: 12px;
  }
}
.footer.footer-landing .footer-top {
  padding: 60px 0;
}
@media all and (max-width: 991px) {
  .footer.footer-landing .footer-top {
    padding: 32px 0;
  }
}
.footer.footer-landing .footer-info {
  width: 100%;
}
.footer.footer-landing .footer-info__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media all and (max-width: 991px) {
  .footer.footer-landing .footer-info__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
.footer.footer-landing .footer-rights {
  line-height: normal;
}