html {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}
html.nav-active {
  overflow: hidden;
}
html.nav-active body {
  overflow: hidden;
}

body {
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  position: relative;
  padding-top: 64px;
}
@media screen and (min-width: 1024px) {
  body {
    padding-top: 80px;
  }
}

button,
input,
textarea,
select {
  font-family: "Poppins", sans-serif;
}

.l-content {
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 1024px) {
  .l-content {
    padding: 0 16px;
  }
}

.c-button {
  background: #0063CE;
  color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  padding: 1em 2em;
  border-radius: 5px;
  box-sizing: border-box;
  outline: 0;
  border: 0;
  cursor: pointer;
}
.c-button:hover {
  background: #181838;
}
.c-button.empty {
  background: transparent;
  border: 1px solid #0063CE;
  max-width: 784px;
  color: #0063CE;
  padding: calc(1em - 1px) 2em;
}
.c-button.empty:hover {
  border-color: #181838;
  color: #181838;
}
.c-button.reverse {
  background: #FFF8F0;
  color: #001934;
}
.c-button.reverse:hover {
  background: #fff;
}
.c-button.reverse-empty {
  background: transparent;
  color: #FFF8F0;
  border: 1px solid #FFF8F0;
}
.c-button.reverse-empty:hover {
  color: #fff;
  border-color: #fff;
}
.c-button.dark {
  background: #001934;
  color: #fff;
}
.c-button.dark:hover {
  background: #0063CE;
}
.c-button.dark-empty {
  background: transparent;
  color: #FFF8F0;
  border: 1px solid #001934;
}
.c-button.dark-empty:hover {
  border-color: transparent;
}
.c-button.block {
  display: block;
  width: 100%;
}
.c-button.panel {
  letter-spacing: 1px;
}

.header-buttons-container {
  display: flex;
}
.header-buttons-container div {
  min-width: 260px;
}
.header-buttons-container div:nth-of-type(1) {
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  .header-buttons-container div:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.header-buttons-container div .c-button {
  max-width: 270px;
}
@media screen and (max-width: 1023px) {
  .header-buttons-container {
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .header-buttons-container {
    flex-direction: column;
    align-items: center;
  }
}

.c-pricing-plan {
  background: #fff;
  border-radius: 10px;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-pricing-plan__name {
  font-size: 16px;
  font-weight: 300;
  line-height: 44px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 56px;
}
.c-pricing-plan__name.c-tabs {
  margin: 0 0 56px;
}
.c-pricing-plan__price {
  color: #0063CE;
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  margin-right: -25px;
  margin-bottom: 40px;
}
.c-pricing-plan__price strong {
  font-size: 130px;
  font-weight: 500;
  line-height: 72px;
}
.c-pricing-plan__price-desc {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 24px;
}
@media screen and (min-width: 1024px) {
  .c-pricing-plan__price-desc {
    line-height: 30px;
    font-size: 20px;
  }
}
.c-pricing-plan__desc {
  max-width: 352px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
  margin: 0 24px 78px;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .c-pricing-plan__desc {
    line-height: 26px;
    font-size: 18px;
  }
}
.c-pricing-plan__desc li {
  margin-bottom: 5px;
}
.c-pricing-plan__desc li:last-child {
  margin-bottom: 0;
}
.c-pricing-plan__desc li:before {
  content: "";
  display: inline-block;
  background: #0063CE url("../img/checked.svg") no-repeat center center;
  background-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 4px;
}
.c-pricing-plan .c-button {
  max-width: 200px;
  width: 100%;
}
.c-pricing-plan__tab-content {
  flex-direction: column;
  align-items: center;
  display: none;
}
.c-pricing-plan__tab-content.active {
  display: flex;
}

.c-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.c-tabs li:after {
  content: "/";
  margin: 0 10px;
}
.c-tabs li:last-child:after {
  content: none;
}
.c-tabs button {
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  color: #181838;
  font-size: 16px;
  font-weight: 300;
  line-height: 44px;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  opacity: 0.3;
}
.c-tabs button.active {
  opacity: 1;
}
.c-tabs button:hover {
  color: #0063CE;
  opacity: 1;
}

.c-integration {
  background: #fff;
  color: #000000;
  height: 352px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 34px;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}
.c-integration:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.c-integration__logo {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
.c-integration__logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.c-integration__name {
  font-size: 16px;
  font-weight: 300;
  line-height: 44px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.c-step {
  counter-increment: steps;
}
@media screen and (min-width: 1024px) {
  .c-step {
    display: flex;
    align-items: center;
  }
  .c-step:nth-child(even) .c-step__image {
    order: 1;
  }
  .c-step:nth-child(even) .c-step__image img {
    margin: 0 auto 0 0;
  }
  .c-step:nth-child(even) .c-step__content {
    align-items: flex-end;
    order: 2;
  }
}
@media screen and (min-width: 1024px) {
  .c-step__image {
    flex: 0 0 50%;
    width: 50%;
    order: 2;
  }
}
.c-step__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .c-step__image img {
    max-width: fit-content;
    width: auto;
    height: 280px;
    margin: 0 0 0 auto;
  }
}
.c-step__content {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-step__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 50%;
    width: 50%;
    text-align: left;
    order: 1;
  }
}
.c-step__content h3 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  margin: 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .c-step__content h3 {
    font-size: 48px;
    line-height: 67px;
    max-width: 350px;
    position: relative;
    padding-left: 100px;
  }
}
.c-step__content h3:before {
  content: counter(steps);
  color: #FEE3D0;
  font-size: 1.75em;
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .c-step__content h3:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 2.75em;
    line-height: 1em;
  }
}
.c-step__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .c-step__content p {
    font-size: 18px;
    line-height: 26px;
    padding-left: 100px;
    max-width: 350px;
  }
}

