@charset "UTF-8";
@media screen and (min-width: 720px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
    text-align: center;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
}
*,
*::backdrop,
*::after {
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Proxima Nova;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.5px;
  color: #1E2E36;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.visually-hidden {
  display: none;
}

main section {
  margin: 100px 0;
}

main section:first-child {
  margin-bottom: 100px;
  margin-top: 0;
}

.burger {
  display: block;
}

.container {
  max-width: 1838px;
  padding: 0 10px;
  margin: 0px auto;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  text-align: center;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #44C697;
  text-underline-offset: 10px;
  color: inherit;
}

img {
  max-width: 100%;
}

ul {
  list-style-type: none;
}

.ibox {
  position: relative;
}

.burger {
  position: relative;
  width: 20px;
  height: 20px;
}
.burger span {
  position: absolute;
  background-color: #1E2E36;
  right: 0;
  width: 100%;
  height: 2px;
  top: 9px;
  transition: all 0.3s ease 0s;
}
.burger::before, .burger::after {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #1E2E36;
  height: 2px;
  right: 0;
  transition: all 0.3s ease 0s;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger.active span {
  background-color: #FFF;
}
.burger.active::before, .burger.active::after {
  background-color: #FFF;
}
.burger.active span {
  transform: scale(0);
}
.burger.active::before {
  top: 9px;
  transform: rotate(45deg);
}
.burger.active::after {
  bottom: 9px;
  transform: rotate(-45deg);
}

form {
  margin-top: 30px;
}
form input {
  border: 1px solid #1E2E36;
  border-radius: 3px;
  padding: 15px;
}
form .position * {
  width: 100%;
}
form * {
  margin-bottom: 15px;
}

.navArrow {
  position: relative;
  display: flex;
  gap: 8px;
}
.navArrow .nA {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navArrow__left svg {
  transform: rotate(90deg);
}
.navArrow__right svg {
  transform: rotate(-90deg);
}

button {
  background: none;
  color: #FFF;
  text-transform: uppercase;
  background-color: #44C697;
  border-radius: 3px;
  padding: 14px 46px;
}

button:hover {
  background-color: #2f8a69;
}

svg {
  fill: #1E2E36;
  width: 20px;
  height: 20px;
}

svg:hover {
  fill: #44C697;
}

.windowModal * {
  font-size: 12px;
}
.windowModal.active {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E2E36;
  z-index: 3;
  color: #FFF;
}
.windowModal__block {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.windowModal__block .burger, .windowModal__block .navMmenu {
  margin: 40px 0;
}

.mobileMmenu.active {
  display: block;
}
.mobileMmenu__list {
  height: 200px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.mobileSmenu.active {
  display: block;
}
.mobileSmenu__list {
  height: 200px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.mobileSmenu__list .mobileSmenu__basket {
  display: none;
}
.mobileSmenu__list .mobileSmenu__basket svg {
  stroke: #FFF;
}
@media screen and (max-width: 620px) {
  .mobileSmenu__list .mobileSmenu__basket {
    display: block;
  }
  .mobileSmenu__list .mobileSmenu__basket svg {
    stroke: #FFF;
  }
}
.mobileSmenu__list .mobileSmenu__order {
  display: none;
}
@media screen and (max-width: 779px) {
  .mobileSmenu__list .mobileSmenu__order {
    display: block;
  }
}

.socialLinks {
  display: flex;
  gap: 13px;
}
.socialLinks__list {
  display: flex;
  gap: 15px;
}
.socialLinks p {
  display: none;
}

.contactPhone {
  display: flex;
  gap: 10px;
  flex-grow: 0;
}
.contactPhone__icon:hover {
  color: #44C697;
}
.contactPhone__number:hover {
  stroke: #44C697;
}
.contactPhone__icon svg {
  fill: none;
  stroke: #1E2E36;
}
@media screen and (min-width: 780px) {
  .contactPhone {
    flex-grow: 1;
  }
}

.mainMenu {
  border-bottom: 1px solid #1E2E36;
}
.mainMenu__block {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  gap: 60px;
  align-items: center;
}
.mainMenu__block .contactPhone__number:hover {
  color: #44C697;
}
.mainMenu__block .contactPhone__number:hover svg {
  stroke: #44C697;
}
.mainMenu__block .contactPhone__number a:hover {
  text-decoration: none;
}
.mainMenu__block .contactPhone__number svg {
  fill: none;
  stroke: #1E2E36;
}

.nav__Mmenu {
  display: none;
}

.nav__Mmenu__list {
  display: flex;
  gap: 15px;
}

.subMenu__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  gap: 10px;
}
.subMenu__block__basket:hover {
  color: #44C697;
}
.subMenu__block__basket:hover svg {
  stroke: #44C697;
}
.subMenu__block__basket a:hover {
  text-decoration: none;
}

.nav__Smenu {
  display: none;
}
.nav__Smenu__list {
  display: flex;
  gap: 20px;
}

.subMenu__order {
  display: none;
}

@media screen and (min-width: 1280px) {
  .burger {
    display: none;
  }
  .nav__Mmenu {
    display: block;
  }
  .nav__Smenu {
    display: block;
  }
}
@media screen and (min-width: 780px) {
  .subMenu__order {
    display: block;
  }
  .socialLinks p {
    display: block;
  }
}
@media screen and (max-width: 620px) {
  .contactPhone__number {
    display: none;
  }
  .subMenu__block__basket {
    display: none;
  }
}
.prefNaw {
  position: absolute;
  border: 1px solid #FFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

svg.arrowStyle {
  fill: #FFF;
  width: 12px;
  height: 7px;
}

.prefNaw:hover {
  background-color: white;
}

.prefNaw:hover svg {
  fill: #1E2E36;
}

.Right {
  right: 25px;
}

.Left {
  left: 25px;
}

.Left, .Right {
  top: 50%;
  z-index: 2;
}

.preference__list {
  margin: 50px 0;
}
.preference__list__item__card {
  color: #FFF;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 20px;
  overflow: hidden;
  transition: all 1s ease-in;
}
.preference__list__item__card h3 {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #44C697;
  text-underline-offset: 10px;
}
.preference__list__item__card p {
  visibility: hidden;
}
.preference__list__item__card * {
  transform: translateY(70px);
}
.preference__list__item__card.premium {
  background-image: url("../images/card1.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
}
.preference__list__item__card.strong {
  background-image: url("../images/card2.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
}
.preference__list__item__card.safty {
  background-image: url("../images/card3.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
}

.SB {
  overflow: hidden;
}

.goods {
  /* &__card{

      &__list{
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: repeat(2,1fr);
      gap:10px

      }
  } */
}
.goods__nav__list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  text-align: center;
}
.goods__nav__list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.goods__nav__list__item a {
  text-decoration: none;
  text-align: center;
  font-size: 10px;
}
@media screen and (min-width: 780px) {
  .goods__nav__list__item a {
    font-size: inherit;
  }
}
.goods__nav__list__item:hover {
  color: #44C697;
}
.goods__nav__list__item a svg {
  color: #44C697;
}
.goods__nav__list__item svg {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 780px) {
  .goods__nav__list__item svg {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .goods__nav {
    padding: 0 8.8%;
  }
}
.goods__card__list {
  display: grid;
  gap: 25px 30px;
  margin: 84px 0px 50px 0px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 780px) {
  .goods__card__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .goods__card__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.goods__card__list__item:hover {
  background-color: #44C697;
}
.goods__card__list__item__img {
  position: relative;
}
.goods__card__list__item__img img {
  width: 100%;
}
.goods__card__list__item__img .status__good {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  margin: 10px 0px;
  text-transform: uppercase;
}
.goods__card__list__item__imgimg {
  width: 100px;
}
.goods__card__list__item__img .status__good div {
  padding: 5px 15px;
}
.goods__card__list__item__img .status__good div:first-child {
  background-color: #1E2E36;
  margin-bottom: 5px;
}
.goods__card__list__item__img .status__good div:last-child {
  background-color: red;
}
.goods__card__list__item__nameing {
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 15px;
  gap: 5px;
}
.goods__card__list__item__nameing h4:first-child {
  margin-right: auto;
}
.goods__card__list__item__nameing h4:last-child {
  color: grey;
  text-decoration: line-through;
}
.goods__submit {
  text-align: center;
}

.about {
  position: relative;
}
.about__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.about__block__text {
  order: 1;
  width: 100%;
  padding: 50px;
}
.about__block__text p {
  font-weight: 400;
  margin-bottom: 15px;
}
.about__block__text p span {
  text-transform: uppercase;
  color: #44C697;
}

.about__block__text::after {
  content: "";
  background-color: #44C697;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 98%;
  right: 0;
}

@media screen and (min-width: 1280px) {
  .about__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 785px;
  }
  .about__block__text {
    width: 800px;
    height: 475px;
    padding: 50px;
    padding-left: 0;
    background-color: #FFF;
  }
  .about__block__img {
    position: absolute;
    top: 86px;
    right: 0;
    z-index: -1;
  }
}
.question {
  position: relative;
}
.question__block {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.question__block__text {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.question__block__text p {
  font-weight: 400;
}

.question__block__text::before {
  content: "";
  background-color: #44C697;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 98%;
}

@media screen and (min-width: 1280px) {
  .question {
    position: relative;
  }
  .question__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    height: 610px;
  }
  .question__block__img {
    position: absolute;
    top: 86px;
    left: 0;
  }
  .question__block__text {
    width: 528px;
    background-color: #FFF;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .question__block__text p {
    font-weight: 400;
    width: 395px;
  }
}
.footer {
  color: #FFF;
}
.footer a:hover {
  text-decoration: none;
  color: #44C697;
}
.footer svg {
  fill: #FFF;
}
.footer svg:hover {
  fill: #44C697;
}
.footer .scroll_up {
  background-color: #44C697;
  position: absolute;
  border-radius: 50%;
  padding: 14px 19px;
  top: -15px;
}
.footer .scroll_up:hover {
  background-color: #2f8a69;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__content__text {
  display: flex;
  flex-direction: column;
  position: relative;
  order: 2;
  background-color: #1E2E36;
  width: 100%;
  padding-top: 50px;
}
.footer__content__text__info {
  flex-wrap: wrap;
  flex-grow: 1;
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  gap: 20px;
}
.footer__content__text__info .nav__MFmenu__list, .footer__content__text__info .nav__SFmenu__list {
  display: flex;
  flex-direction: column;
}
.footer__content__img img {
  width: 100%;
}
.footer .nav__SFmenu__list li::before, .footer .nav__MFmenu__list li::before {
  content: "—";
  color: #44C697;
  padding-right: 5px;
}
.footer address {
  font-weight: 400;
}
.footer address .address__list__item {
  display: flex;
  gap: 10px;
}
.footer address .address__list__item:hover {
  color: #44C697;
}
.footer address .address__list__item:hover svg {
  fill: #44C697;
}
.footer address .address__list__item:hover #svgFP {
  stroke: #44C697;
}
.footer address .socialLinks {
  display: flex;
  flex-direction: column;
}

.rules {
  color: #b2b2b2;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .footer {
    color: #FFF;
  }
  .footer svg {
    fill: #FFF;
  }
  .footer .scroll_up {
    background-color: #44C697;
    position: absolute;
    border-radius: 50%;
    padding: 14px 19px;
    top: -15px;
  }
  .footer__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__content__text {
    order: 0;
    position: relative;
    background-color: #1E2E36;
    flex-basis: 831px;
    padding-top: 50px;
  }
  .footer__content__text__info {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
  }
  .footer__content__text__info .nav__MFmenu__list, .footer__content__text__info .nav__SFmenu__list {
    display: flex;
    flex-direction: column;
  }
  .footer__content__img {
    flex-grow: 1;
    height: 100%;
  }
  .footer .nav__SFmenu__list li::before, .footer .nav__MFmenu__list li::before {
    content: "—";
    color: #44C697;
    padding-right: 5px;
  }
  .footer address {
    font-weight: 400;
  }
  .footer address .address__list__item {
    display: flex;
    gap: 10px;
  }
  .footer address .socialLinks {
    display: flex;
    flex-direction: column;
  }
}
#svgFP {
  fill: none;
  stroke: #FFF;
}/*# sourceMappingURL=style.css.map */