*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  background-color: white;
  color: #2c3050;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.text-bold {
  font-weight: 700;
}

.text {
  font-size: 16px;
  line-height: 24px;
}
.text--link {
  text-decoration: underline;
  color: #417df6;
  font-weight: 700;
}
.text--green {
  color: #008171;
}
.text--red {
  color: #ff5037;
}
.text--gray {
  color: #707070;
}
.text--white {
  color: #fff;
}
.text--underline {
  border-bottom: 2px solid #008171;
  width: -moz-fit-content;
  width: fit-content;
}

.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
}

.container--header {
  max-width: 800px;
}

.special {
  background: transparent linear-gradient(90deg, #f53e6c 0%, #6d47d8 100%) 0% 0% no-repeat padding-box;
  padding: 8px 0;
}
.special__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.special__text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: white;
}
.special__text--yellow {
  color: #fbea00;
}

.header {
  margin-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}
.header__row {
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.header__inner img {
  cursor: pointer;
}
.header__navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header__navigation a {
  font-size: 20px;
  line-height: 24px;
  color: #5b6f85;
}
.header__logo {
  margin-right: 60px;
}
.header__menu {
  position: fixed;
  right: -100%;
  top: 0;
  gap: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e4e4e4;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  min-height: 100vh;
  text-align: center;
  transition: 0.6s ease-in-out;
  z-index: 10;
}
.header__menu.active {
  right: 0%;
}
.header__hamburger {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 15;
}
.header__hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  background-color: black;
  border-radius: 6px;
}
.header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.countdown {
  margin-bottom: 20px;
}
.countdown__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.countdown__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #5b6f85;
}
.countdown__text--orange {
  color: #fb7f00;
}
.countdown__box {
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 5px;
}
.countdown__number {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #417df6;
}

.kitTitle {
  margin-top: 60px;
}

.hero {
  padding-bottom: 50px;
}
.hero__breadcrumbs {
  font-size: 12px;
  line-height: 15px;
  color: #5b6f85;
  text-align: left;
  margin-bottom: 15px;
  letter-spacing: 0.6px;
}
.hero__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.hero__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.hero__inner--last {
  margin-bottom: 25px;
  flex-direction: column;
}
.hero__inner--small {
  gap: 5px;
}
.hero__gallery {
  display: flex;
  flex-wrap: wrap;
  max-width: 318px;
  gap: 18px;
  margin-right: 0;
}
.hero__gallery-inner {
  position: relative;
}
.hero__gallery-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.hero__gallery-arrow--left {
  left: 10px;
}
.hero__gallery-arrow--right {
  right: 10px;
}
.hero__main-image {
  border-radius: 24px;
  border: 1px solid #8a8a8a;
}
.hero__images-wrapper {
  display: flex;
  gap: 18px;
}
.hero__gallery-button {
  max-width: 105px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #bbb;
}
.hero__gallery-button--active {
  border: 1px solid #000;
}
.hero__gallery-button:hover {
  cursor: pointer;
}
.hero__gallery-button img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  transform: scale(1.2);
}
.hero .price {
  margin-bottom: 25px;
}
.hero .price .hero__heading {
  color: #2ca700;
}
.hero .price .text {
  color: #ff5037;
}
.hero__heading {
  font-family: "Rubik", sans-serif;
  font-size: 25px;
  line-height: 32px;
  font-weight: 700;
  color: #2c3050;
  margin-bottom: 25px;
}
.hero__heading--no-margin {
  margin-bottom: 0;
}
.hero__heading--light {
  color: #ffffff;
}
.hero__text {
  font-family: "Rubik", sans-serif;
}
.hero__text--small {
  font-size: 14px;
  line-height: 24px;
}
.hero__text--orange {
  color: #ff5037;
}
.hero__badge {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 5px;
  background-color: #fb7f00;
  margin: 25px 0 15px;
}
.hero__delivery {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 27px 0;
}
.hero__delivery p {
  color: #2ca700;
}
.hero__input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-bottom: 20px;
}
.hero__input-wrapper .hero__inner {
  font-size: 16px;
  color: #5b6f85;
  gap: 5px;
}
.hero__box {
  font-weight: 400;
}
.hero__amount-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__order {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 25px;
  background-color: #278c7a;
  border-radius: 10px;
  transition: all 0.35s ease-in-out;
}
.hero__order:hover {
  background-color: #2aac95;
}
.hero__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}
.hero__cart {
  width: 16px;
  height: 16px;
}

