@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

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

input[type=checkbox],
input[type=radio],
input[type=file] {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  height: 100vh;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  background: #ffffff;
  color: #303030;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
button,
a {
  font-family: "Gilroy", sans-serif;
}

body.modal-open {
  overflow: hidden !important;
  height: 100vh;
}

button {
  cursor: pointer;
}

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

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

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.hidden {
  display: none;
}

.hidden-menu {
  top: -100% !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.visible {
  visibility: visible;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .row {
    flex-direction: column;
  }
}

.desktop {
  display: flex !important;
}
@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 991px) {
  .mobile {
    display: flex !important;
  }
}

.primary {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #d12328 0%, #9a191d 100%);
  box-shadow: 0px 8px 24px 0px rgba(209, 35, 40, 0.35);
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.primary:hover {
  box-shadow: 0px 8px 24px 0px rgba(209, 35, 40, 0.35);
}
.primary:disabled {
  background: #767676;
  box-shadow: none;
}

.title {
  color: #ffffff;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 64px;
}
.title span {
  color: #d12328;
}
@media (max-width: 991px) {
  .title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 80px;
}
@media (max-width: 991px) {
  .container {
    padding: 0 16px;
  }
}

.modal-wrap {
  font-family: "Gilroy", sans-serif;
  z-index: 12;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(82, 99, 77, 0.55);
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 848px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #ffffff;
  padding: 40px;
}
@media (max-width: 991px) {
  .modal {
    width: 343px;
    padding: 24px;
  }
}
.modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .modal__close {
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.modal h2 {
  color: #242424;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .modal h2 {
    font-size: 24px;
  }
}
.modal__list {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .modal__list {
    margin-bottom: 24px;
  }
}
.modal__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .modal__item {
    gap: 8px;
  }
}
.modal__item-name {
  color: #242424;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .modal__item-name {
    font-weight: 500;
  }
}
.modal__item-price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #242424;
  font-size: 40px;
  font-weight: 700;
}
.modal__item-price span {
  font-size: 24px;
}
.modal .primary {
  margin: auto;
}

.delivery {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 576px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #ffffff;
  padding: 40px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .delivery {
    width: 343px;
    padding: 24px; 
    /* height: 90%; */
    /* padding-bottom: 100px; */
  }
}
.delivery__close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .delivery__close {
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.delivery h2 {
  color: #242424;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .delivery h2 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .delivery__form-wrap {
    height: 100%;
    overflow: scroll;
    padding-right: 10px;
  }
}
.delivery__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 27px;
}
.delivery__input {
  width: 100%;
}
.delivery__input label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.delivery__input label span {
  color: #0fb597;
}
.delivery__input input {
  width: 100%;
  height: 48px;
  padding: 8px 12px 8px 16px;
  border-radius: 8px;
  border: 1px solid #b8cccb;
  background: #ffffff;
}
.delivery__input input::placeholder {
  color: #b8cccb;
  font-size: 16px;
}
.delivery__input input:focus {
  border: 1px solid #090909;
}
.delivery__input input.filled {
  border: 1px solid #090909;
}
.delivery .primary {
  margin-top: 24px;
}

.custom-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox .checkmark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #090909;
  background: #ffffff;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid #0fb597;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked + .checkmark::after {
  display: block;
}

.modal__item {
  transition: 0.3s ease;
}
.modal__item.selected .modal__item-name,
.modal__item.selected .modal__item-price {
  color: #d12328;
}

.custom-select-wrap {
  width: 100%;
  position: relative;
}

.custom-select-wrap label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.custom-select-wrap label span {
  color: #0fb597;
}

.custom-select {
  position: relative;
  width: 100%;
  height: 48px;
  padding: 8px 12px 8px 16px;
  border-radius: 8px;
  border: 1px solid #090909;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.custom-select__arrow {
  margin-left: 8px;
  font-size: 14px;
}

