:root {
  --black: #000;
  --white: #fff;
  --blue: #262d38;
  --red: #ff5050;
  --green-light: #28d17c;
  --blue-light: #f0f4f9;
  --main-color: var(--blue);
  --primary-color: var(--green-light);
  --error-color: var(--red);
  --main-offsize: 0.9375rem;
  --add-offsize: 1rem;
}

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

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

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

@font-face {
  font-family: Poppins;
  font-display: swap;
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  color: var(--main-color);
  line-height: 1;
  font-family: "Poppins";
  font-size: var(--main-offsize);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Poppins";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

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

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 75rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 15px;
}

.form {
  max-width: 400px;
}

.form__rows {
  margin-bottom: 10px;
}

.form__row {
  position: relative;
}

.form__row:not(:last-child) {
  margin-bottom: 10px;
}

.form__label {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 20px;
  font-size: 12px;
  color: rgba(38, 45, 56, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.form__input--has-image {
  position: relative;
  padding-right: 115px;
  border-radius: 12px;
  background-color: var(--white);
  overflow: hidden;
}

.form__input--has-image img {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  width: auto;
}

.form__button {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: auto 18px;
  grid-template-columns: auto 18px;
  padding: 17.5px 40px;
  gap: 60px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 12px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.form__button--dark {
  background-color: var(--main-color);
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.input {
  width: 100%;
  padding: 27px 20px 12px;
  background-color: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.15) inset;
          box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.15) inset;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5333333333;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.input._form-error {
  color: var(--error-color);
}

textarea.input {
  resize: none;
  min-height: 150px;
}

.select {
  position: relative;
  z-index: 3;
}

.select._select-open {
  z-index: 4;
}

.select__body {
  position: relative;
}

.select__title {
  position: relative;
  width: 100%;
  max-height: 49px;
  padding: 12px 20px;
  background-color: var(--blue-light);
  border-radius: 0.75rem;
  outline: none;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  -webkit-transition: border-radius 0.4s ease, color 0.4s ease;
  transition: border-radius 0.4s ease, color 0.4s ease;
}

._select-open .select__title {
  border-radius: 12px 12px 0 0;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__icon {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}

._select-open .select__icon {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  color: var(--primary-color);
}

.select__icon svg {
  color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--main-color);
}

.select__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  position: absolute;
  z-index: 3;
  top: 48px;
  left: 0px;
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.4666666667;
  border-radius: 0 0 12px 12px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(83, 99, 140, 0.1);
          box-shadow: 0px 0px 50px 0px rgba(83, 99, 140, 0.1);
  border-top: 0;
  overflow: hidden;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  color: inherit;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  /* .header__select & {
  	color: var(--main-color);
  } */
}

.select__option._select-selected {
  color: var(--primary-color);
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select__asset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  margin-right: 5px;
}

._select-tag {
  cursor: pointer;
}

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

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

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

.title {
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}

.smooth-scroll-page {
  scroll-behavior: smooth;
}

.text-elipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) {
  margin: 1.5625rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock).industries__controls span {
  background-color: rgba(7, 5, 70, 0.2);
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) span {
  width: 10px;
  height: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) span:not(:last-child) {
  margin: 0 0.625rem 0 0;
}

.swiper-pagination-bullets:not(.swiper-pagination-lock) span.swiper-pagination-bullet-active {
  background-color: var(--add-color);
}

.header__actions {
  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 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  margin-right: 30px;
}

.top-phones-header {
  background-color: #f0f4f9;
}

.top-phones-header__items {
  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;
  gap: 20px;
}

.top-phones-header__item {
  position: relative;
  white-space: nowrap;
  scroll-snap-align: start;
  font-size: 14px;
}

.top-phones-header__item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.menu__link {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--main-color);
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.menu__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}

.icon-menu {
  display: none;
}

.icon-menu__inner {
  display: block;
  position: relative;
  width: 1.125rem;
  height: 0.875rem;
  cursor: pointer;
  z-index: 5;
}

.icon-menu__inner span,
.icon-menu__inner::before,
.icon-menu__inner::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  right: 0;
  position: absolute;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--main-color);
}

.icon-menu__inner::before {
  top: 0;
}

.icon-menu__inner::after {
  bottom: 1px;
}

.icon-menu__inner span {
  top: calc(50% - 0.0625rem);
}

.menu-open .icon-menu__inner span {
  width: 0;
}

.menu-open .icon-menu__inner span,
.menu-open .icon-menu__inner::before,
.menu-open .icon-menu__inner::after {
  opacity: 0.5;
}

