/* null */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol with list role */
ul[role='list'],
li,
ol[role='list'] {
  list-style: none;
}

/* Core body defaults */
body {
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #F4F4F4;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  display: inline-block;
}

/* Shorter line heights */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* Images */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Form elements */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

/* Anchor target */
:target {
  scroll-margin-block: 5ex;
}

/* global */
.container {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 16px;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* styles */

#header {
  background-color: #F4F4F4;
  border-bottom: 1px solid #D0D0D0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 0;
}

.logo {
  cursor: pointer;

  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .nav {
    gap: 24px;
  }
}

.btn {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  padding: 12px 16px;
  border-radius: 32px;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  color: #FFFFFF;

  background-color: #151212;
  background-image: linear-gradient(103.02deg, #151212, #151212);
  border: 1px solid transparent;

  transition: background-image 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.primary:hover {
  background-image: linear-gradient(103.02deg, #852800 9.49%, #000000 56.45%, #0068BD 98.13%);
  border: 1px solid #FFFFFF66;
}

.btn.secondary {
  color: #000000;
  background: transparent;
  border: 1px solid #000000;

  display: none;
}

.open-mobile-menu {
  border: none;

  display: flex;
  align-items: center;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .btn {
    padding: 16px 24px;
  }

  .btn.secondary {
    display: block;
  }

  .open-mobile-menu {
    display: none;
  }
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu .nav-links .btn {
  display: block;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-overlay {
    display: none !important;
  }
}

#main {
  flex: 1;
  background-color: #FFFFFF;
}

.verification_window {
  background-color: #FFFFFF;
  border-radius: 32px;
  padding: 32px 24px;
  max-width: 600px;
  margin: 65px auto;
  border: 1px solid #111111;
}

.verification_window h2 {
  font-size: 32px;
  font-weight: 700;
  color: #221D1D;
  line-height: 100%;
  letter-spacing: 0;
}

.verification_window>p {
  margin-top: 24px;
  color: #111111;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0;
}

.verifications_list {
  margin: 16px 0 24px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verifications_list .item {
  border: 1px solid #E5E6E6;
  border-radius: 16px;
  padding: 16px;

  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;

  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.verifications_list .item:hover {
  border-color: #333;
}

.verifications_list .item strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0;
  color: #111111;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 22px;
  user-select: none;
  transition: all 0.2s ease;
}

.checkbox-label:last-child {
  margin-bottom: 0;
}

.checkbox-label:hover .custom-box {
  border-color: #555;
}

.custom-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-box {
  width: 22px;
  height: 22px;
  border: 2px solid #333;
  border-radius: 4px;
  margin-right: 14px;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  transition: all 0.2s ease;
}

.custom-input:checked+.custom-box {
  background: #000;
  border-color: #000;
}

.custom-input:checked+.custom-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.label-text {
  flex: 1;
  padding-top: 1px;

  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0;
  color: #111111;
}

.label-text a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.label-text a:hover {
  color: #555;
}

.title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
}

.continue {
  margin-top: 24px;
  width: 100%;
  padding: 12px 0;
  border-radius: 16px;
  background-color: #221D1D;
  color: #FFFFFF;

  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  border: none;

  min-height: 54px;

  transition: 0.3s ease-in-out;
}

.continue:hover {
  background-color: #4f4747;
}




/* index intro section */

.intro_screen {
  padding: 32px 0;
  background-color: #F4F4F4;
}

@media screen and (min-width: 768px) {
  .intro_screen {
    padding: 65px 0;
  }
}

.intro_screen .head {
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .intro_screen .head {
    text-align: center;
    margin-bottom: 56px;
  }
}

.intro_screen .head .title {
  max-width: 880px;
  margin: 0 auto 32px;

  font-weight: 700;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 110%;
  letter-spacing: 0;
  color: #221D1D;
}

.intro_screen .head .descr {
  margin: 0 auto 32px;
  max-width: 990px;

  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
  color: #686767;
}

.media_block {
  position: relative;
}

.media_block .image_block {
  background: url('../images/index/intro/bg-mob.png') no-repeat top center;
  background-size: cover;
  min-height: 240px;
  transition: 0.3s ease-in-out;

  border-radius: 32px;
  overflow: hidden;
}

.media_block .card {
  max-width: 388px;
  margin: 16px auto 0;
}

@media screen and (min-width: 385px) {
  .media_block .image_block {
    background: url('../images/index/intro/bg.png') no-repeat center;
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .media_block .card {
    position: absolute;
    top: 50%;
    right: 42px;
    transform: translateY(-50%);
    z-index: 1;
  }

  .media_block .image_block {
    min-height: 468px;
  }
}



.media_block .image_block .labels {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 390px;
  flex-wrap: wrap;
  gap: 12px;

  position: relative;
  top: 12px;
  left: 12px;
}

@media screen and (min-width: 768px) {
  .media_block .image_block .labels {
    position: relative;
    top: 24px;
    left: 24px;
  }
}

.media_block .image_block .labels p {
  font-weight: 400;
  font-size: clamp(13px, 2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;

  padding: 12px;
  border: 1px solid #FFFFFF;
  border-radius: 32px;
}



/* why us */

.why_us__wrapper {
  padding: 32px 0;
}

.why_us__wrapper>.title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;
  text-align: left;
  margin-bottom: clamp(16px, 3vw, 32px);
}

.why_us__wrapper .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why_us__wrapper .cards .card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid #686767;
  border-radius: 32px;
}

.why_us__wrapper .cards .card .icon {
  margin-bottom: clamp(24px, 5vw, 60px);
}

.why_us__wrapper .cards .card .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.why_us__wrapper .cards .card p {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 24px;
  letter-spacing: 0;
  color: #686767;
}

@media screen and (min-width: 768px) {
  .why_us__wrapper {
    padding: 120px 0;
  }

  .why_us__wrapper .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .why_us__wrapper .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* why_us_2 */

.why_us_2 {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .why_us_2 {
    padding: 120px 0;
  }
}

.why_us_2__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 992px) {
  .why_us_2__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 72px;
  }
}

.why_us_2__wrapper .media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.why_us_2__wrapper .media .mobile {
  display: block;
  position: relative;
  max-width: 350px;
  min-width: 350px;
  margin: 0 auto;
}

.why_us_2__wrapper .media .mobile::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -10px;
  width: 255px;
  height: 92px;
  background: url('../images/index/why_us_2/man-label-mobile.png') no-repeat center;
  background-size: cover;
  z-index: 1;
}

.why_us_2__wrapper .media .desktop {
  display: none;
}

@media screen and (min-width: 992px) {
  .why_us_2__wrapper .media .mobile {
    display: none;
  }

  .why_us_2__wrapper .media .desktop {
    display: block;
    position: relative;
    max-width: 500px;
    min-width: 400px;
  ;
  }

  .why_us_2__wrapper .media .desktop::after {
    content: '';
    position: absolute;
    bottom: 150px;
    left: -25px;
    width: 302px;
    height: 93px;
    background: url('../images/index/why_us_2/man-label-desktop.png') no-repeat center;
    background-size: cover;
    z-index: 1;
  }
}


.why_us_2__wrapper .info .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;
  text-align: left;
  margin-bottom: clamp(16px, 3vw, 32px);
}

