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


/*! 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: 700;
  font-size: 28px;
  line-height: 34px;
  transition: .2s linear;
}

.button::after, .button::before {
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  width: 110%;
  height: 110%;
  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 {
  max-width: 400px;
  border: 2px solid transparent;
  background: #ef4136;
  color: #ffffff;
}

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

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

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

.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--darkBlue {
  max-width: 400px;
  border: 2px solid transparent;
  background: #1464ff;
  box-shadow: 0 0 27px rgba(0, 0, 0, .13);
  color: #ffffff;
  ;
}

.button--darkBlue::before {
  left: 0;
  background: #1464ff;
}

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

.button--darkBlue:hover {
  border: 2px solid #3074fa;
  color: #3074fa;
}

.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--darkYellow {
  max-width: 400px;
  border: 2px solid transparent;
  background: #ffc700;
  color: #000000;
}

.button--darkYellow::before {
  left: 0;
  background: #ffc700;
}

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

.button--darkYellow:hover {
  border: 2px solid #ddae06;
  color: #ddae06;
}

.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;
  transform: translate(-50%, -500%);
  transition: transform .6s ease-out;
}

.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 {
  content: '';
  position: relative;
  top: 50%;
  left: 50%;
  display: block;
  width: 9px;
  height: 2px;
  background: #ffffff;
  ;
}

.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: 140px 0 113px;
  background: url(../../assets/img/banner/banner-bg.jpg) top center/cover no-repeat;
  color: #ffffff;
  ;
}

.banner__title {
  color: #000000;
  text-align: right;
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  direction: rtl;
}

.banner__title--desktop {
  display: block;
}

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

.banner__title--bold {
  font-weight: 800;
  font-size: 46px;
}

.banner__subtitle {
  padding-top: 12px;
  color: #000000;
  text-align: right;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  direction: rtl;
}

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

.banner__button {
  padding: 18px 20px;
  width: 350px;
  ;
}

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

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

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

.banner__stamp--desktop {
  display: block;
}

.price_text--banner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-right: 0;
  padding-top: 17px;
  padding-bottom: 40px;
  max-width: 208px;
  color: red;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  direction: rtl;
}

.banner_price span {
  color: red;
  font-weight: 700;
  font-size: 52px;
  line-height: 59px;
  ;
}

.mobile_container {
  display: none;
  background: #eceff6;
  ;
}

.banner--none, .banner_price--none {
  display: none;
}

.button {
  padding: 20px;
}

.about {
  padding: 92px 0 107px;
}

.about__wrapper {
  padding-top: 42px;
  direction: rtl;
}

.about__img-wrap {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  ;
}

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

.about__text {
  padding-left: 11px;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  ;
}

.about__title {
  padding-bottom: 23px;
  font-weight: 700;
  font-size: 37px;
  line-height: 45px;
  ;
}

.about__button {
  margin: 50px 0 0 auto;
}

.li_dot {
  position: relative;
  bottom: -3px;
  left: 11px;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 25px;
  background: #000000;
  ;
}

.equipment {
  padding: 48px 0 20px;
  background: #f8f8f8;
  direction: rtl;
}

.container--none {
  display: none;
}

.equipment__img img {
  display: block;
  width: 100%;
  ;
}

.equipment h3 {
  padding-bottom: 55px;
  text-align: center;
  font-weight: 700;
  font-size: 43px;
  line-height: 52px;
  ;
}

.equipment__text {
  padding: 27px 0 67px;
  color: #000000;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  ;
}

.equipment__text--title {
  padding-top: 40px;
  font-weight: 600;
  ;
}

.equipment__none {
  display: none;
}

.he_do {
  padding: 75px 0;
  background: #979797;
  ;
}

.he_do__text {
  margin: 0 auto;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 180%;
  ;
}

.he_do__wrapper--text {
  direction: rtl;
}

.he_do__wrapper {
  padding-top: 27px;
}

.he_do__wrapper--img {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  height: 100%;
  ;
}

.he_do__wrapper--img img {
  width: 100%;
}

.he_do__title {
  color: #ffffff;
  font-weight: 800;
  font-size: 43px;
  line-height: 180%;
  ;
}

.he_do__none {
  display: none;
}

.li_number {
  display: inline-block;
  width: 29px;
  color: #1464ff;
  font-weight: 800;
  font-size: 20px;
  line-height: 180%;
  ;
}

.form__title-text {
  padding: 15px 15px 0;
  max-width: 540px;
  color: #000000;
  text-align: center;
  font-weight: 700;
  font-size: 37px;
  line-height: 36px;
  direction: rtl;
}

/*! 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: 60px 70px 40px 50px;
  background: #ffffff;
}

.comments__title {
  padding-bottom: 50px;
  color: #000000;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  direction: rtl;
}

.comments__button {
  margin: 45px auto 0;
  padding: 12px 20px;
  max-width: 442px;
  width: 100%;
  font-size: 25px;
}

.comment__box {
  position: relative;
}

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

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

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

.comment__image {
  width: 50px;
}

.comment__image-wrap {
  margin-top: -10px;
  margin-left: 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;
  white-space: nowrap;
  font-weight: 400;
  font-size: 15px;
  line-height: 10px;
}

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

.like {
  position: absolute;
  top: 15%;
  left: 0;
  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;
}


.old_price span {
  color: black;
  font-size: 35px;
  line-height: 65px;
}

/*! comments end*/
@media screen and (max-width: 1200px) {
  .button {
    min-width: 400px;
  }

  .about__img-wrap img {
    width: 90%;
  }
}

