  @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');

  html{
    overflow-x: hidden;
    width: 100vw;
  }

:root {
  --gold: #D59D58;
  --gold-light: #E6AD6B;
  --gold-shadow: rgba(213, 157, 88, 0.3);
  --gold-shadow-hover: rgba(213, 157, 88, 0.5);
  --black: #000000;
  --white: #ffffff;
  --cream: #eae7de;
  --header-padding: 20px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 4px var(--gold-shadow);
}

.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 2px 2px 0;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .scroll-progress {
    height: 5px;
  }
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--gold-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--gold-shadow-hover);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  
  .strelki img {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
  }
}

/* === COOKIE CONSENT POPUP === */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.4s ease;
}

.cookie-consent.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-consent-text {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.cookie-consent-text a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.cookie-consent-text a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 100px;
}

.cookie-btn.accept {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 2px 8px var(--gold-shadow);
}

.cookie-btn.accept:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--gold-shadow-hover);
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }
  
  .cookie-consent-text {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .cookie-btn {
    width: 100%;
    padding: 12px 24px;
    min-width: auto;
  }
}

@media (min-width: 769px) {
  .cookie-consent {
    left: auto;
    right: 20px;
    max-width: 350px;
  }
}

/* === PRELOADER === */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(213, 157, 88, 0.2);
  border-top: 4px solid var(--gold);
  border-radius: 50%;
  animation: spin 2s linear infinite;
  margin: 0 auto 20px;
}

.preloader-text {
  color: var(--gold);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInText 3s ease-in-out 0.8s forwards;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.8; transform: translateY(0); }
}

@media (max-width: 768px) {
  .preloader-logo {
    width: 100px;
    margin-bottom: 25px;
  }
  
  .loader {
    width: 50px;
    height: 50px;
    border-width: 3px;
    border-top-width: 3px;
  }
  
  .preloader-text {
    font-size: 12px;
  }
}

*{
  margin: 0px;
  padding: 0px;
}

  html{
    scroll-behavior: smooth;
  }

  body{
    margin:0;
      font-family: "Lato", sans-serif;
      overflow-x: hidden;
    color: var(--cream);
  }


  header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: var(--header-padding) 5vw 5px 5vw;
    background: var(--black);
        position: relative;
    z-index: 9;
  }

  .flex_head_ferst{
    display: flex;
    align-items: center;
    gap: 1vw;
  }


  .logo{
    width:129px;
  }

  nav{display:flex;gap:20px}
  nav a{text-decoration:none;color: var(--white);font-size:1vw;transition: var(--transition)}
  nav a:hover{color: var(--gold);transform:scale(1.05)}
      .btn{    background: var(--gold);
    color: var(--black);
    padding: 0.6vw 1.7vw;
    line-height: 1;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8vw;
    text-transform: uppercase;
    transition: var(--transition);
    transform: translateY(0);
    box-shadow: 0 4px 8px var(--gold-shadow);
}

.btn:hover{
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--gold-shadow-hover);
}

    .btn img{
      margin-right: 10px;
    }


    .pc_flex_nav{
      display: flex;
      align-items: center;
      gap: 200px;
    }

  /* --- LANGUAGE --- */
  .lang{position:relative;cursor:pointer}
  .lang span{font-size:1vw}
  .lang-list{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background: var(--black);
    border:1px solid var(--gold);
    border-radius: var(--border-radius);
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    overflow:hidden;
    min-width:60px;
  }
  .lang-list a{
    display:block;
    padding:8px 16px;
    color: var(--white);
    text-decoration:none;
    font-size:1vw;
    transition: var(--transition);
  }
  .lang-list a:hover{
    background: var(--gold);
    color: var(--black);
  }
  .lang.open .lang-list{display:block}

  /* --- BURGER --- */
  .burger{display:none;flex-direction:column;gap:5px;cursor:pointer}
  .burger span{width:25px;height:2px;background: var(--white)}

  .mobile-menu {
    display: none;
    position: fixed;
    background: var(--black);
    font-size: 18px;
    z-index: 9;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
}
  .mobile-menu.active{display:flex; z-index: 9;}


