@charset "UTF-8";

.header__wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 10px;
}

.header__phone {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  color: #fff;
}

.header__logo {
  padding: 5px;
}

.header__right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header__langs {
  position: relative;
}

.header__langs-current {
  color: #FFF;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__langs-current::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.3s;
}

.header__langs.active .header__langs-current::after {
  transform: rotate(180deg);
}

.header__langs-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2117647059);
  padding: 8px 12px;
  border-radius: 4px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
}

.header__langs-list li {
  margin: 0;
}

.header__langs-list a {
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  text-decoration: none;
  transition: color 0.3s;
}

.header__langs-list a:hover {
  color: #FD5A42;
}

.header__langs.active .header__langs-list {
  display: flex;
}

.header__devider {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 1px;
}

.header__cart {
  position: relative;
}

.header__cart img {
  width: 20px;
}

.header__cart span {
  position: absolute;
  right: -5px;
  bottom: -5px;
  background: #FD5A42;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  font-size: 11px;
}

.header__phone-dh {
  display: none;
}

.header__nav {
  margin-top: 5px;
}

@media only screen and (max-width: 946px) {
  .header {
    padding: 5px 0 3px 0;
  }

  .header__wrp {
    flex-direction: row;
  }

  .header__devider {
    display: none;
  }

  .header__nav {
    margin-left: 20px;
  }

  .header__langs-current {
    font-size: 11px;
    gap: 4px;
  }

  .header__langs-current::after {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #fff;
  }

  .header__langs-list a {
    font-size: 11px;
  }

  .header__phone {
    white-space: nowrap;
  }

  .header__top {
    gap: 15px;
    padding: 0;
  }

  .header__ammount {
    font-size: 10px;
  }

  .header__cart img {
    width: 24px;
    height: 24px;
  }

  .header__cart span {
    width: 20px;
    height: 20px;
    right: -10px;
    bottom: -5px;
  }

  .header__phone {
    display: none;
  }

  .header__phone-dh {
    display: inline;
    margin: 0 5px;
  }

  .header__icon {
    width: 24px;
    height: 24px;
    fill: #fff;
  }
}

.header {
  position: absolute;
  z-index: 900;
  width: 100%;
  left: 0;
  top: 0;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(38, 41, 49, 0.68);
  backdrop-filter: blur(15px);
  padding: 5px 0 3px 0;
}

.menu-fixed hr {
  margin: 10px 0 5px 0;
  opacity: 0.1;
}

.menu-fixed .header__logo {
  gap: 0;
}

.menu-fixed .header__logo-desc {
  font-size: 14px;
  flex-direction: row;
  padding-left: 65px;
}

.menu-fixed .header__contact {
  gap: 6px;
}

.menu-fixed .header__phone-wrp span {
  display: none;
}

.menu-fixed .header__wrapper {
  align-items: center;
}

.menu-fixed .header__icon {
  margin-top: 0;
}

.menu-fixed .nav__item {
  padding: 7px 0;
}

.menu-fixed .open .nav__item {
  padding: 0;
}

.menu-fixed .header__logo-phone {
  display: flex;
}

.menu-fixed .header__nav::before {
  display: none;
}

.menu-fixed .header__btn {
  padding: 12px 17px;
}

.page-body .menu-fixed {
  background: rgba(255, 255, 255, 0.7);
}

.page-body .menu-fixed::after {
  display: none;
}

.page-body .header__online {
  color: #282828;
  background: #fff;
  box-shadow: 0 7px 10px rgba(199, 199, 199, 0.1647058824);
}

@media only screen and (max-width: 1200px) {
  .menu-fixed .header__logo {
    width: auto;
  }
}

@media only screen and (max-width: 945px) {
  .menu-fixed .header__nav {
    display: flex;
  }

  .menu-fixed .header__logo {
    gap: 0;
  }

  .menu-fixed .header__logo img {
    max-width: 90%;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  padding: 17px 22px;
}

.btn-red {
  background: #FD5A42;
  border: 1px solid #FD5A42;
  color: #fff;
}

.btn-red:hover {
  background: rgb(255, 25.5, 25.5);
  color: #fff;
}

.btn-transparent {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-transparent:hover {
  background: rgba(255, 255, 255, 0.2431372549);
  color: #fff;
}

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 60px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
}

.nav__link {
  color: #282828;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  color: #FFF;
  text-transform: uppercase;
  font-weight: 400;
}

.nav__link:hover {
  color: #FD5A42;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  color: #282828;
  padding: 13px 20px;
  display: block;
}

.dropdown-list__link:hover {
  color: #FD5A42;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }

  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}

.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }

  .mobile-back {
    display: block;
  }

  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #262931;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }

  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }

  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-submenu__list-item {
    padding: 0;
  }

  .nav__link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1411764706);
  }

  .nav__link::after {
    transform: rotate(-90deg);
  }

  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }

  .dropdown-submenu__title {
    padding: 0 30px;
  }

  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }

  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }

  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #262931;
    transition: all 0.3s;
  }

  .dropdown-list__link {
    color: #fff;
  }

  .dropdown-list__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1411764706);
  }

  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }

  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }

  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}

