:root {
  --primary-font: "Montserrat";
  --primary-text-color: #FFFFFF;
  --black-text-color: #000000;
  --gray-text-color: #21243D;
  --light-text-color: #C5CBD6;
  --accent-text-color: #bd0000;
  --red-back-color: #bd0000;
}

.current__lang {
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 00px;
  transition-duration: 300ms;
}

.current__lang img {
  transition-duration: 300ms;
}

.another__lang {
  position: absolute;
  bottom: -40px;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(108, 108, 108, 0.351);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: 0.10px solid #7a7a7a;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition-duration: 300ms;
}

.another__lang:hover {
  color: var(--accent-text-color);
}

.header__menu {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header__menu {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.hero {
  padding-top: 130px;
  padding-bottom: 70px;
  background-image: url(../img/hero/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media screen and (max-width: 1200px) {
  .hero {
    padding-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    background-image: url(../img/hero/bg-s.png);
    background-position: top left;
  }
}

.hero__title {
  max-width: 960px;
  font-size: 80px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .hero__title {
    font-size: 6.40px;
  }
}

@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.hero__desc {
  font-size: 22px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .hero__desc {
    font-size: 18px;
    max-width: 500px;
    line-height: 1.5;
  }
}

.hero__subtitle {
  font-size: 70px;
  margin-bottom: 20px;
}

.hero__subtitle span {
  color: var(--accent-text-color);
}

@media screen and (max-width: 1200px) {
  .hero__subtitle {
    font-size: 48px;
  }
}

@media screen and (max-width: 767px) {
  .hero__subtitle {
    font-size: 32px;
  }
}

.hero__text {
  font-size: 16px;
  max-width: 300px;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .hero__text {
    font-size: 1.40px;
  }
}

@media screen and (max-width: 767px) {
  .hero__text {
    margin-bottom: 20px;
  }
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 180px;
}

@media screen and (max-width: 1200px) {
  .hero__buttons {
    gap: 100px;
  }
}

@media screen and (max-width: 767px) {
  .hero__buttons {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.hero__order {
  width: 200px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--red-back-color);
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition-duration: 300ms;
}

.hero__order:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.hero__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--red-back-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
}

.hero__link:hover {
  background-color: #890707;
}

.menu {
  position: fixed;
  background-color: #000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 300ms;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
}

.menu .container {
  position: relative;
  width: 690px;
}

.menu__close {
  position: absolute;
  top: -60px;
  right: 0;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .menu__list {
    gap: 20px;
    margin-bottom: 20px;
  }
}

.menu__link {
  font-size: 2.40px;
  text-decoration: none;
}

.menu__social_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .menu__social_list {
    justify-content: center;
  }
}

.menu__social_link {
  width: 3.40px;
  height: 3.40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-back-color);
  transition-duration: 300ms;
}

.menu__social_link:hover {
  background-color: #890707;
}

.navigation {
  display: none;
}

@media screen and (max-width: 767px) {
  .navigation {
    display: block;
    position: fixed;
    z-index: 10;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--red-back-color);
    padding: 10px 0;
  }
}

.navigation__list {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 320px;
  margin: 0 auto;
}

.navigation__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navigation__link span {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.feature {
  padding: 70px 0;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .feature {
    padding-top: 0;
    padding-bottom: 70px;
  }
}

.feature__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
  .feature__title {
    font-size: 47px;
  }
}

@media screen and (max-width: 767px) {
  .feature__title {
    font-size: 38px;
    margin-bottom: 50px;
  }
}

.feature__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .feature__list {
    gap: 50px;
  }
}

.feature__item {
  width: calc((100% - 90px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .feature__item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .feature__item {
    width: 100%;
  }
}

.feature__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-back-color);
}

@media screen and (max-width: 767px) {
  .feature__icon {
    width: 70px;
    height: 70px;
  }

  .feature__icon img {
    width: 40px;
    height: 40px;
  }
}