.custom-select__options {
  padding: 8px;
  margin-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #b8cccb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}

.custom-select__options.hidden {
  display: none;
}

.custom-select__options li {
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.custom-select__options li:hover,
.custom-select__options li.selected {
  background-color: #d8e8da;
}

.swiperModal {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-button-prev::after {
  display: none;
}

.modal-button-next::after {
  display: none;
}

.modal-button-prev {
  position: absolute;
  left: 0;
  top: 45%;
  z-index: 11;
}

.modal-button-next {
  position: absolute;
  right: 0;
  top: 45%;
  z-index: 11;
}

.header-wrap {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 16px 0;
  background-color: #090909;
}
@media (max-width: 991px) {
  .header-wrap {
    position: static;
    padding: 20px 0;
    border-bottom: 1px solid #762525;
  }
}

.header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .header__logo {
    width: 129px;
    height: 24px;
  }
}
.header__right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 16px 32px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.header__burger {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  position: absolute;
  top: -2000%;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: #090909;
  background-image: url(../img/footer-jungle.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  transition: 0.8s;
}
@media (max-width: 991px) {
  .menu {
    top: -1800%;
    background-size: 80%;
  }
}
.menu--active {
  top: 0;
}
.menu__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.menu__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .menu__logo {
    width: 129px;
    height: 24px;
  }
}
.menu__nav {
  margin-top: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 76px;
}
@media (max-width: 991px) {
  .menu__nav {
    gap: 24px;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}
.menu__nav a {
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .menu__nav a {
    font-size: 24px;
  }
}
.menu .primary {
  margin: auto;
}
.menu__list {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.menu__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-wrap {
  position: relative;
  height: 837px;
  background-image: url(../img/icons/hero-bg.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 50%;
  background-color: #090909;
}
@media (max-width: 991px) {
  .hero-wrap {
    height: auto;
    background-position: center 75%;
    background-size: 100%;
  }
}
@media (max-width: 991px) {
  .hero-wrap .container {
    padding: 0;
  }
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  top: 316px;
}
@media (max-width: 991px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    padding-top: 150px;
  }
}
@media (max-width: 991px) {
  .hero__info {
    padding: 0 16px;
  }
}
.hero__pre-title {
  display: block;
  color: #d12328;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .hero__pre-title {
    font-size: 18px;
    text-align: center;
  }
}
.hero__title {
  color: #ffffff;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .hero__title {
    font-size: 48px;
    text-align: center;
  }
}
.hero__text {
  width: 365px;
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 72px;
}
@media (max-width: 991px) {
  .hero__text {
    font-size: 16px;
    width: auto;
    text-align: center;
    margin-bottom: 24px;
  }
}
.hero__buy {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .hero__buy {
    flex-direction: column-reverse;
    gap: 8px;
    margin-bottom: 80px;
  }
}
.hero__price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}
.hero__price span {
  display: block;
  font-size: 24px;
}
.hero__product {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 991px) {
  .hero__product {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 30px;
    padding: 0 16px;
  }
}
.hero__product-descr {
  position: absolute;
  right: -200px;
  bottom: 60px;
  display: flex;
  width: 278px;
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #d12328 0%, #9a191d 100%);
  box-shadow: 0px 8px 24px 0px rgba(209, 35, 40, 0.35);
}
@media (max-width: 991px) {
  .hero__product-descr {
    right: auto;
    bottom: auto;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px;
    align-items: center;
    width: 150px;
    height: 190px;
  }
}
.hero__product img {
  position: relative;
  z-index: 1;
  max-width: 400px;
}
@media (max-width: 991px) {
  .hero__product img {
    width: 238.517px;
    height: 178.827px;
  }
}
.hero__product-descr--top {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .hero__product-descr--top {
    font-size: 24px;
  }
}
.hero__product-descr--middle {
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 991px) {
  .hero__product-descr--middle {
    font-size: 16px;
  }
}
.hero__product-descr--bottom {
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 991px) {
  .hero__product-descr--bottom {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .hero__list-wrap {
    width: 100%;
    background: linear-gradient(180deg, #d12328 0%, #9a191d 100%);
    padding: 32px 16px;
  }
}
.hero__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .hero__list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}
.hero__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantages-wrap {
  margin-top: 160px;
}
@media (max-width: 991px) {
  .advantages-wrap {
    margin-top: 120px;
  }
}
.advantages-wrap .title {
  color: #000;
}
@media (max-width: 991px) {
  .advantages-wrap .title span {
    display: block;
  }
}

.advantages__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 56px;
  row-gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .advantages__list {
    column-gap: 40px;
    row-gap: 40px;
  }
}
.advantages__item {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .advantages__item {
    width: 100%;
  }
}
.advantages__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #d12328 0%, #9a191d 100%);
  box-shadow: 0px 8px 24px 0px rgba(10, 136, 121, 0.45);
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .advantages__img {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }
}
.advantages__title {
  color: #242424;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  width: 348px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .advantages__title {
    width: 100%;
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.advantages__text {
  color: #303030;
  text-align: center;
  font-size: 18px;
  width: 348px;
}
@media (max-width: 991px) {
  .advantages__text {
    width: 100%;
    font-size: 16px;
  }
}

.audience-wrap {
  padding: 120px 0 80px 0;
  background-color: #090909;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .audience-wrap {
    margin-top: 80px;
  }
}