.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}

.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }

  .burger::before,
  .burger::after {
    content: "";
    background-color: #ffffff;
  }

  .burger span {
    background-color: #ffffff;
  }
}

.dropdown-list {
  background: rgba(255, 255, 255, 0.2117647059);
  max-width: 200px;
}

.dropdown-list .dropdown-list__link {
  color: #fff;
  border-bottom: 1px solid rgba(236, 236, 236, 0.04);
}

.dropdown-list .dropdown-list__item {
  border-bottom: 1px solid rgba(236, 236, 236, 0.359);
}

.bgmain {
  height: 100vh;
  position: relative;
}

.bgmain video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bgmain__info {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
}

.bgmain__info h1,
.bgmain__info h2,
.bgmain__info h3 {
  font-size: clamp(1.875rem, 1.625rem + 1.25vw, 3.125rem);
  font-family: "Roadradio", sans-serif;
  line-height: 1.3;
  font-weight: 400;
}

.bgmain__info p {
  line-height: 1.4;
  opacity: 0.7;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
}

.slider {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.333%;
  background-color: #2D303B;
  z-index: -1;
}

.slider .container-lg {
  position: relative;
}

.slider__nav {
  position: absolute;
  bottom: calc(33.333% + 30px);
  right: 15px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider__nav .pr__prev,
.slider__nav .pr__next {
  cursor: pointer;
  transition: opacity 0.3s;
}

.slider__nav .pr__prev:hover,
.slider__nav .pr__next:hover {
  opacity: 0.7;
}

.slider__text {
  display: flex;
  padding: 30px 0;
  flex-direction: column;
  justify-content: end;
}

.slider__slide {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.slider__left {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 30px;
  flex-basis: 40%;
  margin-bottom: 15px;
}

.slider__right {
  flex-basis: 40%;
}

.slider__center {
  flex-basis: 20%;
  position: relative;
}

.slider__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.slider__image img {
  height: 658px;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.slider__point {
  width: 37px;
  height: 37px;
  background: #FD5A42;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FD5A42;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.slider__point--active {
  transform: rotate(45deg);
  /* Поворот на 45 градусов делает из плюса крестик для закрытия */
}

.slider__point--active::before {
  animation: none;
  opacity: 0;
}

.slider__point1 {
  position: absolute;
  z-index: 60;
  left: 18%;
  top: 10%;
}

.slider__point2 {
  position: absolute;
  right: 25%;
  bottom: 10%;
  z-index: 60;
}

.slider__tick {
  padding: 30px;
  border-radius: 15px;
  background: #1C1E25;
  min-width: 412px;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.slider__tick--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slider__tick ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.slider__tick ul li {
  padding: 4px;
  line-height: 1.4;
}

.slider__tick1 {
  position: absolute;
  z-index: 900;
  right: calc(82% - 37px);
  top: calc(10% + 40px);
  left: auto;
}

.slider__tick2 {
  position: absolute;
  z-index: 900;
  left: calc(75% - 37px);
  bottom: calc(10% + 40px);
  right: auto;
}

.slider .swiper-pagination {
  position: absolute;
  left: 0;
  top: 30px;
  bottom: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 70;
  text-align: left;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 400;
  border-radius: 0;
  opacity: 0.7;
  margin: 0 !important;
  transition: color 0.3s;
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.2588235294);
  height: 1px;
}

.slider .swiper-scrollbar .swiper-scrollbar-drag {
  background: #fff;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.product__options {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #fff;
  margin-top: 30px;
}

.product__option {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.product__option-title {
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  opacity: 0.7;
}

.product__option-info {
  color: #fff;
  line-height: 1.3;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  opacity: 1;
}

.product__option-colors {
  display: flex;
  gap: 7px;
  align-items: center;
}

.product__option-colors span {
  width: 27px;
  height: 27px;
  display: inline;
}

.product__color1 {
  background: linear-gradient(135deg, #3F3A5A 0%, #A1F8FF 100%);
}

.product__color2 {
  background: linear-gradient(135deg, #347077 0%, #A1F8FF 100%);
}

.product__color3 {
  background: linear-gradient(135deg, #ABD4D9 0%, #1B2C2D 100%);
}

.product__color4 {
  background: linear-gradient(135deg, #654F2C 0%, #A1F8FF 100%);
}

@media only screen and (max-width: 1200px) {
  .slider .swiper-scrollbar {
    display: none;
  }

  .slider .swiper-pagination {
    top: 15px;
  }

  .slider .swiper-pagination .swiper-pagination-bullet {
    font-size: 15px;
  }

  .slider::after {
    display: none;
  }

  .slider__slide {
    margin-top: 20px;
    flex-direction: column;
  }

  .slider__center {
    order: 1;
  }

  .slider__left {
    order: 3;
  }

  .slider__right {
    order: 2;
  }

  .slider__image img {
    height: 400px;
  }

  .slider__nav {
    position: relative;
  }

  .slider__point1 {
    left: 45%;
  }

  .slider__point2 {
    left: 55%;
  }

  .slider__point {
    font-size: 15px;
    width: 1.8rem;
    height: 1.8rem;
  }

  .slider__tick1 {
    top: calc(10% + 20px);
  }

  .slider__tick2 {
    bottom: calc(10% + 20px);
  }

  .slider__tick {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px;
    min-width: auto;
  }

  .slider__nav {
    display: none;
  }

  .product__option-colors span {
    width: 27px;
    height: 27px;
  }

  .product__options {
    margin-bottom: 15px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 578px) {
  .slider {
    padding: 30px 0 0 0;
  }

  .slider__image img {
    height: 250px;
  }

  .slider .swiper-pagination--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.about {
  overflow-x: hidden;
}

.about__info {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .about__info {
    padding-right: 40px;
  }
}

.about__info h3 {
  color: #fff;
  margin-top: 30px;
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  margin-bottom: 10px;
}

.about__info p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.about__info .btn {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .about__gallery .row {
    width: calc(50vw - 0.75rem);
    max-width: none;
  }
}

@media (max-width: 767px) {
  .about__gallery {
    margin-top: 40px;
  }
}

.about__gallery a {
  display: block;
  height: 100%;
}

.about__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.vslider {
  width: 100%;
  height: 100vh;
  background-color: #000;
}

.vslider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vslider .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
}

.vslider .swiper-slide>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.vslider .swiper-slide .bgmain__info {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.catalog {
  padding: 60px 0;
}

.catalog .heading-top {
  font-size: clamp(1.875rem, 1.725rem + 0.75vw, 2.625rem);
  font-family: "Roadradio";
  color: #fff;
  margin-bottom: 30px;
}

.product__banner {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: end;
}

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

.product__banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 20%;
  z-index: 2;
}

.product__banner-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  padding: 30px;
  font-family: "Roadradio";
  font-weight: 400;
}

.product {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: all 0.3s;
}

.product__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1C1E25;
}

.product__cart span {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 3px;
}

.product:hover .product__cart {
  background: #FD5A42;
}

.product__image {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-top: 100%;
  background: #1C1E25;
  border-radius: 15px;
}

.product__switch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product .image-switch__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product .image-switch__item--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.product .image-switch__img {
  width: 100%;
  height: 100%;
}

.product .image-switch__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product__image-pagination {
  position: relative;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  padding: 20px;
  margin-top: 15px;
}

.product__image-pagination li {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.product__image-pagination li:hover {
  transform: scale(1.2);
}

.product__image-pagination li span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.product__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product__title {
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  font-weight: 700;
  display: block;
  line-height: 1.3;
}

.product__price {
  color: #fff;
  opacity: 0.7;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.product__sticker {
  color: #FD5A42;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  padding: 4px 10px;
}

@media only screen and (max-width: 578px) {
  .catalog {
    padding: 30px 0;
  }

  .product__banner {
    height: 200px;
    margin: 20px 0;
    display: block;
  }

  .product__cart {
    right: 5px;
    top: 5px;
  }
}

.product h1 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem) !important;
}

.product__data {
  margin-left: 30px;
}

@media (min-width: 768px) {
  .product__gallery {
    width: 50vw;
    margin-left: calc(100% - 50vw + var(--bs-gutter-x, 1.5rem) / 2);
    height: 100%;
  }

  .product__gallery a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .product__gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.product__devider {
  margin: 20px 0;
}

.product__buy {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.product__price-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__price-title {
  font-size: clamp(0.9375rem, 0.9125rem + 0.125vw, 1.0625rem);
  color: #fff;
  opacity: 0.4;
}

.product__price-single {
  display: flex;
  gap: 5px;
  color: #fff;
}

.product__price-ammount {
  font-size: 18px;
  color: #fff;
}

.product__options {
  display: flex;
  gap: 30px;
}

.product__options-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product__options-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__options-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product__tag {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  display: block;
}

.product__tag:has(.product__input:checked) {
  opacity: 1;
}

.product__tag .product__checkbox-span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 16px;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  height: 100%;
  color: #fff;
}

.product__tag .product__checkbox-span img {
  max-width: 100%;
  display: block;
}

.product__tag:has(.product__input:checked) .product__checkbox-span {
  border-color: #fff;
}

.product__options-image {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  display: none;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.product__options-image .product__tag {
  width: 50px;
  height: 50px;
}

.product__options-image .product__image-span {
  padding: 17px;
}

.product__options-wrp:has(input[data-option="with-stand"]:checked) .product__options-image {
  opacity: 1;
  /* visibility: visible; */
  display: flex;
  transform: translateX(0);
}

.product__options-image2 {
  display: flex;
  gap: 10px;
}

.product__options-image2 .product__checkbox-span {
  padding: 10px;
}

.product__options-image2 .product__checkbox-span img {
  max-width: 40%;
}

.product__options-colors-wrp {
  display: flex;
  gap: 4px;
}

.product__options-colors-wrp span {
  width: 41px;
  height: 41px;
  display: block;
  border-radius: 4px;
}

.product__options-colors-wrp .product__color-tag {
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s ease;
  display: block;
  border-radius: 4px;
}

.product__options-colors-wrp .product__color-tag:has(.product__input:checked) {
  opacity: 1;
  outline: 1px solid #fff;
  outline-offset: -1px;
}

.product__options-colors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__about {
  background: #1C1E25;
  padding: 60px 0;
}

.product__chars-wrp {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product__chars-title {
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
  font-weight: 700;
}

.product__about-wrp {
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: center;
}

.chars {
  margin: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  font-weight: 300;
  opacity: 0.8;
  min-width: 330px;
}

.chars__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  line-height: 1.3;
  font-weight: 300;
}

.chars__term {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  color: #fff;
  font-weight: 300;
}

.chars__val {
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.chars__term::after {
  content: "..................................................................................................................................................................";
  position: absolute;
  color: #ffffff;
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  .product__data {
    margin-left: 0;
  }

  .product__about-wrp {
    flex-direction: column;
    gap: 30px;
  }
}

@media only screen and (max-width: 578px) {
  .product .product__tag .product__checkbox-span {
    padding: 7px 12px;
    white-space: nowrap;
  }

  .product__tag .product__checkbox-span img {
    max-height: 40px;
  }

  .product__options-colors-wrp span {
    width: 31px;
    height: 31px;
  }

  .product__about {
    padding: 30px;
  }
}

.gallery {
  padding: 20px 0;
}

.gallery-wrp .swiper-slide {
  aspect-ratio: 1/1;
}

.gallery-item {
  height: 100%;
}

.gallery-item img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__title {
  margin-bottom: 30px;
}

.heading-page {
  background: #1C1E25;
  padding: 15px 0;
  margin-bottom: 20px;
}

.breadcrumbs li {
  display: inline-block;
  font-size: 14px;
  opacity: 0.3;
  color: #fff;
}

.breadcrumbs li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs li a:hover {
  color: #fff;
}

.breadcrumbs li+li::before {
  color: #fff;
  content: "—";
  padding: 0 5px;
}

.product__heading h1 {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-family: "Roadradio";
  color: #fff;
  line-height: 1.3;
  margin: 30px 0 10px 0;
}

.cart__open {
  cursor: pointer;
}

.cart-single__blocks {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2274509804);
  border-radius: 15px;
  margin-bottom: 20px;
}

.cart-single__all {
  background: #1C1E25;
  border-radius: 15px;
  margin-bottom: 20px;
}

.mcart {
  position: fixed;
  background: #1C1E25;
  right: 0;
  top: 0;
  height: 100%;
  width: 700px;
  max-width: 100vw;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: scroll;
}

.mcart.open {
  transform: translateX(0);
}

.mcart__delete {
  cursor: pointer;
}

.mcart__block {
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2274509804);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

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

.mcart__title {
  font-weight: 700;
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
}

.mcart__clearall {
  font-size: 14px;
  opacity: 0.6;
}

.mcart__block-wrp {
  display: flex;
  gap: 15px;
}

.mcart__image {
  width: 70px;
  max-height: 70px;
  text-align: center;
}

.mcart__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mcart__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.mcart__product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mcart__option {
  font-size: 13px;
  font-weight: 300;
  display: flex;
  padding: 4px;
  border: 1px solid #fff;
  opacity: 0.4;
  border-radius: 4px;
}

.mcart__price-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mcart__price {
  font-size: 18px;
  font-weight: 700;
}

.mcart__counter {
  display: flex;
}

.mcart__btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.262745098);
  display: flex;
  align-self: center;
  justify-content: center;
  padding: 10px 0;
  width: 38px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.mcart__input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.262745098);
  padding: 6.5px;
  color: #fff;
  display: flex;
  align-self: center;
  justify-content: center;
  width: 50px;
  text-align: center;
}

.mcart__all {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.mcart__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}

.mcart__ammount {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.mcart__close {
  display: flex;
  justify-content: end;
  padding: 15px;
  cursor: pointer;
}

.mcart__close img {
  width: 30px;
  height: 30px;
}

@media only screen and (max-width: 790px) {
  .mcart {
    width: 100%;
  }
}

@media only screen and (max-width: 578px) {

  .mcart__block,
  .mcart__btns,
  .mcart__top {
    padding: 15px;
  }

  .mcart__btns {
    flex-direction: column;
  }

  .mcart__price {
    font-size: 14px;
  }

  .mcart__price-block {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .mcart__info {
    width: 100%;
  }
}

.order__form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1803921569);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.order label {
  width: 100%;
}

.order__input {
  width: 100%;
  padding: 17px 20px;
  background: #1c1e25;
  border: 1px solid #1c1e25;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
}

.order__input::-moz-placeholder {
  color: #fff;
}

.order__input::placeholder {
  color: #fff;
}

.order__input:active {
  border: 1px solid #52545c;
}

.order__input:focus {
  border: 1px solid #52545c;
}

body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

.mc-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}

#watchme .btn-close {
  right: -30px;
}

#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #282828;
}

.modal-contacts {
  padding: 20px 40px;
}

.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}

.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}

.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}

.modal-contacts__bottom span {
  margin-left: 10px;
}

.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #0566B4;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}

.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}