.slaider{
  position: relative;
}

.strelki{
  position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 42%;
    width: 93%;
    left: 0;
    right: 0;
    margin: auto;
}

.strelki img{
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
}

.strelki img:hover{
  transform: scale(1.1);
}

#closeBtn{
        font-size: 30px;
    background: none;
    border: 0;
    color: var(--gold);
    cursor: pointer;
    position: absolute;
    z-index: 99;
    right: 20px;
    top: 20px;
}

.mob_box{
      width: 100vw;
}

.mob-logo{
  display: block;
    text-align: center;
    margin: auto;
    padding-top: 44px;
    margin-bottom: 51px;
    width: 120px;
    max-width: 120px;

}

    .box_menu nav {
        display: block !important;
    }


.box_menu nav a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    display: block;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.box_menu nav a:hover {
    color: #D59D58;
    transform: scale(1.05);
}


.box_contact{
    margin-top: 112px;
}

  .box_contact  .con_zag {
               font-size: 20px;
        font-weight: 800;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 1.05vw;
        text-align: center;
    }
.box_contact .podzherc {
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* Prevent auto phone number linking and styling on mobile for mobile menu */
.box_contact .podzherc a,
.box_contact .podzherc a:link,
.box_contact .podzherc a:visited,
.box_contact .podzherc a:hover,
.box_contact .podzherc a:active {
  color: #fff !important;
  text-decoration: none !important;
  pointer-events: none;
}


.box_contact .adres {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.box_contact  .social_flex{
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.box_contact .social_flex a {
    transition: all 0.3s ease;
    transform: scale(1);
    display: inline-block;
}

.box_contact .social_flex a:hover {
    transform: scale(1.1);
}


  .section_ferst{
    min-height: 1032px;
    height: 100vh;
    background: url(../img/fon.png);
    background-size: cover;
    position: relative;
        background-position-y: bottom;
    margin-top: -15px;
  }

  .zag{
         font-family: "Oswald", sans-serif;
          font-size: 4.7vw;
          font-weight: 900;
          padding-top: 17vw;
          padding-left: 5vw;
  }

  .since{
         font-family: "Oswald", sans-serif;
          font-size: 2vw;
          font-weight: 600;
          padding-left: 5vw;
          color: #FEFEFE;
          opacity: 0.8;
          margin-top: 10px;
  }

.text{
      padding-left: 5vw;
    font-size: 1.05vw;
    max-width: 32vw;
    color: #FEFEFE;
}

.flex_btn{
    padding-left: 5vw;
    display: flex;
    align-items: cover;
        margin-top: 2vw;
    gap: 1.3vw;
}

.flex_btn a{
    background: #D59D58;
    color: #000;
    padding: 0.8vw 1.7vw;
    line-height: 1;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8vw;
    text-transform: uppercase;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(213, 157, 88, 0.3);
}

.flex_btn a:hover{
    background: #E6AD6B;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(213, 157, 88, 0.5);
}




.flex_mashin {
    display: flex;
    justify-content: space-around;
    align-items: top;
    margin-top: 5vw;
    margin-bottom: 6vw;
    padding-left: 5vw;
    padding-right: 5vw;
    text-align: center;
    gap: 4.5vw;
}

.flex_mashin img{
    height: 6vw;
}

.flex_zag{
color: #020202;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.05vw;
    margin-top: 1.6vw;
    margin-bottom: 1vw;

}


.flex_text{
color: #000000;
font-size: 0.8vw;
}




.calic_left_ygol{
  position: relative;
}

.zag_otstyp_clasic{
    padding-top: 6vw;
    padding-bottom: 2.3vw;
}

.big_zag{
font-family: "Oswald", sans-serif;
    font-size: 2.5vw;
    font-weight: 900;
    color: #020202;
    text-align: center;
    text-transform: uppercase;
}

.line{
    width: 17vw;
    height: 2px;
    background: #D59D58;
    margin: auto;
    margin-top: 2vw;
}


.box_text{
    padding-left: 15vw;
    padding-right: 15vw;
}

.smol_text{
    color: #020202;
    font-size: 1vw;
    margin-bottom: 1.3vw;
    text-align: center;
}

.calic{
position: absolute;
    z-index: -1;
    bottom: -10vw;
    width: 50vw;
    left: 30px;
}


.fon_img{
  background: url(../img/fin.png);
  padding-top: 12vw;
  padding-bottom: 12vw;
  background-size: contain;
}

.flex_box{
     display: flex;
    padding-left: 5vw;
    padding-right: 5vw;
    gap: 1vw;
}


.white{
background: #EAE7DE;
    border-radius: 8px;
        padding: 1vw 1vw 1.7vw;
}


.white img {
    width: 27vw;
}

.box_zag {
    color: #020202;
    font-weight: 800;
    margin-top: 2vw;
    font-size: 1.2vw;
    line-height: 1;
    margin-bottom: 0.5vw;
}

.text_box{
color: #020202;
    font-size: 0.8vw;
}

.box_text2{
    width: 35vw;
    margin: auto;
}

.zag_otstyp_clasic2{
   padding-top: 3vw;
    padding-bottom: 2.3vw;
}

.pcimg{
  width: 100%;
}

.fon_box img{
  width: 100%;
}

.fon_box{
  position: relative;
}

.slaider_zag{
    position: absolute;
    font-weight: 800;
    font-size: 2vw;
    z-index: 9;
    bottom: 9vw;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.slaid_text{
      position: absolute;
    font-size: 1vw;
    z-index: 9;
    top: 36vw;
    max-width: 43vw;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.slick-dots {
    position: absolute;
    bottom: 40px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 18px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #D59D58;
}

footer{
  background: #020202;
     padding-left: 5vw;
     padding-top: 30px;
     padding-bottom: 30px;

}

footer p{
  font-size: 16px;
  color: #D59D58;
  margin-bottom: 8px;
}

footer a{
  color: #D59D58;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover{
  color: #E6AD6B;
  transform: scale(1.05);
}

.pred_foot{
  margin-top: 40px;
  padding-bottom: 40px;
}

.flex_foot{
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map img{
width: 55vw;
}

.map iframe{
width: 55vw;
height: 35vw;
border-radius: 12px;
}

.logo2{
  width: 13vw;
}

.flex_contact{
  display: flex;
  gap: 4vw;
}

.con_zag{
      font-size: 1.05vw;
    font-weight: 800;
    color: #020202;
    text-transform: uppercase;
    margin-bottom: 1.05vw;
}

.smol_flex{
    display: flex;
    justify-content: space-between;
    color: #000;
    gap: 26px;
    margin-bottom: 12px;
}

.podzherc{
  margin-bottom: 30px;
  color: #000;
}

/* Prevent auto phone number linking and styling on mobile */
.podzherc a,
.podzherc a:link,
.podzherc a:visited,
.podzherc a:hover,
.podzherc a:active {
  color: #000 !important;
  text-decoration: none !important;
  pointer-events: none;
}

.adres{
color: #020202;
    margin-bottom: 20px;
}

.box1{
    background: url(../img/boomstay.png);
  padding-top: 7vw;
  padding-bottom: 7vw;
  background-size: contain;
      background-position: right;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.box2{
    background: url(../img/boomstay2.png);
  padding-top: 7vw;
  padding-bottom: 7vw;
  background-size: contain;
      background-position: right;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  display: none;
}

.flex_btn_box{
  padding-left: 5vw;
display: flex;
    gap: 1vw;
       align-items: center;
    justify-content: center;
    padding-right: 5vw;
    padding-top: 32px;
}

.flex_btn_box p{
    background: #fff;
    color: #000;
    padding: 0.8vw 1.7vw;
    line-height: 1;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8vw;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.flex_btn_box p:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.flex_btn_box p.activ{
  background: #D59D58;
    color: #000;
}

.flex_calian_box{
    display: flex;
    flex-wrap: wrap;
    padding-left: 5vw;
    margin-top: 4vw;
    margin-bottom: 5vw;
    max-width: 58vw;
    gap: 6vw;
}

.culler{
    display: flex;
    width: 21vw;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.culler p{
    font-size: 1.8vw;
    color: #FEFEFE;
    margin-bottom: 1vw;
}

.culler p.name{
color: #D59D58;
white-space: nowrap
}

.liner{
    height: 1px;
    width: 100%;
    background: #fff;
}

.smoling {
    display: flex;
    margin-bottom: 0.5vw;
}

.smoling p{
      width: 10vw;
}

.vat{
font-size: 2vw;
    padding-left: 5vw;
    color: #FEFEFE;
    opacity: 0.6;
}

.legal-age{
font-size: 2vw;
    padding-right: 5vw;
    color: #FEFEFE;
    opacity: 0.6;
    text-align: right;
}

.social{
position: absolute;
    right: 5vw;
    top: 18vw;
}

.social a {
    display: block;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social a:hover {
    transform: scale(1.1);
}

.lineika{
      width: 2px;
    height: 40px;
    background: #d59d58;
    margin-left: 12px;
    margin-top: -6px;
    margin-bottom: -2px;
}

.mb{
  display: none;
}

.slick-slide img.mb{
  display: none;
}

.tii_flex{
  display: flex;
  gap: 80px;
      padding-left: 5vw;
      margin-top: 70px;
}


.smoling2{
  display: flex;
margin-bottom: 12px;
width: 267px;
align-items: flex-end;
    justify-content: space-between;
        gap: 8px;
}


.smoling2 p{
      white-space: nowrap;
}

.smoling_line{
      height: 1px;
    width: 100%;
    background: #fff;
    margin-bottom: 5px;
}

.gyarana{
   padding-left: 5vw;
   margin-top: 60px;
       margin-bottom: 75px;
}


.flex_nin{
  display: flex;
    gap: 40px;
}


.box2{
  display: none;
}


.culler_avenu{
  width: auto;
}

.top_conteiner{
position: absolute;
    top: -32px;
        left: -5vw;
    width: 110vw;
    height: 60px;
}

.boot_conteiner{
position: absolute;
    bottom: -32px;
        left: -5vw;
    width: 110vw;
    height: 60px;
}













  /* --- RESPONSIVE --- */
  @media(max-width:768px){

.lang-list a{
  font-size:14px;
  padding:10px 14px;
}

.tii_flex {
    flex-wrap: wrap;
  }

  .flex_nin {
    flex-wrap: wrap;
  }




    nav,.btn{display:none}
    .burger{display:flex}
    header{justify-content:space-between}

    .flex_foot {
    flex-wrap: wrap;
  }

.slick-next {
    right: -25px;
    display: none;
}

.social {
    display: none;
  }

.mb{
  display: block;
}

.pc{
display: none !important; }
.slick-slide img.mb{
  display: block;
}



.lang span {
    font-size: 13px;
}

.pc_flex_nav {
    display: none;
  }

  .section_ferst {
    min-height: auto;
    height: 100vh;
    background: url(../img/mob_fon.png);
    background-size: cover;
    position: relative;
    background-position-y: bottom;
}
.zag {
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    font-weight: 900;
    padding-top: 20px;
    padding-left: 0;
    text-align: center;
}

.since {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding-left: 0;
    text-align: center;
    color: #FEFEFE;
    opacity: 0.8;
    margin-top: 5px;
}

.logo_sait{
      text-align: center;
    margin: auto;
   padding-top: 23vh;
   width: 150px;
   max-width: 150px;
}

.text {
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 16px;
    max-width: 100%;
    color: #FEFEFE;
    text-align: center;
}
.flex_btn {
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    align-items: center;
            margin-top: 30px;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.box_text {
    padding-left: 5vw;
    padding-right: 5vw;
}


.flex_btn a {
    background: #D59D58;
    color: #000;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(213, 157, 88, 0.3);
}

.flex_btn a:hover{
    background: #E6AD6B;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(213, 157, 88, 0.5);
}



.flex_mashin {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 5vw;
    padding-right: 5vw;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flex_mashin > div {
    margin-bottom: 40px;
}

.flex_mashin img {
    height: 80px;
    margin-bottom: 20px;
}
.flex_zag {
    color: #020202;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}
.flex_text {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
}

.slick-dots {
    position: absolute;
    bottom: 18px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slaider_zag {
        position: absolute;
        font-weight: 800;
        font-size: 20px;
        z-index: 9;
        top: 273px;
        bottom: auto;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
}
    .slaid_text {
        position: absolute;
        font-size: 14px;
        z-index: 9;
        top: 308px;
        max-width: 90%;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }

    .slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 11px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.calic {
    display: none;
    position: absolute;
    z-index: -1;
    bottom: -10vw;
    width: 50vw;
}
.big_zag {
          font-family: "Oswald", sans-serif;
        font-size: 32px;
        font-weight: 900;
        color: #020202;
        text-align: center;
        text-transform: uppercase;
        max-width: 326px;
        margin: auto;
}
.line {
    width: 70%;
    height: 2px;
    background: #D59D58;
    margin: auto;
    margin-top: 2vw;
}

.smol_text {
    color: #020202;
    font-size: 16px;
   margin-bottom: 20px;
    text-align: center;
}

.box_text2 {
    width: 90vw;
    margin: auto;
}

    .white img {
        width: 83vw;
    }
    .flex_box {
        display: flex;
        padding-left: 5vw;
        padding-right: 5vw;
        gap: 40px;
        flex-wrap: wrap;
    }


.fon_img {
    background: url(../img/finm.png);
padding-top: 80px;
        padding-bottom: 80px;
    background-size: contain;
}

    .slick-next {
        display: none !important;
        right: -25px;
      }

.white {
    background: #EAE7DE;
    border-radius: 8px;
    padding: 15px 15px 28px;
}
.box_zag {
        color: #020202;
        font-weight: 800;
        margin-top: 32px;
        font-size: 24px;
        line-height: 1;
        margin-bottom: 12px;
    }

.text_box {
    color: #020202;
    font-size: 16px;
}

.box1 {
    background: url(../img/box1m.png);
    padding-top: 7vw;
    padding-bottom: 7vw;
    background-size: cover;
    background-position: right;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
      position: relative;
}

.box2 {
    background: url(../img/box1m.png);
    padding-top: 7vw;
    padding-bottom: 7vw;
    background-size: cover;
    background-position: right;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: none;
      position: relative;
}

.flex_btn_box p {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.flex_btn_box p:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.flex_btn_box p.activ {
    background: #D59D58;
    color: #000;
}

.flex_calian_box {
    display: flex;
    flex-wrap: wrap;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 35px;
    margin-bottom: 5vw;
    max-width: 100%;
    gap: 44px;
    flex-wrap: wrap;
}

.culler {
    display: flex;
    width: 90vw;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.culler p {
    font-size: 24px;
  }

  .smoling p {
    width: 46vw;
}

.vat {
    font-size: 24px;
    padding-left: 5vw;
    color: #FEFEFE;
    opacity: 0.6;
            margin-top: 45px;
}

.legal-age {
    font-size: 24px;
    padding-right: 5vw;
    color: #FEFEFE;
    opacity: 0.6;
    margin-top: 45px;
    text-align: right;
}

.logo2 {
    width: 100px;
    max-width: 100px;
    margin: auto;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.con_zag {
    font-size: 20px;
    font-weight: 800;
    color: #020202;
    text-transform: uppercase;
    margin-bottom: 1.05vw;
}

.flex_contact {
    display: flex;
    gap: 4vw;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .con_zag {
        text-align: center;
        margin-bottom: 20px;
      }

    .map img {
        width: 100%;
        margin-bottom: 30px;
    }

    .map iframe {
        width: 100%;
        height: 250px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .social_flex{
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .social_flex a {
      transition: all 0.3s ease;
      transform: scale(1);
      display: inline-block;
    }

    .social_flex a:hover {
      transform: scale(1.1);
    }

    .adres {
    text-align: center;
    color: #020202;
    margin-bottom: 20px;
}




































  }