.carousel-container-desktop {
  width: 1000px;
  height: 100px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .carousel-container-desktop {
    display: none;
  }
}

.carousel-container-mobile {
  display: none;
  width: 600px;
  height: 100px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .carousel-container-mobile {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .carousel-container-mobile {
    width: 400px;
  }
}
@media screen and (max-width: 479px) {
  .carousel-container-mobile {
    width: 300px;
  }
}

.carousel-slide,
.carousel-slide-mobile {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}
.carousel-slide .slide,
.carousel-slide .slide-mobile,
.carousel-slide-mobile .slide,
.carousel-slide-mobile .slide-mobile {
  width: 1000px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .carousel-slide .slide,
.carousel-slide .slide-mobile,
.carousel-slide-mobile .slide,
.carousel-slide-mobile .slide-mobile {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .carousel-slide .slide,
.carousel-slide .slide-mobile,
.carousel-slide-mobile .slide,
.carousel-slide-mobile .slide-mobile {
    width: 400px;
  }
}
@media screen and (max-width: 479px) {
  .carousel-slide .slide,
.carousel-slide .slide-mobile,
.carousel-slide-mobile .slide,
.carousel-slide-mobile .slide-mobile {
    width: 300px;
  }
}
.carousel-slide .slide img,
.carousel-slide .slide-mobile img,
.carousel-slide-mobile .slide img,
.carousel-slide-mobile .slide-mobile img {
  width: 120px;
}
@media screen and (max-width: 479px) {
  .carousel-slide .slide img,
.carousel-slide .slide-mobile img,
.carousel-slide-mobile .slide img,
.carousel-slide-mobile .slide-mobile img {
    width: 90px;
  }
}

.l-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .l-header.nav-active {
    background: #001934;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .l-header.nav-active .l-header__logo {
    display: none;
  }
  .l-header.nav-active .l-header__nav-logo {
    width: 150px;
    display: block;
  }
  .l-header.nav-active .l-header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    background: #001934;
    top: 64px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .l-header.nav-active .l-header__nav-trigger i {
    background: #fff;
  }
  .l-header.nav-active .l-header__nav-trigger i:nth-child(1) {
    width: 20px;
    transform: translate3d(0, 7px, 0) rotate(-45deg);
  }
  .l-header.nav-active .l-header__nav-trigger i:nth-child(2) {
    opacity: 0;
  }
  .l-header.nav-active .l-header__nav-trigger i:nth-child(3) {
    width: 20px;
    transform: translate3d(0, -7px, 0) rotate(45deg);
  }
}
@media screen and (min-width: 1024px) {
  .l-header {
    background: #FFF8F0;
  }
  .l-header.home {
    background: #FDF4E8;
    transition: background 0.3s ease;
  }
  .l-header.home.outside-color {
    background: #FFF8F0;
  }
}
.l-header .l-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 64px;
}
@media screen and (min-width: 1024px) {
  .l-header .l-content {
    height: 80px;
  }
}
.l-header__logo {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    display: block;
    width: 170px;
  }
}
.l-header__logo img {
  max-width: 100%;
}
.l-header__nav-logo {
  display: none;
}
.l-header__nav-logo img {
  max-width: 100%;
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__nav {
    display: flex;
    align-items: center;
  }
}
.l-header__links {
  list-style: none;
  padding: 0 24px;
  margin: 0;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .l-header__links {
    padding: 0;
    margin: 0 56px 0 0;
    display: flex;
    align-items: center;
    order: initial;
  }
}
.l-header__links li {
  margin-bottom: 28px;
}
@media screen and (min-width: 1024px) {
  .l-header__links li {
    margin-right: 56px;
    margin-bottom: 0;
  }
}
.l-header__links li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.l-header__links a {
  color: #FFF8F0;
  font-size: 14px;
  line-height: 28px;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .l-header__links a {
    color: #000;
  }
}
.l-header__links a:hover {
  color: #0063CE;
}
.l-header__buttons {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__buttons {
    display: block;
  }
}
.l-header__buttons .c-button {
  width: 146px;
  margin-right: 16px;
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .l-header__buttons .c-button {
    padding: 0.715em 2em;
  }
  .l-header__buttons .c-button.empty {
    padding: calc(0.715em - 1px) 2em;
  }
}
.l-header__buttons .c-button:last-child {
  margin-right: 0;
}
.l-header__mobile-buttons {
  padding: 0 24px;
  margin: 25px 0 50px;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .l-header__mobile-buttons {
    display: none;
  }
}
.l-header__mobile-buttons .c-button {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.l-header__mobile-buttons .c-button:last-child {
  margin-bottom: 0;
}
.l-header__nav-trigger {
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-trigger {
    display: none;
  }
}
.l-header__nav-trigger i {
  background: #707070;
  width: 13px;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.l-header__nav-trigger i:last-child {
  margin-bottom: 0;
}

.l-home-header {
  background: #FDF4E8;
  overflow: hidden;
  padding: 48px 0 24px;
}
@media screen and (min-width: 1024px) {
  .l-home-header {
    padding: 87px 0 88px;
  }
}
@media screen and (max-width: 1023px) {
  .l-home-header .l-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-header .l-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.l-home-header__content {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .l-home-header__content {
    display: contents;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-header__content {
    max-width: 100%;
    display: block;
    margin: 0;
    order: 1;
  }
}
.l-home-header__content h1 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  max-width: 600px;
  margin: 34px 0 16px;
}
@media screen and (max-width: 1023px) {
  .l-home-header__content h1 {
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-header__content h1 {
    font-size: 56px;
    line-height: 78px;
    margin: 0 0 24px;
  }
}
.l-home-header__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  max-width: 558px;
  margin: 0 0 35px;
}
@media screen and (max-width: 1023px) {
  .l-home-header__content p {
    order: 3;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-header__content p {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 24px;
  }
}
.l-home-header__content .c-button {
  font-size: 16px;
  letter-spacing: 2px;
  padding: 0.88em 2em;
  text-transform: uppercase;
  max-width: 350px;
  width: 100%;
  margin: 0 auto 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .l-home-header__content .c-button {
    order: 4;
  }
}
.l-home-header__button-desc {
  font-size: 10px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  display: block;
  max-width: 350px;
}
@media screen and (max-width: 1023px) {
  .l-home-header__button-desc {
    order: 5;
  }
}
.l-home-header__img {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin: 0 auto 24px;
  display: block;
  padding: 0 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .l-home-header__img {
    order: 2;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-header__img {
    display: block;
    margin: 0;
    width: auto;
    padding: 0;
    margin-right: -310px;
    order: 2;
    max-width: 100%;
    height: 525px;
  }
}
.l-home-header__img img {
  max-width: 100%;
  max-height: 100%;
}

.l-home-banks {
  background: #FEE3D0;
}
@media screen and (max-width: 1023px) {
  .l-home-banks .l-content {
    padding: 0;
  }
}
.l-home-banks__carousel {
  overflow: hidden;
  --width: 9;
  --duration: 10s;
}
@media screen and (min-width: 1024px) {
  .l-home-banks__carousel {
    --width: 3;
    --duration: 20s;
  }
}
.l-home-banks__carousel > div {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-items: center;
  width: calc(var(--width) * 100%);
  height: 100px;
  will-change: transform;
  animation: carouselAnimation calc(var(--width) * var(--duration)) linear infinite;
}
.l-home-banks__carousel img {
  max-width: 100%;
  max-height: 33px;
}
@keyframes carouselAnimation {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(calc(100% / var(--width) * (1 - var(--width))), 0, 0);
  }
}

.l-home-working {
  background: #FFF8F0;
  padding: 64px 0;
}
@media screen and (min-width: 1024px) {
  .l-home-working {
    padding: 100px 0;
  }
}
.l-home-working h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .l-home-working h2 {
    font-size: 48px;
    line-height: 72px;
    margin: 0 auto 20px;
    max-width: 500px;
  }
}
.l-home-working__subheading {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-home-working__subheading {
    line-height: 26px;
    font-size: 18px;
    margin-bottom: 100px;
  }
}
.l-home-working__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}
.l-home-working__steps .c-step {
  margin-bottom: 160px;
}
.l-home-working__steps .c-step:last-child {
  margin-bottom: 0;
}

.l-home-question {
  background: #fff;
  padding: 72px 0;
}
@media screen and (min-width: 1024px) {
  .l-home-question {
    padding: 100px 0 128px;
  }
}
.l-home-question .l-content {
  text-align: center;
}
.l-home-question h2 {
  font-family: "p22-mackinac-pro";
  max-width: 720px;
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1024px) {
  .l-home-question h2 {
    font-size: 48px;
    line-height: 72px;
  }
}
.l-home-question__icon {
  max-width: 720px;
  width: 100%;
  display: block;
  margin: 0 auto 24px;
}
.l-home-question p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  max-width: 692px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-home-question p {
    font-size: 18px;
    line-height: 26px;
  }
}

.l-home-security {
  padding: 72px 0;
}
@media screen and (min-width: 1024px) {
  .l-home-security {
    padding: 206px 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-security .l-content {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-security__image {
    flex: 0 0 50%;
    width: 50%;
    padding-right: 100px;
    box-sizing: border-box;
  }
}
.l-home-security__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .l-home-security__image img {
    max-width: fit-content;
    height: 350px;
    width: auto;
    margin: 0;
    float: right;
  }
}
.l-home-security__content {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-home-security__content {
    text-align: left;
    flex: 0 0 50%;
  }
}
.l-home-security h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .l-home-security h2 {
    font-size: 48px;
    line-height: 72px;
  }
}
.l-home-security p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0 0 25px;
}
@media screen and (min-width: 1024px) {
  .l-home-security p {
    font-size: 18px;
    line-height: 26px;
    max-width: 444px;
  }
}
.l-home-security .c-button {
  max-width: 350px;
  width: 100%;
}