.why_us_2__wrapper .info .why_us_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .why_us_2__wrapper .info .why_us_list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.why_us_2__wrapper .info .why_us_list .item {
  position: relative;
  padding-left: 32px;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #686767;
}

.why_us_2__wrapper .info .why_us_list .item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #221D1D;
  border-radius: 50%;
  z-index: 1;
}


/* partners */

.partners_wrapper {
  background-color: #C6CAC6;
  padding: 44px;
  border-radius: 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.partners_wrapper svg {
  flex-shrink: 0;
}



/* order */

.order {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .order {
    padding: 72px 0;
  }
}

.order_wrapper .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;
  text-align: left;
  margin-bottom: 24px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .order_wrapper .title {
    text-align: center;
    margin-bottom: 72px;
  }
}

.order_wrapper .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .order_wrapper .cards {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
}

.order_wrapper .cards .item {
  max-width: 410px;
}

.order_wrapper .cards .item img {
  object-fit: cover;
}


/* who_is_it_for */

.who_is_it_for {
  background-color: #F4F4F4;
}

.who_is_it_for__wrapper {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .who_is_it_for__wrapper {
    padding: 65px 0;
  }
}

.who_is_it_for__wrapper .head {
  margin-bottom: 32px;
}

.who_is_it_for__wrapper .head .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;
  text-align: left;
  margin-bottom: 16px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .who_is_it_for__wrapper .head .title {
    margin-bottom: 32px;
  }
}