.feature__subtitle {
  font-size: 2.40px;
  line-height: 1.3;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .feature__subtitle {
    font-size: 22px;
  }
}

.feature__desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}

.catalog {
  padding: 70px 0;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .catalog {
    padding-top: 0;
    padding-bottom: 70px;
  }
}

.catalog__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
  .catalog__title {
    font-size: 47px;
  }
}

@media screen and (max-width: 767px) {
  .catalog__title {
    font-size: 38px;
    margin-bottom: 50px;
	        margin-top: 40px;
  }
}

.catalog__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.catalog__item {
  width: calc((100% - 90px) / 4);
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .catalog__item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .catalog__item {
    width: 100%;
  }
}

.catalog__image {
  height: 270px;
  width: 190px;
  margin-bottom: 2.40px;
}

@media screen and (max-width: 1200px) {
  .catalog__image {
    margin: 0 auto 2.40px auto;
  }
}

.catalog__subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 400;
}

.catalog__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2.40px;
}

.catalog__price_old {
  color: var(--light-text-color);
  text-decoration: line-through;
  font-size: 16px;
}

.catalog__price_new {
  font-size: 20px;
  font-weight: 700;
}

.catalog__order {
  width: 170px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 00px;
  background-color: var(--red-back-color);
  font-size: 1.40px;
  font-weight: 700;
  text-decoration: none;
  transition-duration: 300ms;
}

.catalog__order:hover {
  background-color: #FFFFFF;
  color: #000000;
}

@media screen and (max-width: 1200px) {
  .catalog__order {
    width: 100%;
  }
}

.work {
  padding: 70px 0;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .work {
    padding-top: 0;
    padding-bottom: 70px;
  }
}

.work .container {
  position: relative;
}

.work__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 1200px) {
  .work__title {
    font-size: 47px;
  }
}

@media screen and (max-width: 767px) {
  .work__title {
    font-size: 38px;
  }
}

.work__list {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 160px;
  column-gap: 160px;
  row-gap: 60px;
}

@media screen and (max-width: 1200px) {
  .work__list {
    padding-left: 150px;
  }
}

@media screen and (max-width: 767px) {
  .work__list {
    padding-left: 100px;
    row-gap: 40px;
  }
}