.audience__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .audience__list {
    gap: 32px;
  }
}
.audience__item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .audience__item {
    flex-direction: column;
    gap: 0;
  }
}
.audience__item:nth-child(2n) {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .audience__item:nth-child(2n) {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .audience__item-img {
    margin-left: auto;
  }
}
.audience__info-img {
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .audience__info-img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
}
.audience__info-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  width: 403px;
  margin-bottom: 16px;
}
.audience__info-title span {
  color: #ffffff;
}
@media (max-width: 991px) {
  .audience__info-title {
    width: 100%;
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.audience__info-text {
  color: #e0e0e0;
  font-size: 18px;
  width: 403px;
}
@media (max-width: 991px) {
  .audience__info-text {
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .audience__circle {
    display: none;
  }
}

.action-wrap {
  background-image: url(../img/action-bg.svg);
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 64px 0 55px 0;
}
@media (max-width: 1200px) {
  .action-wrap {
    padding: 48px 0 120px 0;
    background-position: top;
    background-size: 100% 48%;
  }
}

.action {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1200px) {
  .action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
  }
}
.action__label {
  color: #242424;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 1200px) {
  .action__label {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
  }
}
.action__calc {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .action__calc {
    text-align: center;
    margin-bottom: 16px;
  }
}
.action__timer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 104px;
}
@media (max-width: 1200px) {
  .action__timer {
    margin-bottom: 24px;
  }
}
.action__timer-block {
  width: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 8px 24px 0px rgba(27, 28, 28, 0.45);
}
@media (max-width: 1200px) {
  .action__timer-block {
    width: 98px;
  }
}
.action__timer-time {
  color: #242424;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
.action__timer-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 8px;
}
.action__timer-label {
  color: #303030;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .action__timer-label {
    font-size: 10px;
  }
}
.action__timer-dots {
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 1200px) {
  .action__timer-dots {
    margin-left: -15px;
    margin-right: -15px;
    width: 40px;
  }
}
.action__descr {
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .action__descr {
    text-align: center;
  }
}
.action__right {
  width: 378px;
}
@media (max-width: 1200px) {
  .action__right {
    width: 100%;
  }
}
.action__pre-title {
  color: #d12328;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 1200px) {
  .action__pre-title {
    font-size: 20px;
    text-align: center;
  }
}
.action__title {
  color: #242424;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 72px;
}
.action__title span {
  color: #ffffff;
}
@media (max-width: 991px) {
  .action__title span {
    color: #d12328;
  }
}
@media (max-width: 1200px) {
  .action__title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.action__buy {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1200px) {
  .action__buy {
    flex-direction: column-reverse;
    gap: 8px;
  }
}
.action__price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .action__price {
    color: #d12328;
  }
}
.action__price span {
  font-size: 24px;
}

.recom-wrap {
  background-color: #090909;
  padding: 160px 0 142px 0;
}
@media (max-width: 991px) {
  .recom-wrap {
    padding: 80px 0;
    background-size: 100%;
    background-position: center bottom 22%;
  }
}
.recom-wrap .title {
  color: #ffffff;
}

.recom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .recom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.recom__text {
  max-width: 500px;
  color: #ffffff;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .recom__text {
    max-width: 100%;
    font-size: 18px;
    line-height: 22px;
  }
}
.recom__quotes {
  margin-left: auto;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .recom__quotes {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
}
.recom__name {
  color: #d12328;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .recom__name {
    text-align: center;
  }
}
.recom__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .recom__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.recom__item {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
}
.recom .dot {
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 100%;
}
.recom__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .recom__social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.recom__social-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.recom__logo {
  width: 230.059px;
}

.choose-wrap {
  padding: 120px 0;
  background-color: #090909;
}

.choose__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 65px;
}
@media (max-width: 991px) {
  .choose__list {
    flex-direction: column;
    gap: 16px;
  }
}
.choose__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 276px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--natural_800, #303030);
  background: var(--natural_900, #242424);
  box-shadow: 0px 8px 40px 0px rgba(7, 27, 25, 0.15);
}
@media (max-width: 991px) {
  .choose__item {
    width: 100%;
  }
}
.choose__img {
  margin-bottom: 21px;
  max-height: 146px;
}
@media (max-width: 991px) {
  .choose__img {
    margin-bottom: 18px;
    max-width: 300px;
    max-height: 100%;
  }  
} 
.w-300 { 
  max-width: 300px;
}
.choose__ml {
  color: #e0e0e0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .choose__ml {
    font-weight: 500;
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) {
  .choose__buy {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
}
.choose__price-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  color: #e0e0e0;
  font-size: 40px;
  font-weight: 700;
  white-space: nowrap;
}
.choose__price-top span {
  display: block;
  font-size: 24px;
}
.choose__price-bottom {
  color: #e0e0e0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.primary {
  white-space: nowrap;
}

