.col-five {
  padding: 0 6px;
  width: 20%;
}

.tab_content {
  border: none !important;
}

.productPrice_container {
  display: none !important;
}

.custom-padding {
  display: block;
  padding-bottom: 10px;
  text-align: center;
}

/*! buttons */
.button {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  line-height: 34px;
  transition: .2s linear;
}

.button::after, .button::before {
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  width: 110%;
  height: 110%;
  content: '';
  transition: .2s linear;
}

.button:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.button:hover::after, .button:hover::before {
  transform: translateX(100%) skewX(25deg);
}

.button:focus {
  outline: 0;
}

.button--black {
  max-width: 400px;
  border: 2px solid #000000;
  background: #000000;
}

.button--black::before {
  left: 0;
  background: #000000;
}

.button--black::after {
  left: -115%;
  background: #ffffff;
  transform: skewX(25deg);
}

.button--black:hover {
  color: #000000;
}

.button--red {
  margin: 0 auto;
  margin-top: 30px;
  max-width: 442px;
  border: 2px solid transparent;
  background: #dd2a31;
  color: #ffffff;
}

.button--red::before {
  left: 0;
  background: #dd2a31;
}

.button--red::after {
  left: -115%;
  background: #ffffff;
  transform: skewX(25deg);
}

.button--red:hover {
  border: 2px solid #dd2a31;
  color: #dd2a31;
}

.button--yellow {
  max-width: 400px;
  border: 2px solid transparent;
  background: #fff500;
  color: #ffffff;
}

.button--yellow::before {
  left: 0;
  background: #fff500;
}

.button--yellow::after {
  left: -115%;
  background: #ffffff;
  transform: skewX(25deg);
}

.button--yellow:hover {
  border: 2px solid #ddd500;
  color: #ddd500;
}

.button--blue {
  max-width: 400px;
  border: 2px solid transparent;
  background: #00a3ff;
  color: #ffffff;
}

.button--blue::before {
  left: 0;
  background: #00a3ff;
}

.button--blue::after {
  left: -115%;
  background: #ffffff;
  transform: skewX(25deg);
}

.button--blue:hover {
  border: 2px solid #0081cc;
  color: #0081cc;
}

.button--jew {
  max-width: 400px;
  border: 2px solid transparent;
  background: #bb0070;
  color: #ffffff;
}

.button--jew::before {
  left: 0;
  background: #bb0070;
}

.button--jew::after {
  left: -115%;
  background: #ffffff;
  transform: skewX(25deg);
}

.button--jew:hover {
  border: 2px solid #aa0070;
  color: #aa0070;
}

.button--coffee {
  max-width: 400px;
  border: 2px solid transparent;
  background: #f9b310;
  color: #000000;
}

.button--coffee::before {
  left: 0;
  background: #f9b310;
}

.button--coffee::after {
  left: -115%;
  background: #ffffff;
  transform: skewX(25deg);
}

.button--coffee:hover {
  border: 2px solid #e09e06;
  color: #e09e06;
}

/*! buttons end */
/*! Popup */
.overlay:target {
  display: block;
}

.pop_header_logo {
  display: flex;
  align-content: center;
  justify-content: space-around;
  padding: 15px 10px 10px;
  background: #000000;
}

.popup_container {
  overflow: auto;
  height: 85%;
  text-align: left;
}

.popup_pading {
  padding: 20px;
}

.popup {
  position: fixed;
  top: -100%;
  right: 0;
  left: 50%;
  z-index: 100;
  overflow: hidden;
  margin: 0;
  min-width: 260px;
  max-width: 700px;
  width: 85%;
  height: auto;
  border: 1px solid #383838;
  border-radius: 4px;
  background: #fefefe;
  box-shadow: 0 15px 20px rgba(0, 0, 0, .22), 0 19px 60px rgba(0, 0, 0, .3);
  font-size: 14px;
  transition: transform .6s ease-out;
  transform: translate(-50%, -500%);
}

.footer__middle .popup {
  overflow-y: hidden;
  height: 65%;
}

.footer__middle .popup_container {
  height: 90%;
}

.overlay:target + .popup {
  top: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #cccccc;
  border-radius: 15px;
  background-color: rgba(61, 61, 61, .5);
  box-shadow: 0 0 5px #000000;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  transition: .2s linear;
}

.close::before, .close:after {
  position: relative;
  top: 50%;
  left: 50%;
  display: block;
  width: 9px;
  height: 2px;
  background: #ffffff;
  content: '';
}

.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close::after {
  top: 38%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:hover {
  background-color: rgba(252, 20, 0, .8);
  transform: rotate(180deg);
}

.popup h2 {
  padding-top: 13px;
  color: #ffffff;
  text-align: center;
  font-size: 17px;
  line-height: 18px;
}

.popup p {
  margin: 0;
  padding: 5px 0;
  color: #000000;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, .65);
  cursor: default;
}

.ab_us_container {
  margin: 0 auto;
  padding: 13px;
  max-width: 630px;
}

.title_popup {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin-top: 0 !important;
  margin-bottom: 0;
  padding: 15px 40px 15px 25px;
  background: #000000;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}

.colored {
  color: #0066ff;
  font-weight: 700;
  font-size: 35.23px;
  line-height: 43px;
}

.colored_text {
  padding-bottom: 7px !important;
  color: #0066ff !important;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
}

.row_popup {
  display: flex;
  justify-content: space-around;
}

.block_popup {
  width: 34%;
  text-align: center;
}

.block_popup p {
  text-align: center;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 23px;
}

.black_bold {
  margin: 0 !important;
  padding-top: 3px !important;
  padding-bottom: 0 !important;
  color: #000000;
  text-align: center;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 25px;
}

.icon_popup {
  display: flex;
  align-items: flex-end;
  -ms-flex-align: end;
  justify-content: center;
  padding-bottom: 9px;
  width: auto !important;
  height: 60px;
}

.second_row {
  padding-top: 6px !important;
}

.img_garanty {
  position: relative;
  top: 5px;
  max-width: 20%;
}

.text_garanty {
  max-width: 90%;
  text-align: left;
}

.rowflex {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 600px;
}

.text_garanty .black_bold {
  text-align: left;
}

.footnote {
  padding-top: 20px;
  color: #5f5f5f;
  text-align: center;
  font-size: 15px !important;
  line-height: 20px;
}

.blue_dot {
  position: relative;
  right: 10px;
  bottom: -14px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0066ff;
}

.icon_popup_none {
  display: none;
}

.block_popup_flex {
  display: flex;
  justify-content: center;
}

.first_row {
  padding-bottom: 10px;
}

.icon_popup img {
  margin: 0 auto;
  width: auto;
}

.img_garanty img {
  width: auto;
}

.popup-style {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .57);
}

.information {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding-bottom: 20px;
  text-align: center;
}

.information .popup {
  height: auto;
}

.information .st_text_blck {
  padding: 20px 0;
  color: #000000;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.information .block_popup {
  flex-direction: column;
}

.informationPopup {
  position: relative;
  margin-right: 10px;
  height: auto;
}

.informationPopup:not(:last-child)::after {
  left: 3px !important;
}

/*! Popup End */
.banner {
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
  background: url(../../assets/img/banner/banner-bg.jpg) top center/cover no-repeat;
  color: #ffffff;
}

.banner__text {
  position: relative;
  height: 100%;
}

.banner_about {
  position: absolute;
  bottom: 7px;
}

.banner__title {
  padding-bottom: 6px;
  color: #d10000;
  font-weight: 800;
  font-size: 48px;
  line-height: 66px;
}
.banner-form__wrapper {
  margin-bottom: 40px;
}

.banner__title span {
  color: #2c0d00;
}

.banner__title--desktop {
  display: block;
}

.banner__title--mobile {
  display: none;
  text-align: center;
  text-shadow: 0 4px 20px #000000;
}

.banner__subtitle {
  color: #2c0d00;
  font-weight: 400;
  font-size: 26px;
  line-height: 29px;
}

.mobile {
  display: none;
}

.banner__subtitle span {
  color: #d10000;
}

.banner__subtitle--bottom {
  padding: 10px 0;
  min-width: 705px;
  font-weight: 500;
  font-size: 19px;
  line-height: 23px;
}

.banner__button {
  max-height: 70px;
}

.banner__middle {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: flex-start;
}

.banner__stamp {
  align-self: center;
  padding-left: 75px;
}

.banner__stamp--mobile {
  display: none;
  width: 155px;
}

.banner__stamp--desktop {
  display: block;
}

.stayHome {
  display: none;
  margin-top: 20px;
  width: 100%;
  text-align: right;
}

.button {
  padding: 15px 20px;
}

.about {
  padding: 40px 0;
  background: #f6e9ce;
}

.about__img-wrap {
  width: 100%;
}

.about__img {
  width: 100%;
  height: auto;
}

.about_text__wrapper p:first-child {
  padding-bottom: 20px;
}

.about__text {
  color: #5d4227;
  font-weight: 500;
  font-size: 19px;
  line-height: 21px;
}

.what_to_use {
  color: #5d4227;
  font-size: 17px;
  line-height: 23px;
}






.blackForm__title {
  position: relative;
  padding-top: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #2c0d00;
}

.blackForm__title h3 {
  padding-bottom: 15px;
  color: #ffd600;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
}

.blackForm__title p {
  padding-bottom: 15px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  line-height: 27px;
}



.blackForm__title h3 span {
  color: white;
}

#blackAccordionForm_section .form__bg {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

#blackAccordionForm_section .form__bg {
  padding: 0 15px;
  background: #2c0d00 !important;
}

#blackAccordionForm_section .privacy_policy {
  background: #2c0d00 !important;
}

#blackAccordionForm_section .call_form {
  background: #2c0d00 !important;
}

#blackAccordionForm_section #submit_btn {
  background: #dd2a31 !important;
}




.taste {
  padding: 65px 0 85px;
  background: url(../../assets/img/taste/taste-bg-left.png) bottom left no-repeat, url(../../assets/img/taste/taste-bg-right.png) top right no-repeat #f9f9f9;
}

.taste__title {
  color: #5b2229;
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 56px;
}

.taste__title-mobile {
  display: none;
  color: #5b2229;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 56px;
}

.taste__card {
  position: relative;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  border-radius: 10px;
  background: url(../../assets/img/taste/taste-bg-card.png) center/cover no-repeat;
}

.new {
  position: absolute;
  top: -16px;
  right: -18px;
}

.banner_subtitle2 {
  padding-top: 8px;
  color: #8e8e8e;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}


.taste__stamp-wrap {
  padding: 20px 0;
}

.card__title {
  display: block;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-style: normal;
  font-size: 38px;
  line-height: 49px;
}

.card__title--color14 {
  background: #98725c;
}

.card__title--color13 {
  background: #7c86c3;
}

.card__title--color12 {
  background: #9b9b9c;
}

.card__title--color11 {
  background: #373f80;
}

.card__title--color9 {
  background: #d1ab66;
}

.card__title--color-sicilia {
  background: #f9a90d;
}

.card__title--color-aosta {
  background: #ffcf23;
}

.card__title--color-sardegna {
  background: #de2800;
}

.card__inner {
  display: flex;
  align-content: center;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  min-height: 285px;
}

.card__text {
  display: block;
  color: #5d4227;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
}

.card__text--top {
  margin-bottom: 20px;
  font-weight: 700;
}

.card__preview--14 {
  background: url(../../assets/img/taste/taste-card-preview-1.png) center/cover no-repeat;
}

.card__preview--13 {
  background: url(../../assets/img/taste/taste-card-preview-2.png) center/cover no-repeat;
}

.card__preview--12 {
  background: url(../../assets/img/taste/taste-card-preview-3.png) center/cover no-repeat;
}

.card__preview--11 {
  background: url(../../assets/img/taste/taste-card-preview-4.png) center/cover no-repeat;
}

.card__preview--9 {
  background: url(../../assets/img/taste/taste-card-preview-5.png) center/cover no-repeat;
}

.card__preview--6 {
  background: url(../../assets/img/taste/taste-card-preview-6.png) center/cover no-repeat;
}


.card__title--color14 {
  background: #98725c;
}

.card__title--color13 {
  background: #7c86c3;
}

.card__title--color12 {
  background: #9b9b9c;
}

.card__title--color11 {
  background: #373f80;
}

.card__title--color9 {
  background: #d1ab66;
}

.card__inner {
  display: flex;
  align-content: center;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  min-height: 285px;
}

.card__text {
  display: block;
  color: #5d4227;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
}

.card__text--top {
  margin-bottom: 20px;
  font-weight: 700;
}

.card__preview--14 {
  background: url(../../assets/img/taste/taste-card-preview-1.png) center/cover no-repeat;
}

.card__preview--13 {
  background: url(../../assets/img/taste/taste-card-preview-2.png) center/cover no-repeat;
}

.card__preview--12 {
  background: url(../../assets/img/taste/taste-card-preview-3.png) center/cover no-repeat;
}

.card__preview--11 {
  background: url(../../assets/img/taste/taste-card-preview-4.png) center/cover no-repeat;
}

.card__preview--9 {
  background: url(../../assets/img/taste/taste-card-preview-5.png) center/cover no-repeat;
}

.intensity {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px 8px;
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
}

.intensity__num {
  font-size: 25px;
  line-height: 31px;
}

.intensity__title {
  padding-bottom: 5px;
  font-size: 12px;
  line-height: 15px;
}

.intensity__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.intensity__right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

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

.grade__item {
  margin-right: 3px;
  width: 9px;
  height: 3px;
  background: #ffffff;
}

.grade__item--none {
  width: 11px;
  height: 5px;
  border: 1px solid #ffffff;
  background: 0 0;
}

.card__button {
  display: none;
}

.form__title-text {
  padding: 0 15px 0;
  max-width: 650px;
  color: #5b2229;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
}

.form-section {
  padding: 0 0 80px;
}

.why_it {
  padding: 70px 0;
  background: #b58c64;
}

.why_it h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 23px;
  line-height: 34px;
}