.l-home-review {
  background: #FFF8F0;
  padding: 64px 0 86px;
}
@media screen and (min-width: 1024px) {
  .l-home-review {
    padding: 130px 0 156px;
    min-height: 550px;
  }
}
.l-home-review .l-content {
  max-width: 932px;
}
@media screen and (max-width: 1023px) {
  .l-home-review .l-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-review .l-content {
    display: flex;
    justify-content: space-between;
  }
}
.l-home-review__quote {
  margin: 0 0 32px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .l-home-review__quote {
    display: contents;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-review__quote {
    margin: 24px 0 0;
    text-align: left;
  }
}
.l-home-review__quote p {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 39px;
  max-width: 352px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 1023px) {
  .l-home-review__quote p {
    flex: 0 0 auto;
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-review__quote p {
    text-align: left;
    font-size: 32px;
    line-height: 44px;
    margin: 0 auto 64px;
  }
}
.l-home-review__quote footer {
  color: #0063CE;
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 1023px) {
  .l-home-review__quote footer {
    flex: 0 0 auto;
    order: 3;
  }
}
.l-home-review__quote strong {
  font-weight: 600;
}
.l-home-review__photo {
  margin: 0 26px 56px 0;
}
@media screen and (max-width: 1023px) {
  .l-home-review__photo {
    flex: 0 0 auto;
    order: 2;
  }
}
@media screen and (min-width: 1024px) {
  .l-home-review__photo {
    margin: 0 80px 0 0;
  }
}
.l-home-review__photo img {
  display: block;
  max-width: 100%;
}

.l-api-connection {
  background: #FFF8F0;
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .l-api-connection {
    padding: 100px 0 120px;
  }
}
.l-api-connection h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  max-width: 720px;
  text-align: center;
  margin: 0 auto 36px;
}
@media screen and (min-width: 1024px) {
  .l-api-connection h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
  }
}
.l-api-connection code {
  background: #fff;
  max-width: 840px;
  width: 100%;
  display: block;
  padding: 24px 36px;
  box-sizing: border-box;
  border-radius: 25px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-api-connection code {
    padding: 36px 72px;
    margin: 0 auto 48px;
  }
}
.l-api-connection pre {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
  white-space: pre-wrap;
  word-spacing: 5px;
  word-break: break-all;
  margin: 0;
}
.l-api-connection p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-api-connection p {
    font-size: 18px;
    line-height: 26px;
  }
}