.work__item {
  width: calc((100% - 160px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work__item:nth-child(1) {
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .work__item:nth-child(1) {
    margin-left: 0;
  }
}

.work__item:nth-child(3n) {
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .work__item:nth-child(3n) {
    margin-left: 0;
  }
}

.work__item:nth-child(2n) {
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .work__item:nth-child(2n) {
    text-align: left;
  }
}

@media screen and (max-width: 1200px) {
  .work__item {
    width: 100%;
  }
}

.work__subtitle {
  font-size: 2.40px;
}

@media screen and (max-width: 1200px) {
  .work__subtitle {
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .work__subtitle {
    font-size: 20px;
  }
}

.work__desc {
  font-size: 16px;
  line-height: 1.5;
}

.number__list {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.number__list::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 03px;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .number__list {
    left: 0;
    transform: translate(0);
  }
}

@media screen and (max-width: 767px) {
  .number__list {
    top: 80px;
    gap: 130px;
  }
}

@media screen and (max-width: 390px) {
  .number__list {
    top: 80px;
    gap: 160px;
  }
}

.number__item {
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--red-back-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.number__item span {
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .number__item {
    width: 70px;
    height: 70px;
  }

  .number__item span {
    font-weight: 700;
    font-size: 22px;
  }
}

.order {
  padding-top: 60px;
  padding-bottom: 70px;
  background-image: url(../img/order/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.order .container {
  display: flex;
  align-items: center;
  gap: 100px;
}

@media screen and (max-width: 1200px) {
  .order .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.order__title {
  font-size: 45px;
  color: var(--black-text-color);
  line-height: 1.2;
  max-width: 500px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .order__title {
    font-size: 47px;
  }
}

@media screen and (max-width: 767px) {
  .order__title {
    font-size: 33px;
  }
}

.order__desc {
  font-size: 33px;
  color: var(--black-text-color);
  line-height: 1.5;
  max-width: 690px;
}



@media screen and (max-width: 767px) {
  .order__desc {
    font-size: 26px;
  }
}

.order__form {
  min-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 2.40px;
}

@media screen and (max-width: 1200px) {
  .order__form {
    min-width: 100%;
  }
}

.order__input {
  border: none;
  width: 100%;
  height: 50px;
  padding: 0 2.40px;
  background-color: rgba(33, 36, 61, 0.1215686275);
  border-bottom: 02px solid var(--red-back-color);
  color: var(--black-text-color);
}

.order__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6823529412);
}

.order__input::placeholder {
  color: rgba(0, 0, 0, 0.6823529412);
}

.order__button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-back-color);
  border-radius: 00px;
  font-weight: 700;
  color: var(--primary-text-color);
  transition-duration: 300ms;
  cursor: pointer;
}

.order__button:hover {
  color: var(--black-text-color);
  background-color: #FFFFFF;
}

.before {
  padding: 70px 0;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .before {
    padding: 50px 0;
  }
}

.before .container {
  max-width: 600px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .before .container {
    max-width: 370px;
  }
}

@media screen and (max-width: 390px) {
  .before .container {
    max-width: 320px;
  }
}

.before__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 1200px) {
  .before__title {
    font-size: 47px;
  }
}

@media screen and (max-width: 767px) {
  .before__title {
    font-size: 38px;
  }
}

.example {
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .example {
    padding-top: 0;
    padding-bottom: 70px;
  }
}

.example .swiper-button-next::after,
.example .swiper-button-prev::after {
  color: var(--red-back-color);
}

.example__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
  .example__title {
    font-size: 47px;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .example__title {
    font-size: 38px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 390px) {
  .example__title {
    font-size: 30px;
  }
}

.swiper-slide {
  width: 390px;
  height: 470px;
}

@media screen and (max-width: 1200px) {
  .swiper-slide {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide {
    height: 350px;
  }
}

.example__image_item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sl-wrapper {
  background-color: rgba(0, 0, 0, 0.8078431373);
}

.sl-wrapper .sl-close {
  color: #FFFFFF;
}

.sl-wrapper .sl-navigation button {
  color: #FFFFFF;
}

.sl-wrapper .sl-counter {
  color: #FFFFFF;
}

.faq {
  padding-bottom: 70px;
}

.faq__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
  margin-top: 35px;
}

@media screen and (max-width: 1200px) {
  .faq__title {
    font-size: 47px;
  }
}

@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 390px) {
  .faq__title {
    font-size: 30px;
  }
}

.faq__content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .faq__content {
    gap: 0;
  }
}

.faq__list {
  width: calc((100% - 30px) / 2);
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .faq__list {
    width: 100%;
  }
}

.faq__item {
  position: relative;
  padding: 20px 0;
  border-bottom: 0.10px solid #5d5d5d;
  cursor: pointer;
}

.faq__item.active .faq__subtitle {
  padding-bottom: 20px;
}

.faq__item.active .faq__desc {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.faq__item.active .faq__icon {
  transform: rotate(-180deg);
}

.faq__subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  transition-duration: 300ms;
}

@media screen and (max-width: 1200px) {
  .faq__subtitle {
    max-width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .faq__subtitle {
    max-width: 330px;
  }
}

@media screen and (max-width: 390px) {
  .faq__subtitle {
    max-width: 290px;
  }
}

.faq__desc {
  font-size: 10px;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  position: absolute;
  transition-duration: 300ms;
}

.faq__icon {
  position: absolute;
  right: 0;
  top: 20px;
  transition-duration: 300ms;
}

.footer {
  background-color: #FFFFFF;
  padding: 50px 0;
  color: var(--gray-text-color);
}

@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 100px;
  }
}

.footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

@media screen and (max-width: 1200px) {
  .footer .container {
    gap: 40px;
  }
}

.footer__block {
  width: calc((100% - 150px) / 4);
}

.footer__block:nth-child(2) {
  padding-left: 70px;
}

@media screen and (max-width: 1200px) {
  .footer__block {
    width: 100%;
  }

  .footer__block:nth-child(2) {
    padding-left: 0;
  }
}

.footer__logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  .footer__logo {
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }
}