.description {
  background-color: #e2e8f0;
  padding: 50px 0;
}
.description .container {
  border-radius: 10px;
  background-color: white;
}
.description .text {
  margin-bottom: 20px;
}
.description .text:first-child {
  margin-bottom: 35px;
}
.description__wrapper {
  padding: 25px 0;
}
.description__inner {
  margin-top: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 10px;
}
.description__list {
  list-style-type: none;
  margin-bottom: 30px;
}
.description__list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.description__list li:last-child {
  margin-bottom: 0;
}
.description__list li .text {
  margin-bottom: 0;
}
.description__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
  margin: 30px;
}
.description__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
}
.description__col .text {
  text-align: center;
  margin: 40px 0 0;
  font-size: 20px;
}

.promo {
  background-color: white;
  padding: 40px 0;
  text-align: center;
}
.promo__heading {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 25px;
  max-width: 761px;
  margin: 0 auto;
}
.promo__heading .yellow {
  color: #fbea00;
}
.promo__heading--white {
  color: white;
}
.promo__heading--no-margin {
  margin-bottom: 0;
}
.promo .phone {
  font-size: 64px;
  color: #2ca700;
  font-weight: 900;
  margin: 27px 0 25px;
  display: none;
}
@media (max-width: 768px) {
  .promo .phone {
    font-size: 35px;
  }
}
.promo .hoursText {
  font-size: 16px;
  margin-top: 5px;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .promo .hoursText {
    font-size: 14px;
  }
}
.promo .infoText {
  margin: 40px auto 0;
  font-size: 25px;
  max-width: 570px;
  font-weight: 700;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .promo .infoText {
    font-size: 18px;
  }
}
.promo .infoText span {
  color: #ff5037;
}
.promo .warnText {
  margin-top: 37px;
  font-weight: 700;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .promo .warnText {
    font-size: 14px;
  }
}
.promo__text-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto;
}
.promo__price {
  font-family: "Rubik", sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: #008171;
}
.promo__wrapper {
  border: 3px solid #2ca700;
  border-radius: 10px;
  width: 100%;
  max-width: 985px;
  margin: -270px auto 0;
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.1607843137);
  background-color: white;
  transform: translateY(300px);
  padding-bottom: 40px;
}
.promo__inner {
  padding: 0 20px 20px;
}
.promo__wrapper-header {
  background-color: #2c3050;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  margin: -3px -3px 27px;
}
.promo__payment {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
}

.footer {
  padding-top: 360px;
  padding-bottom: 50px;
  background-color: #e2e8f0;
}
.footer__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
}
.footer__text {
  font-size: 14px;
  line-height: 24px;
  color: #5b6f85;
}

@media (min-width: 375px) {
  .summary__row {
    grid-template-columns: 120px 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .text {
    font-size: 20px;
    line-height: 30px;
  }
  .special__container {
    padding: 0;
  }
  .header__hamburger {
    display: none;
  }
  .header__menu {
    position: unset;
    min-height: unset;
    box-shadow: none;
    background-color: white;
    flex-direction: row;
    justify-content: space-between;
  }
  .header__navigation {
    flex-direction: row;
    gap: 65px;
  }
  .countdown__text {
    font-size: 25px;
    line-height: 30px;
  }
  .countdown__number {
    font-size: 23px;
    line-height: 28px;
  }
  .hero {
    padding-bottom: 100px;
  }
  .hero__row {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero__col {
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
  }
  .hero__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .hero__inner--last {
    flex-direction: row;
  }
  .description__wrapper {
    padding: 25px;
  }
  .description__inner {
    padding: 50px 50px 25px 50px;
  }
  .description__col {
    width: 30%;
  }
  .promo__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .promo__inner {
    padding: 0 77px 40px;
  }
  .summary__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .summary__title {
    font-size: 25px;
    line-height: 30px;
  }
  .summary__wrapper-header {
    padding: 10px 75px;
  }
  .summary__data-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .summary__row {
    grid-template-columns: 340px 1fr 1fr 1fr;
  }
  .summary__row .summary__data-inner {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .header__logo {
    margin-right: 100px;
  }
  .promo .form__row {
    justify-content: space-between;
    grid-template-columns: repeat(auto-fit, minmax(400px, 400px));
    grid-gap: 20px 0;
  }
  .promo .form__label {
    font-size: 20px;
    line-height: 30px;
  }
  .promo .form__input::-moz-placeholder {
    font-size: 20px;
  }
  .promo .form__input::placeholder {
    font-size: 20px;
  }
  .promo .form__button {
    font-size: 32px;
    line-height: 40px;
  }
  .summary__row {
    grid-template-columns: 450px 1fr 1fr 1fr;
  }
  .summary__inner {
    padding-inline: 75px;
  }
  .summary__data-wrapper {
    grid-gap: 30px 20px;
  }
}
@media (min-width: 1240px) {
  .container {
    padding: 0;
  }
}
.cta {
  font-size: 36px;
  color: #2ca700;
  font-weight: 900;
  margin: 27px 0 25px;
  text-align: center;
  text-decoration: underline;
  line-height: 1.3;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cta {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */