
/* === reset.css === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
    text-decoration: none;
}
button{
    border: none;
    background: transparent;
}

/* === font.css === */
@font-face {
  font-family: "NAMU";
  src:
    url("../fonts/NAMU-1750.woff2") format("woff2"),
    url("../fonts/NAMU-1750.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src:
        url('../fonts/CeraPro-Light.woff2') format('woff2'),
        url('../fonts/CeraPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Cera Pro";
  src:
    url("../fonts/CeraPro-Medium.woff2") format("woff2"),
    url("../fonts/CeraPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src:
        url('../fonts/CeraPro-Bold.woff2') format('woff2'),
        url('../fonts/CeraPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* === header.css === */
header {
  padding: 17px 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.header_container {
  padding: 0 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.menu a {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.13rem;
  leading-trim: NONE;
  color: var(--gray);
  transition: all 0.3s linear;
  position: relative;
}
.menu a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  width: 0px;
  height: 2px;
  background: var(--yellow);
  left: 0;
  transition: all 0.3s linear;
}
.menu a:hover {
  opacity: 0.7;
}
.menu a:hover::before {
  width: 100%;
}
.menu {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header_burger {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: relative;
  z-index: 24;
  overflow: hidden;
  background: var(--gray);
  display: none;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
}
.header_burger span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--white);
  border-radius: 5px;
}
.logo {
  display: block;
  width: 222px;
}
.logo img {
  display: block;
  width: 100%;
}
.header_nav .social_items{
  display: none;
}
@media screen and (min-width: 1520px) {
  .menu a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1285px) {
  .menu {
    gap: 24px;
  }
}

@media screen and (max-width: 1199px) {
  .header_container {
    padding: 0;
  }
  .menu a {
    font-size: 1rem;
  }
  .logo {
    width: 218px;
  }
}

@media screen and (max-width: 820px) {
  .menu {
    display: none;
  }
  .header_burger {
    display: flex;
  }
   .header_nav{
    content: "";
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    width: 100vw;
    height: 100%;
    max-height: 0px;
    background: rgba(255, 255, 255, 0.99);
    overflow: hidden;
    transition: max-height 0.5s ease;
    z-index: 20;
  }

  .nav_container.fullscreen_menu.open .header_nav {
      max-height: 531px;
  }

  .nav_container.fullscreen_menu.open .header_nav {
    position: fixed;
  
    text-align: center;
    z-index: 20;
  }

  .nav_container.fullscreen_menu.open .header_nav .menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .menu a {
    font-size: 1.38rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  .logo {
    position: relative;
    z-index: 22;
  }

  .nav_container.fullscreen_menu.open .header_nav .menu a:hover {
    color: #f39c12;
  }
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav_container.fullscreen_menu.open .header_nav .menu li , .nav_container.fullscreen_menu.open .header_nav .social_items{
  opacity: 0;  
}
 .nav_container.fullscreen_menu.open .header_nav .social_items{

 }
.nav_container.fullscreen_menu.open .header_nav .menu li, .nav_container.fullscreen_menu.open .header_nav .social_items {
  animation: fadeInUp 0.5s forwards;
}

.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(1) {
  animation-delay: 0.2s;
}
.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(2) {
  animation-delay: 0.4s;
}
.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(3) {
  animation-delay: 0.6s;
}
.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(4) {
  animation-delay: 0.8s;
}
.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(5) {
  animation-delay: 1s;
}
.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(6) {
  animation-delay: 1.2s;
}
.nav_container.fullscreen_menu.open .header_nav .menu li:nth-child(7) {
  animation-delay: 1.4s;
}
.nav_container.fullscreen_menu.open .header_nav .social_items{
  animation-delay: 1.6s;
}

.nav_container.fullscreen_menu.open .header_nav .menu a {
  font-size: 1.38rem; 
  transition: color 0.3s;
}

.nav_container.fullscreen_menu.open .header_nav .menu a:hover {
  color: #f39c12;
}

  .header_burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 2px);
  }

  .header_burger.active span:nth-child(2) {
    opacity: 0;
  }

  .header_burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }
 .nav_container.fullscreen_menu.open .header_nav .social_items{
  display: flex;
}
.header_nav{
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-sizing: border-box;
  padding-bottom: 51px;
  justify-content: flex-end;
  border-radius: 0 0 30px 30px;
}
}


/* === hero.css === */
.hero_container {
  padding: 84px 86px 94px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero_container .sub_title {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 2.63rem;
  leading-trim: NONE;
  text-align: left;
  line-height: 1.15;
  margin: 0 0 48px;
  position: static !important;
  letter-spacing: 0%;
}
.hero_container .sub_title{
  color: var(--white);
}
.hero_container .sub_title::before{
  content: none;
}
.hero_img {
  width: 85%;
  margin-left: auto;
}
.hero_img img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 1520px) {
  .hero_container .sub_title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .hero_container {
    padding: 60px 30px;
  }
  .hero_container .sub_title {
    font-size: 1.38rem;
  }
}
@media screen and (max-width: 767px) {
  .hero_container .sub_title {
    margin: 0 0 30px;
    text-align: center;
  }
  .hero_container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
    padding: 56px 30px;
  }
  .hero_img{
    margin: 0 auto;
    width: 70%;
  }
  .hero_container .btn_primery{
    margin: 0 auto;
  }
}


/* === brend.css === */
.brend_section {
  padding: 100px 0 120px;
}
.brend_section .swiper {
  width: 100%;
  height: 100%;
}

.brendSwiper .swiper-slide {
  text-align: center;
  font-size: 1.13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 243px;
}
.slide_wrapper {
  background-size: contain;
  background-repeat: no-repeat;
  width: 243px;
  height: 243px;
  display: flex;
  flex-direction: column;
  padding: 50px 30px 30px;
  align-items: center;
  box-sizing: border-box;
}
.icon_slide {
  margin: 0 0 22px;
}
.icon_slide img {
  width: auto;
  height: 45px;
}
.slide_wrapper_gray {
  color: var(--yellow);
}
.brend_section h2 {
  margin: 0 0 64px;
  padding-left: 20px;
  padding-right: 20px;
}
.brend_section .swiper-wrapper {
  justify-content: center;
    padding-bottom: 40px;
}

@media screen and (min-width: 1520px) {
  .brendSwiper .swiper-slide {
    width: 280px;
    font-size: 1.3rem;
  }
  .slide_wrapper {
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 1360px) {
    .brend_section .swiper-wrapper{
        justify-content: start;
    }
}

@media screen and (max-width: 767px) {
    .brend_section .swiper{
        overflow: none;
    }
    .brend_section{
        padding: 56px 0;
    }
    .brend_section h2{
        margin: 0 0 50px;
    }
    .brend_section .container{
      padding: 0;
    }
    /* .swiper-slide-active+div{
        transform: scale(1.1) !important;
    } */
}

/* === popular.css === */
.popular_container {
  padding: 64px 84px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
}
.popular_section {
  padding-bottom: 60px;
}
.popular_container h2 {
  color: var(--white);
}

.popular_item_bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 12px 12px 24px;
  justify-content: space-between;
}
.fake_btn {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  color: var(--white);
  background: var(--gray);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}
.fake_btn:hover {
  background: var(--yellow);
  color: var(--gray);
}
.popular_item_title {
  font-family: "NAMU";
  font-weight: 300;
  transition: all 0.3s linear;
  font-style: 1750;
  font-size: 1.75rem;
  color: var(--gray);
  leading-trim: NONE;
}
.popular_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px 0 64px;
}
.popular_item_img {
  max-width: 275px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.popular_gallery .btn_primery {
  margin: 0 auto;
}
.popular_item_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
 
 .popular_item {
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.popular_item {
  background: var(--white);
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  border-radius: 30px;
  display: block;
}

 .item_front,
.item_back {
  
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.popular_item.flipped {
  animation: fide .3s forwards;
  transform: rotateY(180deg);
} 
.popular_item.flipped .item_back {
  opacity: 1;
}
.popular_item.flipped .item_front {
  opacity: 0;
}
.item_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  box-sizing: border-box;
  opacity: 0;
  transition:opacity 0.3s ease  visibility 0.6s ease;
  transform: rotateY(180deg); 
  display: flex;
  flex-direction: column; 
  justify-content: space-between;
}
.show-backface .item_front, .show-backface .item_back {
backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 0;
}
 

.popular_item.flipped.show-backface .item_front,
.popular_item.flipped.show-backface .item_back {
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.item_back>div:first-child{
padding: 24px;
}
.item_back>div:not(.item_back_text)> p {
  font-family: "NAMU";
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0 0 24px;
  text-align: center;
}

.item_back ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.item_back li {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.12rem;
  leading-trim: NONE;
  line-height: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 8px;
}
.item_back>div>ul>li:nth-child(2n){
    background: #595c5f1a;
}

.item_back > ul > li:nth-child(2n) {
  background: #595c5f1a;
}

.item_back_text {
  display: flex;
  align-items: safe center;
  justify-content: center;
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  min-height: 0;
}
.item_back_text p {
  font-family: "NAMU";
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  margin: 0;
  line-height: 1.25;
  color: var(--gray);
}

@media screen and (max-width: 1350px) {
  .popular_item_title {
    font-size: 1.5rem;
  }
  .item_inner, .item_front{
        min-height: 380px;
  }
  .item_front{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1199px) {
  .popular_container {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .popular_items > a:last-child {
    display: none;
  }
  .popular_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .popular_items {
    display: flex;
    margin: 48px 0;
    flex-direction: column;
    gap: 8px;
  }
  .popular_container h2 {
    width: 70%;
    margin: 0 auto;
  }
  .popular_items > a:last-child {
    display: block;
  }
  .popular_container {
    padding: 48px 14px;
  }
  .fake_btn {
    width: 60px;
    height: 60px;
    font-size: 0.75rem;
  }
  .popular_item_title {
    font-size: 1.63rem;
  }
}


/* === why_us.css === */
.why_us {
  padding: 60px 0;
}
.fly_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.fly_block_content {
  max-width: 400px;
}
.fly_block_content h2 {
  text-align: left;
  margin: 0 0 48px;
}
.fly_block_content p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  font-family: "Cera Pro";
}
.whySwiper {
  height: 100vh;
}
.why_us_container {
  /* width: 90%; */
  margin: 0 auto;
}
.fly_img img{
  display: block;
  width: 90%;
  max-height: 80vh;
  object-fit: contain;
}
.fly_img .img_mobile {
  display: none;
}

.why_us { position: relative; overflow: hidden; }
.why_us_container { display: flex; flex-wrap: nowrap; gap: 60px; box-sizing: border-box;}
.fly_block {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.why_us {
  position: relative;
}

.whySwiper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.why_us_container {
  display: flex;
  height: 100vh;
}

.why_us_container .swiper-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
}
 

@media screen and (min-width: 1520px) {
  .fly_block_content p {
    font-size: 1.5rem;
  }
  .fly_block_content {
    max-width: 470px;
  }
}
@media screen and (max-width: 992px) {
  .fly_block {
    gap: 30px;
  }
  .why_us_container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .why_us {
    padding: 40px 0;
  }
  /* .fly_img img {
    display: none;
  } */
  /* .fly_img .img_mobile {
    display: block;
    width: 323px;
  } */
 .fly_block:not(:first-child){
  position: relative;
  left: -16%;
 }
  .fly_block {
    position: relative;
    display: flex;
    gap: 22px;
    flex-direction: column;
    padding-top: 80px;
  }  
  .fly_img img{
    margin: 0 auto;
    width: 80%;
    max-height: 50vh;
    object-fit: contain;
  }
  .fly_block{
    justify-content: flex-start;
  }
  .why_us {
    overflow-x: hidden;
  }
  .fly_block_content {
    text-align: center;
    max-width: 284px;
  }
  .fly_block_content p {
    font-size: 1rem;
  }
  .fly_block_content h2 {
    text-align: center;
    margin: 0 0 32px;
  }
}


/* === advantages.css === */
.advantages {
  padding: 60px 0;
}
.advantages_container {
  padding: 120px 40px 180px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  color: var(--white);
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
}
.num_item span {
  color: var(--yellow);
  font-size: 4.13rem;
  leading-trim: NONE;
  line-height: 107%;
  letter-spacing: 0%;
  text-align: center;
  display: block;
  margin: 0 0 16px;
}
.nums_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  justify-items: center;
  margin-top: 88px;
}
.nums_items p {
  font-size: 1.12rem;
}
.num_item {
  max-width: 164px;
}
@media screen and (min-width: 1520px) {
  .num_item {
    max-width: 200px;
  }
  .num_item span {
    font-size: 5rem;
  }
  .nums_items p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  .num_item span {
    font-size: 3rem;
  }
  .nums_items p {
    font-size: 0.87rem;
  }
  .num_item {
    max-width: 130px;
  }
  .advantages_container {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 767px) {
  .nums_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 4px;
    margin: 0;
  }
  .advantages_container {
    padding: 32px 16px 56px;
  }
  .advantages_container h2 {
    display: none;
  }
  .advantages {
    padding: 40px 0;
  }
}


/* === map.css === */
.map_section{
    padding: 60px 0;
}
.map_box iframe {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
}
.map_box {
  overflow: hidden;
  border-radius: 30px;
  margin: 48px 0;
} 
.filter_category{
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 48px;
}
.filter_category li{
    padding: 11px 18px 14px;
    font-size: .87rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s linear;
    background: var(--light-gray);
}
.filter_category li:hover{
    opacity: .7;
}
.filter_category li.active{
    background: var(--yellow);
}
.filter_result {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.filter_result_items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:12px 52px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.filter_result_items li{
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    max-width: 70%;
}
.filter_result_items p{
    line-height: 1.2;
}
.filter_result_items p span{
    font-weight: 700;
}
.store_item_link {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
    color: inherit;
    text-decoration: none;
}
.store_item_link:hover .map_sercle {
    background: var(--gray);
    color: var(--yellow);
}
.map_sercle{
    width: 51px;
    min-width: 51px;
    height: 51px;
    border-radius: 50%;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    background: var(--yellow);
    transition: all .3s linear;
}

@media screen and (max-width: 767px) {
    .filter_result_items{
        grid-template-columns: 1fr;
    }
    .filter_result_items li{
        max-width: 100%;
    }
    .map_box{
        margin: 32px 0;
    }
    .map_section{
        padding: 40px 0;
    }
    .filter_map{
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* === product.css === */
.product_section {
  padding-top: 60px;
}
.product_container {
  padding: 52px 104px 90px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  justify-items: center;
  border-radius: 40px;
  color: var(--white);
  font-family: "NAMU";
  gap: 50px;
  font-weight: 300;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product_content h2 {
  text-align: left;
  margin: 38px 0 24px;
}
.product_content p {
  max-width: 523px;
  font-size: 1.25rem;
  margin: 0 0 48px;
}
.mobile_sub_title {
  display: none;
}
@media screen and (max-width: 1199px) {
  .product_container {
    padding: 60px 30px;
  }
  .product_img img {
    display: block;
    width: 100%;
  }
  .logo_zol {
    width: 150px;
    display: block;
  }
  .logo_zol img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .product_content p {
    display: none;
  }
  .mobile_sub_title {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .product_content h2 {
    margin: 16px 0 4px;
  }
  .product_container {
    grid-template-columns: 1.3fr 1fr;
    justify-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .product_container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 48px;
    padding-bottom: 160px;
  }
  .product_img {
    max-width: 400px;
    margin: 0 auto;
  }
  .product_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--yellow);
  }
  .product_container .btn_primery {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 55px;
  }
}


/* === footer.css === */
footer {
  padding: 48px 84px 37px;
}
.footer_nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid #595c5f52;
}
.footer_navigate {
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer_navigate a {
  font-size: 1.12rem;
  color: var(--gray);
}
.social_items {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social_items a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  transition: all 0.3s linear;
}
.social_items a:hover {
  background: var(--gray);
}
.social_items a:hover path {
  fill: var(--yellow);
}
.footer_bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.87rem;
}

@media screen and (max-width: 1199px) {
  footer {
    padding: 48px 0 32px;
  }
  footer .logo {
    width: 185px;
  }
}
@media screen and (max-width: 992px) {
  .footer_nav {
    display: flex;
    gap: 32px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .social_items {
    margin-top: 16px;
  }
  .footer_navigate{
    flex-direction: column;
    gap: 16px;
  }
  .footer_navigate a{
    font-size: 1rem;
  }
}
@media screen and (max-width: 575px) {
    .footer_nav{
        border: none;
    }
    .footer_bottom{
        flex-direction: column-reverse;
        gap: 8px;
        padding: 0;
    }
}

/* === product_page.css === */
.product_page{
    padding: 64px 0 120px;
      background: #595c5f10;
}
.product_carts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.filter_product li{
    padding: 11px 14px 14px ;
    border-radius: 50px;
    cursor: pointer;
    background: #E6E7E7;
    font-size: .87rem;
    transition: all .3s linear;
}
.filter_product li:hover{
background: #d9dada;
}
.filter_product{
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0 46px;
}
.product_page .btn_primery{
    margin: 64px auto 0; 
}
.filter_product .active{
    background: var(--yellow);
}
@media screen and (min-width: 1520px) {
    .product_carts{ 
    grid-template-columns: repeat(4, 1fr); 
}
}
@media screen and (max-width: 1024px) {
    .product_page{
        padding-top: 50px;
    }
}
@media screen and (max-width: 992px){
  .product_carts{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  } 
  .product_page .btn_primery{
    margin: 48px auto 0 ;
  }
} 
@media screen and (max-width: 767px){
 .product_page{
        padding: 32px 0 100px;
    }
    .filter_product{
        margin: 32px 0 82px;
    }
    .product_carts{
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 575px){
 .product_carts{
    grid-template-columns:  1fr; 
  }
}

/* === about_page.css === */
.about_page {
  padding: 55px 0 100px;
  font-family: "NAMU";
  leading-trim: NONE;
  background: #595c5f10;
}
.cooperation_block {
  text-align: center;
}
.cooperation_block > p {
  text-align: center;
  margin: 32px 0 48px;
}
.cooperation_block input {
  border-radius: 14px;
  outline: none;
  border: none;
  background: #f6f7f7;
  padding: 15px 16px 20px;
  display: block;
  margin: 0 0 16px;
  font-family: "NAMU";
  font-weight: 300;
  font-size: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}
.cooperation_block form {
  padding: 32px;
  border-radius: 40px;
  background: #fff;
  max-width: 496px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}
form .btn_primery {
  font-size: 1.25rem;
  max-width: 100%;
  margin-top: 24px;
  width: 100%;
}
.more_info_title {
  font-weight: 300;
  font-style: 1750;
  font-size: 1.74rem;
  line-height: 107%;
  margin: 0 0 32px;
}
.about_page_more {
  text-align: center;
  margin: 130px 0 0;
}
.about_page_more a {
  font-size: 1.5rem;
  color: var(--gray);
  display: block;
  width: max-content;
  margin: 0 auto 16px;
  transition: all 0.3s linear;
}
.about_page_more a:hover {
  color: #000;
}
.about_page_more li {
  margin: 0 0 32px;
}
.about_page_more p {
  font-family: "Cera Pro";
  font-weight: 500;
  font-size: 1rem;
  line-height: 107%;
}
.cooperation_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cooperation_item {
  padding: 32px 55px 48px;
  background: var(--gray);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}
.cooperation_item::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  top: 20px;
  left: 20px;
}
.cooperation_item_title {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 2.63rem;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--yellow);
  margin: 0 0 24px;
}
.cooperation_item a{
  margin-top: auto;
}
.cooperation_item p{
  font-size: 1.12rem;
  font-family: "Cera Pro";
font-weight: 300;
font-style: Light; 
line-height: 140%; 
  color: var(--white);
  margin: 0 0 32px;
}
.for_container{
  margin-top: 16px;
  padding: 48px 48px 48px 56px;
  border-radius: 40px;
  background: var(--yellow);
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
.for_container button{
  background: var(--gray);
  color: var(--white);
  cursor: pointer;
}
.for_container>div:first-child{
  max-width: 515px;
  text-align: left;
}
.for_container h3{
   font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 2.63rem;
  margin: 0 0 32px;
}
.form_title{
  margin: 0 0 12px;
  color: #595c5f76;
  font-size: 1rem;
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .cooperation_item{
    padding: 25px 45px 25px;
  }
  .about_page{
    padding-top: 50px;
  }
  .for_container{
    padding: 60px 30px;
  }
  .cooperation_item_title{
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .cooperation_item p{
    font-size: 1rem;
    margin: 0 0 16px;
  }
  .about_page_more{
    margin: 56px 0;
  }
}
@media screen and (max-width: 767px) {
  .cooperation_items{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about_page{
    padding-top: 32px;
  }
  .cooperation_block > p{
    margin: 24px auto 32px;
    width: 90%;
  }
      .cooperation_item {
        padding: 32px 48px;
        border-radius: 30px;
    }
    .cooperation_item::before{
      width: 16px;
      height: 16px;
    }
    .more_info_title{
      font-size: 1.6rem;
      width: 90%;
      max-width: 400px;
      margin: 0 auto 24px;
    }
    .about_page_more p{
      font-size: .87rem;
    }
    .about_page_more a{
      font-size: 1.4rem;
    }
    .about_page{
      padding-bottom: 0;
    }
    .about_page_more{
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 0;
      padding-bottom: 24px;
    }
    .for_container h3{
      font-size: 2rem;
    }
    .for_container>div:first-child{
      text-align: center;
    }
    .for_container{
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding: 32px 16px 16px;
    }
}

/* CF7 */
.wpcf7 form {
    padding: 32px;
    border-radius: 40px;
    background: #fff;
    max-width: 496px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin: 0 0 16px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 select {
    border-radius: 14px;
    outline: none;
    border: none;
    background: #f6f7f7;
    padding: 15px 16px 20px;
    display: block;
    font-size: 1.25rem;
    width: 100%;
    box-sizing: border-box;
    font-family: "NAMU";
    font-weight: 300;
    margin: 0;
}
.coop-dropdown {
    position: relative;
    margin: 0 0 16px;
    user-select: none;
}
.coop-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 14px;
    background: #f6f7f7;
    padding: 15px 16px 20px;
    font-family: "NAMU";
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--gray);
    cursor: pointer;
    box-sizing: border-box;
}
.coop-dropdown__arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--gray);
}
.coop-dropdown.is-open .coop-dropdown__arrow {
    transform: rotate(180deg);
}
.coop-dropdown__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(89,92,95,0.12);
    overflow: hidden;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}
.coop-dropdown.is-open .coop-dropdown__list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.coop-dropdown__item {
    padding: 12px 16px;
    font-family: "NAMU";
    font-weight: 300;
    font-size: 1.12rem;
    color: var(--gray);
    cursor: pointer;
    transition: background 0.15s ease;
}
.coop-dropdown__item:hover,
.coop-dropdown__item.is-active {
    background: #f6f7f7;
}
.coop-dropdown__item.is-active {
    color: #000;
}
.coop-dropdown--error .coop-dropdown__trigger {
    outline: 2px solid #e74c3c;
}
.wpcf7 input[readonly] {
    cursor: default;
}
.wpcf7 .wpcf7-submit {
    font-family: "NAMU";
    font-weight: 300;
    font-size: 1.25rem;
    height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 22px 3px;
    background: var(--gray);
    color: var(--white);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s linear;
    cursor: pointer;
    margin-top: 24px;
    box-sizing: border-box;
}
.wpcf7 .wpcf7-submit:hover {
    color: var(--gray);
    border-color: var(--gray);
    background: transparent;
}
.wpcf7 .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: .9rem;
    border: none;
    text-align: center;
}
.wpcf7 .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    color: #2e7d32;
}
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked,
.wpcf7 .wpcf7-validation-errors {
    background: #fce4ec;
    color: #c62828;
}
.wpcf7 .wpcf7-not-valid-tip {
    font-size: .8rem;
    color: #c62828;
    margin-top: 4px;
    display: block;
}

/* === news.css === */
.news_section {
  background: #595c5f10;
  padding: 55px 0 120px;
}
.news_section h2 {
  margin: 0 0 48px;
}
.news_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
}
.news_item {
  color: var(--gray);
}
.news_img {
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 392 / 267;
}
.news_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 1000px;
  max-height: 1000px;
  transition: all 0.3s linear;
}
.date {
  font-family: "Cera Pro";
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  margin: 16px 0 8px;
  leading-trim: NONE;
  line-height: 140%;
}
.news_title {
  font-size: 1.12rem;
  font-weight: 400;
  transition: all 0.3s linear;
  margin: 0 0 16px;
}
.news_item:hover .news_title {
  color: #000;
}
.news_item:hover img {
  transform: scale(1.1);
}
.news_content p {
  font-family: "Cera Pro";
  font-weight: 200;
  font-style: Light;
  font-size: 1rem;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_container > a {
  margin: 64px auto 0;
  display: flex;
  max-width: max-content;
}


@media screen and (max-width: 1024px) {
   .news_section {
    padding-top: 50px;
  }
  .news_section h2{
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .news_section {
    padding: 32px 0 100px;
  }
  .news_section .container{
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* === article.css === */
.article_section {
  padding: 55px 0 120px;
  background: #595c5f10;
}

.back_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
}
.back_btn span {
  font-size: 1.12rem;
  color: var(--gray);
}
.article_container {
  max-width: 1040px;
  margin: 0 auto 160px;
}
.article_top {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 472px;
  margin: 0 0 56px;
}
.article_top img {
  display: block;
  max-width: 10000px;
  max-height: 10000px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.article_top::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(89, 92, 95, 0.4),
    rgba(89, 92, 95, 0.4)
  );
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.article_top_content {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 780px;
  color: var(--white);
  z-index: 3;
}
.block li {
  font-family: "Cera Pro";
  font-weight: 500;
  font-style: Medium;
  font-size: 1rem; 
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
}
.block ul {
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 24px;
}
.block ol{
    margin-left: 22px;
  list-style: decimal;
    margin-bottom: 24px;
}
.article_section h4 {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 28px;
  line-height: 107%;
  margin: 0 0 32px;
}
.block p {
  font-family: "Cera Pro";
  font-weight: 500;
  font-style: Medium;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0%;
  margin: 0 0 24px;
}
.block {
  margin-bottom: 0 0 24px;
}
.more_articles h3 {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 2.63rem;
  line-height: 107%;
  margin: 0 0 48px;
  letter-spacing: 0%;
}
.article_time {
  font-family: " Cera Pro";
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  line-height: 140%;
  margin: 0 0 9px;
}
@media screen and (min-width: 1520px) {
  .article_title {
    font-size: 4rem;
  }
  .more_articles .news_items {
    grid-template-columns: repeat(3, 1fr);
  }
  .article_container {
    max-width: 1340px;
  }
  .article_top {
    height: 550px;
  }
}
@media screen and (max-width: 1024px) {
  .article_section {
    padding-top: 50px;
  }
  .article_container {
    margin-bottom: 100px;
  }
  .article_top {
    margin: 0 0 48px;
  }
}
@media screen and (max-width: 767px) {
  .article_section {
    padding: 32px 0 100px;
  }
  .back_btn {
    margin-left: 15px;
  }
  .back_btn span {
    font-size: 1rem;
  }
  .more_articles h3 {
    font-size: 2rem;
    margin: 0 0 32px;
  }
  .article_top_content {
    left: 25px;
    width: calc(100% - 50px);
  }
  .article_section h4 {
    font-size: 26px;
  }
  .article_top {
    height: 427px;
  }
  .news_items {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .article_top_content h1 {
    font-size: 2.37rem;
  }
  .article_container .block,
  .article_section .more_articles {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 575px) {
  .news_title {
    font-size: 1rem;
  }
}


/* === vacancies.css === */
.vacancies_hero {
  padding: 32px 80px 60px 84px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  color: var(--white);
  position: relative;
  box-sizing: border-box;
}
.sub_title {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 18px;
  line-height: 107%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  position: absolute;
  top: 32px;
  left: 84px;
}
.sub_title::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--yellow);
}
.vacancies_hero h2 span {
  color: var(--yellow);
}
.vacancies_hero h2 {
  margin: 0 0 32px;
  text-align: left;
}
.vacancies_hero p {
  font-family: "Cera Pro";
  font-weight: 500;
  font-style: Medium;
  font-size: 1.12rem;
  max-width: 650px;
  line-height: 140%;
}
.vacancies_hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 0 0 16px;
}
.vacancies_hero img {
  display: block;
  width: 100%;
}
.vacancies_items {
  padding: 48px 64px 56px;
  border-radius: 40px;
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 120px;
}
.vacancies_item::before {
  content: "";
  display: block;
  min-width: 29px;
  width: 29px;
  height: 29px;
  background: url('data:image/svg+xml,<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14.5" cy="14.5" r="14.5" fill="%23595C5F"/><path d="M12.5496 20.0001L6.84961 14.3001L8.27461 12.8751L12.5496 17.1501L21.7246 7.9751L23.1496 9.4001L12.5496 20.0001Z" fill="%23FFEB58"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.vacancies_item {
  position: relative;
  padding-left: 45px;
}
.vacancies_item h4 {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.5rem;
  line-height: 107%;
  margin: 0 0 16px;
}
.vacancies_item p {
  font-family: "Cera Pro";
  font-weight: 300;
  font-style: Light;
  font-size: 1rem;
  max-width: 226px;
  line-height: 140%;
}
.more_vacancies {
  display: flex;
  justify-content: center;
  margin: 54px 0 120px;
}
.more_vacancies a {
  background: var(--gray);
  color: var(--white);
}
.vacancies_hero_img {
  max-width: 400px;
}
@media screen and (min-width: 1520px) {
  .vacancies_item p {
    font-size: 1.3rem;
    max-width: 326px;
  }
  .vacancies_item h4 {
    font-size: 2rem;
  }
  .vacancies_item::before {
    top: 3px;
  }
  .vacancies_hero p {
    font-size: 1.4rem;
    max-width: 700px;
  }
  .vacancies_hero_img {
    max-width: 500px;
  }
}
@media screen and (max-width: 1199px) {
  .vacancies_hero {
    padding: 60px 30px;
  }
  .sub_title {
    left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .vacancies_items {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .vacancies_hero h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .vacancies_hero {
    display: flex;
    flex-direction: column;
    padding: 32px 25px;
  }
  .sub_title {
    position: static;
    margin: 0 0 24px;
    font-size: 1rem;
  }
  .vacancies_items {
    padding: 30px 25px;
    gap: 32px;
  }
  .vacancies_hero p{
    font-size: 1rem;
  }
  .vacancies_hero h2 {
    font-size: 2.4rem;
  }
  .vacancies_hero{
    gap: 0;
  }
}
@media screen and (max-width: 575px) {
  .vacancies_items {
    grid-template-columns: 1fr;
  }
  .vacancies_item h4 {
    font-size: 1.4rem;
  }
}


/* === about_us.css === */
.hero_about_us_container {
  padding: 140px 84px 154px;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.hero_about_us_container h2 {
  width: 70%;
  text-align: left;
}
.fly_sercle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--yellow);
  text-align: center;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.12rem;
  line-height: 91%;
  position: absolute;
  top: 27px;
  right: 320px;
  z-index: 2;
}
.big_sercle {
  background: var(--white);
  clip-path: circle(50% at 50% 0);
  width: 440px;
  height: 320px;
  color: var(--gray);
  font-family: "NAMU";
  font-weight: 300;
  padding: 12px 40px 40px;
  font-style: 1750;
  box-sizing: border-box;
  font-size: 3rem;
  line-height: 91%;
  text-align: center;
  position: absolute;
  top: 0;
  right: -40px;
}
.about_us_yellow_container {
  padding: 43px 84px 48px;
  border-radius: 40px;
  background: var(--yellow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about_us_yellow_container h3 {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 2.63rem;
  line-height: 120%;
  max-width: 590px;
}
.location .location_city {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.75rem;
  line-height: 107%;
  margin: 0 0 16px;
}
.location{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.location p{
    font-size: 1.12rem;
}
.location li{
    padding-left: 20px;
    position: relative;
}
.location li::before{
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    position: absolute;
    left: 0;
    top: 12px;

}
@media screen and (min-width: 1520px) {
    .hero_about_us_container h2{
        font-size: 4rem;
        max-width: 1000px;
    }
}
@media screen and (max-width: 1199px) {
    .big_sercle{
        font-size: 2rem;
        width: 373px;
    height: 220px;
    }
    .fly_sercle{
        right: 250px;
        width: 100px;
        height: 100px;
        top: 40px;
        font-size: 1rem;
    }
    .about_us_yellow_container h3{
        font-size: 2rem;
    }
    .about_us_yellow_container{
        padding: 30px;
    }
    .hero_about_us_container h2{
        width: 80%;
    }
    .hero_about_us_container{
        padding: 150px 30px;
    }
}
@media screen and (max-width: 767px) {
    .hero_about_us_container{
        padding: 32px 25px 143px;
    }
    .big_sercle{
        clip-path: circle(50% at 51% 100%);
        display: flex;
        font-size: 1.75rem;
        padding: 30px 50px 20px;
        width: 320px;
        top: auto;
        height: 176px;
         align-items: flex-end;
         bottom: -1px;
    }
    .fly_sercle{
        right: 0;
        right: 202px;
        bottom: 2px;
        top: auto;
        width: 79px;
        height: 79px;
        font-size: .69rem;
    }
    .about_us_yellow_container{
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 24px 25px 48px;
    }
    .location{
        gap: 24px;
    }
    .location li::before{
        width: 10px;
        height: 10px;
    }
    .location li{
        padding-left: 16px;
    }
    .location .location_city{
        font-size: 1.6rem;
    }
    .location p{
        font-size: 1rem;
        max-width: 240px;
    }
}

/* === quality.css === */
.quality_container {
  margin: 40px 0 16px;
  padding: 56px 0px 55px;
  color: var(--white);
  position: relative;
  margin-bottom: 16px;
  padding: 140px 84px 154px;
  background: url(../images/bg.jpg) center center / cover no-repeat;
  background-position: center center;
  border-radius: 40px;
  overflow: hidden;
}
.quality_fly_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 437px;
  height: 218px;
  object-fit: contain;
  object-position: top right;
}
.quality_container h2 {
  text-align: left;
  margin: 0 0 32px;
}
.quality_container h2 span {
  color: var(--yellow);
}
.quality_content > p {
  font-family: "Cera Pro";
  font-weight: 500;
  font-style: Medium;
  font-size: 1.12rem;
  line-height: 140%;
  letter-spacing: 0%;
  margin: 0 0 48px;
  width: 100%;
  max-width: 850px;
}
.quality_content h4 {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.5rem;
  line-height: 120%;
  margin: 0 0 32px;
  max-width: 850px;
}
.quality_items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quality_title {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.12rem;
  color: var(--yellow);
  line-height: 107%;
  margin: 0 0 16px;
}
.quality_item p {
  font-family: "Cera Pro";
  font-weight: 300;
  font-style: Light;
  font-size: 1.12rem;
  leading-trim: NONE;
  line-height: 140%;
}
.quality_items > li:first-child {
  width: 60%;
}
.quality_items > li:nth-child(2) {
  width: 55%;
}
.quality_items > li:nth-child(3) {
  width: 50%;
}

.img_quality img {
  display: block;
  width: 100%;
}
.img_quality {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: 800px;
}
.quality_list_items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.quality_list_items li{
    padding: 50px 84px;
    background: var(--yellow);
    border-radius: 40px;
    position: relative;
    color: var(--gray);
}
.quality_list_items li::before{
    content: "";
    display: block;
    width: 29px;
    height: 29px;
    background: url('data:image/svg+xml,<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14.5" cy="14.5" r="14.5" fill="%23595C5F"/><path d="M12.5496 20.0001L6.84961 14.3001L8.27461 12.8751L12.5496 17.1501L21.7246 7.9751L23.1496 9.4001L12.5496 20.0001Z" fill="%23FFEB58"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 24px;
    left: 32px;
}
.quality_list_items li span{
    max-width: 270px;
    display: block;
    font-size: 1.5rem;
       color: var(--gray);
}
@media screen and (min-width: 1520px) {
  .quality_items > li:first-child {
    width: 55%;
  }
  .quality_items > li:nth-child(2) {
    width: 49%;
  }
  .quality_items > li:nth-child(3) {
    width: 45%;
  }
  .quality_list_items li span{
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .quality_container {
    margin-top: 0;
    padding: 100px 30px;
  }
  .quality_fly_img{
    width: 35%;
  }
  .quality_list_items li{
    padding: 50px 20px 50px 70px;
  }
}
@media screen and (max-width: 992px){
.quality_items>li:first-child{
    width: 100%;
}
.quality_list_items li::before{
    width: 20px;
    height: 20px;
}
.quality_list_items li{
    padding: 40px 20px 40px 60px;
  }
}
@media screen and (max-width: 767px){
    .quality_container{
        padding: 82px 24px 0 32px;
    }
    .quality_container h2 br{
        display: none;
    }
    .quality_container h2{
        margin: 0 0 24px;
    }
    .quality_container h2 span{
        font-size: 1.5rem;
        display: block;
        margin-top: 14px;
    }
    .quality_items>li:nth-child(2), .quality_items>li:nth-child(3){
        width: 100%;
    }
    .quality_fly_img{
        width: 200px;
    }
    .img_quality{ 
        position: relative;
        right: 64px;
        width: calc(100% + 87px); 
    }
    .quality_content > p{
        font-size: 1rem;
        margin: 0 0 32px;
    }
    .quality_title, .quality_item p{
        font-size: 1rem;
    }
    .quality_items{
       gap: 25px;
       margin-bottom: 30px;
    }
    .quality_list_items{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .quality_list_items li{
    padding: 50px 30px 47px 72px;
    border-radius: 30px;
  }
  .quality_list_items li span{
    font-size: 1.37rem;
  }
  .quality_container{
    margin: 0 0 8px;
  }
}

/* === quality_shop.css === */
.quality_shop{
    padding: 97px 123px 103px 84px;
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 50px;
    justify-items: end;
    justify-content: stretch;
    margin-top: 16px;
}
.quality_shop h2{
    text-align: left;
    font-size: 2.63rem;
}
.quality_shop a{
    margin-top: 20px;
}
@media screen and (min-width: 1520px) {
    .quality_shop h2{
    text-align: left;
    font-size: 3.5rem;
}
}
@media screen and (max-width: 1199px) {
    .quality_shop{
          padding: 100px 30px;  
    }

}
@media screen and (max-width: 992px) {
.quality_shop{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 56px 21px 64px;
    gap: 32px;
    margin-top: 8px;
}
.quality_shop h2{
    text-align: center;
    font-size: 2rem;
}
.quality_shop a{
    margin: 0;
}

}

/* === main.css === */

* {
  --white: #fff;
  --gray: #595c5f;
  --light-gray: #E6E7E7;
  --yellow: #ffeb58;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cera Pro";
  font-weight: 300;
  font-style: 1750;
  color: var(--gray);
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

h1,
.title {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 3.88rem;
  leading-trim: NONE;
  line-height: 1.1;
  margin: 0 0 24px;
}

h2 {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 3.5rem;
  leading-trim: "NONE";
  line-height: 107%;
  text-align: center;
}

h3 {
}
.overly{
  overflow: hidden;
}
.btn_primery {
  font-family: "NAMU";
  font-weight: 300;
  font-style: 1750;
  font-size: 1.25rem;
  leading-trim: NONE;
  line-height: 1;
  height: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: max-content;
  padding: 0 22px 3px;
  background: var(--yellow);
  color: var(--gray);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s linear;
  cursor: pointer;
}
.btn_primery:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  background: var(--gray);
}

.swiper-pagination-bullet-active{
    background: var(--gray);
}

@media screen and (min-width: 1520px) {
  h1,
  .title {
    font-size: 5rem;
  }
  .btn_primery {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1199px) {
  h1,
  .title {
    font-size: 2.63rem;
    margin: 0 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .btn_primery {
    font-size: 1rem;
    height: 50px;
    padding: 0 17px;
  }
  h2{
    font-size: 2.38rem;
  }
  .container{
    padding: 0 8px;
  }
}

/* Language Switcher */
.nav_container {
  display: flex;
  align-items: center;
}
.lang_switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}
.lang_item {
  font-family: "NAMU";
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.lang_item:hover {
  opacity: 0.7;
}
.lang_item--active {
  background: var(--yellow);
  color: var(--gray);
  font-weight: 600;
  pointer-events: none;
}
@media screen and (max-width: 820px) {
  .lang_switcher {
    order: -1;
    margin-left: 0;
    margin-right: 20px;
    position: relative;
    z-index: 22;
  }
}