@media screen and (max-width: 992px) {
  .button {
    min-width: 340px;
    max-width: 375px;
    ;
  }

  .banner__title {
    font-size: 48px;
    line-height: 55px;
  }

  .banner__subtitle {
    font-size: 20px;
  }

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

  .about__img-wrap img {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .equipment__img img {
    display: block;
    width: 100%;
    ;
  }

  .equipment__text {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .container--none {
    display: block;
  }

  .button {
    margin: 0 auto;
  }

  .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 {
    padding: 15px 0 170px;
  }

  .banner__left {
    display: none;
  }

  .mobile_container {
    display: block;
    padding: 20px 0 26px;
  }

  .banner--none {
    display: block;
    padding: 17px 10px;
    background: #eceff6;
    ;
  }

  .banner_price--none {
    display: block;
  }

  .banner {
    background-position-x: 57%;
  }

  .banner__title {
    padding-bottom: 5px;
    color: black;
    text-align: center;
    font-size: 23px;
    line-height: 28px;
  }

  .banner__subtitle {
    padding-top: 0;
    padding-bottom: 11px;
    color: black;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    ;
  }

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

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

  .about__img-wrap {
    margin: 0 auto;
    padding-bottom: 28px;
    max-width: 80%;
    ;
  }

  .about__wrapper {
    padding-top: 0;
    padding-bottom: 0;
    ;
  }

  .about__button {
    margin-top: 32px;
    font-size: 18px;
  }

  .comments__button {
    margin-top: 30px;
  }

  .comments__wrap {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .equipment {
    padding: 30px 0;
  }

  .equipment__none {
    display: block;
    margin: 0 auto;
  }

  .he_do {
    padding: 47px 0 62px;
  }

  .he_do__wrapper--img {
    padding-bottom: 30px;
  }

  .banner_price--none {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 110px;
  }

  .old_price span {
    line-height: normal;
  }
}

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

@media screen and (max-width: 576px) {
  .old_price span {
    color: black;
    font-size: 25px;
  }

  .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-position-x: 50%;
    background-position-y: 87%;
  }

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

  .banner__middle .banner__button {
    margin: 0 auto;
    max-width: 90%;
    ;
  }

  .banner__middle--none, .banner__subtitle--bottom {
    display: none;
  }

  .banner__stamp {
    padding-left: 0;
  }

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

  .banner__stamp--desktop {
    display: none;
  }

  .banner .price_text--banner {
    max-width: 144px;
    font-size: 20px;
    line-height: normal;
  }

  .banner .banner_price span {
    font-size: 35px;
    line-height: normal;
  }

  .button {
    margin: 25px auto;
    padding: 5px 6px;
    min-width: 290px;
    font-size: 18px;
  }

  .about__title {
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    ;
  }

  .about__text {
    font-size: 17px;
  }

  .li_dot {
    width: 16px;
    height: 16px;
  }

  .about__button {
    min-width: auto;
  }

  .banner__text--none {
    display: none;
  }

  .banner__title--block {
    display: block;
  }

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

  .comments__inner {
    padding: 15px;
  }

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

  .comments__button {
    margin: 30px auto;
  }

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

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

  .like {
    left: -15px;
  }
}

@media (max-width: 576px) {
  .equipment {
    padding-bottom: 15px;
  }

  .equipment__text {
    padding: 11px 0 18px;
    font-size: 12px;
    ;
  }

  .equipment h3 {
    padding-bottom: 15px;
    font-size: 25px;
    ;
  }

  .equipment__text--title {
    padding-top: 0;
  }

  .equipment__button {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    ;
  }

  .he_do {
    padding: 47px 0 30px;
  }

  .he_do__none {
    display: block;
    width: 100%;
  }

  .he_do__none img {
    width: 100%;
  }

  .he_do__title {
    padding-top: 26px;
    text-align: center;
    font-size: 25px;
    line-height: 32px;
    ;
  }

  .he_do__text {
    padding-left: 9px;
    font-size: 16px;
    ;
  }

  .he_do__img {
    padding-bottom: 17px;
  }
}

@media screen and (max-width: 370px) {
  .banner {
    background: url(../../assets/img/banner/banner-bg-mobile.jpg) center/cover no-repeat;
    background-position-x: 50%;
    background-position-y: 0;
  }

  .banner_price--none {
    max-width: 80x;
  }
}

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

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

.form__title {
  padding: 0 !important;
}

.comment__days {
  white-space: nowrap !important;
}

.old_price {
  color: black;
  text-decoration: line-through;
}

.comment__days {
  white-space: nowrap;
}

.red_price {
  display: flex !important;
}

.roductPrice_container .old_price {
  display: flex !important;
}

.old_price {
  display: flex;
  direction: rtl;
}

.banner_price {
  display: flex !important;
  direction: rtl;
}

.price--flex {
  display: flex;
  direction: rtl;
}

.mobile_container .price--flex {
  justify-content: space-between;
}

.roductPrice_container p {
  display: flex !important;
  align-items: baseline;
  flex-direction: row !important;
  justify-content: space-between !important;
  width: 180px;
  direction: rtl;
}