.l-api-how-integrate {
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .l-api-how-integrate {
    padding: 120px 0;
  }
}
.l-api-how-integrate h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  max-width: 720px;
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1024px) {
  .l-api-how-integrate h2 {
    font-size: 48px;
    line-height: 72px;
    font-weight: 500;
    margin: 0 auto 80px;
  }
}
.l-api-how-integrate__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .l-api-how-integrate__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-api-how-integrate__steps {
  list-style: none;
  padding: 0;
  margin: 0 20px 40px 0;
  counter-reset: steps;
}
@media screen and (min-width: 1024px) {
  .l-api-how-integrate__steps {
    margin: 0 20px 0 0;
  }
}
.l-api-how-integrate__steps li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  max-width: 368px;
  margin-bottom: 20px;
  padding-left: 60px;
  counter-increment: steps;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .l-api-how-integrate__steps li {
    font-size: 18px;
    line-height: 26px;
    padding-left: 80px;
    margin-bottom: 40px;
  }
}
.l-api-how-integrate__steps li:last-child {
  margin-bottom: 0;
}
.l-api-how-integrate__steps li:before {
  content: counter(steps);
  color: #FEE3D0;
  font-family: "p22-mackinac-pro";
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  width: 30px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .l-api-how-integrate__steps li:before {
    font-size: 72px;
    font-weight: 500;
    line-height: 72px;
    width: 42px;
  }
}
.l-api-how-integrate__image {
  flex: 0 0 49%;
  margin-top: 10px;
}
.l-api-how-integrate__image img {
  display: block;
  max-width: 100%;
}

.l-api-notifications {
  background: #181838 url("../img/notifications-header.png") no-repeat center top 20px;
  background-size: auto 50vw;
  color: #FEE3D0;
  padding: 55vw 0 50px;
}
@media screen and (min-width: 1024px) {
  .l-api-notifications {
    background: #181838 url("../img/notifications-header.png") no-repeat left calc(50vw + 70px) top 75px;
    background-size: auto 570px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-api-notifications .l-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 700px;
  }
}
.l-api-notifications h1 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .l-api-notifications h1 {
    font-weight: 500;
    font-size: 56px;
    line-height: 78px;
    text-align: left;
    margin: 0 0 25px;
  }
}
.l-api-notifications p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  max-width: 560px;
  letter-spacing: 0.5px;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-api-notifications p {
    text-align: left;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 30px;
  }
}
.l-api-notifications .c-button {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 2px;
  padding: 0.88em 2em;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-api-notifications .c-button {
    display: inline-block;
  }
}
.l-api-notifications .c-button:hover {
  background: #FEE3D0;
  color: #181838;
}

.l-api-tools {
  background: #FFF8F0;
  padding: 50px 0 60px;
}
@media screen and (min-width: 1024px) {
  .l-api-tools {
    padding: 120px 0 140px;
  }
}
.l-api-tools h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-api-tools h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
  }
}
.l-api-tools__subheading {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
  margin: 0 0 40px;
}
@media screen and (min-width: 1024px) {
  .l-api-tools__subheading {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 60px;
  }
}
.l-api-tools__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-api-tools__list {
    flex-direction: row;
    justify-content: space-around;
  }
}
.l-api-tools__list i {
  background: #FEE3D0;
  width: 2px;
  height: 60px;
  display: block;
  margin: 20px 0;
}
@media screen and (min-width: 1024px) {
  .l-api-tools__list i {
    width: 110px;
    height: 2px;
    margin: 40px 0 0 0;
  }
}
.l-api-tools__feature img {
  width: 50px;
  display: block;
  margin: 0 auto 15px;
}
.l-api-tools__feature p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
  max-width: 170px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-api-tools__feature p {
    font-size: 18px;
    line-height: 26px;
  }
}