.reviews-wrap {
  background-color: #090909;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .reviews-wrap {
    padding-bottom: 20px;
  }
}

.reviews__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 991px) {
  .reviews__list {
    flex-direction: column;
    gap: 8px;
  }
}
.reviews__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 47%;
  height: 309px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--natural_800, #303030);
  background: var(--natural_900, #242424);
  box-shadow: 0px 8px 40px 0px rgba(7, 27, 25, 0.15);
}
@media (max-width: 991px) {
  .reviews__item {
    width: 100%;
    height: auto;
  }
}
.reviews__item-text {
  color: #e0e0e0;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .reviews__item-text {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.reviews__item-img {
  width: 32px;
  height: 32px;
  margin-left: auto;
}
.reviews__item-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.reviews__item-name {
  color: #e0e0e0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .reviews__item-name {
    font-size: 16px;
  }
}
.reviews__item-position {
  color: #767676;
  font-size: 14px;
}
@media (max-width: 991px) {
  .reviews__item-position {
    font-size: 12px;
  }
}

.footer-wrap {
  margin-top: -160px;
}
@media (max-width: 991px) {
  .footer-wrap {
    overflow: hidden;
    margin-top: -120px;
  }
}

.footer__top-wrap {
  padding-top: 276px;
  background: #f5f5f5;
  background-image: url(../img/footer-jungle.svg);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: center bottom 20%;
}
@media (max-width: 991px) {
  .footer__top-wrap {
    padding-top: 305px;
    background-size: 60%;
    background-position: center bottom 60%;
  }
}
.footer__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .footer__top-left {
    width: 228px;
    height: 320px;
    position: relative;
    right: -50px;
  }
}
@media (max-width: 991px) {
  .footer__top-right {
    width: 228px;
    height: 320px;
    position: relative;
    left: -50px;
  }
}
.footer__top-center {
  position: relative;
  bottom: -90px;
}
@media (max-width: 991px) {
  .footer__top-center {
    position: absolute;
    bottom: -55px;
    z-index: 3;
  }
}
.footer__top-center > img {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .footer__top-center > img {
    width: 238.517px;
    height: 178.827px;
  }
}
.footer__top .descr {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 188px;
  height: 190px;
  padding: 24px 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #d12328 0%, #9a191d 100%);
  box-shadow: 0px 8px 54px 0px rgba(36, 36, 36, 0.54);
}
@media (max-width: 991px) {
  .footer__top .descr {
    width: 144px;
    height: 190px;
    top: -100px;
  }
}
.footer__top .descr__top {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .footer__top .descr__top {
    font-size: 24px;
  }
}
.footer__top .descr__middle {
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 991px) {
  .footer__top .descr__middle {
    font-size: 16px;
  }
}
.footer__top .descr__bottom {
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 991px) {
  .footer__top .descr__bottom {
    font-size: 12px;
  }
}
.footer__middle-wrap {
  padding: 194px 0 120px 0;
  background-color: #090909;
}
@media (max-width: 991px) {
  .footer__middle-wrap {
    padding: 80px 0;
  }
}
.footer__middle-pre-title {
  color: #d12328;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .footer__middle-pre-title {
    font-size: 24px;
  }
}
.footer__middle-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .footer__middle-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
.footer__middle-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #ffffff;
  font-size: 64px;
  font-weight: 700;
}
.footer__middle-item span {
  font-size: 40px;
}
@media (max-width: 991px) {
  .footer__middle-item {
    font-size: 48px;
  }
  .footer__middle-item span {
    font-size: 24px;
  }
}
.footer__bottom-wrap {
  background: #090909;
  padding: 24px 0;
}
@media (max-width: 991px) {
  .footer__bottom-wrap {
    padding: 16px 0;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
  }
}
.footer__bottom-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__bottom .to-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #e0e0e0;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .footer__bottom .to-top {
    gap: 8px;
    font-size: 16px;
  }
}
.footer__bottom .to-top img {
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .footer__bottom .to-top img {
    margin-bottom: 4px;
  }
}