@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Gilroy-Light.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Gilroy-Regular.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Gilroy-Medium.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Gilroy-Semibold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Gilroy-Bold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Gilroy-Extrabold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Gilroy-Black.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 1000;
  src: url(../fonts/Gilroy-Heavy.woff2) format("woff2");
}

:root {
  --indexSize: 1vh + 1vw;
  --accentColor: #ffaf00;
  --darkColor: #1f2229;
  --zIndexHeader: 1000;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body,
html {
  height: 100%;
  min-width: 320px;
  scrollbar-gutter: stable;
}

body {
  color: #000;
  font-size: 1.8rem;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
  font-family: Oswald, sans-serif;
}

button,
input,
textarea {
  font-size: inherit;
  line-height: inherit;
}

body.is-lock {
  overflow: hidden;
  padding-right: 17px;
}

.touch body.is-lock {
  padding-right: 0;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main,
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

::-moz-selection {
  background-color: #ffaf00;
  color: #fff;
}

::selection {
  background-color: #ffaf00;
  color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #d31543;
}

input:required:valid,
textarea:required:valid {
  border-color: #bc9e7b;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus,
input,
textarea {
  outline: none;
}

[data-fullscreen] {
  min-height: 100vh;
}

.touch [data-fullscreen] {
  min-height: calc(var(--vh, 1vh) * 100);
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.input,
.textarea {
  background: transparent;
  border: 0.06rem solid #1f2229;
  border-radius: 0.4rem;
  color: #1f2229;
  font-family: Oswald, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0 2.3rem;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
  -moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1.6rem 2.3rem;
  resize: none;
}

.select-box {
  display: block;
  font-size: 1.8rem;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.select-box__current {
  background: transparent;
  border: 1px solid #bababa;
  border-radius: 0.6rem;
  color: #fff;
  color: #1f2229;
  cursor: pointer;
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.select-box__current:focus + .select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__input:checked + .select-box__input-text {
  display: block;
}

.select-box__input-text {
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  list-style: none;
  opacity: 0;
  padding: 0.8rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background: #fff;
  color: #1f2229;
  display: block;
  margin-bottom: 0;
  padding: 0.5rem 1.4rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@-webkit-keyframes RotateNext {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes RotateNext {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes RotatePrev {
  0% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }

  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes RotatePrev {
  0% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }

  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes MarkWidth {
  0% {
    width: 0;
  }

  to {
    width: calc(100% + 2rem);
  }
}

@keyframes MarkWidth {
  0% {
    width: 0;
  }

  to {
    width: calc(100% + 2rem);
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.link {
  cursor: pointer;
  position: relative;
}

.link:hover {
  color: #ffaf00;
}

.link:after {
  background: currentColor;
  bottom: -0.3rem;
  content: "";
  height: 0.2rem;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.h1 {
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.h2 {
  font-size: 4rem;
  line-height: 1.375;
}

.h2,
.h3 {
  font-weight: 600;
}

.h3 {
  font-size: 2rem;
  line-height: 1;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #000;
  text-decoration: none;
}

.container {
  max-width: 144rem;
}

.container,
.container-1810 {
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.container-1810 {
  max-width: 189rem;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0;
  text-shadow: none;
  text-transform: uppercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #ffaf00;
  border: 1px solid transparent;
  border-radius: 7.5rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--darkColor);
  cursor: pointer;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover {
  background: #ffbc29;
}

.btn--dark {
  background: var(--darkColor);
  color: #fff;
}

.btn--dark:hover {
  background: #141414;
}

.btn--stroke {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.btn--stroke:hover {
  border-color: transparent;
}

svg {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button,
.fancybox-custom-video .fancybox-button {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #1f2229;
  height: 5.6rem;
  margin: 4rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-button:hover,
.fancybox-custom-video .fancybox-button:hover {
  color: #1f2229;
}

.fancybox-custom .fancybox-infobar,
.fancybox-custom-video .fancybox-infobar {
  display: none;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #1f2229;
  height: 5.6rem;
  padding: 0.5rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  right: calc(env(safe-area-inset-right) + 10rem);
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left {
  left: calc(env(safe-area-inset-right) + 10rem);
}

.fancybox-custom-video.fancybox-is-open .fancybox-bg,
.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 1;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-inner {
  left: 212px;
  right: 0;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs {
  background: #fff;
  left: 0;
  right: auto;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a:before {
  border: 1px solid #ffaf00;
  border-radius: 0.4rem;
  margin: -0.5rem;
}

.fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a {
  background-color: #fff;
  background-size: contain;
  display: block;
  height: 82px;
  margin: 1rem;
  overflow: visible;
  width: 84px;
}

.swiper-wrapper {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  vertical-align: middle;
}

.hvr-buzz-out:active,
.hvr-buzz-out:focus,
.hvr-buzz-out:hover {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownMini {
  -webkit-animation-name: fadeInDownMini;
  animation-name: fadeInDownMini;
}

@-webkit-keyframes fadeInDown20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown20 {
  -webkit-animation-name: fadeInDown20;
  animation-name: fadeInDown20;
}

@-webkit-keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp20 {
  -webkit-animation-name: fadeInUp20;
  animation-name: fadeInUp20;
}

@-webkit-keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clipInLeft {
  -webkit-animation-name: clclipInLeftip;
  animation-name: clipInLeft;
}

@-webkit-keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clipInRight {
  -webkit-animation-name: clipInRight;
  animation-name: clipInRight;
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll-area {
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
  width: 7px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.scroll-area::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.link--arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.link--arrow:hover .icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link--arrow .icon {
  height: 1rem;
  position: relative;
  top: 0.1rem;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 1rem;
}

.mark {
  position: relative;
  z-index: 2;
}

.mark:after {
  background: var(--accentColor);
  bottom: 0;
  content: "";
  height: 2.5rem;
  left: -1rem;
  position: absolute;
  width: calc(100% + 2rem);
  z-index: -1;
}

.slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-nav-btn {
  cursor: pointer;
  height: 4rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4rem;
}

.slider-nav-btn.swiper-button-disabled {
  opacity: 0.5;
}

.nav-prev {
  background: url(../img/icons/nav-prev.svg) 50% / contain no-repeat;
}

.nav-next {
  background: url(../img/icons/nav-next.svg) 50% / contain no-repeat;
}

.header {
  left: 0;
  position: absolute;
  top: 3rem;
  width: 100%;
  z-index: var(--zIndexHeader);
}

.header__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  max-width: 15.1rem;
  width: 100%;
}

.header__logo img {
  width: 100%;
}

.header__burger {
  background: url(../img/icons/header-burger.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 4.2rem;
  width: 4.2rem;
}

.footer {
  padding: 5.5rem;
}

.footer__area {
  background: #132831;
  border-radius: 1.5rem;
  padding: 4.2rem 0 9.7rem;
}

.footer__area-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__nav-left {
  max-width: 55.3rem;
  width: 100%;
}

.footer__nav-left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.1rem 3.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-left a,
.footer__nav-left li {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer__nav-left a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__nav-left a:hover {
  text-decoration: none;
}

.footer__logo {
  max-width: 10.6rem;
  width: 100%;
}

.footer__logo img {
  width: 100%;
}

.footer__nav-right {
  max-width: 55.3rem;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

.footer__nav-right,
.footer__nav-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__nav-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.1rem 3.1rem;
}

.footer__nav-right a,
.footer__nav-right li {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer__nav-right a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__nav-right a:hover {
  text-decoration: none;
}

.affiliate-hero {
  padding: 5.5rem 5.5rem 6.8rem;
}

.container-1810 {
  max-width: 100%;
  padding: 0;
}

.affiliate-hero__area {
  background: url(../img/hero-bg.jpg) 50% / cover no-repeat;
  border-radius: 1.5rem;
  padding: 7.6rem 0 17.7rem;
}

.affiliate-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 96.5rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.affiliate-hero__content .h1 {
  color: #fff;
  font-size: 7.1rem;
  font-weight: 700;
  line-height: 1.02817;
  margin-bottom: 4.7rem;
  max-width: 77rem;
  text-align: center;
  text-transform: uppercase;
}

.affiliate-hero__content span {
  color: #ffaf00;
}

.affiliate-hero__content p {
  color: #fff;
  font-family: Gilroy, sans-serif;
  font-size: 2.2rem;
  text-align: center;
}

.affiliate-hero__logo {
  margin-bottom: 13.6rem;
  max-width: 14.6rem;
  width: 100%;
}

.affiliate-hero__logo img {
  width: 100%;
}

.affiliate-vantages {
  padding-bottom: 7.8rem;
}

.affiliate-vantages .h2 {
  margin-bottom: 0;
  text-align: center;
}

.affiliate-vantages__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 4.8rem;
}

.affiliate-vantages__item {
  background: #17303b;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 1.7rem 1.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  color: #fff;
  -ms-flex-direction: column;
  flex-direction: column;
}

.affiliate-vantages__item:first-of-type p {
  max-width: 19.2rem;
}

.affiliate-vantages__item:nth-of-type(2) p {
  max-width: 15.1rem;
}

.affiliate-vantages__item:nth-of-type(3) p {
  max-width: 19.7rem;
}

.affiliate-vantages__item:nth-of-type(4) p {
  max-width: 20.2rem;
}

.affiliate-vantages__item:nth-of-type(5) p {
  max-width: 20.7rem;
}

.affiliate-vantages__item img {
  margin-bottom: 1rem;
  width: 4.9rem;
}

.affiliate-vantages__item .h3 {
  margin-bottom: 1.1rem;
  min-height: 4rem;
}

.affiliate-vantages__item p {
  color: #fff;
  font-family: Gilroy, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0;
}

.affiliate-work__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2rem;
  margin-bottom: 4rem;
}

.affiliate-work__item:first-of-type {
  padding-right: 4.2rem;
}

.affiliate-work__item-image {
  height: 57.7rem;
  max-width: 68rem;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.affiliate-work__item-image img {
  border-radius: 1.5rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.affiliate-work__item-text {
  padding-top: 4.4rem;
}

.affiliate-work__item-text .h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 6rem;
}

.affiliate-work__item-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Gilroy, sans-serif;
  gap: 1.2rem;
  margin-bottom: 2.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 1rem;
}

.affiliate-work__item-p:last-of-type {
  margin-bottom: 0;
}

.affiliate-work__item-p p {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0;
}

.affiliate-work__item-num {
  background: #fbbd00;
  border-radius: 50%;
  height: 5.3rem;
  width: 5.3rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.affiliate-work__item-num,
.affiliate-work__item-num span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.affiliate-work__item-num span {
  font-size: 1.8rem;
  gap: 0.2rem;
  left: -0.9rem;
  line-height: 1;
  position: relative;
}

.affiliate-work__item-num span span {
  font-size: 3.6rem;
  font-weight: 600;
  left: 0;
  line-height: 1;
}

.affiliate-work__item--reverse {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.affiliate-work__item--reverse .affiliate-work__item-image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.affiliate-work__item--reverse .affiliate-work__item-text {
  max-width: 59.8rem;
  padding-top: 8.8rem;
}

.affiliate-work__item--reverse .affiliate-work__item-text .h2 {
  font-size: 3.5rem;
  margin-bottom: 5.1rem;
}

.affiliate-work__item--reverse .affiliate-work__item-num {
  background: #e05067;
}

.affiliate-work__item--reverse .affiliate-work__item-p {
  gap: 1.8rem;
  margin-bottom: 1.6rem;
}

.affiliate-form {
  padding-bottom: 7.8rem;
}

.affiliate-form .h2 {
  margin-bottom: 5.5rem;
  text-align: center;
}

.affiliate-form__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.affiliate-form__inputs {
  width: 100%;
}

.affiliate-form__inputs .input {
  border: 1px solid rgba(31, 34, 41, 0.4);
  border-radius: 5rem;
  color: #000;
  font-family: Gilroy, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  height: 7.2rem;
  margin-bottom: 1.4rem;
  text-align: center;
}

.affiliate-form__inputs .input:last-of-type {
  margin-bottom: 0;
}

.affiliate-form__inputs .input::-webkit-input-placeholder {
  color: #000;
  opacity: 0.35;
}

.affiliate-form__inputs .input::-moz-placeholder {
  color: #000;
  opacity: 0.35;
}

.affiliate-form__inputs .input:-ms-input-placeholder {
  color: #000;
  opacity: 0.35;
}

.affiliate-form__inputs .input::-ms-input-placeholder {
  color: #000;
  opacity: 0.35;
}

.affiliate-form__inputs .input::placeholder {
  color: #000;
  opacity: 0.35;
}

.affiliate-form__inputs .input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.affiliate-form__inputs .input:focus::-moz-placeholder {
  opacity: 0;
}

.affiliate-form__inputs .input:focus:-ms-input-placeholder {
  opacity: 0;
}

.affiliate-form__inputs .input:focus::-ms-input-placeholder {
  opacity: 0;
}

.affiliate-form__inputs .input:focus::placeholder {
  opacity: 0;
}

.custom-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-family: Gilroy, sans-serif;
  gap: 1.6rem;
  line-height: 1;
  margin-bottom: 0;
  width: 100%;
}

.custom-checkbox span {
  color: #1f2229;
  font-size: 1.8rem;
  font-weight: 300;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.custom-checkbox span a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.custom-checkbox input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

.custom-checkbox input:checked ~ .checkbox-icon:after {
  opacity: 1;
}

.custom-checkbox input:checked ~ span {
  opacity: 1;
}

.checkbox-icon {
  background: transparent;
  border-radius: 2px;
  height: 2.2rem;
  width: 2.2rem;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  order: -1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0.1rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.checkbox-icon:after {
  background: url(../img/icons/check.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 0.7rem;
  opacity: 0;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 1rem;
}

.affiliate-form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2.5rem;
}

.affiliate-form__btn {
  border-radius: 5rem;
  color: #000;
  font-family: Gilroy, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  height: 7.8rem;
  text-transform: none;
  width: 100%;
}

.modal-respond {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: fixed;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(31, 34, 41, 0.7);
  display: none;
  top: 0;
  z-index: 9999;
}

.modal-respond.is-active,
.modal-respond__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-respond__area {
  border-radius: 1.2rem;
  max-width: 78rem;
  padding: 8.4rem 15rem 7rem;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background: #fff;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-respond__header {
  font-size: 3.5rem;
  margin-bottom: 6rem;
  text-align: center;
}

.modal-respond__btn {
  border-radius: 5rem;
  font-size: 2rem;
  font-weight: 500;
  height: 7.4rem;
  max-width: 42.3rem;
  width: 100%;
}

.modal-fail .modal-respond__btn {
  background: #fe0235;
}

.modal-fail .modal-respond__btn:hover {
  background: #fe204d;
}

@media (min-width: 767px) {
  .custom-checkbox:hover span {
    color: #000;
  }
}

@media (min-width: 1930px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width: 1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width: 1100px) {
  body.is-lock {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .touch [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    font-size: 14px;
    height: 54px;
    padding-left: 12px;
    padding-right: 35px;
  }

  .select-box__list {
    font-size: 14px;
    width: 100%;
  }

  .select-box__option {
    padding: 6px 20px;
  }

  .h1 {
    font-size: 23px;
  }

  .h2 {
    font-size: 25px;
  }

  .h2,
  .h3 {
    line-height: 1.1;
  }

  .h3 {
    font-size: 14px;
  }

  .container,
  .container-1810 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn {
    font-size: 16px;
    height: 50px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button,
  .fancybox-custom-video .fancybox-button {
    height: 4rem;
    margin: 20px;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button,
  .fancybox-custom-video .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
    display: none;
    right: 0;
    right: env(safe-area-inset-left);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left {
    display: none;
    left: 0;
    left: env(safe-area-inset-left);
  }

  .fancybox-custom-video .fancybox-slide {
    padding: 12px;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-inner {
    left: 0;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs {
    bottom: 30px;
    padding-bottom: 10px;
    top: auto;
    width: 100%;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list {
    display: block;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a:before {
    margin: -2px;
  }

  .fancybox-custom.fancybox-show-thumbs .fancybox-thumbs__list a {
    height: 58px;
    margin: 5px;
    width: 60px;
  }

  .footer {
    padding: 15px;
  }

  .footer__area {
    padding: 40px 0;
  }

  .footer__area-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .footer__nav-left ul {
    gap: 2px 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__nav-left a,
  .footer__nav-left li {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer__logo {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .footer__nav-right {
    text-align: center;
  }

  .footer__nav-right,
  .footer__nav-right ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__nav-right ul {
    gap: 2px 8px;
  }

  .footer__nav-right a,
  .footer__nav-right li {
    font-size: 16px;
    line-height: 1.5;
  }

  .affiliate-hero {
    padding: 15px 15px 30px;
  }

  .affiliate-hero__area {
    padding: 30px 15px;
  }

  .affiliate-hero__content {
    max-width: 100%;
  }

  .affiliate-hero__content .h1 {
    font-size: calc(var(--indexSize) * 6);
    line-height: 1.1;
    margin-bottom: calc(var(--indexSize) * 4);
    max-width: 100%;
  }

  .affiliate-hero__content p {
    font-size: calc(var(--indexSize) * 2);
  }

  .affiliate-hero__logo {
    margin-bottom: calc(var(--indexSize) * 10);
    max-width: 80px;
  }

  .affiliate-vantages {
    padding-bottom: 40px;
  }

  .affiliate-vantages__grid {
    gap: 7px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .affiliate-vantages__item {
    padding: 17px;
  }

  .affiliate-vantages__item .h3 {
    min-height: 31px;
  }

  .affiliate-vantages__item .h3 br {
    display: none;
  }

  .affiliate-vantages__item p {
    font-size: 12px;
  }

  .affiliate-work__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .affiliate-work__item:first-of-type {
    padding: 0;
  }

  .affiliate-work__item-image {
    height: auto;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .affiliate-work__item-text {
    padding: 0;
  }

  .affiliate-work__item-text .h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }

  .affiliate-work__item-p {
    gap: 15px;
    margin-bottom: 20px;
  }

  .affiliate-work__item-p p {
    font-size: 14px;
  }

  .affiliate-work__item--reverse .affiliate-work__item-text {
    max-width: 100%;
    padding: 0;
  }

  .affiliate-work__item--reverse .affiliate-work__item-text .h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }

  .affiliate-work__item--reverse .affiliate-work__item-p {
    gap: 15px;
    margin-bottom: 20px;
  }

  .affiliate-work__item--reverse .affiliate-work__item-p:last-of-type {
    margin-bottom: 0;
  }

  .affiliate-form {
    padding-bottom: 40px;
  }

  .affiliate-form .h2 {
    margin-bottom: 30px;
  }

  .affiliate-form__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .affiliate-form__inputs .input {
    height: 62px;
    margin-bottom: 10px;
  }

  .custom-checkbox span {
    font-size: 16px;
    font-weight: 400;
  }

  .affiliate-form__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }

  .affiliate-form__btn {
    font-size: 18px;
    height: 68px;
  }

  .modal-respond__area {
    padding: 48px 30px;
  }

  .modal-respond__header {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .modal-respond__btn {
    font-size: 16px;
    height: 64px;
  }
}

@media (max-width: 370px) {
  .affiliate-hero__content .h1 {
    font-size: calc(var(--indexSize) * 5.5);
  }

  .affiliate-hero__content p {
    font-size: calc(var(--indexSize) * 1.8);
  }

  .affiliate-vantages__item p {
    font-size: 11px;
  }
}