.l-main {
  background: #FFF8F0;
  padding-bottom: 64px;
}
.l-main__head {
  height: 120px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .l-main__head {
    height: 265px;
    padding-top: 78px;
  }
}
.l-main__head.tabs {
  height: 184px;
  padding-top: 16px;
}
@media screen and (min-width: 1024px) {
  .l-main__head.tabs {
    height: 265px;
  }
}
.l-main__head.tabs .c-tabs {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .l-main__head.tabs .c-tabs {
    margin-top: 32px;
  }
}
.l-main__head h1 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .l-main__head h1 {
    font-size: 56px;
    line-height: 78px;
    font-weight: 500;
  }
}

.l-how-works-header, .l-how-works-feature, .l-how-works-statuses, .l-how-works-match {
  padding: 50px 0;
}
.l-how-works-header h1,
.l-how-works-header h2, .l-how-works-feature h1,
.l-how-works-feature h2, .l-how-works-statuses h1,
.l-how-works-statuses h2, .l-how-works-match h1,
.l-how-works-match h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header h1,
.l-how-works-header h2, .l-how-works-feature h1,
.l-how-works-feature h2, .l-how-works-statuses h1,
.l-how-works-statuses h2, .l-how-works-match h1,
.l-how-works-match h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 67px;
    text-align: left;
    margin: 0 0 25px;
  }
}
.l-how-works-header p, .l-how-works-feature p, .l-how-works-statuses p, .l-how-works-match p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header p, .l-how-works-feature p, .l-how-works-statuses p, .l-how-works-match p {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
}
.l-how-works-header {
  background: #0063CE;
  color: #FFF8F0;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header {
    padding: 70px 0;
    overflow: hidden;
  }
}
.l-how-works-header .l-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header .l-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-header__image {
    order: 2;
    flex: 0 0 40%;
    width: 40%;
  }
}
.l-how-works-header__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header__image img {
    max-width: fit-content;
    height: 560px;
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-header__content {
    flex: 0 0 auto;
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-header__content h1 {
    max-width: 607px;
    font-size: 56px;
    line-height: 78px;
  }
}
.l-how-works-header__content p {
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header__content p {
    max-width: 560px;
    margin-bottom: 30px;
  }
}
.l-how-works-header .c-button {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 2px;
  padding: 0.88em 2em;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-how-works-header .c-button {
    display: inline-block;
  }
}
.l-how-works-header .c-button:hover {
  background: #FEE3D0;
  color: #0063CE;
}
@media screen and (min-width: 1024px) {
  .l-how-works-feature {
    padding: 115px 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-feature .l-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-feature__image {
    flex: 0 0 auto;
  }
}
.l-how-works-feature__image img {
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-feature__image img {
    max-width: fit-content;
    height: 336px;
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-feature__content {
    flex: 0 0 460px;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-feature.even .l-how-works-feature__image {
    order: 2;
  }
  .l-how-works-feature.even .l-how-works-feature__content {
    order: 1;
  }
}
.l-how-works-statuses {
  background: #FFF8F0;
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-statuses {
    padding: 100px 0 140px;
  }
}
.l-how-works-statuses h2 {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-how-works-statuses h2 {
    margin-bottom: 70px;
  }
}
.l-how-works-statuses__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  justify-content: center;
  grid-template-columns: 276px;
  grid-gap: 30px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-statuses__list {
    grid-template-columns: 276px 276px 276px;
    justify-content: space-between;
  }
}
.l-how-works-statuses__list li {
  background: #fff;
  padding: 45px 24px 24px;
  border-radius: 25px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-statuses__list li {
    height: 300px;
  }
}
.l-how-works-statuses__list h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.75px;
  margin: 0 0 70px;
  padding-left: 50px;
}
.l-how-works-statuses__list p {
  margin: 0;
  text-align: left;
}
.l-how-works-statuses__list .green h3 {
  color: #1B8B00;
  background: url("../img/how-works-logo-green.svg") no-repeat left center;
}
.l-how-works-statuses__list .yellow h3 {
  color: #F08000;
  background: url("../img/how-works-logo-yellow.svg") no-repeat left center;
}
.l-how-works-statuses__list .red h3 {
  color: #CF3131;
  background: url("../img/how-works-logo-red.svg") no-repeat left center;
}
@media screen and (min-width: 1024px) {
  .l-how-works-match {
    padding: 95px 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-match .l-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-match__image {
    flex: 0 0 50%;
    width: 50%;
  }
}
.l-how-works-match__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-how-works-match__image img {
    max-width: fit-content;
    height: 435px;
    width: auto;
    margin: 0;
    float: right;
  }
}
@media screen and (min-width: 1024px) {
  .l-how-works-match__content {
    flex: 0 0 460px;
  }
}

.l-integrations {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}
@media screen and (min-width: 1024px) {
  .l-integrations {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-integrations.active {
  display: grid;
}

.l-pricing-plans {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .l-pricing-plans {
    display: flex;
    justify-content: space-between;
  }
}
.l-pricing-plans .c-pricing-plan {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .l-pricing-plans .c-pricing-plan {
    flex: 0 0 49%;
    margin-bottom: 0;
  }
}
.l-pricing-plans .c-pricing-plan:last-child {
  margin-bottom: 0;
}

.l-integration-info {
  background: #FFF8F0;
  margin-bottom: 70px;
}
@media screen and (max-width: 1023px) {
  .l-integration-info {
    padding: 50px 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-integration-info .l-content {
    display: flex;
    align-items: center;
    padding: 106px 0;
  }
  .l-integration-info .l-content > div {
    flex: 0 0 50%;
  }
}
.l-integration-info__img {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-integration-info__img {
    text-align: left;
  }
}
.l-integration-info__img img {
  max-width: 100%;
}
.l-integration-info__content {
  margin: 20px auto 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-integration-info__content {
    text-align: left;
    margin: 0;
  }
}
.l-integration-info__content h1 {
  font-family: "p22-mackinac-pro";
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
  margin: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .l-integration-info__content h1 {
    font-size: 48px;
    line-height: 72px;
  }
}
.l-integration-info__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0 0 30px;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 1024px) {
  .l-integration-info__content p {
    font-size: 18px;
    line-height: 26px;
  }
}
.l-integration-info__content .c-button {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 200px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .l-integration-feature {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-integration-feature .l-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
  }
}
.l-integration-feature .l-content > div {
  flex: 0 0 46%;
}
.l-integration-feature__img {
  text-align: center;
  margin-bottom: 20px;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .l-integration-feature__img {
    margin: 0;
  }
}
.l-integration-feature__img img {
  max-width: 100%;
}
.l-integration-feature__content {
  order: 1;
}
@media screen and (max-width: 1023px) {
  .l-integration-feature__content {
    max-width: 496px;
    margin: 0 auto;
    text-align: center;
  }
}
.l-integration-feature__content h1 {
  font-family: "p22-mackinac-pro";
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
  margin: 0 0 15px;
  max-width: 496px;
}
@media screen and (min-width: 1024px) {
  .l-integration-feature__content h1 {
    font-size: 48px;
    line-height: 72px;
  }
}
.l-integration-feature__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.5px;
  max-width: 444px;
}
@media screen and (min-width: 1024px) {
  .l-integration-feature__content p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .l-integration-feature.even .l-integration-feature__img {
    order: 1;
  }
  .l-integration-feature.even .l-integration-feature__content {
    order: 2;
  }
}

.l-terms {
  background: #fff;
  padding: 48px 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .l-terms {
    font-size: 18px;
    line-height: 26px;
    padding: 76px 92px 42px;
  }
}
.l-terms h2 {
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5em;
  margin: 0;
}
.l-terms h3 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin: 3em 0 1em;
}
.l-terms p {
  margin: 0;
}
.l-terms ol {
  margin: 0.5em 0 1em;
  padding-left: 1.5em;
}
.l-terms li {
  margin-bottom: 1em;
}
.l-terms .roman-list {
  list-style: lower-roman;
}
.l-terms .alpha-list {
  list-style: lower-alpha;
}

.l-test {
  background: #181838;
  color: #FFF8F0;
  padding: 72px 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-test {
    padding: 96px 0;
  }
}
.l-test h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  max-width: 595px;
  text-align: center;
  margin: 0 auto 16px;
}
@media screen and (min-width: 1024px) {
  .l-test h2 {
    font-size: 56px;
    line-height: 72px;
    margin: 0 auto 36px;
  }
}
.l-test .c-button {
  font-size: 16px;
  letter-spacing: 2px;
  padding: 0.88em 2em;
  text-transform: uppercase;
  max-width: 350px;
  width: 100%;
  margin: 0 auto 15px;
}
.l-test__button-desc {
  font-size: 10px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  display: block;
  max-width: 350px;
  margin: 0 auto;
}

.l-security-header, .l-security-authorization, .l-security-working, .l-security-committee {
  padding: 50px 0;
}
.l-security-header h1,
.l-security-header h2, .l-security-authorization h1,
.l-security-authorization h2, .l-security-working h1,
.l-security-working h2, .l-security-committee h1,
.l-security-committee h2 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .l-security-header h1,
.l-security-header h2, .l-security-authorization h1,
.l-security-authorization h2, .l-security-working h1,
.l-security-working h2, .l-security-committee h1,
.l-security-committee h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 67px;
    text-align: left;
    margin: 0 0 25px;
  }
}
.l-security-header p, .l-security-authorization p, .l-security-working p, .l-security-committee p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .l-security-header p, .l-security-authorization p, .l-security-working p, .l-security-committee p {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
}
.l-security-header {
  background: #0063CE;
  color: #FFF8F0;
}
@media screen and (min-width: 1024px) {
  .l-security-header {
    padding: 70px 0;
    overflow: hidden;
  }
}
.l-security-header .l-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-security-header .l-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-header__image {
    order: 2;
    flex: 0 0 40%;
    width: 40%;
  }
}
.l-security-header__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-security-header__image img {
    max-width: fit-content;
    height: 560px;
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-header__content {
    flex: 0 0 auto;
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-header__content h1 {
    max-width: 350px;
    font-size: 56px;
    line-height: 78px;
  }
}
.l-security-header__content p {
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .l-security-header__content p {
    max-width: 560px;
    margin-bottom: 30px;
  }
}
.l-security-header .c-button {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 2px;
  padding: 0.88em 2em;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-security-header .c-button {
    display: inline-block;
  }
}
.l-security-header .c-button:hover {
  background: #FEE3D0;
  color: #0063CE;
}
@media screen and (min-width: 1024px) {
  .l-security-authorization {
    padding: 100px 0 120px;
    overflow: hidden;
  }
}
.l-security-authorization .l-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-security-authorization .l-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-authorization__image {
    flex: 0 0 50%;
    width: 50%;
  }
}
.l-security-authorization__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-security-authorization__image img {
    max-width: fit-content;
    height: 420px;
    width: auto;
    margin: 0;
    float: right;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-authorization__content {
    padding-left: 100px;
  }
}
.l-security-working {
  background: #FFF8F0;
}
@media screen and (min-width: 1024px) {
  .l-security-working {
    padding: 100px 0 140px;
  }
}
.l-security-working h2 {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-security-working h2 {
    margin-bottom: 60px;
  }
}
.l-security-working__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  justify-content: center;
  grid-template-columns: 276px;
  grid-gap: 30px;
}
@media screen and (min-width: 1024px) {
  .l-security-working__list {
    grid-template-columns: 276px 276px 276px;
    justify-content: space-between;
  }
}
.l-security-working__list li {
  background: #fff;
  padding: 8px 24px 24px;
  border-radius: 25px;
}
@media screen and (min-width: 1024px) {
  .l-security-working__list li {
    height: 300px;
  }
}
.l-security-working__list h3 {
  font-family: "p22-mackinac-pro";
  font-size: 32px;
  font-weight: 500;
  line-height: 72px;
  margin: 0 0 48px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-security-working__list h3 {
    text-align: left;
  }
}
.l-security-working__list p {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .l-security-committee {
    padding: 140px 0;
    overflow: hidden;
  }
}
.l-security-committee .l-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-security-committee .l-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-committee__image {
    flex: 0 0 50%;
    width: 50%;
    order: 2;
  }
}
.l-security-committee__image img {
  max-width: 80%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .l-security-committee__image img {
    max-width: fit-content;
    height: 315px;
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-security-committee__content {
    max-width: 368px;
    width: 100%;
    order: 1;
  }
}

.l-contact-info {
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .l-contact-info {
    padding: 70px 0;
  }
}
.l-contact-info h1 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1024px) {
  .l-contact-info h1 {
    font-size: 48px;
    line-height: 72px;
    margin: 0 0 70px;
  }
}
@media screen and (min-width: 1024px) {
  .l-contact-info__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 14%;
  }
}
.l-contact-info p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.36px;
  margin: 0 0 30px;
}
@media screen and (min-width: 1024px) {
  .l-contact-info p {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
  }
}
.l-contact-info p:last-child {
  margin-bottom: 0;
}
.l-contact-info a {
  color: #0063CE;
  text-decoration: none;
}
.l-contact-info a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .l-contact-bottom {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 1120px) 1fr;
  }
}
.l-contact-bottom > div:nth-child(1) {
  background: #FFF8F0;
}
.l-contact-bottom > div:nth-child(3) {
  background: #FDF4E8;
}
@media screen and (min-width: 1024px) {
  .l-contact-bottom__content {
    display: flex;
  }
}
.l-contact-bottom h1 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1024px) {
  .l-contact-bottom h1 {
    font-size: 48px;
    line-height: 72px;
    margin: 0 0 70px;
  }
}
.l-contact-form {
  background: #FFF8F0;
  flex: 0 0 50%;
  padding: 40px 0 50px;
}
.l-contact-form.sending .l-contact-form__loader {
  display: block;
}
.l-contact-form.success .l-contact-form__success {
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-contact-form {
    padding: 70px 0 100px;
  }
}
.l-contact-form .l-content {
  width: 100%;
  margin: 0 auto 0 0;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .l-contact-form .l-content {
    max-width: 444px;
  }
}
.l-contact-form form {
  padding-top: 20px;
  margin-top: -20px;
  position: relative;
}
.l-contact-form__loader {
  background: rgba(255, 248, 240, 0.8) url("../img/loader.gif") no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none;
}
.l-contact-form__error {
  background: #F8D7DA;
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
  color: #c40000;
  padding: 6px;
  border-radius: 5px;
}
.l-contact-form__error:empty {
  display: none;
}
.l-contact-form__success {
  background: #FFF8F0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  display: none;
}
.l-contact-form__success span {
  background: url("../img/success-info.svg") no-repeat center top;
  color: #1B8B00;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.28px;
  text-align: center;
  max-width: 310px;
  display: block;
  margin: 50px auto 0;
  padding-top: 50px;
}
.l-contact-form__field {
  position: relative;
  margin-bottom: 50px;
}
.l-contact-form__field label {
  color: #bfbfbf;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1px;
  pointer-events: none;
  position: absolute;
  left: 15px;
  top: 8px;
  transition: top 0.3s ease, font 0.3s ease;
  pointer-events: none;
}
.l-contact-form__field input,
.l-contact-form__field select,
.l-contact-form__field textarea {
  background: transparent;
  display: block;
  font-size: 14px;
  line-height: 28px;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 15px;
  outline: 0;
  border: 0;
  border-bottom: 1px solid #707070;
  border-radius: 0;
  min-height: 45px;
  appearance: none;
}
.l-contact-form__field input:focus, .l-contact-form__field input.active,
.l-contact-form__field select:focus,
.l-contact-form__field select.active,
.l-contact-form__field textarea:focus,
.l-contact-form__field textarea.active {
  color: #0063CE;
  border-color: #0063CE;
}
.l-contact-form__field input:focus + label, .l-contact-form__field input.active + label,
.l-contact-form__field select:focus + label,
.l-contact-form__field select.active + label,
.l-contact-form__field textarea:focus + label,
.l-contact-form__field textarea.active + label {
  font-size: 11px;
  top: -24px;
  text-transform: lowercase;
}
.l-contact-form__field select {
  background: transparent url("../img/select.svg") no-repeat right 16px center;
  padding-right: 42px;
}
.l-contact-form__field textarea {
  overflow: hidden;
  resize: none;
}
.l-contact-chat {
  background: #FDF4E8;
  flex: 0 0 50%;
  padding: 40px 0 50px;
}
@media screen and (min-width: 1024px) {
  .l-contact-chat {
    padding: 70px 0 100px;
  }
}
.l-contact-chat .l-content {
  width: 100%;
  margin: 0 0 0 auto;
  box-sizing: border-box;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-contact-chat .l-content {
    max-width: 444px;
  }
}
.l-contact-chat p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.36px;
  margin: 0 0 30px;
}
@media screen and (min-width: 1024px) {
  .l-contact-chat p {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 50px;
  }
}

