@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
body * {
  font-family: "Source Sans Pro", sans-serif;
  outline: none;
}

#preloader {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #c10649;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.btn {
  padding: 20px 50px;
  background: #c10649;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  color: #FFFFFF;
  border-radius: 30px;
  transition: 0.4s;
  text-decoration: none;
  border: none;
  outline: none;
  display: inline-block;
}
.btn:hover {
  background: #dc7590;
  cursor: pointer;
  transition: 0.4s;
}

.arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrows .arr {
  width: 60px;
  height: 60px;
  margin: 0px 30px;
  margin-top: 6vw;
  background: #c10649;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.arrows .arr:hover {
  cursor: pointer;
  background: #dc7590;
  transition: 0.4s;
}

.title {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
}

.title_main {
  padding-bottom: clamp(20px, 5vw, 80px);
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
}

#hamburger {
  display: inline-block;
  cursor: pointer;
  transform: scale(1.4);
}

.header {
  background: #FFC2D2;
  padding: 50px 20px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  margin-right: clamp(20px, 10vw, 100px);
}
.header .container .logo img {
  transition: 0.3s;
}
.header .container .logo img:hover {
  transform: scale(1.1);
  transition: 0.4s;
}
.header .container #menu_toggle {
  display: none;
}
.header .container #menu_toggle .bar1,
.header .container #menu_toggle .bar2,
.header .container #menu_toggle .bar3 {
  width: 16px;
  height: 2px;
  background-color: black;
  margin-top: 3px;
  margin-bottom: 3px;
  transition: 0.4s;
  border: none;
}
.header .container #menu_toggle.open .bar1 {
  transform: rotate(-45deg) translate(-2px, 3px);
}
.header .container #menu_toggle.open .bar2 {
  opacity: 0;
}
.header .container #menu_toggle.open .bar3 {
  transform: rotate(45deg) translate(-4.5px, -5px);
}
.header .container .main_nav {
  width: 100%;
  height: 100%;
}
.header .container .main_nav ul {
  display: flex;
  justify-content: space-between;
}
.header .container .main_nav ul li {
  margin-right: 10px;
}
.header .container .main_nav ul li a {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #1A1A1A;
  transition: 0.3s;
}
.header .container .main_nav ul li a:hover {
  transition: 0.3s;
  opacity: 0.6;
}

.products {
  background: #FFC2D2;
  padding: 7vw 20px;
}
.products .container .products_head {
  padding-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.products .container .products_head .description {
  max-width: 775px;
}
.products .container .products_head .description .category_title {
  padding-bottom: 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
}
.products .container .products_head .description .category_desc {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  padding-bottom: 20px;
}
.products .container .product_list {
  overflow-x: hidden;
}
.products .container .product_list .product_item {
  padding: 30px;
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  display: block;
  background: #FFFFFF;
  border-radius: 30px;
  color: #1A1A1A;
}
.products .container .product_list .product_item .product_image {
  max-width: 200px;
  margin: 0 auto;
  height: 200px;
}
.products .container .product_list .product_item .product_image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.products .container .product_list .product_item .product_title {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  padding: 15px 0;
}
.products .container .product_list .product_item .product_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products .container .product_list .product_item .product_footer .vol {
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
}
.products .container .product_list .product_item .product_footer .price {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #c10649;
}
.products .container .arrows .arr {
  margin-top: clamp(20px, 5vw, 60px);
}

.brands {
  padding: 7vw 20px;
}
.brands .container .brand_info {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  max-width: 775px;
  padding-bottom: clamp(15px, 5vw, 60px);
}
.brands .container .brand_info strong {
  color: #c10649;
}
.brands .container .cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
.brands .container .cat_list .brand {
  display: block;
  max-width: 400px;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(221, 221, 221, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25);
  border-radius: 30px;
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.brands .container .cat_list .brand:hover {
  transition: 0.4s;
  background: #FFC2D2;
  box-shadow: 0px 0px 30px rgba(221, 221, 221, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25);
}
.brands .container .cat_list .active {
  transition: 0.4s;
  background: #FFC2D2;
  box-shadow: 0px 0px 30px rgba(221, 221, 221, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25);
}

.testimonials {
  padding: 7vw 20px;
}
.testimonials .carousel_testimonials {
  margin-top: 80px;
  overflow: hidden;
}
.testimonials .carousel_testimonials .testimonial {
  background: #FFC2D2;
  color: #1A1A1A;
  border-radius: 30px;
  padding: 30px;
  max-width: 400px;
}
.testimonials .carousel_testimonials .testimonial .position {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 30px;
}
.testimonials .carousel_testimonials .testimonial .testimonial_head {
  display: flex;
}
.testimonials .carousel_testimonials .testimonial .testimonial_head .avatar {
  margin-right: 30px;
}
.testimonials .carousel_testimonials .testimonial .testimonial_head .avatar img {
  width: 81px;
  height: 81px;
  object-fit: cover;
}
.testimonials .carousel_testimonials .testimonial .testimonial_head .info_side .name_customer {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  padding-bottom: 8px;
}
.testimonials .carousel_testimonials .testimonial .testimonial_content {
  padding-top: 30px;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 31px;
}
.testimonials .carousel_testimonials .testimonial .testimonial_footer {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials .carousel_testimonials .testimonial .testimonial_footer .data {
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
}
.testimonials .carousel_testimonials .testimonial .testimonial_footer .rating {
  display: flex;
}
.testimonials .carousel_testimonials .testimonial .testimonial_footer .rating img {
  margin-right: 13px;
}

.packaging {
  background: #FFC2D2;
  padding: 7vw 20px;
}
.packaging *::selection {
  background: transparent;
}
.packaging .container .sub_title {
  padding-bottom: 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  padding-bottom: 30px;
}
.packaging .container .sub_title strong {
  color: #c10649;
}
.packaging .container .packaging_carousel_info {
  display: flex;
  justify-content: space-between;
}
.packaging .container .packaging_carousel_info .carousel_arr_wrap {
  max-width: 460px;
  margin-top: 73px;
}
.packaging .container .packaging_carousel_info .carousel_arr_wrap .packaging_carousel {
  width: 100%;
  background: white;
  border-radius: 30px;
  overflow-x: hidden;
}
.packaging .container .packaging_carousel_info .carousel_arr_wrap .packaging_carousel .packaging_item {
  width: 100%;
  height: 100%;
}
.packaging .container .packaging_carousel_info .carousel_arr_wrap .packaging_carousel .packaging_item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px;
}
.packaging .container .packaging_carousel_info .carousel_arr_wrap .arr {
  margin-top: 30px;
}
.packaging .container .packaging_carousel_info .packaging_info {
  max-width: 645px;
  width: 100%;
}
.packaging .container .packaging_carousel_info .packaging_info .txt_before_list {
  padding-bottom: 30px;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
}
.packaging .container .packaging_carousel_info .packaging_info .packaging_list p {
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 31px;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(221, 221, 221, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25);
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 20px;
}
.packaging .container .packaging_carousel_info .packaging_info .packaging_list p strong {
  color: #c10649;
}
.packaging .container .packaging_carousel_info .packaging_info .txt_before_list {
  padding-top: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
}

.question {
  padding: 7vw 20px;
}
.question .title {
  margin-bottom: 80px;
}
.question .b-faq {
  max-width: 765px;
  margin: 0 auto;
  background: #FFC2D2;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 20px;
}
.question .b-faq .faq__title {
  position: relative;
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #1A1A1A;
  line-height: 35px;
  text-decoration: none;
}
.question .b-faq .faq__title .arrow_indicator {
  position: absolute;
  right: 0;
  top: -5%;
  transition: 0.3s;
}
.question .b-faq .faq__active .arrow_indicator {
  transform: rotate(-180deg);
}
.question .b-faq .faq__content {
  padding-top: 20px;
  display: none;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
}

.quality {
  background: #FFC2D2;
  padding: 7vw 20px;
}
.quality .container {
  display: flex;
}
.quality .container .info_side {
  max-width: 500px;
  margin-right: 10vw;
  width: 100%;
}
.quality .container .info_side .title {
  padding-bottom: 30px;
}
.quality .container .info_side .quality_content p {
  padding-bottom: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 31px;
}
.quality .container .info_side .quality_content p strong {
  color: #c10649;
}
.quality .container .certificates_wrapper .certificates {
  overflow-x: hidden;
  max-width: 592px;
  width: 100%;
}
.quality .container .certificates_wrapper .certificates .slide_cert {
  max-width: 282px;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
.quality .container .certificates_wrapper .certificates .slide_cert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality .container .certificates_wrapper .arrows .arr {
  margin-top: 30px;
}

.cost {
  position: fixed;
  top: 0;
  z-index: 20;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.cost .cost_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cost .cost_container .close_modal {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.cost .cost_container .cost_output {
  padding-bottom: 8px;
  font-size: 28px;
  line-height: 35px;
}
.cost .cost_container .cost_output strong {
  color: #c10649;
}

@media screen and (max-width: 1100px) {
  .header {
    z-index: 10;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    width: 100%;
  }
  .header .container #menu_toggle {
    display: block;
  }
  .header .container .main_nav {
    z-index: 10;
    top: 52px;
    position: fixed;
    height: calc(100vh - 30px);
    left: -100%;
    background: #FFC2D2;
    transition: 0.5s;
    padding-left: 20px;
    width: 100%;
  }
  .header .container .main_nav ul {
    padding-top: 60px;
    flex-direction: column;
    margin-left: 20px;
  }
  .header .container .main_nav ul li a {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
    color: #1A1A1A;
  }
  .header .container .main_nav.active {
    transition: 0.5s;
    left: 0%;
    background: #FFC2D2;
  }
}
section .main_title {
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 75px;
  color: #1A1A1A;
}
section .main_sub_title {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  color: #1A1A1A;
}
section .main_sub_title strong {
  color: #c10649;
}
section .lite_text_description {
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 31px;
  color: #1A1A1A;
}
section .lite_text_description strong {
  color: #c10649;
}
section .btn {
  max-width: fit-content;
}
section .sub_title {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  color: #1A1A1A;
}
section .sub_title strong {
  color: #c10649;
}

section.main {
  padding: 0 20px;
  position: relative;
  background: #FFC2D2;
  background-image: url("../img/main_bg.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
section.main .container {
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.main .container .main_title {
  margin-bottom: 40px;
  max-width: 807px;
  width: 49vw;
}
section.main .container .main_sub_title {
  margin-bottom: 47px;
  max-width: 732px;
  width: 44vw;
}
section.main .container .bg_image_mask {
  position: absolute;
  right: 0;
  top: -70px;
  z-index: 0;
}

section.product_info {
  padding: 7vw 20px;
  background: #FFFFFF;
}
section.product_info .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.product_info .container .product_info_item {
  max-width: 287px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
section.product_info .container .product_info_item:last-of-type {
  margin-right: 0;
}
section.product_info .container .product_info_item .img_wrapper {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 30px rgba(221, 221, 221, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25);
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -10px;
  position: relative;
}
section.product_info .container .product_info_item .product_info_description {
  padding: 40px 30px 20px;
  background: #FFC2D2;
  box-shadow: -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
  height: 165px;
  overflow: hidden;
}
section.product_info .container .product_info_item .product_info_description .product_description_text {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
}
section.product_info .container .product_info_item .product_info_description .product_description_text strong {
  color: #c10649;
}

section.about_us {
  padding: 7vw 20px;
  background: rgba(255, 194, 210, 0.4);
}
section.about_us .container .main_title {
  margin-bottom: 30px;
}
section.about_us .container .about_us_wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.about_us .container .about_us_wrapper .about_us_description {
  max-width: 662px;
  margin-right: 10px;
  width: 49vw;
}
section.about_us .container .about_us_wrapper .about_us_description .lite_text_description {
  margin-bottom: 20px;
}
section.about_us .container .about_us_wrapper .about_us_description .lite_text_description:last-of-type {
  margin-bottom: 0;
}
section.about_us .container .about_us_wrapper .about_us_img_wrapper {
  max-width: 558px;
}
section.about_us .container .about_us_wrapper .about_us_img_wrapper img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

section.raw_material {
  padding: 7vw 20px;
}
section.raw_material .container .main_title {
  margin-bottom: 80px;
}
section.raw_material .container .sub_title {
  margin-bottom: 30px;
  max-width: 886px;
}
section.raw_material .container .lite_text_description {
  max-width: 863px;
}
section.raw_material .container .raw_materials_wrapper {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.raw_material .container .raw_materials_wrapper .materials_desc {
  max-width: 728px;
  margin-right: 10px;
  width: 50vw;
}
section.raw_material .container .raw_materials_wrapper .materials_desc .materials_item {
  display: flex;
  width: 100%;
  background: #FFC2D2;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
}
section.raw_material .container .raw_materials_wrapper .materials_desc .materials_item:last-of-type {
  margin-bottom: 30px;
}
section.raw_material .container .raw_materials_wrapper .materials_desc .materials_item .material_img_wrapper {
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
section.raw_material .container .raw_materials_wrapper .materials_photo {
  max-width: 552px;
}
section.raw_material .container .raw_materials_wrapper .materials_photo img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

section.cargo {
  padding: 7vw 20px;
}
section.cargo .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.cargo .container .cargo_desc {
  max-width: 473px;
  margin-right: 10px;
}
section.cargo .container .cargo_desc .sub_title {
  margin-bottom: 60px;
}
section.cargo .container .cargo_desc .lite_text_description {
  margin-bottom: 40px;
}
section.cargo .container .cargo_desc .cargo_img_wrapper {
  display: none;
}
section.cargo .container .cargo_img_wrapper {
  max-width: 777px;
}
section.cargo .container .cargo_img_wrapper img {
  display: block;
  width: 100%;
  object-fit: cover;
}

section.product_promotion {
  padding: 7vw 20px;
  background: rgba(255, 194, 210, 0.4);
}
section.product_promotion .container .sub_title {
  margin-bottom: 80px;
}
section.product_promotion .container .product_promotion_wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
section.product_promotion .container .product_promotion_wrapper .promotion_item {
  max-width: 400px;
  background: #FFFFFF;
  box-shadow: -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
  margin-right: 10px;
  height: 395px;
  overflow: hidden;
  padding: 30px;
}
section.product_promotion .container .product_promotion_wrapper .promotion_item:last-of-type {
  margin-right: 0;
}
section.product_promotion .container .product_promotion_wrapper .promotion_item .promotion_img {
  margin-bottom: 30px;
  max-width: 60px;
}
section.product_promotion .container .product_promotion_wrapper .promotion_item .promotion_img img {
  display: block;
  width: 100%;
}

section.manager {
  padding: 7vw 20px;
}
section.manager .container .sub_title {
  text-align: end;
  margin-bottom: 40px;
}
section.manager .container .manager_wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.manager .container .manager_wrapper .manager_photo_wrapper {
  max-width: 599px;
}
section.manager .container .manager_wrapper .manager_photo_wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}
section.manager .container .manager_wrapper .manager_info_list {
  max-width: 651px;
}
section.manager .container .manager_wrapper .manager_info_list .manager_info_item {
  padding: 20px;
  background: #FFC2D2;
  border-radius: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
section.manager .container .manager_wrapper .manager_info_list .manager_info_item:last-of-type {
  margin-bottom: 0;
}
section.manager .container .manager_wrapper .manager_info_list .manager_info_item .manager_logo {
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

section.product_samples {
  padding: 7vw 20px;
  background: rgba(255, 194, 210, 0.4);
}
section.product_samples .container .sub_title {
  margin-bottom: 60px;
}
section.product_samples .container .product_samples_list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
section.product_samples .container .product_samples_list .product_samples_item {
  flex: 1 1 34%;
  max-width: 625px;
  height: 395px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
  padding: 50px 25px;
  margin-bottom: 30px;
}
section.product_samples .container .product_samples_list .product_samples_item:nth-child(odd) {
  margin-right: 10px;
}
section.product_samples .container .product_samples_list .product_samples_item .product_samples_img {
  height: 60px;
  width: 60px;
  margin-bottom: 30px;
}
section.product_samples .container .product_samples_list .product_samples_item .product_samples_img img {
  display: block;
  width: 100%;
}
section.product_samples .container .product_samples_list .product_samples_item .main_sub_title {
  font-weight: 600;
  margin-bottom: 30px;
}
section.product_samples .container .product_samples_list .product_samples_item .main_sub_title:last-of-type {
  font-weight: normal;
  margin-bottom: 0;
}

section.cost_prices {
  padding: 7vw 20px;
}
section.cost_prices .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.cost_prices .container .cost_desc {
  max-width: 617px;
  margin-right: 10px;
  width: 43vw;
}
section.cost_prices .container .cost_desc .sub_title {
  margin-bottom: 35px;
}
section.cost_prices .container .cost_desc .main_sub_title {
  margin-bottom: 20px;
}
section.cost_prices .container .cost_desc .main_sub_title:last-of-type {
  margin-bottom: 0;
}
section.cost_prices .container .cost_img {
  max-width: 625px;
}
section.cost_prices .container .cost_img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.form_wrapper {
  padding: 60px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 796px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 2px 2px 4px rgba(234, 234, 234, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
}
.form_wrapper h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 40px;
  max-width: 500px;
  color: #1A1A1A;
  text-align: center;
}
.form_wrapper h5 strong {
  color: #c10649;
}
.form_wrapper .form_sub_txt {
  max-width: 500px;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  color: #1A1A1A;
  margin-bottom: 30px;
  text-align: center;
}
.form_wrapper p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form_wrapper p br {
  display: none;
}
.form_wrapper p span span {
  position: relative;
  top: -20px;
}
.form_wrapper p span input, .form_wrapper p span textarea {
  background: #FFFFFF;
  outline: none;
  border: 3px solid #FF005C;
  border-radius: 30px;
  margin-bottom: 20px;
  max-width: 371px;
  width: 100%;
  padding: 20px 50px;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: #1A1A1A;
}
.form_wrapper p span input::placeholder, .form_wrapper p span textarea::placeholder {
  color: #828282;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
}
.form_wrapper p span textarea {
  height: 260px;
  max-width: 487px;
}
.form_wrapper p input[type=submit] {
  padding: 20px 50px;
  background: #c10649;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  color: #FFFFFF;
  border-radius: 30px;
  transition: 0.4s;
  text-decoration: none;
  border: none;
  outline: none;
  display: inline-block;
  width: fit-content;
  cursor: pointer;
}
.form_wrapper p input[type=submit]:hover {
  background: #dc7590;
  cursor: pointer;
  transition: 0.4s;
}

form .wpcf7-response-output {
  display: none !important;
}

section.forms_section {
  padding: 7vw 20px;
  background: #FFF9E7;
}
section.forms_section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.forms_section .container .form_wrapper {
  width: 60vw;
}

section.new_things {
  padding: 7vw 20px;
  background: rgba(255, 194, 210, 0.4);
}
section.new_things .container .sub_title {
  margin-bottom: 80px;
}
section.new_things .container .news_list {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
section.new_things .container .news_list .new_item {
  padding: 20px;
  flex: 1 1 36%;
  max-width: 625px;
  height: 110px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 0 30px rgba(221, 221, 221, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25);
  border-radius: 30px;
  margin-bottom: 20px;
}
section.new_things .container .news_list .new_item:nth-child(odd) {
  margin-right: 10px;
}

section.steps {
  padding: 7vw 20px;
  background: linear-gradient(90deg, #E3C6E0 0%, rgba(227, 198, 224, 0.78) 47.92%, rgba(227, 198, 224, 0) 100%);
  position: relative;
  overflow: hidden;
}
section.steps video,
section.steps .steps_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  padding-top: 50px;
  transform: scale(1.2);
}
section.steps .container .steps_list {
  margin-top: 30px;
  max-width: 662px;
}
section.steps .container .steps_list .steps_item {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
}
section.steps .container .steps_list .steps_item:last-of-type {
  margin-bottom: 0;
}
section.steps .container .steps_list .steps_item:last-of-type .steps_num:after {
  display: none;
}
section.steps .container .steps_list .steps_item .steps_num {
  height: 60px;
  max-width: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #FFFFFF;
  margin-right: 30px;
  position: relative;
}
section.steps .container .steps_list .steps_item .steps_num:after {
  content: "";
  position: absolute;
  top: 70px;
  left: 29px;
  height: 129%;
  width: 3px;
  background: #FFFFFF;
}
section.steps .container .steps_list .steps_item .steps_num .current_num {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  color: #c10649;
}
section.steps .container .steps_list .steps_item .step_desc .sub_title {
  margin-bottom: 20px;
}

footer.footer {
  padding: 7vw 20px 30px;
  background: #FFC2D2;
}
footer.footer .container .footer_wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
footer.footer .container .footer_wrapper .footer_info {
  display: flex;
  justify-content: space-between;
  max-width: 575px;
  width: 100%;
  margin-right: 10px;
}
footer.footer .container .footer_wrapper .footer_info .footer_nav {
  max-width: 190px;
  margin-right: 10px;
}
footer.footer .container .footer_wrapper .footer_info .footer_nav .logo {
  width: 190px;
  margin-bottom: 30px;
  display: block;
}
footer.footer .container .footer_wrapper .footer_info .footer_nav .logo img {
  display: block;
  width: 100%;
}
footer.footer .container .footer_wrapper .footer_info .footer_nav .main_nav ul li {
  margin-bottom: 20px;
}
footer.footer .container .footer_wrapper .footer_info .footer_nav .main_nav ul li:last-of-type {
  margin-bottom: 0;
}
footer.footer .container .footer_wrapper .footer_info .footer_nav .main_nav ul li a {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  color: #1A1A1A;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts {
  max-width: 271px;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .contact_title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #1A1A1A;
  margin: 4px 0 35px;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .social_list {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .social_list a {
  margin-right: 27px;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .social_list a:last-of-type {
  margin-right: 0;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .tel {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: #1A1A1A;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .tel img {
  margin-right: 20px;
}
footer.footer .container .footer_wrapper .footer_info .footer_contacts .tel:last-of-type {
  margin-bottom: 0;
}
footer.footer .container .footer_wrapper .form_wrapper {
  max-width: 571px;
  width: 37vw;
}
footer.footer .container .copy_write {
  margin-top: 130px;
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  color: #1A1A1A;
}

.modal {
  position: fixed;
  overflow-y: scroll;
  padding-top: 30px;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(100px);
  background: rgba(255, 255, 255, 0.4);
  left: 0;
}
.modal .close_modal {
  position: absolute;
  cursor: pointer;
  right: 6%;
  top: 24px;
}
.modal .form_wrapper {
  width: 53vw;
  position: relative;
  margin: 0 auto;
}
.modal .modal_thx {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 796px;
  width: 53vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 20px;
  box-shadow: 2px 2px 4px rgba(234, 234, 234, 0.25), -2px -2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
  background: #FFFFFF;
}
.modal .modal_thx p {
  text-align: center;
}
.modal .modal_thx .sub_title {
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  max-width: 500px;
  color: #1A1A1A;
}
.modal .modal_thx .sub_title strong {
  color: #c10649;
}
.modal .modal_thx .main_sub_title {
  margin-bottom: 39px;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  color: #1A1A1A;
}

.thx_success,
.modal_with_form {
  display: none;
  z-index: 20;
}

.cost {
  display: none;
}
.cost .cost_container {
  background: #FFFFFF;
  box-shadow: -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
  margin: 40px auto;
  max-width: 800px;
  padding: 60px 6vw;
}
.cost .cost_container .cot_title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  padding-bottom: 25px;
}
.cost .cost_container .cost_subtitle {
  font-weight: normal;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  padding-bottom: 25px;
}
.cost .cost_container .calculate {
  margin: 30px auto;
  display: block;
}
.cost .cost_container .calc_country {
  margin: 0 auto;
  max-width: 374px;
  position: relative;
  padding: 20px 50px;
  background: #FFFFFF;
  border: 3px solid #FF005C;
  box-sizing: border-box;
  border-radius: 30px;
  color: #828282;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  cursor: pointer;
}
.cost .cost_container .calc_country:after {
  position: absolute;
  top: 25%;
  right: 10%;
  content: url("../img/arr_select.svg");
  transition: 0.4s;
}
.cost .cost_container .calc_country.open:after {
  transition: 0.4s;
  transform: rotate(180deg);
}
.cost .cost_container .country_list_wrp {
  margin: 0 auto;
  max-width: 374px;
  position: relative;
}
.cost .cost_container .country_list_wrp .country_list {
  left: 0;
  width: 100%;
  top: 15px;
  height: 180px;
  overflow-y: scroll;
  position: absolute;
  display: none;
  background: #FFFFFF;
  box-shadow: -2px -2px 4px rgba(234, 234, 234, 0.25), 2px 2px 4px rgba(234, 234, 234, 0.25), 0px 0px 30px rgba(221, 221, 221, 0.25);
  border-radius: 30px;
  padding: 30px;
  max-width: 374px;
  margin: 0 auto;
  /* Track */
  /* Handle */
}
.cost .cost_container .country_list_wrp .country_list::-webkit-scrollbar {
  width: 5px;
}
.cost .cost_container .country_list_wrp .country_list::-webkit-scrollbar-track {
  background: none;
}
.cost .cost_container .country_list_wrp .country_list::-webkit-scrollbar-thumb {
  background: #f1f1f1;
  border-radius: 20px;
}
.cost .cost_container .country_list_wrp .country_list li {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: #1A1A1A;
  cursor: pointer;
}
.cost .cost_container .country_list_wrp .country_list li:last-child {
  margin-bottom: 0;
}
.cost .cost_container .country_list_wrp .country_list li:hover {
  opacity: 0.7;
}

.woocommerce table.shop_attributes th {
  text-align: left;
}

.woocommerce div.product div.images img {
  max-height: 500px;
  object-fit: contain;
}

.custom_product {
  margin: 60px 0;
  padding: 0 20px;
}
.custom_product .prod_title {
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 75px;
  color: #1A1A1A;
  padding-bottom: 30px;
}
.custom_product .product {
  display: flex;
}
.custom_product .product .woocommerce-tabs {
  margin-left: 120px;
  width: 100%;
}

@media (max-width: 1024px) {
  .arrows .arr {
    width: 40px !important;
    height: 40px !important;
  }

  .title {
    font-size: 30px;
    line-height: 30px;
  }

  section .btn {
    font-size: 22px;
    padding: 15px 25px;
  }
  section .main_title {
    font-size: 45px;
    line-height: 60px;
  }
  section .main_sub_title {
    font-size: 25px;
  }
  section .lite_text_description {
    font-size: 20px;
    line-height: 27px;
  }
  section .title_main {
    font-size: 45px;
    padding-bottom: clamp(20px, 3vw, 80px);
  }
  section .sub_title {
    font-size: 30px;
  }

  section.main {
    padding-top: 70px;
  }
  section.main .container .bg_image_mask {
    top: 0;
    width: 200px;
  }
  section.main .container .main_title {
    margin-bottom: 17px;
  }
  section.main .container .main_sub_title {
    margin-bottom: 30px;
  }

  section.product_info .container {
    justify-content: center;
  }
  section.product_info .container .product_info_item {
    max-width: 320px;
    margin-bottom: 20px;
  }
  section.product_info .container .product_info_item .product_info_description .product_description_text {
    font-size: 22px;
    line-height: 25px;
  }

  section.steps video {
    object-fit: cover;
  }

  .brands .container .cat_list {
    justify-content: center;
  }
  .brands .container .brand_info {
    font-size: 22px;
    line-height: 30px;
  }

  .products .container .products_head {
    flex-direction: column;
  }
  .products .container .products_head .description .category_title {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .products .container .products_head .description .category_desc {
    font-size: 22px;
    line-height: 30px;
  }
  .products .container .product_list .product_item .product_footer {
    flex-direction: column;
  }

  .form_wrapper h5 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 25px;
  }
  .form_wrapper .form_sub_txt {
    font-size: 22px;
    line-height: 30px;
  }
  .form_wrapper p span input, .form_wrapper p span textarea {
    padding: 15px 35px;
    font-size: 22px;
  }
  .form_wrapper p input[type=submit] {
    font-size: 22px;
    padding: 15px 25px;
  }

  section.raw_material .container .main_title {
    margin-bottom: 20px;
  }
  section.raw_material .container .raw_materials_wrapper .materials_photo img {
    height: calc(100% - 80px);
  }

  .packaging {
    padding: 60px 20px;
  }
  .packaging .container .sub_title {
    font-size: 25px;
    line-height: 36px;
    padding-bottom: 15px;
  }
  .packaging .container .packaging_carousel_info {
    flex-direction: column;
  }
  .packaging .container .packaging_carousel_info .txt_before_list {
    display: none;
  }
  .packaging .container .packaging_carousel_info .carousel_arr_wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .packaging .container .packaging_carousel_info .carousel_arr_wrap .packaging_carousel .arr {
    margin-top: 30px;
  }
  .packaging .container .packaging_carousel_info .packaging_info {
    max-width: 100%;
  }
  .packaging .container .packaging_carousel_info .packaging_info .txt_before_list {
    font-size: 22px;
    line-height: 27px;
  }
  .packaging .container .packaging_carousel_info .packaging_info .packaging_list {
    margin-top: 30px;
  }
  .packaging .container .packaging_carousel_info .packaging_info .packaging_list p {
    font-size: 20px;
    line-height: 27px;
  }

  section.cargo .container .cargo_desc .sub_title {
    margin-bottom: 25px;
  }

  section.product_promotion .container .sub_title {
    margin-bottom: 30px;
  }
  section.product_promotion .container .product_promotion_wrapper {
    justify-content: center;
    align-items: center;
  }
  section.product_promotion .container .product_promotion_wrapper .promotion_item {
    max-width: 300px;
    margin-bottom: 10px;
  }
  section.product_promotion .container .product_promotion_wrapper .promotion_item .promotion_img {
    max-width: 45px;
    margin-bottom: 20px;
  }

  section.manager .container .sub_title {
    margin-bottom: 30px;
  }
  section.manager .container .manager_wrapper .manager_photo_wrapper {
    max-width: 375px;
    margin-right: 10px;
  }
  section.manager .container .manager_wrapper .manager_photo_wrapper img {
    height: 100%;
  }
  section.manager .container .manager_wrapper .manager_info_list {
    max-width: 450px;
  }

  section.product_samples .container .sub_title {
    margin-bottom: 30px;
  }
  section.product_samples .container .product_samples_list .product_samples_item {
    max-width: 435px;
  }
  section.product_samples .container .product_samples_list .product_samples_item .product_samples_img {
    margin-bottom: 20px;
  }
  section.product_samples .container .product_samples_list .product_samples_item .main_sub_title {
    margin-bottom: 20px;
  }

  section.cost_prices .container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  section.cost_prices .container .cost_desc {
    max-width: 625px;
    width: 100%;
    margin-right: 0;
  }

  section.new_things .container .sub_title {
    margin-bottom: 30px;
  }
  section.new_things .container .news_list .new_item {
    max-width: 430px;
    height: 145px;
  }

  section.quality .container {
    flex-direction: column;
    align-items: center;
  }
  section.quality .container .info_side {
    margin-right: 0;
    max-width: 592px;
    margin-bottom: 20px;
  }

  section.question .container .title {
    margin-bottom: 40px;
  }
  section.question .b-faq .faq__title {
    font-size: 22px;
    line-height: 30px;
    padding-right: 20px;
  }
  section.question .b-faq .faq__content {
    font-size: 20px;
    line-height: 30px;
  }

  footer.footer .container .footer_wrapper .footer_info {
    max-width: 470px;
  }
  footer.footer .container .footer_wrapper .footer_info .footer_nav .logo {
    width: 150px;
  }
  footer.footer .container .footer_wrapper .footer_info .footer_nav .main_nav ul li a {
    font-size: 22px;
  }
  footer.footer .container .footer_wrapper .footer_info .footer_contacts .contact_title {
    margin: 4px 0 20px;
    font-size: 22px;
  }
  footer.footer .container .footer_wrapper .footer_info .footer_contacts .tel {
    font-size: 22px;
  }
  footer.footer .container .footer_wrapper .form_wrapper p span input {
    max-width: 371px;
    width: 100%;
  }

  .footer .footer_wrapper {
    flex-direction: column;
  }
  .footer .footer_wrapper .form_wrapper {
    margin: 25px auto;
  }
}
@media (max-width: 768px) {
  .custom_product .prod_title {
    font-size: 35px;
    padding-bottom: 20px;
  }
  .custom_product .product {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .custom_product .product .woocommerce-tabs {
    margin-left: 0;
  }

  .testimonials .carousel_testimonials .testimonial {
    margin: 0 auto;
  }

  section.quality .container .certificates_wrapper {
    width: 100%;
  }
  section.quality .container .certificates_wrapper .certificates .slide_cert {
    margin: 0 auto;
  }

  section .main_title {
    font-size: 30px;
    line-height: 38px;
  }
  section .main_sub_title {
    font-size: 18px;
    line-height: 23px;
  }
  section .btn {
    font-size: 18px;
    line-height: 23px;
    margin: 0 auto;
  }
  section .lite_text_description {
    font-size: 15px;
    line-height: 19px;
  }
  section .sub_title {
    font-size: 25px;
    line-height: 31px;
  }
  section .title_main {
    font-size: 30px;
  }

  section.main {
    height: calc(100vh - 130px);
    position: relative;
    background: #FFC2D2;
    background-image: url("../img/main_bg-mob.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
  }
  section.main .container {
    overflow: hidden;
    position: relative;
    padding-top: 20px;
    justify-content: flex-start;
  }
  section.main .container .bg_image_mask {
    top: auto;
    bottom: -223px;
    transform: rotate(90deg);
    left: 28%;
    width: 47%;
  }
  section.main .container .main_title {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  section.main .container .main_sub_title {
    max-width: 100%;
    width: 100%;
  }

  section.product_info .container .product_info_item {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  section.product_info .container .product_info_item .img_wrapper {
    width: 50px;
    height: 50px;
    padding: 10px 0;
  }
  section.product_info .container .product_info_item .img_wrapper img {
    display: block;
    width: 100%;
    max-width: 30px;
  }
  section.product_info .container .product_info_item .product_info_description {
    padding: 20px 30px;
    background: #FFFFFF;
    width: 100%;
    height: 86px;
  }
  section.product_info .container .product_info_item .product_info_description .product_description_text {
    font-size: 18px;
    line-height: 23px;
  }

  section.about_us .container .main_title {
    margin-bottom: 20px;
  }
  section.about_us .container .about_us_wrapper {
    flex-direction: column-reverse;
  }
  section.about_us .container .about_us_wrapper .about_us_description {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
  }
  section.about_us .container .about_us_wrapper .about_us_img_wrapper {
    max-width: 100%;
    margin-bottom: 20px;
  }

  section.steps {
    background: rgba(255, 194, 210, 0.4);
    display: flex;
    flex-direction: column-reverse;
  }
  section.steps .container .steps_list .steps_item .steps_num {
    height: 40px;
    width: 40px;
    min-width: 40px;
    margin-right: 20px;
  }
  section.steps .container .steps_list .steps_item .steps_num:after {
    top: 53px;
    left: 19px;
  }
  section.steps .container .steps_list .steps_item .steps_num .current_num {
    font-size: 25px;
    line-height: 31px;
  }
  section.steps .container .steps_list .steps_item .step_desc .sub_title {
    margin-bottom: 15px;
  }
  section.steps video {
    position: relative;
    margin-bottom: 60px;
    padding: 0 20px;
    z-index: 2;
  }

  section.brands .container .brand_info {
    font-size: 18px;
    line-height: 23px;
  }

  section.product_promotion .container .product_promotion_wrapper .promotion_item {
    height: auto;
  }

  section.products .container .products_head .description .category_title {
    font-size: 30px;
    line-height: 38px;
    padding-bottom: 20px;
  }
  section.products .container .products_head .description .category_desc {
    font-size: 18px;
    line-height: 23px;
  }
  section.products .container .product_list .swiper-slide {
    display: flex;
    justify-content: center;
  }

  section.forms_section .container .form_wrapper {
    max-width: 100%;
    width: 93vw;
  }

  .form_wrapper h5 {
    font-size: 25px;
    line-height: 31px;
    margin-bottom: 20px;
  }
  .form_wrapper .form_sub_txt {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 23px;
  }

  footer.footer .container .footer_wrapper .form_wrapper {
    width: 100%;
  }

  .cost .cost_container {
    width: 90%;
  }
  .cost .cost_container .country_list_wrp .country_list li {
    font-size: 15px;
  }
  .cost .cost_container .cost_output {
    font-size: 20px;
    line-height: 24px;
  }
  .cost .cost_container .cot_title {
    font-size: 25px;
  }
  .cost .cost_container .cost_subtitle {
    font-size: 17px;
    line-height: 12px;
    padding-bottom: 19px;
  }
  .cost .cost_container .calc_country {
    padding: 13px 43px;
    font-size: 21px;
  }

  .modal .form_wrapper {
    width: 90%;
    padding-top: 57px;
  }

  .modal .modal_thx {
    width: 90%;
  }
  .modal .modal_thx .sub_title {
    font-size: 25px;
    line-height: 32px;
  }
  .modal .modal_thx .main_sub_title {
    font-size: 20px;
  }

  .btn {
    padding: 10px 40px;
    font-size: 20px;
  }

  .form_wrapper p span textarea,
.form_wrapper p span input {
    padding: 20px 28px;
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .title {
    font-size: 25px;
  }

  .products .container .products_head {
    display: block;
  }

  section.raw_material .container .raw_materials_wrapper {
    flex-direction: column-reverse;
  }
  section.raw_material .container .raw_materials_wrapper .materials_desc {
    margin-top: 20px;
    width: 100%;
  }

  section.cargo {
    padding: 60px 20px;
  }
  section.cargo .container {
    flex-direction: column;
  }
  section.cargo .container .cargo_desc .cargo_img_wrapper {
    display: block;
    margin-bottom: 20px;
  }
  section.cargo .container .cargo_img_wrapper {
    display: none;
  }

  section.product_promotion {
    padding: 60px 20px;
  }

  section.manager {
    padding: 60px 20px;
  }
  section.manager .container .sub_title {
    text-align: start;
  }
  section.manager .container .manager_wrapper {
    flex-direction: column;
  }
  section.manager .container .manager_info_list {
    margin-top: 40px;
  }

  section.product_samples {
    padding: 40px 20px;
  }
  section.product_samples .container .product_samples_list {
    display: block;
  }
  section.product_samples .container .product_samples_list .product_samples_item {
    max-width: 100%;
    height: auto;
    padding: 20px;
  }

  section.cost_prices {
    padding: 60px 20px;
  }
  section.cost_prices .cost_desc {
    margin-top: 20px;
  }

  section.new_things {
    padding: 60px 20px;
  }
  section.new_things .container .news_list {
    display: block;
  }
  section.new_things .container .news_list .new_item {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .testimonials {
    padding: 60px 20px;
  }
  .testimonials .carousel_testimonials .testimonial .testimonial_head .info_side .name_customer {
    font-weight: 400;
    font-size: 18px;
  }
  .testimonials .carousel_testimonials .testimonial .position {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
  }
  .testimonials .carousel_testimonials .testimonial .testimonial_content {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
  }
  .testimonials .carousel_testimonials .testimonial .testimonial_footer .data {
    font-weight: 400;
    font-size: 15px;
  }
  .testimonials .carousel_testimonials .testimonial .rating img {
    width: 16px;
  }

  .question .b-faq {
    padding-right: 24px;
    font-weight: bold;
  }
  .question .btn_wrp {
    display: block;
  }

  section.forms_section {
    padding: 60px 20px;
    background: #FFF9E7;
  }

  .form_wrapper {
    padding: 30px 15px;
  }

  footer.footer .footer_wrapper .footer_info {
    flex-direction: column;
  }
  footer.footer .footer_wrapper .footer_info .footer_contacts {
    margin: 30px 0;
  }
  footer.footer .container .copy_write {
    font-size: 15px;
    margin-top: 60px;
  }
}
.term-description,
.woocommerce-ordering,
.woocommerce-result-count {
  display: none !important;
}

.prod_titles {
  background: #FFC2D2;
}
.prod_titles .main_title {
  padding: 30px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.loop_wrp {
  background: #FFC2D2;
}
.loop_wrp .loop_filter {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  align-items: self-start;
}
.loop_wrp .loop_filter .brands_shop {
  display: flex;
  flex-direction: column;
  min-width: 182px;
  max-width: 182px;
} 
.loop_wrp .loop_filter .brands_shop a {
  border-radius: 30px;
  margin-bottom: 15px;
  padding: 20px;
  transition: 0.3s;
}
.loop_wrp .loop_filter .brands_shop a img {
  width: 100%;
}
.loop_wrp .loop_filter .brands_shop a:hover {
  background: white;
  transition: 0.3s;
}
.loop_wrp .loop_filter .brands_shop .active {
  background: white;
}
.loop_wrp .loop_filter .woo-products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 60px;
}
.loop_wrp .loop_filter .woo-products .product_item {
  padding: 30px;
  max-width: 330px;
  max-height: 400px;
  width: 400px;
  display: block;
  background: #FFFFFF;
  border-radius: 30px;
  color: #1A1A1A;
}
.loop_wrp .loop_filter .woo-products .product_item .product_image {
  max-width: 200px;
  margin: 0 auto;
  height: 200px;
}
.loop_wrp .loop_filter .woo-products .product_item .product_image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.loop_wrp .loop_filter .woo-products .product_item .product_title {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  padding: 15px 0;
}
.loop_wrp .loop_filter .woo-products .product_item .product_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.loop_wrp .loop_filter .woo-products .product_item .product_footer .price {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  color: #c10649;
}

/*# sourceMappingURL=style.css.map */