.why_it li {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  color: #ffdab5;
  font-weight: 400;
  font-size: 17px;
  line-height: 115%;
}

.why_it ul {
  padding-top: 25px;
}

.why_in__img img {
  border-radius: 10px;
}

.list-text {
  display: inline-block;
  padding-left: 15px;
}

.white-dot {
  display: inline-block;
  min-width: 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff7ef;
}

.list-text strong {
  color: #fff7ef;
  font-size: 20px;
  line-height: 115%;
}


.he_do {
  padding: 60px 0;
}

.he_do__img img {
  display: block;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.he_do__text {
  margin: 0 auto;
  padding-top: 25px;
  max-width: 220px;
  color: #5d4227;
  text-align: center;
  font-size: 17px;
  line-height: 140%;
}




/*! comments */
.comments {
  display: flex;
  flex-direction: column;
  background: url(../../assets/img/comments/comments-bg.jpg) center/cover no-repeat;
  ;
}

.comments__wrap {
  padding: 25px 0;
}

.comments__inner {
  padding: 40px 70px 40px 50px;
  border-radius: 10px;
  background: #ffffff;
}

.comments__title {
  padding-bottom: 0;
  padding-bottom: 30px;
  color: #5b2229;
  text-align: center;
  font-weight: 800;
  font-size: 26px;
}

.comments__button {
  margin: 45px auto 0;
  max-width: 400px;
  width: 100%;
}

.comment__btn {
  display: block;
  margin: 30px 0;
  color: #5b2229;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;

  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.comment {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
}

.comment--booma {
  padding-left: 100px;
}

.comment--booma .comment__image-wrap {
  margin-top: 0;
}

.comment__image {
  width: 50px;
}

.comment__image-wrap {
  margin-top: -10px;
  margin-right: 10px;
}

.comment__text-wrap {
  padding: 7px 40px 7px 15px;
  border-radius: 23px;
  background: #eff1f3;
  font-size: 15px;
  line-height: 24px;
}

.comment__name {
  color: #5370a6;
  font-weight: 700;
}

.comment__text {
  color: #000000;
  font-weight: 400;
}

.comment__buttons {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  padding: 12px;
}

.comment__button {
  padding-right: 10px;
  color: #d7d7d7;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 10px;
}

.comment__days {
  color: #989898;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 10px;
}

.comment--booma .comment__image {
  width: 30px;
}

.like {
  position: absolute;
  top: 15%;
  right: -25px;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  padding: 2px;
  width: 42px;
  height: 23px;
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 4px 3px rgba(0, 0, 0, .17);
}

.like__icon {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #1d89e4;
}

.like__counter {
  padding: 2px 2px 2px 7px;
  color: grey;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 10px;
}

.mobile--clock {
  display: none;
}

@media screen and (min-width: 992px) {
  .comment--booma {
    padding-left: 100px !important;
  }
}


/*! comments end*/
@media screen and (min-width:1200px) {
  .col-lg-1-5 {
    flex: 0 0 20% !important;
    padding: 0 6px !important;
    max-width: 20% !important;
  }
}

@media screen and (max-width:1200px) {
  .button {
    min-width: 400px;
  }

  .intensity {
    padding: 12px 5px 8px;
  }

  .why_in__img img {
    width: 100%;
  }
}

@media screen and (max-width:992px) {
  .desktop--clock {
    display: none;
  }

  .mobile--clock {
    display: block;
  }

  .comments__inner {
    border-radius: 0;
  }

  .form-section {
    padding-top: 20px;
  }

  .he_do {
    padding: 30px 0;
  }

  .he_do__wrapper {
    padding-bottom: 20px;
  }

  .blackForm__title {
    border-radius: 0;
  }

  #blackAccordionForm_section .form__bg {
    border-radius: 0;
  }

  .why_it {
    padding: 0 0 30px;
  }

  .why_it__text {
    padding-top: 30px;
  }

  .why_it h3 {
    text-align: center;
  }

  .why_in__img img {
    display: block;
    width: 100%;
    border-radius: 0;
  }

  .banner {
    padding: 0;
  }

  .banner__text {
    padding-top: 20px;
    padding-bottom: 100%;
    background: url(../../assets/img/banner/banner-bg-mobile.jpg) top center/cover no-repeat;
  }

  .banner__title {
    text-align: center;
  }

  .banner__subtitle {
    text-align: center;
  }

  .button {
    min-width: 340px;
    max-width: 375px;
    ;
  }

  .banner__button {
    padding: 15px 10px;
    font-size: 24px;
  }

  .intensity {
    padding: 12px 22px 8px;
  }

  .banner_subtitle2 {
    padding-top: 8px;
    color: #8e8e8e;
    text-align: center;
    font-size: 16px;
    line-height: 19px;
  }

  .stayHome svg {
    margin-right: 20px;
  }
}

@media screen and (max-width:768px) {
  .what_to_use {
    padding-bottom: 20px;
    font-size: 16px;
  }

  .logo_popupContainer {
    overflow: auto;
    height: 100%;
  }

  .title_popup {
    margin: 0 auto 9px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
  }

  .colored {
    font-size: 24px;
    line-height: 33px;
  }

  .colored_text {
    padding-bottom: 9px !important;
    font-size: 20px;
    line-height: 19px;
  }

  .block_popup p {
    font-size: 12px !important;
    line-height: 16px;
  }

  .black_bold {
    padding-top: 10px !important;
    padding-bottom: 0 !important;
    font-size: 14px !important;
    line-height: 19px;
  }

  .footnote {
    font-size: 12px !important;
    line-height: 16px;
  }

  .min_block {
    width: 28%;
  }

  .normal_block {
    width: 32%;
  }

  .big_block {
    width: 35%;
  }

  .img_garanty {
    top: 9px;
    padding-right: 15px;
  }

  .blue_dot {
    display: none;
  }

  .block_popup_flex, .icon_popup_none {
    display: block;
  }



  .banner__subtitle {
    font-size: 22px;
  }

  .banner__button {
    padding: 10px 6px;
    font-size: 24px;
  }

  .comments__button {
    margin-top: 30px;
  }

  .comments__wrap {
    padding: 0;
  }
}

@media screen and (max-width:630px) {
  .pop_header_logo {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width:576px) {
  .taste__card {
    background: unset;
    background-color: #f6e9ce;
  }
  .taste {
    background: unset;
  }
  .banner_about {
    right: 0;
    left: 0;
    text-align: center;
    font-size: 15px;
  }
  .banner_subtitle2 {
    padding-top: 4px;
    color: #8e8e8e;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
  }

  .new {
    right: 0;
  }

  .blackForm__title h3 {
    padding-top: 20px;
    padding-bottom: 8px;
    font-size: 16px;
    line-height: 19px;
  }

  .blackForm__title p {
    font-size: 19px;
    line-height: 23px;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }



  .intensity {
    width: 240px;
  }

  .why_it h3 {
    font-size: 23px;
    line-height: normal;
  }

  .title_popup {
    padding: 15px 40px 15px 15px;
  }

  .information {
    justify-content: center;
  }

  .information .popup {
    height: auto;
  }

  .popup {
    overflow-y: scroll;
    width: 98%;
    height: auto;
  }

  .footer__middle .popup {
    height: 98%;
    font-size: 12px;
  }

  .banner {
    background: url(../../assets/img/banner/banner-bg-mobile.jpg) top left/cover no-repeat, linear-gradient(180deg, rgba(51, 34, 23, 0) 0, #332217 19.27%, #332217 100%);
    background-position-x: 50%;
  }

  .banner__middle {
    display: flex;
    flex-direction: column-reverse;
  }

  .banner__title .big_title {
    color: #d10000;
    font-size: 34px;
  }

  .banner__title {
    font-size: 32px;
    line-height: normal;
  }

  .banner__subtitle {
    padding: 0 5px;
  }

  .banner__text {
    padding-bottom: 93%;
  }

  .banner__subtitle--bottom {
    display: none;
  }

  .banner__stamp {
    padding-left: 0;
  }

  .banner__stamp--mobile {
    display: block;
    padding-bottom: 30px;
  }

  .banner__stamp--desktop {
    display: none;
  }



  .about {
    padding: 5px 0 40px;
  }

  .card__inner {
    padding-right: 40px;
    padding-bottom: 50px;
    padding-left: 40px;
    min-height: auto;
  }

  .card__text {
    margin-bottom: 20px;
  }

  .card__text:nth-child(2) {
    margin-bottom: 0;
  }

  .card__button {
    display: none;
    margin: 15px 0 0;
    min-width: 270px;
    font-size: 20px;
  }

  .taste {
    padding: 0;
  }

  .taste__title {
    display: none;
  }

  .taste__title-mobile {
    display: block;
    padding: 12px 0;
    width: 100%;
    background: white;
  }

  .form__title-text {
    font-size: 24px;
    line-height: normal;
  }

  .comments__inner {
    padding: 15px;
    padding-bottom: 40px;
  }

  .comments__title {
    padding: 25px 0 30px;
  }

  .comments__button {
    margin: 30px auto;
  }

  .comment--booma {
    padding-left: 34px;
  }

  .comment__text-wrap {
    padding: 7px 15px;
  }

  .like {
    right: -15px;
  }
}

@media screen and (max-width:320px) {
  .popup {
    min-width: 304px !important;
  }
}

@media screen and (max-height:780px) {
  .popup {
    height: 98%;
  }
}

.privacy_flex {
  margin-bottom: 50px;
}

.litl_container {
  display: none;
}

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


.arrow-down {
  position: absolute;
  top: -22px;
  left: 50%;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  transform: translateX(-50%);
}


@media screen and (max-width: 576px) {
  .arrow-down {
    display: flex;
  }

  .banner {
    background: none;
  }
}


.call_btn {
  border-radius: 5px !important;
  background: #dd2a31 !important;
}


.call_form .call_btn:hover {
  background: #f0262d !important;
}

.call_form .call_btn:active {
  background: #d11c22 !important;
}

.container_timer h5 {
  padding-top: 30px;
  color: #002da2;
  text-align: center;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  ;
}

.countdown-time {
  position: relative;
  padding: 24px 12px;
  width: 61px;
  border-radius: 3px;
  background: #f6e9ce;
  color: #5d4227;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 0;
}

.countdown {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  ;
}

.countdown-number {
  flex: 0 0 20%;
  margin: 0 10px;
  padding: 0 5px;
  max-width: 25%;
  text-align: center;
}

.countdown-text {
  display: block;
  padding-top: 10px;
  color: #f6e9ce;
  text-align: center;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  ;
}

.right_section_clock {
  margin: 0 auto;
  margin-top: 60px;
  margin-right: 0;
  padding: 23px;
  max-width: 330px;
  border-radius: 10px;
  background: rgba(181, 140, 99, .8);
}

.right_section_clock p {
  padding-bottom: 10px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
}

.mobile--clock {
  margin: 0;
  max-width: none;
  border-radius: 0;
}

.mobile--clock .countdown {
  margin: 0 auto;
  max-width: 330px;
}

@media (max-width: 568px) {
  .right_section_clock {
    padding: 23px 15px 35px;
  }
}