.l-error {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: stretch;
  min-height: 100vh;
}
@media screen and (max-width: 1023px) {
  .l-error {
    flex-direction: column;
  }
}
.l-error__left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .l-error__left {
    order: 2;
    padding: 30px 15px 0;
  }
}
.l-error__left h1 {
  font-family: "p22-mackinac-pro";
  font-size: 48px;
  font-weight: 500;
  line-height: 72px;
  margin: 0 0 15px;
}
@media screen and (max-width: 1023px) {
  .l-error__left h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
.l-error__left p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0 0 30px;
}
@media screen and (min-width: 1024px) {
  .l-error__left p {
    line-height: 26px;
    font-size: 18px;
  }
}
.l-error__right {
  background: #FFF8F0;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-error__right {
    order: 1;
  }
}
.l-error__right img {
  max-width: 80%;
  margin: 0 auto;
}
.l-error__button {
  background: #001934;
  color: #fff;
  text-decoration: none;
  padding: 6px 35px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  display: inline-block;
  font-size: 14px;
}
.l-error__button:hover {
  opacity: 0.8;
}

.l-footer {
  background: #fff;
}
.l-footer__top {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 50px;
}
@media screen and (max-width: 1023px) {
  .l-footer__top {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__top {
    padding: 90px 0 110px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__logo {
    order: 3;
    flex: 0 0 100%;
    margin-top: 40px;
    display: none;
  }
}
.l-footer__logo img {
  max-width: 140px;
  margin-bottom: 10px;
}
.l-footer__logo span {
  color: #A5A5A5;
  letter-spacing: 0.28px;
  font-size: 14px;
  line-height: 22px;
  max-width: 170px;
  display: block;
}
.l-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-row-gap: 5px;
  max-width: 500px;
  width: 100%;
}
.l-footer__nav a {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.28px;
  text-decoration: none;
}
.l-footer__copyright {
  color: #A5A5A5;
  font-size: 10px;
  letter-spacing: 0.2px;
  text-align: center;
  border-top: 1px solid #E8E8E8;
  display: block;
  padding: 16px 0;
}

.faq {
  background: #FDF4E8;
  overflow: hidden;
  padding: 48px 0 24px;
}
@media screen and (min-width: 1024px) {
  .faq {
    padding: 87px 0 88px;
  }
}
@media screen and (max-width: 1023px) {
  .faq .l-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .faq .l-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.faq__content {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .faq__content {
    display: contents;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .faq__content {
    max-width: 100%;
    display: block;
    margin: 0;
    order: 1;
  }
}
.faq__content h1 {
  font-family: "p22-mackinac-pro";
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  max-width: 600px;
  margin: 34px 0 16px;
}
@media screen and (max-width: 1023px) {
  .faq__content h1 {
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .faq__content h1 {
    font-size: 48px;
    line-height: 78px;
    margin: 0 0 40px;
  }
}
.faq__content ul {
  padding-left: 20px;
  list-style: none;
}
.faq__content h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}
.faq__content h3 span:nth-of-type(1) {
  color: #001934;
}
.faq__content h3 span:nth-of-type(2) {
  font-size: 24px;
  color: #0063CE;
}
.faq__content h3 span:nth-of-type(2)::before {
  content: "+";
}
.faq__content h3.isOpen span:nth-of-type(2)::before {
  content: "-";
}
.faq__text {
  font-size: 16px;
  line-height: 24px;
  max-width: 558px;
  max-height: 0;
  border-bottom: 2px solid #FEE3D0;
  color: #707070;
  overflow: hidden;
  transition: 0.1s;
}
.faq__text.isOpen {
  max-height: 1400px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .faq__text {
    order: 3;
  }
}
@media screen and (min-width: 1024px) {
  .faq__text {
    line-height: 26px;
    margin: 0 0 24px;
  }
}
.faq__img {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin: 0 auto 24px;
  display: block;
  padding: 0 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .faq__img {
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .faq__img {
    display: block;
    margin: 0;
    width: auto;
    padding: 0;
    margin-left: -400px;
    order: 1;
    max-width: 100%;
    height: 400px;
  }
}
.faq__img img {
  max-width: 100%;
  max-height: 100%;
}

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