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

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

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jakarta Sans";
  src: url("../fonts/jakarta-sans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

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

.header {
  background-color: transparent;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  position: relative;
  z-index: 4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  gap: 13px;
}

.header__logo svg {
  max-width: 62px;
  height: auto;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.header__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__menu {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.header__mobile-menu {
  display: none;
}

.header__link {
  color: white;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__icon-menu {
  display: none;
}

.header__cross {
  display: none;
}

.header__button {
  padding: 15px 21px;
  background-color: #E88A25;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: white;
  border-radius: 5px;
}

.header__button svg path {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.header__white {
  background-color: white;
}

.header__white .header__button {
  border-color: #E88A25;
}

.header__white .header__menu {
  color: black;
}

.header__white .header__menu a {
  color: black;
}

.header__white .header__logo {
  color: black;
}

.header__white .header__logo img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.header__white .header__icon-menu span {
  background-color: black;
}

.header__mobile-menu.active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.header__white .header__logo svg path {
  fill: black;
}

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

.body {
  color: #1e1e1e;
  font-size: 16px;
}

body {
  color: #1E1E1E;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background-color: #F0F0F0;
}

body:after {
  content: "";
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background-color: black;
}

body.show-burger {
  overflow: hidden;
}

body.show-burger:after {
  z-index: 10;
  opacity: 0.6;
  visibility: visible;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}

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

.hidden {
  display: none;
}

.terms-popup {
  position: fixed;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  z-index: -1;
  height: 100dvh;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background-color: rgba(0, 0, 0, 0.6);
}

.terms-popup.active {
  visibility: visible;
  z-index: 100;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.terms-popup__container {
  max-width: 900px;
  width: 96%;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  padding: 24px;
  text-align: center;
  border-radius: 20px;
  overflow-y: auto;
  position: relative;
  height: 92dvh;
  background-color: white;
}

.terms-popup__container h3 {
  margin-top: 23px;
  font-size: 22px;
  font-weight: 700;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
}

.terms-popup__container p {
  text-align: left !important;
  font-family: "Roboto", sans-serif;
  line-height: 130%;
}

.terms-popup__content {
  border: 1px solid #dde5eb;
  background-color: rgba(237, 241, 244, 0.5);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  padding: 20px 24px;
}

.terms-popup__content h4 {
  margin-top: 30px;
  padding: 16px;
  max-width: 331px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 700;
}

.terms-popup__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.product-details {
  position: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  display: none;
}

.product-details__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  gap: 5px;
}

.product-details__stars svg {
  stroke: #E88A25;
  fill: #E88A25;
}

.product-details__information h3 {
  font-size: 25px;
  line-height: 120%;
  color: #1d1d1d;
  font-family: Roboto, sans-serif;
  font-weight: 700;
}

.product-details__information p {
  font-family: "Roboto", sans-serif;
  line-height: 130%;
  font-size: 18px;
  margin-top: 15px;
  font-weight: 500;
}

.product-details__information h4 {
  margin-top: 15px;
  font-size: 25px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  color: #E88A25;
}

.product-details__slider {
  overflow: hidden;
}

.product-details__slider img {
  border-radius: 8px;
}

.product-details__content {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.product-details__content .main-slider {
  overflow: hidden;
  margin-bottom: 10px;
}

.product-details.active {
  visibility: visible;
  z-index: 100;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-details__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.product-details__product {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 24px;
  width: 96%;
  position: relative;
  border-radius: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  background-color: white;
}

.hero {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 95px;
  max-width: 1600px;
  overflow-x: hidden;
  margin-right: auto;
  margin-left: auto;
  background-color: #F0F0F0;
}

.hero__title {
  text-align: center;
  color: white;
  line-height: 140%;
  margin-top: 20px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.hero__content {
  position: relative;
}

.hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.hero__text.text-one {
  top: 13%;
  left: 0%;
}

.hero__text.text-one p {
  color: white;
}

.hero__text.text-two {
  top: 3%;
  right: 4%;
}

.hero__text.text-two p {
  color: white;
}

.hero__text.text-third {
  bottom: 7%;
  left: 11%;
}

.hero__text.text-four {
  right: -2%;
  bottom: 20%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.hero__text.text-four p,
.hero__text.text-third p {
  background-color: #f5f5f7;
}

.hero__text p {
  font-size: 14px;
  line-height: 130%;
  padding: 9px 31px;
  font-weight: 500;
  mix-blend-mode: difference;
  border: 1px solid white;
  border-radius: 31px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0px 0px 10px rgba(136, 136, 136, 0.25);
          box-shadow: 0px 0px 10px rgba(136, 136, 136, 0.25);
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.hero__background {
  position: absolute;
  top: -8%;
  left: -3%;
  width: 114%;
}

.hero__text-mobile {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.hero__text-mobile p {
  font-size: 14px;
  line-height: 130%;
  padding: 9px 31px;
  font-weight: 500;
  mix-blend-mode: difference;
  border: 1px solid white;
  border-radius: 31px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px rgba(136, 136, 136, 0.25);
          box-shadow: 0px 0px 10px rgba(136, 136, 136, 0.25);
  background-color: transparent;
  margin-right: auto;
  margin-left: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.hero__text-mobile p br {
  display: none;
}

.hero__text-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.hero__image-wrapper {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 90px;
}

.hero__image {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  top: 80px;
  max-width: 690px;
  width: 100%;
  min-height: 327px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid-cta {
  background-color: white;
  padding-top: 56px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding-bottom: 94px;
}

.grid-cta__heading {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 140%;
  font-size: 40px;
  color: #1E1E1E;
  font-weight: 700;
}

.grid-cta__subtitle {
  margin-top: 20px;
  line-height: 120%;
  color: #1E1E1E;
  max-width: 889px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  text-align: center;
}

.grid-cta__content {
  margin-top: 100px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr;
  gap: 30px;
}

.grid-cta__content picture {
  padding: 20px;
}

.grid-cta__content picture,
.grid-cta__content img {
  width: 100%;
}

.grid-cta__content-three {
  margin-top: -10px;
}

.grid-cta__content-two {
  grid-template-columns: 1fr auto;
  margin-top: -10px;
}

.grid-cta__body {
  max-width: 600px;
  width: 100%;
}

.grid-cta__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
}

.grid-cta__title b {
  font-weight: 500;
  color: #E88A25;
}

.grid-cta__text {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  max-width: 523px;
  line-height: 170%;
  letter-spacing: 1px;
}

.grid-cta__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 11px;
  font-family: "Jakarta Sans", sans-serif;
  font-weight: 500;
  padding-left: 14px;
}

.grid-cta__list li {
  position: relative;
  list-style: disc;
}

.faq {
  margin-top: 74px;
}

.faq h2 {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 140%;
  font-size: 40px;
  color: black;
  z-index: 3;
  position: relative;
  padding: 0 20px;
  font-weight: 700;
}

.faq__spoller {
  padding: 24px 24px 24px 34px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 5px rgba(67, 74, 122, 0.15);
          box-shadow: 0px 2px 5px rgba(67, 74, 122, 0.15);
  border-radius: 10px;
}

.faq__spoller-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
}

.faq__spoller-title svg {
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.faq__spoller-title._active svg {
  rotate: 180deg;
}

.faq__spoller-body {
  display: none;
  color: #1D1D1D;
  line-height: 130%;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  max-width: 1100px;
  margin-top: 15px;
}

.faq__spollers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 16px;
  margin-top: 30px;
}

.checkout {
  background-color: white;
  padding-bottom: 74px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.checkout__cart {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkout__button-wrapper {
  padding: 0 22px 30px 22px;
  margin-top: auto;
}

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

.checkout__content {
  display: grid;
  grid-template-columns: 467px 1fr;
  gap: 16px;
}

.checkout__products {
  -webkit-box-shadow: 0px 3px 8px rgba(218, 218, 227, 0.5);
          box-shadow: 0px 3px 8px rgba(218, 218, 227, 0.5);
  padding: 24px;
  border-radius: 20px;
}

.checkout__products-list-wrapper {
  max-height: 637.3px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.checkout__products-list-wrapper::-webkit-scrollbar {
  display: none;
}

.checkout__products-list-title {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding-bottom: 10px;
}

.checkout__product {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 17px;
  border-bottom: 1px solid #edf1f4;
  padding-bottom: 24px;
  padding-top: 24px;
}

.checkout__product:last-child {
  border-bottom: none;
}

.checkout__product img {
  border-radius: 8px;
}

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

.checkout__product-title button {
  text-decoration: underline;
  padding: none;
  font-size: 12px;
  color: #0d105d;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background-color: transparent;
}

.checkout__product-title h4 {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  line-height: 130%;
}

.checkout__product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2px 0;
  gap: 5px;
}

.checkout__product-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.checkout__product-body p {
  color: #7d8495;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.checkout__product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.checkout__product-price h4 {
  font-size: 14px;
  color: #E88A25;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
}

.checkout__add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 9px;
  background-color: #0d105d;
  font-family: "Roboto", sans-serif;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.checkout__cart {
  -webkit-box-shadow: 0px 3px 8px rgba(218, 218, 227, 0.5);
          box-shadow: 0px 3px 8px rgba(218, 218, 227, 0.5);
  border-radius: 20px;
}

.checkout__spoiler {
  padding: 20px 23px 0 23px;
}

.checkout__spoiler-title {
  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;
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 1px solid #dde5eb;
}

.checkout__spoiler-title._active svg {
  rotate: 180deg;
}

.checkout__spoiler-title svg {
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.checkout__spoiler-title h3 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}

.checkout__cart-products {
  border: 1px solid #dde5eb;
  border-radius: 4px;
  margin-top: 16px;
  padding: 24px 20px;
}

.checkout__cart-title {
  display: grid;
  grid-template-columns: 1fr 0.4fr 0.4fr 0.4fr 0.4fr;
  text-align: center;
  border-bottom: 1px solid #edf1f4;
  padding: 0 16px 12px 16px;
  gap: 10px;
}

.checkout__cart-title h3 {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #9aabb7;
  font-weight: 700;
}

.checkout__cart-title h3:first-child {
  text-align: left;
}

.checkout__empty svg {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.checkout__empty p {
  text-align: center;
  margin-top: 19px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #a6b3bd;
}

.checkout__table {
  margin-top: 23px;
  border: 1px solid #dde5eb;
  background-color: rgba(237, 241, 244, 0.5);
  border-radius: 4px;
  padding: 0 16px;
}

.checkout__table p {
  padding: 12px 0 8px 0;
  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;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #dee3e6;
}

.checkout__table p b {
  font-weight: 500;
}

.checkout__table p:first-child {
  font-weight: 700;
}

.checkout__table p:first-child b {
  font-weight: 700;
}

.checkout__table p:last-child {
  border-bottom: none;
}

.checkout__subtitle {
  margin-top: 8px;
  padding-left: 10px;
  font-size: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #7d8495;
}

.checkout__payment-checkbox,
.checkout__address-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding-bottom: 20px;
  cursor: pointer;
}

.checkout__payment-checkbox label,
.checkout__address-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout__payment-checkbox span,
.checkout__payment-checkbox p,
.checkout__address-checkbox span,
.checkout__address-checkbox p {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #1d1d1d;
}

.checkout__payment-checkbox input,
.checkout__address-checkbox input {
  display: none;
}

.checkout__payment-checkbox {
  gap: 3px;
}

.checkout__checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid #8498a9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.checkout__form {
  max-width: 589px;
}

.checkout__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  margin-top: 20px;
}

.checkout__form {
  margin-top: 20px;
}

.checkout__street-input {
  display: grid;
  grid-template-columns: 1fr 94px;
  gap: 16px;
}

.checkout__zip-input {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 16px;
}

.checkout__input-wrapper p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #020203;
}

.checkout__input-wrapper select,
.checkout__input-wrapper input {
  padding: 11px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  color: black;
  background-color: #edf1f4 !important;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-top: 11px;
  font-weight: 500;
  font-size: 13px;
}

.checkout__input-wrapper select::-webkit-input-placeholder, .checkout__input-wrapper input::-webkit-input-placeholder {
  color: #c5c7d6;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 13px;
}

.checkout__input-wrapper select::-moz-placeholder, .checkout__input-wrapper input::-moz-placeholder {
  color: #c5c7d6;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 13px;
}

.checkout__input-wrapper select:-ms-input-placeholder, .checkout__input-wrapper input:-ms-input-placeholder {
  color: #c5c7d6;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 13px;
}

.checkout__input-wrapper select::-ms-input-placeholder, .checkout__input-wrapper input::-ms-input-placeholder {
  color: #c5c7d6;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 13px;
}

.checkout__input-wrapper select::placeholder,
.checkout__input-wrapper input::placeholder {
  color: #c5c7d6;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 13px;
}

.checkout__input-wrapper select {
  color: black;
}

.checkout__input-wrapper select option:disabled {
  color: #c5c7d6;
}

.checkout__select-wrapper {
  position: relative;
}

.checkout__select-wrapper svg {
  position: absolute;
  top: 64%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkout__delivery-address {
  margin-top: 35px !important;
}

.checkout__delivery-address h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 31px;
  font-weight: 700;
}

.checkout__payment-products,
.checkout__forms {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #95a7b9 #e2e7ed;
  max-height: 387px;
}

.checkout__payment-products::-webkit-scrollbar,
.checkout__forms::-webkit-scrollbar {
  width: 3px;
}

.checkout__payment-products::-webkit-scrollbar-track,
.checkout__forms::-webkit-scrollbar-track {
  background: #e2e7ed;
}

.checkout__payment-products::-webkit-scrollbar-thumb,
.checkout__forms::-webkit-scrollbar-thumb {
  background: #95a7b9;
}

.checkout__address-body {
  display: grid;
  overflow-y: auto;
  grid-template-rows: auto 1fr auto;
}

.checkout__cart-next,
.checkout__payment-button,
.checkout__address-save {
  margin-top: 23px;
  padding: 12px;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border-radius: 4px;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  background-color: #0d105d;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.checkout__pay {
  padding-bottom: 24px;
}

.checkout__line-items {
  max-height: 166px;
  overflow-y: auto;
}

.checkout__line-item {
  display: grid;
  grid-template-columns: 1fr 0.4fr 0.4fr 0.4fr 0.4fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
  border-bottom: 1px solid #edf1f4;
  padding: 7px 16px 7px 16px;
}

.checkout__line-item p {
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  line-height: 120%;
  text-align: center;
}

.checkout__line-item-image {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout__line-item-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.checkout__line-item-image h4 {
  text-align: initial !important;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 120%;
}

.checkout__line-item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 9px;
  border-radius: 50px;
  max-width: 96px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #B4B6C5;
}

.checkout__line-item-quantity button {
  background-color: transparent;
  width: 16px;
  height: 16px;
  padding: 0;
}

.checkout__line-item-quantity span {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: black;
}

.checkout__payment-products {
  padding: 4px 20px 20px 20px;
  margin-top: 16px;
  border: 1px solid #EAEEF6;
  border-radius: 4px;
  max-height: 215px;
  overflow-y: auto;
}

.checkout__payment-product {
  display: grid;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EAEEF6;
  grid-template-columns: 1fr 0.3fr 0.3fr 0.3fr;
  gap: 16px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout__payment-product:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout__payment-product-quantity {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #1E1E1E;
}

.checkout__payment-product-text h4 {
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
}

.checkout__payment-product-text p {
  font-family: "Roboto", sans-serif;
  color: #E88A25;
  line-height: 130%;
  font-size: 14px;
  font-weight: 600;
}

.checkout__payment-product-image {
  display: grid;
  grid-template-columns: 91px 1fr;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout__payment-product-image p {
  text-align: initial;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 120%;
  margin-top: 7px;
  color: #7D8495;
}

.checkout__payment-product-image h4 {
  text-align: initial;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 120%;
}

.checkout__payment-product-image img {
  height: 70px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.checkout__payment-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  border-radius: 4px;
  padding: 13px 31px;
  border: 1px solid #EAEEF6;
  background-color: rgba(237, 241, 244, 0.5);
  margin-top: 12px;
}

.checkout__payment-price p {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
}

.checkout__payment-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.checkout__payment-seller,
.checkout__payment-invoice,
.checkout__payment-delivery {
  padding: 16px 20px;
  border: 1px solid #EAEEF6;
  background-color: rgba(237, 241, 244, 0.5);
}

.checkout__payment-seller h3,
.checkout__payment-invoice h3,
.checkout__payment-delivery h3 {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 120%;
}

.checkout__payment-seller p,
.checkout__payment-invoice p,
.checkout__payment-delivery p {
  margin-top: 9px;
  font-size: 12px;
  line-height: 140%;
  color: #1E1E1E;
}

.checkout__payment-checkbox input:checked ~ .checkout__checkbox,
.checkout__address-checkbox input:checked ~ .checkout__checkbox {
  background-color: #0d105d;
  border-color: #0d105d;
}

.checkout__cart-next:disabled,
.checkout__payment-button:disabled,
.checkout__address-save:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: initial;
}

.checkout__payment-checkbox {
  margin-top: 12px;
}

.checkout__payment-button {
  display: none !important;
}

.spollers-block__item.disabled {
  pointer-events: none !important;
  cursor: initial !important;
}

.checkout__cart-next,
.checkout__address-save {
  display: none;
}

.checkout__paypal-button {
  display: none;
  padding: 0 23px 30px 23px;
  margin-top: auto;
}

.checkout__cart-spoiler._active ~ .checkout__button-wrapper .checkout__cart-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkout__cart-spoiler._active ~ .checkout__button-wrapper .checkout__address-save {
  display: none;
}

.checkout__address-spoiler._active ~ .checkout__button-wrapper .checkout__cart-next {
  display: none;
}

.checkout__address-spoiler._active ~ .checkout__button-wrapper .checkout__address-save {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkout__pay._active ~ .checkout__button-wrapper {
  display: none;
}

.checkout__pay._active ~ .checkout__paypal-button {
  display: block;
}

.terms-open {
  text-decoration: underline;
  cursor: pointer;
}

.steps {
  background-color: white;
  padding-top: 134px;
  padding-bottom: 94px;
  position: relative;
}

.steps__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
}

.steps__title {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 140%;
  font-size: 40px;
  color: white;
  z-index: 3;
  position: relative;
  font-weight: 700;
}

.steps__subtitle {
  margin-top: 20px;
  line-height: 120%;
  max-width: 892px;
  z-index: 3;
  position: relative;
  color: white;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  text-align: center;
}

.steps__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  z-index: 3;
  position: relative;
  margin-top: 138px;
}

.steps__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(70%, -50%);
      -ms-transform: translate(70%, -50%);
          transform: translate(70%, -50%);
  z-index: 3;
}

.steps__item {
  background-color: white;
  padding: 30px 21px 35px 21px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.steps__item img {
  height: 80px;
  width: initial;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.steps__item h3 {
  text-align: center;
  font-family: "inter", sans-serif;
  font-weight: 600;
  margin-top: 20px;
  font-size: 20px;
  line-height: 120%;
}

.steps__item p {
  margin-top: 16px;
  font-family: "inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.slider {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 85px;
}

.slider__title {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 140%;
  font-size: 40px;
  color: black;
  z-index: 3;
  position: relative;
  padding: 0 20px;
  font-weight: 700;
}

.slider__text {
  margin-top: 20px;
  line-height: 120%;
  max-width: 821px;
  z-index: 3;
  position: relative;
  color: black;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  text-align: center;
  padding: 0 20px;
}

.slider__subtitle {
  margin-top: 47px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  line-height: 200%;
  text-align: center;
  font-weight: 700;
  padding: 0 20px;
}

.slider__pagination {
  display: none;
}

.slider__container {
  max-width: 1340px !important;
  padding: 0 !important;
}

.slider__prev {
  position: absolute;
  top: 50%;
  left: -15px;
  z-index: 3;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider__prev svg path {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.slider__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  cursor: pointer;
  right: -15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.slider__next svg path {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.slider__content {
  position: relative;
}

.slider__swiper {
  margin-top: 27px;
  padding-top: 20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 19px !important;
  z-index: 1;
  max-width: 1250px;
  position: relative;
}

.slider__swiper:after {
  width: 300px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(15%, rgba(255, 255, 255, 0.3)), color-stop(40%, rgba(255, 255, 255, 0.7)), color-stop(70%, white));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 15%, rgba(255, 255, 255, 0.7) 40%, white 70%);
  pointer-events: none;
  height: 100%;
  position: absolute;
  right: 0;
  content: "";
  z-index: 2;
  top: 0;
}

.slider__slide {
  padding: 20px 20px 0 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 10px rgba(67, 74, 122, 0.25);
          box-shadow: 0px 4px 10px rgba(67, 74, 122, 0.25);
}

.slider__slide h3 {
  margin-top: 19px;
  font-size: 18px;
  line-height: 120%;
  color: #1d1d1d;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  min-height: 43.2px;
}

.slider__slide img {
  border-radius: 8px;
}

.slider__slide h4 {
  margin-top: 32px;
  color: #E88A25;
  font-size: 28px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}

.slider__slide h4 b {
  font-size: 14px !important;
}

.slider__slide-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #7d8495;
  padding-left: 16px;
}

.slider__slide-list li {
  line-height: 110%;
  list-style: disc;
}

.slider__slide-button {
  -webkit-transform: translateY(19px);
      -ms-transform: translateY(19px);
          transform: translateY(19px);
  padding: 12px;
  border: 1px solid #0d105d;
  border-radius: 8px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: white;
  background-color: #0d105d;
  width: 100%;
  text-align: center;
}

.slider__slide-button:disabled {
  background-color: lightgrey;
   border: 1px solid lightgrey;
}

.error-popup {
  position: fixed;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  height: 100dvh;
  left: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background-color: rgba(0, 0, 0, 0.6);
}

.error-popup.active {
  visibility: visible;
  z-index: 100;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.error-popup__container {
  max-width: 805px;
  margin-right: auto;
  margin-left: auto;
  padding: 33px 24px 24px 24px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  width: 100%;
  background-color: white;
}

.error-popup__container h3 {
  margin-top: 23px;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
}

.error-popup__container p {
  text-align: left !important;
  font-family: "Roboto", sans-serif;
  line-height: 130%;
}

.error-popup__content {
  border: 1px solid #dde5eb;
  background-color: rgba(237, 241, 244, 0.5);
  border-radius: 4px;
  margin-top: 22px;
  padding: 20px 24px;
}

.error-popup__content a {
  margin-top: 30px;
  padding: 16px;
  max-width: 331px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 700;
}

.error-popup__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.approve-popup {
  position: fixed;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  z-index: -1;
  height: 100dvh;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  background-color: rgba(0, 0, 0, 0.6);
}

.approve-popup.active {
  visibility: visible;
  z-index: 100;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.approve-popup__container {
  max-width: 805px;
  margin-right: auto;
  margin-left: auto;
  padding: 33px 24px 24px 24px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  width: 100%;
  background-color: white;
}

.approve-popup__container h3 {
  margin-top: 23px;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  font-family: "Roboto", sans-serif;
}

.approve-popup__container p {
  text-align: left !important;
  font-family: "Roboto", sans-serif;
  line-height: 130%;
}

.approve-popup__content {
  border: 1px solid #dde5eb;
  background-color: rgba(237, 241, 244, 0.5);
  border-radius: 4px;
  margin-top: 22px;
  padding: 20px 24px;
}

.approve-popup__content h4 {
  margin-top: 30px;
  padding: 16px;
  max-width: 331px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 700;
}

.approve-popup__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.footer {
  margin-top: 70px;
}

.footer__container {
  position: relative;
  max-width: 1440px !important;
  width: 100%;
  padding-top: 104px !important;
  padding-bottom: 76px !important;
}

.footer__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 25px;
  color: white;
}

.footer__links a {
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  line-height: 110%;
  color: white;
}

.footer__buttons {
  max-width: 157px;
  width: 100%;
}

.footer__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 16px;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #E88A25;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.footer__button svg path {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.footer__address {
  margin-top: 23px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  font-weight: 400;
}

.footer__socials {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.footer__socials img {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.footer__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;
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.footer__logo img {
  max-width: 60px;
}

.footer__logo p {
  font-size: 20px;
  line-height: 120%;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: white;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media (min-width: 1580px) {
  .hero__background {
    top: -8%;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 1600px) {
  .steps {
    height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }

  .steps__title {
    margin-top: 100px;
  }
}

@media (max-width: 1400px) {
  .slider__prev {
    left: 10px;
  }

  .slider__next {
    right: 10px;
  }
}

@media (max-width: 1300px) {
  .hero__background {
    top: 0;
  }
}

@media (max-width: 1250px) {
  .container {
    padding: 0 20px;
  }

  .slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }

  .slider__pagination .swiper-pagination-bullet {
    width: 11px !important;
    height: 11px !important;
    -webkit-transition: 0.4s ease all !important;
    transition: 0.4s ease all !important;
  }

  .slider__pagination .swiper-pagination-bullet-active {
    background-color: #E88A25 !important;
  }

  .slider__prev {
    display: none;
  }

  .slider__next {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 30px;
  }

  .grid-cta__heading {
    font-size: 30px;
  }

  .faq h2 {
    font-size: 30px;
  }

  .checkout__content {
    grid-template-columns: 350px 1fr;
  }

  .checkout__product {
    grid-template-columns: 70px 1fr;
  }

  .checkout__product-title {
    gap: 20px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }

  .checkout__product-title button {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 2px;
  }

  .steps__bg {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .steps__title {
    font-size: 30px;
  }

  .slider__title {
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero__text.text-one {
    left: 4%;
  }

  .hero__text.text-two {
    right: 12%;
  }

  .hero__text.text-third {
    left: 12%;
    bottom: 2%;
  }

  .hero__text.text-four {
    right: 4%;
    bottom: 12%;
  }

  .hero__image {
    max-width: 450px;
  }

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

  .checkout__content {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout__products-list-wrapper {
    max-height: 350px;
  }

  .checkout__payment-products,
  .checkout__forms {
    max-height: initial;
    overflow: initial;
  }

  .checkout__address-body {
    max-height: initial;
    overflow: initial;
  }

  .checkout__line-items {
    max-height: initial;
    overflow: initial;
  }

  .checkout__payment-products {
    max-height: initial;
    overflow: initial;
  }
}

@media (max-width: 991.98px) {
  .header__logo {
    font-size: 16px;
    gap: 10px;
  }

  .header__logo svg {
    max-width: 45px;
  }

  .header__menu {
    gap: 20px;
    font-size: 14px;
  }

  .header__button {
    font-size: 14px;
    padding: 13px 15px;
    gap: 10px;
  }

  .product-details__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero__title {
    font-size: 25px;
  }

  .hero__text.text-one {
    top: 7%;
  }

  .hero__text.text-third {
    left: 8%;
  }

  .hero__text.text-four {
    right: 0;
  }

  .hero__background {
    -o-object-fit: cover;
       object-fit: cover;
    height: 84%;
  }

  .grid-cta__heading {
    font-size: 25px;
  }

  .grid-cta__subtitle {
    font-size: 14px;
    max-width: 700px;
  }

  .grid-cta__content picture {
    padding: 0;
  }

  .grid-cta__content {
    margin-top: 50px;
  }

  .grid-cta__title {
    font-size: 25px;
    line-height: 140%;
  }

  .grid-cta__text {
    margin-top: 15px;
    line-height: 140%;
    font-size: 14px;
  }

  .grid-cta__list {
    margin-top: 20px;
    font-size: 14px;
    gap: 10px;
  }

  .faq h2 {
    font-size: 20px;
  }

  .steps {
    padding-top: 0;
    padding-bottom: 0;
  }

  .steps__bg {
    display: none;
  }

  .steps__title {
    font-size: 20px;
    color: black;
  }

  .steps__subtitle {
    font-size: 14px;
    max-width: 700px;
    color: black;
  }

  .steps__content {
    margin-top: 50px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }

  .steps__arrow {
    display: none;
  }

  .steps__item {
    -webkit-box-shadow: 0px 4px 10px rgba(67, 74, 122, 0.25);
            box-shadow: 0px 4px 10px rgba(67, 74, 122, 0.25);
  }

  .steps__item h3 {
    font-size: 18px;
  }

  .steps__item p {
    font-size: 14px;
  }

  .slider__title {
    font-size: 20px;
  }

  .slider__text {
    font-size: 14px;
    max-width: 700px;
  }

  .slider__slide h3 {
    font-size: 16px;
  }

  .slider__slide h4 {
    font-size: 24px;
  }

  .slider__slide-list li {
    font-size: 14px;
  }

  .footer__address {
    font-size: 14px;
  }

  .footer__content {
    padding: 0 15px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }
}

@media (max-width: 930px) {
  .hero__text.text-one {
    left: 0;
    top: 0;
  }

  .hero__text.text-two {
    right: 0;
    top: 0;
  }

  .hero__text.text-third {
    bottom: 0;
    left: 0;
  }

  .hero__text.text-four {
    bottom: 0;
    right: 0;
  }

  .hero__text p {
    font-size: 12px;
  }

  .hero__image-wrapper {
    margin-top: 35px;
  }

  .hero__image {
    max-width: 400px;
    top: 50px;
  }
}

@media (max-width: 768px) {
  .hero__text-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .header {
    height: 80px;
  }

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

  .header__menu {
    display: none;
  }

  .header__mobile-menu {
    display: block;
    z-index: 11;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    position: fixed;
    right: 0;
    visibility: hidden;
    height: 100%;
    width: 400px;
    -webkit-transition: 0.5s ease all;
    transition: 0.5s ease all;
    text-align: center;
    top: 0;
    background-color: white;
  }

  .header__mobile-menu a {
    display: block;
    font-size: 20px;
    line-height: 130%;
    font-weight: 600;
    padding: 15px;
    color: black;
  }

  .header__buttons {
    gap: 15px;
  }

  .header__icon-menu {
    display: block;
    cursor: pointer;
    width: 20px;
    height: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header__icon-menu span {
    width: 100%;
    display: block;
    height: 2px;
    background-color: white;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
  }

  .header__cross {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 80px;
    padding-right: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .container {
    padding: 0 15px;
  }

  .product-details__content {
    grid-template-columns: repeat(1, 1fr);
  }

  .product-details__product {
    overflow-y: auto;
    height: 92dvh;
    width: 92%;
    padding: 70px 20px 20px 20px;
  }

  .hero__text {
    display: none;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero__background {
    position: absolute;
    top: -7%;
    left: -1%;
    width: 135%;
    height: 74%;
  }

  .hero__image-wrapper {
    padding-bottom: 0;
  }

  .hero__image {
    top: 0;
    margin-bottom: 20px;
  }

  .grid-cta {
    margin-top: 40px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-bottom: 50px;
  }

  .grid-cta__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .grid-cta__image {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .grid-cta__body {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .grid-cta__title br {
    display: none;
  }

  .grid-cta__text {
    margin-right: auto;
    margin-left: auto;
  }

  .grid-cta__list {
    padding: 0;
  }

  .grid-cta__list li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    list-style-position: inside;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .grid-cta__content-two .grid-cta__body {
    grid-row: 1;
  }

  .faq {
    margin-top: 50px;
  }

  .faq__spoller {
    padding: 18px;
  }

  .checkout {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-bottom: 40px;
  }

  .checkout__cart-products {
    padding: 20px 10px;
  }

  .checkout__cart-title {
    padding: 0 0 12px 0;
  }

  .checkout__cart-title h3 {
    font-size: 12px;
  }

  .checkout__form-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout__line-item {
    padding: 7px 0;
  }

  .checkout__line-item p {
    font-size: 12px;
  }

  .checkout__line-item-image {
    gap: 10px;
    grid-template-columns: 55px 1fr;
  }

  .checkout__line-item-image h4 {
    font-size: 12px;
  }

  .checkout__line-item-quantity {
    padding: 5px;
  }

  .checkout__line-item-quantity svg {
    max-width: 10px;
  }

  .checkout__line-item-quantity span {
    font-size: 12px;
  }

  .checkout__payment-products {
    padding: 4px 10px 10px 10px;
  }

  .checkout__payment-product-text h4 {
    font-size: 10px;
  }

  .checkout__payment-product-text p {
    font-size: 12px;
  }

  .checkout__payment-product-image {
    grid-template-columns: 50px 1fr;
  }

  .checkout__payment-product-image p {
    font-size: 12px;
  }

  .checkout__payment-product-image h4 {
    font-size: 12px;
  }

  .checkout__payment-product-image img {
    height: 60px;
  }

  .checkout__payment-price {
    -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;
    text-align: center;
  }

  .checkout__payment-price p {
    font-size: 12px;
  }

  .checkout__payment-info {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout__payment-seller h3,
  .checkout__payment-invoice h3,
  .checkout__payment-delivery h3 {
    font-size: 12px;
  }

  .steps__content {
    gap: 15px;
    margin-top: 50px;
  }

  .steps__item {
    padding: 25px 15px 30px 15px;
  }

  .steps__item h3 {
    font-size: 16px;
  }

  .slider {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .slider__subtitle {
    margin-top: 25px;
  }

  .slider__pagination {
    margin-top: 30px;
  }

  .slider__swiper:after {
    display: none;
  }

  .slider__swiper {
    margin-top: 10px;
  }

  .slider__slide {
    padding: 10px 10px 0 10px;
  }

  .footer__container {
    padding-top: 90px !important;
    margin-top: 0;
    padding-bottom: 70px !important;
  }

  .footer__links {
    grid-row: 2;
  }

  .footer__buttons {
    margin-right: auto;
    margin-left: auto;
  }

  .footer__address {
    text-align: center;
  }

  .footer__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }

  .footer__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero__text-mobile p {
    max-width: 350px;
    margin-left: auto;
    font-size: 14px;
    margin-left: auto;
  }

  .hero__text-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

@media (max-width: 570px) {
  .checkout {
    padding-bottom: 25px;
  }

  .checkout__products {
    padding: 10px;
  }

  .checkout__products-list-title {
    font-size: 14px;
  }

  .checkout__product-price {
    margin-top: 10px;
  }

  .checkout__spoiler {
    padding: 15px 10px 0 10px;
  }

  .checkout__spoiler-title h3 {
    font-size: 14px;
  }

  .checkout__cart-title {
    grid-template-columns: repeat(4, 1fr);
  }

  .checkout__vat-field {
    display: none;
  }

  .checkout__line-item {
    grid-template-columns: repeat(4, 1fr);
  }

  .checkout__line-item-image {
    display: block;
  }

  .checkout__line-item-image img {
    display: none;
  }
}

@media (max-width: 510px) {
  .checkout__subtitle {
    font-size: 12px;
  }

  .checkout__payment-product {
    grid-template-columns: repeat(1, 1fr);
  }

  .checkout__payment-product-text h4 {
    font-size: 14px;
  }

  .checkout__payment-product-text p {
    font-size: 16px;
  }

  .checkout__payment-product-image {
    grid-template-columns: repeat(1, 1fr);
    text-align: center !important;
  }

  .checkout__payment-product-image p {
    text-align: center;
  }

  .checkout__payment-product-image h4 {
    font-size: 14px;
    text-align: center !important;
  }

  .checkout__payment-product-image img {
    max-width: 60px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .checkout__payment-price p {
    font-size: 14px;
  }

  .checkout__payment-seller h3,
  .checkout__payment-invoice h3,
  .checkout__payment-delivery h3 {
    font-size: 14px;
  }
}

@media (max-width: 479.98px) {
  .header {
    height: 70px;
  }

  .header__logo {
    font-size: 14px;
    gap: 5px;
  }

  .header__logo svg {
    max-width: 40px;
  }

  .header__mobile-menu {
    max-width: 100%;
  }

  .header__buttons {
    gap: 10px;
  }

  .header__button {
    gap: 8px;
    padding: 12px 10px;
  }

  .steps__content {
    grid-template-columns: repeat(1, 1fr);
    max-width: 250px;
    gap: 24px;
  }

  .steps__arrow {
    display: block;
    top: initial;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 70%) rotate(90deg);
        -ms-transform: translate(-50%, 70%) rotate(90deg);
            transform: translate(-50%, 70%) rotate(90deg);
  }
}

@media (hover: hover) {
  .header__link:hover {
    color: #E88A25 !important;
  }

  .header__button:hover {
    color: #E88A25;
    background-color: white;
  }

  .header__button:hover svg path {
    fill: #E88A25;
  }

  .checkout__product-title button:hover {
    color: #E88A25;
  }

  .checkout__add:hover {
    background-color: #E88A25;
  }

  .checkout__cart-next:hover,
  .checkout__payment-button:hover,
  .checkout__address-save:hover {
    background-color: #E88A25;
  }

  .slider__prev:hover svg path {
    -webkit-transform: translateX(-3px);
        -ms-transform: translateX(-3px);
            transform: translateX(-3px);
  }

  .slider__next:hover svg path {
    -webkit-transform: translateX(3px);
        -ms-transform: translateX(3px);
            transform: translateX(3px);
  }

  .slider__slide-button:hover {
    background-color: #E88A25;
    border-color: #E88A25;
  }

  .footer__links a:hover {
    color: #E88A25;
  }

  .footer__button:hover {
    background-color: white;
    color: #E88A25;
  }

  .footer__button:hover svg path {
    fill: #E88A25;
  }

  .footer__socials a:hover img {
    scale: 1.1;
  }
}