.menu-open .icon-menu__inner::before {
  top: calc(50% - 0.0625rem);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-open .icon-menu__inner::after {
  bottom: calc(56% - 0.0625rem);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.footer__content {
  padding: 30px 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid var(--blue-light);
}

.footer__link {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--primary-color);
}

.footer__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page__hero {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.hero {
  padding: 0 15px;
}

.hero__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__inner::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(40, 209, 124, 0.9);
}

.hero__body {
  position: relative;
  z-index: 3;
}

.hero__title {
  color: var(--white);
  font-weight: 700;
  /*  @include adaptiveValue("font-size", 90, 40, 0, 1200, 800); */
}

.hero__image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.page__contact-us {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.contact-us {
  padding: 0 15px;
}

.contact-us__wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  background-color: var(--blue-light);
}

.contact-us__info {
  line-height: 1.5714285714;
}

.contact-us__info p:not(:last-child) {
  margin-bottom: 15px;
}

.faq {
  padding: 0 15px;
}

.faq__wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  background-color: var(--blue-light);
}

.faq__list li:not(:last-child) {
  margin-bottom: 15px;
}

.faq__list li h2 {
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 600;
}

.faq__list li p {
  line-height: 1.4666666667;
}

.faq__contents {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  background-color: var(--white);
  border-radius: 20px;
}

.faq__contents li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.faq__contents li::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6px;
          flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  -webkit-transform: translate3D(0px, 6.5px, 0);
      -ms-transform: translate3D(0px, 6.5px, 0);
          transform: translate3D(0px, 6.5px, 0);
}

.faq__contents li:not(:last-child) {
  margin-bottom: 15px;
}

.faq__contents li a {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.page__shipping {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.shipping {
  padding: 0 15px;
}

.shipping__wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  background-color: var(--blue-light);
}

.shipping__subtitle {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 600;
}

.shipping__benefits {
  margin-bottom: 20px;
}

.shipping__descr {
  line-height: 1.4666666667;
}

.shipping__descr ul:not(:last-child),
.shipping__descr p:not(:last-child) {
  margin-bottom: 15px;
}

.shipping__descr ul {
  padding-left: 8px;
}

.shipping__descr ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shipping__descr ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4px;
          flex: 0 0 4px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: var(--main-color);
  -webkit-transform: translate3D(0px, 9px, 0);
      -ms-transform: translate3D(0px, 9px, 0);
          transform: translate3D(0px, 9px, 0);
}

.shipping__descr a {
  font-weight: 600;
  text-decoration: underline;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.item-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.5;
}

.item-benefits__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  margin-right: 10px;
}

.item-benefits__label {
  font-weight: 700;
}

.preference__body {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.preference__item {
  text-align: center;
}

.preference__icon {
  margin-bottom: 10px;
}

.preference__label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.preference__descr {
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 29.99875em) {
  :root {
    --title-offsize: 2.25rem;
  }

  .title {
    margin-bottom: 20px;
  }
}

@media (min-width: 47.99875em) {
  .wrapper--no-overflow {
    overflow: visible;
  }

  .header__content {
    padding: 20px 0;
  }

  .header__menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 570px;
            flex: 0 1 570px;
  }

  .header__select {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 175px;
            flex: 0 1 175px;
  }

  .menu__list {
    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;
  }

  .page {
    padding-bottom: 50px;
  }

  .page__hero {
    margin-bottom: 56px;
  }

  .hero__inner {
    border-radius: 80px;
  }

  .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .hero__info {
    padding: 100px 0;
  }

  .hero__title {
    margin-bottom: 40px;
  }

  .hero__image {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-right: -104px;
  }

  .page__contact-us {
    margin-bottom: 56px;
  }

  .contact-us__wrapper {
    border-radius: 80px;
  }

  .contact-us__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .contact-us__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 540px;
            flex: 0 1 540px;
    margin-right: 40px;
  }

  .contact-us__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 560px;
            flex: 0 1 560px;
  }

  .page__faq {
    margin-bottom: 56px;
  }

  .faq__wrapper {
    border-radius: 80px;
  }

  .faq__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .faq__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .faq__contents {
    padding: 20px;
  }

  .faq__contents {
    position: sticky;
    top: 20px;
  }

  .faq__list li {
    word-break: break-word;
  }

  .page__shipping {
    margin-bottom: 56px;
  }

  .shipping__wrapper {
    border-radius: 80px;
  }

  .shipping__benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .shipping__benefits-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .shipping__benefits-item:not(:last-child) {
    margin-right: 30px;
  }
}

@media (min-width: 61.99875em) {
  .title {
    font-size: 36px;
  }

  .header__content {
    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__actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 925px;
            flex: 0 1 925px;
    margin-right: 30px;
  }

  .top-phones-header__items {
    padding: 8.5px 0;
  }

  .menu__item:not(:last-child) {
    margin: 0 2.5rem 0 0;
  }

  .hero__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 501px;
            flex: 0 1 501px;
  }

  .contact-us__wrapper {
    padding: 60px 20px;
  }

  .faq__wrapper {
    padding: 60px 5px;
  }

  .faq__contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }

  .shipping__wrapper {
    padding: 60px 20px;
  }

  .preference__body {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 74.99875em) {
  .hero__title {
    font-size: 90px;
  }

  .hero__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 631px;
            flex: 0 1 631px;
  }

  .faq__content {
    margin-right: 60px;
  }
}