.who_is_it_for__wrapper .head .descr {
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
  color: #686767;
  text-align: left;
}

.who_is_it_for__wrapper .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .who_is_it_for__wrapper .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media screen and (min-width: 992px) {
  .who_is_it_for__wrapper .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.who_is_it_for__wrapper .cards .item {
  padding: 24px;
  background-color: #fff;
  border-left: 1px solid #221D1D;

  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 24px;
  letter-spacing: 0;
  color: #686767;
}

@media screen and (min-width: 768px) {
  .who_is_it_for__wrapper .cards .item {
    padding: 32px;
  }
}

.who_is_it_for__wrapper .cards .item strong {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #221D1D;

  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  .who_is_it_for__wrapper .cards .item strong {
    margin-bottom: 32px;
  }
}



/* become_a_partner */

.become_a_partner {
  padding: 32px 0;
}

.become_a_partner__wrapper {
  text-align: center;
  padding: 56px 0;

  background: url('../images/index/become_a_partner/bg.png') no-repeat center;
  background-size: cover;

  border-radius: 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .become_a_partner {
    padding: 72px 0;
  }

  .become_a_partner__wrapper {
    padding: 72px 0;
  }
}

.become_a_partner__wrapper .title {
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: left;
  text-align: center;
}

.become_a_partner__wrapper .descr {
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
  color: #FFFFFF;
  max-width: 500px;
}

.become_a_partner__wrapper>a {
  color: #221D1D;
  background-color: #fff;
}

.become_a_partner__wrapper>a:hover {
  background-image: linear-gradient(103.02deg, #852800 9.49%, #000000 56.45%, #0068BD 98.13%);
  color: #fff;
}


#footer {
  background-color: #221D1D;
  border-radius: 32px 32px 0 0;
  flex-shrink: 0;
}

.footer_wrapper {
  padding: 32px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  color: #F4F4F4;
}

.footer_logo {
  text-align: center;
}

.footer_logo .footer_logo_text {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer_logo .footer_logo_text p {
  margin: 0;
  color: #F4F4F4;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.links a {
  color: #F4F4F4;
  text-decoration: none;
  line-height: 100%;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .footer_wrapper {
    padding: 56px 0;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer_logo {
    text-align: left;
  }

  .footer_logo .footer_logo_text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .links {
    align-items: flex-end;
  }
}







.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.fade-up-intro {
  opacity: 0;
  transform: translateY(35px);
  transition: all 1.15s cubic-bezier(0.23, 1, 0.32, 1);

  will-change: opacity, transform;
}

.fade-up.visible,
.fade-up-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.fast,
.fade-up-intro.fast {
  transition-duration: 0.7s;
}

.fade-up.slow,
.fade-up-intro.slow {
  transition-duration: 1.4s;
}

#main .container iframe {
  width: 100%;
  height: 100%;
  border: none;
}