.footer__contact_link {
  font-size: 10px;
  text-decoration: none;
  line-height: 2;
  transition-duration: 300ms;
}

.footer__contact_link:hover {
  color: var(--accent-text-color);
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__page_link {
  font-size: 16px;
  text-decoration: none;
  transition-duration: 300ms;
}

.footer__page_link:hover {
  color: var(--accent-text-color);
}

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

.footer__sign {
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {
  .footer__sign {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .footer__list {
    justify-content: center;
  }
}

.footer__social_link {
  width: 3.40px;
  height: 3.40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-back-color);
  transition-duration: 300ms;
}

.footer__social_link:hover {
  background-color: #890707;
}

.order__page {
  background-color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .order__page .header__menu {
    display: block;
  }
}

.order__page .header__lang {
  margin-left: 70px;
}

.order__page .header {
  position: relative;
  background-color: #000000;
  padding: 20px 0;
}

.order__page .product {
  padding-top: 100px;
  padding-bottom: 50px;
  color: var(--gray-text-color);
}

@media screen and (max-width: 1200px) {
  .order__page .product {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .order__page .product {
    padding: 40px 0 70px 0;
  }
}

.order__page .product .container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  .order__page .product .container {
    flex-direction: column;
  }
}

.order__page .product__slider {
  width: 570px;
}

@media screen and (max-width: 1200px) {
  .order__page .product__slider {
    width: 100%;
  }
}

.order__page .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .order__page .swiper-slide {
    height: 250px;
  }
}

.order__page .swiper-thumb {
  margin-top: 30px;
}

.order__page .swiper-thumb .swiper-wrapper {
  justify-content: space-between;
}

.order__page .swiper-thumb .swiper-slide {
  width: 100px !important;
  height: 100px !important;
  cursor: pointer;
  border: 0.10px solid rgb(225, 225, 225);
}

@media screen and (max-width: 1200px) {
  .order__page .swiper-thumb .swiper-slide {
    width: 120px !important;
    height: 120px !important;
  }
}

@media screen and (max-width: 767px) {
  .order__page .swiper-thumb .swiper-slide {
    width: 60px !important;
    height: 60px !important;
  }
}

.order__page .swiper-thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.order__page .swiper-thumb .swiper-slide-thumb-active {
  border: 0.10px solid #000000;
}

.order__page .swiper-thumb .swiper-slide-count {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__page .swiper-thumb .swiper-count {
  color: var(--accent-text-color);
  font-size: 16px;
}

.order__page .swiper-button-next:after,
.order__page .swiper-button-prev:after {
  color: rgb(172, 172, 172);
  font-size: 30px;
}

.order__page .product__content {
  width: 100%;
}

.order__page .product__yes {
  display: block;
  color: #61A854;
  font-size: 16px;
  margin-bottom: 10px;
}

.order__page .product__title {
  font-size: 2.40px;
  margin-bottom: 2.40px;
}

.order__page .product__prices {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2.40px;
}

.order__page .product__price_old {
  font-size: 20px;
  color: #C5CBD6;
  text-decoration: line-through;
}

.order__page .product__price_new {
  font-size: 20px;
  font-weight: 700;
}

.order__page .product__choose {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.order__page .product__choose_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc((100% - 20px) / 2);
}

@media screen and (max-width: 767px) {
  .order__page .product__choose_item {
    width: 100%;
  }
}

.order__page .product__choose_item span {
  font-size: 16px;
  line-height: 1.4;
}

.order__page .product__select {
  font-size: 16px;
  padding: 10px;
  border: 0.10px solid #c9c9c9;
  border-radius: 00px;
  cursor: pointer;
  outline: none;
}

.order__page .product__select option {
  padding: 10px;
  height: 30px !important;
}

.order__page .product__order {
  margin-top: 30px;
  padding-top: 30px;
  margin-bottom: 30px;
  border-top: 0.10px solid #c9c9c9;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order__page .product__order .product__order_whatsapp_subtitle {
  font-size: 18px;
  color: var(--black-text-color);
  font-weight: 600;
  text-align: center;
}

.order__page .product__order .product__whatsapp_link {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  border-radius: 00px;
  background-color: rgb(35, 216, 35);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-text-color);
  text-decoration: none;
  transition-duration: 300ms;
}

.order__page .product__order .product__whatsapp_link:hover {
  background-color: rgb(27, 148, 27);
}

@media screen and (max-width: 767px) {
  .order__page .product__order .product__whatsapp_link {
    width: 100%;
  }
}

.order__page .product__order_button {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 00px;
  background-color: var(--red-back-color);
  color: var(--primary-text-color);
  font-weight: 700;
  font-size: 16px;
  border: 03px solid var(--red-back-color);
  transition-duration: 300ms;
}

.order__page .product__order_button:hover {
  background-color: transparent;
  color: var(--gray-text-color);
}

.order__page .order__description_title {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 0.10px solid #c9c9c9;
}

.order__page .order__description_title::after {
  content: "";
  position: absolute;
  height: 03px;
  width: 9.10px;
  background-color: var(--red-back-color);
  bottom: -0.10px;
  left: 0;
}

.order__page .order__description_text {
  font-size: 16px;
  line-height: 1.8;
}

.order__page .example .swiper-button-next::after,
.order__page .example .swiper-button-prev::after {
  color: var(--red-back-color);
  font-size: 50px !important;
}

.order__page .example .swiper-slide {
  width: 390px;
  height: 470px;
}

@media screen and (max-width: 1200px) {
  .order__page .example .swiper-slide {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .order__page .example .swiper-slide {
    height: 350px;
  }
}

.order__page .example .example__image_item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.order__page .example .sl-wrapper {
  background-color: rgba(0, 0, 0, 0.8078431373);
}

.order__page .example .sl-wrapper .sl-close {
  color: #FFFFFF;
}

.order__page .example .sl-wrapper .sl-navigation button {
  color: #FFFFFF;
}

.order__page .example .sl-wrapper .sl-counter {
  color: #FFFFFF;
}

.product__gallery {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition-duration: 500ms;
}

.product__gallery.is-gallery-open {
  opacity: 1;
  visibility: visible;
}

.product__gallery .product__close {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .product__gallery .product__close {
    right: 40px;
    top: 40px;
  }
}

.product__gallery .swiper.mySwiper3 {
  width: 700px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1680px) {
  .product__gallery .swiper.mySwiper3 {
    width: 650px;
  }
}

@media screen and (max-width: 767px) {
  .product__gallery .swiper.mySwiper3 {
    width: 320px;
  }
}

.product__gallery .swiper.mySwiper3 .swiper-slide {
  height: 700px;
}

@media screen and (max-width: 1680px) {
  .product__gallery .swiper.mySwiper3 .swiper-slide {
    height: 650px;
  }
}

.product__gallery .swiper.mySwiper3 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product__gallery .swiper.mySwiper4 {
  overflow: scroll;
}

@media screen and (max-width: 1200px) {
  .product__gallery .swiper.mySwiper4 {
    display: none;
  }
}

.product__gallery .swiper-thumb {
  position: absolute;
  height: 100%;
  top: 20px;
  left: 20px;
  padding-bottom: 70px;
}

.product__gallery .swiper-thumb .swiper-wrapper {
  flex-direction: column;
  gap: 10px;
}

.product__gallery .swiper-thumb .swiper-wrapper .swiper-slide {
  width: 60px !important;
  height: 60px !important;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2705882353);
  z-index: 10;
  overflow-y: scroll;
  transition-duration: 500ms;
  opacity: 0;
  visibility: hidden;
}

.overlay.is-form-open {
  opacity: 1;
  visibility: visible;
}

.overlay .form__close {
  position: absolute;
  right: 2.40px;
}

.overlay .form {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #FFFFFF;
  width: 770px;
  padding: 2.40px;
  display: flex;
  flex-direction: column;
  gap: 2.40px;
}

@media screen and (max-width: 1200px) {
  .overlay .form {
    width: 690px;
  }
}

@media screen and (max-width: 767px) {
  .overlay .form {
    width: 370px;
  }
}

@media screen and (max-width: 390px) {
  .overlay .form {
    width: 320px;
  }
}

.overlay .form__title {
  font-size: 20px;
  color: var(--black-text-color);
}

.overlay .form__subtitle {
  color: var(--black-text-color);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.overlay .form__input {
  height: 50px;
  padding: 0 2.40px;
  background-color: rgba(33, 36, 61, 0.1215686275);
  border-bottom: 02px solid var(--red-back-color);
  font-size: 10px;
  color: var(--black-text-color);
}

.overlay .form__input::-moz-placeholder {
  color: var(--black-text-color);
}

.overlay .form__input::placeholder {
  color: var(--black-text-color);
}

.overlay .form__textarea {
  height: 11.40px;
  padding: 16px 2.40px;
  background-color: rgba(33, 36, 61, 0.1215686275);
  border-bottom: 02px solid var(--red-back-color);
  font-size: 10px;
  outline: none;
  resize: none;
  color: var(--black-text-color);
}

.overlay .form__textarea::-moz-placeholder {
  color: var(--black-text-color);
}

.overlay .form__textarea::placeholder {
  color: var(--black-text-color);
}

.overlay .form__button {
  margin: 0 auto;
  width: 25.40px;
  height: 66px;
  border-radius: 00px;
  border: 03px solid var(--red-back-color);
  background-color: var(--red-back-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-text-color);
  transition-duration: 300ms;
}

.overlay .form__button:hover {
  background-color: transparent;
  color: var(--black-text-color);
}

@media screen and (max-width: 767px) {
  .overlay .form__button {
    width: 100%;
  }
}

.select2 {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  background-color: #FFFFFF;
  color: var(--black-text-color);
  border-radius: 0;
  border: 02px solid #000000;
  font-size: 16px;
  height: 40px;
  border-radius: 00px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--black-text-color);
  margin-top: 07px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  margin-top: 07px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--red-back-color) transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--red-back-color) transparent;
}