@media (max-width: 74.99875em) {
  .hero__body {
    padding-left: 15px;
  }
}

@media (max-width: 61.99875em) {
  .header__actions {
    margin-bottom: 10px;
  }

  .top-phones-header__items {
    margin-right: -30px;
    overflow: scroll;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    padding: 10px 30px 10px 0;
  }

  .preference__body {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
}

@media (max-width: 47.99875em) {
  .form__button--dark {
    padding: 17.5px 30px;
    gap: 30px;
  }

  .header__content {
    padding: 10px 0;
  }

  .menu__body {
    position: fixed;
    z-index: 4;
    top: 0;
    left: -100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1rem;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu__list {
    display: -ms-grid;
    display: grid;
    gap: 80px;
    text-align: center;
  }

  .icon-menu {
    display: block;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    outline: none;
    border-radius: 12px;
    background-color: var(--blue-light);
  }

  .page {
    padding-bottom: 30px;
  }

  .page__hero {
    margin-bottom: 40px;
  }

  .hero__inner {
    border-radius: 40px;
  }

  .hero__info {
    position: relative;
    z-index: 2;
    padding: 60px 0;
  }

  .hero__title {
    margin-bottom: 20px;
  }

  .hero__form {
    max-width: 240px;
  }

  .hero__image {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: auto;
  }

  .page__contact-us {
    margin-bottom: 40px;
  }

  .contact-us__wrapper {
    border-radius: 40px;
  }

  .contact-us__content {
    margin-bottom: 20px;
  }

  .page__faq {
    margin-bottom: 40px;
  }

  .faq__wrapper {
    border-radius: 40px;
  }

  .faq__contents {
    padding: 20px 15px;
  }

  .faq__contents {
    margin-bottom: 10px;
  }

  .page__shipping {
    margin-bottom: 40px;
  }

  .shipping__wrapper {
    border-radius: 40px;
  }

  .shipping__benefits-item:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 40.62375em) {
  .hero__title {
    font-size: 40px;
  }
}

@media (max-width: 29.99875em) {
  :root {
    --title-offsize: 1.625rem;
  }

  .title {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .hero__image {
    width: 90.303030303%;
    right: -40.2684563758%;
  }

  .hero__bg-image {
    -o-object-position: center right;
       object-position: center right;
  }

  .contact-us__wrapper {
    padding: 20px;
  }

  .faq__wrapper {
    padding: 20px 5px;
  }

  .shipping__wrapper {
    padding: 20px;
  }

  .preference__item:first-child .preference__label {
    max-width: 175px;
    word-break: break-all;
  }
}

@media (min-width: 29.99875em) and (max-width: 61.99875em) {
  .title {
    font-size: 30px;
  }

  .contact-us__wrapper {
    padding: 40px 20px;
  }

  .faq__wrapper {
    padding: 40px 5px;
  }

  .shipping__wrapper {
    padding: 40px 20px;
  }
}

@media (min-width: 47.99875em) and (max-width: 61.99875em) {
  .menu__item:not(:last-child) {
    margin: 0 1.25rem 0 0;
  }

  .faq__contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }
}

@media (min-width: 47.99875em) and (max-width: 74.99875em) {
  .hero__title {
    font-size: 70px;
  }

  .hero__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52.5833333333%;
            flex: 0 1 52.5833333333%;
  }

  .faq__content {
    margin-right: 30px;
  }
}

@media (min-width: 40.62375em) and (max-width: 47.99875em) {
  .hero__title {
    font-size: 50px;
  }
}

@media (min-width: 29.99875em) and (max-width: 47.99875em) {
  .hero__image {
    width: 350px;
    right: -100px;
  }
}

@media (any-hover: hover) {
  .form__row:hover .form__label {
    -webkit-transform: translate3D(0px, -3px, 0);
        -ms-transform: translate3D(0px, -3px, 0);
            transform: translate3D(0px, -3px, 0);
  }

  .form__button:hover {
    color: var(--main-color);
  }

  .form__button--dark:hover {
    color: var(--primary-color);
  }

  .select__title:hover {
    color: var(--primary-color);
  }

  .select__title:hover svg {
    color: var(--primary-color);
  }

  .select__option:hover {
    color: var(--primary-color);
  }

  .top-phones-header__item:hover::after {
    width: 100%;
  }

  .menu__link:hover {
    color: var(--primary-color);
  }

  .menu__link:hover::after {
    width: 100%;
  }

  .footer__link:hover::after {
    opacity: 0;
    -webkit-transform: translate3D(0px, 3px, 0);
        -ms-transform: translate3D(0px, 3px, 0);
            transform: translate3D(0px, 3px, 0);
    visibility: hidden;
  }

  .faq__contents li a:hover {
    color: var(--primary-color);
  }

  .shipping__descr a:hover {
    color: var(--primary-color);
  }
}

.christmas{
  width: 100%;
  background: url("../images/christmas_big.png") no-repeat center;
  height: 80px;
}

@media (max-width: 390px) {
  .christmas{
    height: 66px;
  }
}