.form_input__modal .modal-file {
  color: #66727F;
  margin-bottom: 10px;
  display: block;
}

.form_input__modal:focus {
  border-bottom: 2px solid #0566B4;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #0566B4;
  color: #fff;
  border: 1px solid #0566B4;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}

.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #0566B4;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.close-menu__modal span:nth-child(2) {
  transform: rotate(45deg);
}

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}

.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}

.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}

.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}

.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }

  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }

  .modal-header {
    padding-top: 60px;
  }

  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }

  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}

.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  margin-left: 10px;
  line-height: 1.3;
  margin-top: -5px;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  padding: 20px 40px;
}

.cresults__checkbox {
  margin-top: 20px;
}

.cresults__checkbox .checkbox-text {
  margin-left: 0;
  display: block;
}

.form__radios {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 16px 27px 24px;
  border-radius: 8px;
  background: #eee;
  margin-bottom: 15px;
}

.form__radios__modals {
  flex-direction: column;
  padding: 0px;
  align-items: start;
  background: none;
}

.form__radios__btns__modals {
  display: flex;
  gap: 10px;
}

.form__radios__title__modals {
  font-size: 14px !important;
  color: #66727F !important;
  margin-bottom: 10px;
}

.radio-mess input {
  display: none;
}

.radio__img {
  width: 85px;
  height: 45px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.radio-mess input:checked~.radio__img {
  opacity: 1;
}

.form__radios__title {
  color: #0B1F33;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
}

.cresults__agreement .checkbox-text {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 14px;
}

.form-block__modal .cresults__agreement .checkbox-text {
  color: #66727F;
  font-size: 14px;
}

.form-block__modal .privat-info {
  color: #0B1F33 !important;
}

.cresults__agreement .checkbox-text a {
  color: #FD5A42;
  font-size: 14px;
  text-decoration: underline;
}

@media only screen and (max-width: 576px) {
  .cresults__agreement .checkbox-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .cresults__agreement .checkbox-text a {
    font-size: 12px;
  }

  .form__radios__title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form__radios {
    flex-wrap: wrap;
  }
}

.custom-checkbox {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 1px;
  background: #FD5A42;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 4px;
}

.custom-checkbox input:checked+.checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto 0;
  width: 13px;
  height: 13px;
  background: url(../img/checkbox.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.just-validate-error-label {
  font-size: 12px;
  color: #5C5C77 !important;
  margin: 5px 0 10px 0 !important;
}

.modal__wrapper {
  padding-top: 0 !important;
}

.modal__wrapper li {
  padding: 0 !important;
}

.privat-info-black {
  color: #0B1F33;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #fff;
  background-color: #FD5A42;
  border-color: #FD5A42;
  opacity: 1;
}

.cookie__modal {
  display: flex;
  gap: 20px;
  padding: 15px;
}

.cookie__modal p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.5;
}

.cookie__modal__btn {
  align-self: center;
}

@media only screen and (max-width: 578px) {
  .cookie__modal {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cookie__modal p {
    text-align: center;
  }
}

.recaptcha-place {
  margin: 10px 0;
}

.controls {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wrapper {
  margin: 20px 0;
}

.mixitup-control-active {
  background: #FD5A42;
  border: 1px solid #FD5A42;
}

.mixitup-control-active:hover {
  background: #FD5A42;
  border: 1px solid #FD5A42;
}

@media only screen and (max-width: 578px) {
  .controls button {
    padding: 10px 15px;
  }
}

.content {
  margin: 20px 0;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5 {
  font-family: "Roadradio", sans-serif;
  line-height: 1.4;
  margin: 10px 0 0 0;
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  color: #fff;
}

.content .main-text,
.content blockquote {
  background: #3a3e4b;
  border-left: 2px solid #FD5A42;
  padding: 20px 10px 20px 30px;
}

.content p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #fff;
  margin: 7px 0;
  opacity: 0.7;
  font-weight: 300;
}

.content ul {
  list-style-type: disc;
  padding-left: 30px;
  opacity: 0.7;
}

.content ul li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #fff;
}

.content ol {
  list-style-type: decimal;
  padding-left: 30px;
  opacity: 0.7;
}

.content ol li {
  padding: 4px 0;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #fff;
}

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

.footer {
  margin-top: auto;
  background: #1C1E25;
}

.footer__blocks {
  margin: 30px 0;
}

.footer__block {
  background: #262931;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
}

.footer__block-top {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.footer__logo {
  opacity: 0.4;
}

.footer__desc {
  color: #fff;
  opacity: 0.4;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
}

.footer__btns {
  display: flex;
  gap: 5px;
  align-items: stretch;
}

.footer__btns-wrp {
  display: flex;
  gap: 5px;
  align-items: stretch;
}

.footer__social {
  border-radius: 4px;
  background: rgba(156, 158, 162, 0.1921568627);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.footer__social img {
  opacity: 0.4;
  transition: all 0.3s;
}

.footer__social:hover img {
  opacity: 1;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__phone a {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

.footer__phone a:hover {
  color: #fff;
}

.footer__phone-label {
  color: #fff;
  opacity: 0.4;
  font-size: 15px;
}

.footer__email {
  display: flex;
  gap: 10px;
  color: #fff;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  opacity: 0.7;
}

.footer__email:hover {
  opacity: 1;
}

.footer__icon {
  width: 17px;
  height: 17px;
  fill: #FD5A42;
}

.footer__title {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer ul li a {
  color: white;
  opacity: 0.4;
  font-size: clamp(0.9375rem, 0.9rem + 0.1875vw, 1.125rem);
  line-height: 1.3;
  padding: 7px 0;
  display: block;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0;
}

.footer__part {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.2823529412);
}

.footer__part a {
  color: rgba(255, 255, 255, 0.2823529412);
}

.footer__part:hover a {
  color: #fff;
}

.footer__heart {
  width: 13px;
  height: 13px;
  fill: #FD5A42;
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2823529412);
}

.footer__btn {
  white-space: nowrap;
}

@media only screen and (max-width: 864px) {
  .footer__bottom {
    flex-direction: column;
  }

  .footer__part {
    text-align: center;
  }

  .footer__title {
    margin-bottom: 10px;
  }

  .footer__menu {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 578px) {
  .footer__block {
    padding: 20px;
  }
}

@media only screen and (max-width: 360px) {
  .footer__btns {
    flex-direction: column;
  }
}

.mcart__clearall {
  cursor: pointer;
}