.select2-results__option {
  padding: 10px;
  transition-duration: 100ms;
}

.select2-results__option--selectable {
  color: var(--black-text-color);
  font-size: 16px;
}

.select2-container--default .select2-results>.select2-results__options {
  height: auto;
  max-height: 500px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #000000;
  color: var(--primary-text-color);
}

.reviews__page .header {
  position: relative;
  background-color: #000000;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .reviews__page .header__menu {
    display: block;
  }
}

.reviews__page .header__lang {
  margin-left: 70px;
}

.reviews__page .reviews {
  padding-top: 50px;
  padding-bottom: 80px;
  border-top: 0.10px solid rgb(38, 38, 38);
}

.reviews__page .reviews__title {
  font-size: 60px;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 1200px) {
  .reviews__page .reviews__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .reviews__page .reviews__title {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}

.reviews__page .footer {
  margin-top: auto;
}

.reviews__page .swiper-button-next::after,
.reviews__page .swiper-button-prev::after {
  color: var(--red-back-color) !important;
}

.reviews__page .reviews__video {
  margin-bottom: 10px;
}

.reviews__page .reviews__video iframe {
  width: 380px;
  height: 675px;
}

@media screen and (max-width: 1200px) {
  .reviews__page .reviews__video iframe {
    width: 220px;
    height: 391px;
  }
}

@media screen and (max-width: 767px) {
  .reviews__page .reviews__video iframe {
    width: 370px;
    height: 657px;
  }
}

@media screen and (max-width: 390px) {
  .reviews__page .reviews__video iframe {
    width: 320px;
    height: 568px;
  }
}

.reviews__page .reviews__video .swiper-button-next::after,
.reviews__page .reviews__video .swiper-button-prev::after {
  display: block;
  color: #FFFFFF;
}

.reviews__page .reviews__video_item {
  position: relative;
  min-height: 670px;
  cursor: pointer;
}

.reviews__page .reviews__video_item:hover .reviews__video_play {
  background-color: var(--red-back-color);
}

@media screen and (max-width: 1200px) {
  .reviews__page .reviews__video_item {
    min-height: 39.10px;
  }
}

@media screen and (max-width: 767px) {
  .reviews__page .reviews__video_item {
    min-height: 657px;
  }
}

@media screen and (max-width: 390px) {
  .reviews__page .reviews__video_item {
    min-height: 568px;
  }
}

.reviews__page .reviews__video_preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition-duration: 300ms;
}

.reviews__page .reviews__video_preview.is-open {
  opacity: 0;
  visibility: hidden;
}

.reviews__page .reviews__video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.737254902);
  border-radius: 10px;
  transition-duration: 300ms;
}

.reviews__page .reviews__video_play.is-open {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1200px) {
  .reviews__page .reviews__video_play {
    width: 70px;
    height: 50px;
  }

  .reviews__page .reviews__video_play img {
    width: 10px;
  }
}

.photo {
  padding-top: 50px;
  padding-bottom: 100px;
  border-top: 0.10px solid rgb(38, 38, 38);
}

@media screen and (max-width: 767px) {
  .photo {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

.photo .photo__title {
  font-size: 70px;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .photo .photo__title {
    font-size: 5.40px;
  }
}

@media screen and (max-width: 767px) {
  .photo .photo__title {
    font-size: 40px;
  }
}

.photo .photo__list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.photo .photo__item {
  display: block;
  width: calc((100% - 40px) / 3);
  height: 450px;
}

@media screen and (max-width: 1200px) {
  .photo .photo__item {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .photo .photo__item {
    width: calc((100% - 20px) / 2);
    height: 270px;
  }
}

.photo .photo__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.thank {
  padding-top: 50px;
  padding-bottom: 100px;
  border-top: 0.10px solid rgb(38, 38, 38);
}

@media screen and (max-width: 767px) {
  .thank {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

.thank .thank__title {
  font-size: 46px;
  text-align: center;
  max-width: 800px;
  line-height: 1.3;
  margin: 0 auto 50px auto;
}

@media screen and (max-width: 1200px) {
  .thank .thank__title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .thank .thank__title {
    font-size: 32px;
  }
}

.thank .thank__desc {
  font-size: 2.40px;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

@media screen and (max-width: 1200px) {
  .thank .thank__desc {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .thank .thank__desc {
    font-size: 16px;
  }
}

.thank .thank__image {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .thank .thank__image {
    width: 120px;
  }
}

/* material section */
.material {
  display: flex;
  align-items: stretch;
  height: 600px;
  color: #000000;
}

@media screen and (max-width: 1200px) {
  .material {
    height: 450px;
  }
}

@media screen and (max-width: 900px) {
  .material {
    flex-direction: column-reverse;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .material {
    margin-bottom: 50px;
  }
}

.material__left {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .material__left {
    width: 100%;
    height: 400px;
  }
}

.material__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.material__right {
  width: 50%;
  background-color: #FFFFFF;
  padding: 80px 40px;
}

@media screen and (max-width: 1200px) {
  .material__right {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 900px) {
  .material__right {
    width: 100%;
  }
}

.material__title {
  display: flex;
  align-items: center;
  gap: 20px;

  font-size: 50px;
  color: var(--accent-text-color);
  margin-bottom: 60px;
}

@media screen and (max-width: 1200px) {
  .material__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 900px) {
  .material__title {
    justify-content: center;
  }
}

.material__title span {
  width: 60px;
  height: 60px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material__desc {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 30px;
  max-width: 600px;
}

@media screen and (max-width: 1200px) {
  .material__desc {
    font-size: 16px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 900px) {
  .material__desc {
    text-align: center;
    margin: 10px auto 0 auto;
  }
}

.material__more_wrapper {
  text-align: right;
  max-width: 600px;
  margin-top: 20px;
}

.material__more {
  display: inline-block;
  font-size: 20px;
  color: #8b8b8b;
  text-decoration: none;
  border-bottom: .10px solid transparent;
  transition-duration: 300ms;
}

.material__more:hover {
  border-color: inherit;
}

@media screen and (max-width: 1200px) {
  .material__more {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .material__more_wrapper {
    text-align: center;
    margin: 20px auto 0 auto;
  }
}

/* why sectino */
.why {
  padding-top: 70px;
  padding-bottom: 50px;
}

.why__title {
  font-size: 56px;
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
  .why__title {
    font-size: 47px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .why__title {
    font-size: 38px;
    margin-bottom: 50px;
  }
}

.why__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 40px;
  flex-wrap: wrap;

  background-image: url(../img/why/bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.why__item {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why__item:nth-child(2n) {
  text-align: right;
  flex-direction: row-reverse;
}

.why__subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.why__desc {
  font-size: 10px;
  line-height: 1.5;
  max-width: 300px;
}

.why__about_list {
  margin-top: 100px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.why__about_item {
  width: calc((100% - 60px) / 3);
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .why__list {
    padding-bottom: 300px;
    background-size: 500px;
    background-position: bottom center;
  }

  .why__about_list {
    flex-wrap: wrap;
  }

  .why__about_item {
    width: calc((100% - 30px) / 2);
    justify-content: center;
  }

  .why__about_item:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .why {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .why__list {
    background-size: 100%;
    padding-bottom: 200px;
  }

  .why__item {
    width: 100%;
  }

  .why__about_list {
    margin-top: 50px;
  }

  .why__about_item {
    width: 100%;
    justify-content: flex-start;
  }
}

/* info page */
.info {
  padding-top: 50px;
  padding-bottom: 70px;
  border-top: .10px solid rgba(108, 108, 108, 0.351);
}

.info__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.info__content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.info__left {
  min-width: calc((100% - 50px) / 2);
}

.info__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info__right {
  width: calc(100% - 50px / 2);
}

.info__desc {
  font-size: 18px;
  line-height: 1.7;
}

.info__desc+.info__desc {
  margin-top: 20px;
}

.info__item {
  font-size: 18px;
  line-height: 1.7;
}

@media screen and (max-width: 1200px) {
  .info__content {
    flex-direction: column;
  }

  .info__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .info__left {
    width: 100%;
  }

  .info__right {
    width: 100%;
  }
}

/* choose */
.choose {
  background-color: #e3e3e3;
  padding: 50px 0;
  color: #2d2c2c;
}

.choose__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 80px;
}

.choose__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  column-gap: 20px;
  row-gap: 15px;
  flex-wrap: wrap;
}

.choose__item {
  width: calc((100% - 60px) / 4);
}

.choose__subtitle {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.choose__desc {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  .choose__title {
    margin-bottom: 60px;
    font-size: 36px;
  }

  .choose__item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .choose__title {
    margin-bottom: 30px;
    font-size: 23px;
    line-height: 1.3;
  }

  .choose__item {
    width: 100%;
    text-align: center;
  }
}

.info__page .photo__title {
  font-size: 40px;
}

ul {
    list-style: none;
    padding: 0;
}



