
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

 

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}


body {
  font-family: var(--body-font);
  font-size: 1.6rem;
   
    justify-content: center;
    font-weight: 400;
    font-style: normal;
  background-image: url('ba.png');
  background-size: cover;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}


.nav__link span{
  font-size: 180%;
  font-weight: 700;
}
.container{
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 3rem;
}


/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color:  #8fbc8f;
  z-index: var(--z-fixed);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  font-size: 110%;
  justify-content: space-between;
  align-items: center;
}


.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 2.0rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--black-color);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: 40%;
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;

}
:root{
    --bg-color: #0c0c0c;
    --text-color: #fff;
    --main-color: #ae8957;

    --big-font: 6.6rem;
    --p-font: 1rem; 
}

html{
    font-size: 62.5%;
}


/* Hero */
.hero{
    background-color: #222;
    overflow: hidden;
    margin-top: 40px;
    
}

.left span{
    color: #fff;
    font-size: 35px;
    text-align: center;
    margin-top: 35px;
}

.center{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 10px 10px;
}

.left{
    flex: 1;
    width: 500px;
    margin: 0px 20px;
    animation: fadeInUp 2s ease;
}

.left h1{
    font-size: 30px;
    margin-bottom: 20px;
    color: #8fbc8f;
}
.left p{
    font-size: 25px;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 7%;
 
  color: #fff;
}

.right{
    flex: 1;
    width: 600px;
    margin: auto;
    animation: fadeInRight 2s ease;
}

.img1{
    width:  100%;
    height: auto;
     border-radius: 10px;
  }

  .img2{
    width:  100%;
    height: auto;
     border-radius: 10px;
  }

  .hero .left .hero-btn{
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    margin-top: 1rem;
    background-color: #8fbc8f;
    color: white;
  }




  @keyframes fadeInUp{
    0%{
         opacity: 0;
         transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}







/* New Arrival */
.title{
    text-align: center;
    margin-bottom: 5rem;
}



.title h1{
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-item{
    position: relative;
    width: 27rem;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.product-thumb img{
    width: 100%;
    height: 31rem;
    object-fit: cover;
    transition: all 500ms linear;
}

.product-info{
    padding: 1rem;
    text-align: center;
}

.product-info span{
    display: inline-block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-info a{
    color: #080808;
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 300ms linear;
}

.product-info a:hover{
    color: #8fbc8f;
}

.product-item .icons{
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.product-item .icons li{
    background-color: #fff;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 2.3rem;
    cursor: pointer;
    transition: 300ms ease-in-out;
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
}

.product-item .icons li:first-child{
    transition-delay: 0.1s;
}


.product-item .icons li:nth-child{
    transition-delay: 0.2s;
}


.product-item .icons li:nth-child{
    transition-delay: 0.3s;
}

.product-item:hover .icons li{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.product-item .icons li:not(:last-child){
    margin-right: 0.5rem;
}

.product-item .icons li:hover{
    background-color: #8fbc8f;
    color: #fff;
}

.product-item .overlay{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: -1;
    width: 100%;
}

.product-item .overlay::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 300ms ease;
}

.product-item:hover .overlay::after{
     visibility: visible;
     opacity: 1;
} 
.product-item:hover .product-thumb img{
    transform: scale(1.1);
}
 
#services{
    padding: 50px 0;
    color: #ababab;
   }
   .sub-title{
    font-size: 40px;
    font-weight: 600;
    color: #222;
    align-items: center;
    justify-content: center;
 
   }
   .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 6px;
    margin-top: 50px;
   }


   .services-list p{
    text-align: center;
    font-size: 100%;
    align-items: center;
    color: #222;
   }
   .services-list h2{
    
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 5px;
    color: #080808;
    border-bottom: 3px solid #fff;
    padding-bottom: 4px;
   }


   .services-list div{
    --color: #333;
    --border-size: 1rem;
    

    
    position: relative;
    padding: 13px;
    color: #222;
    display: grid;
    isolation: isolate;
    margin-left: 30px;
    font-size: 13px;
    border-radius: 20px;
    overflow: hidden;
    
    
   
   }

   .services-list div:hover::before{
    animation-play-state: paused;
   }

   .services-list div::before,
   .services-list div::after{
    content: "";
    position: absolute;
   }

  

   .services-list div::before{
   
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    margin-top: -60px;
    margin-left: 70px;
   border-radius: 20px;
    background-image: conic-gradient(#222 0deg,
    transparent 6000deg,
    transparent 0deg,
    var(--color) 0deg,
    transparent 0deg);
    inset: -50%;
    z-index: -2;
    animation: border 2s linear infinite;
    animation-delay: -1s;
    
    
   }
   @keyframes border {

    to{
        transform: rotateZ(360deg);
      }
   }

   .services-list div::after
   {

    position: absolute;
    
    
    
    background-color: #ababab;
    inset: 4px;
    border-radius: calc(var(--border-size) - var(--inset));
    z-index: -1;
    transition: all 0.35s linear;
 


   }


   .services-list div:hover::after{
    background-color: #8fbc8f;
   }
 
   

 .btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #222;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: background 0.5s;
    
 }
 .btn:hover{
    background: #8fbc8f;
    transform: scale(1.1);

}


  .section-p1 {
    padding: 40px 80px;
   
  }
  
  .section-m1 {
    margin: 40px 0;
  }
 
  footer {
    width: 100%;




    position: absolute;
    bottom: 0;
    background: #25262A;
    color: #fff;
    padding: 50px 20px;
}
.contain{
    margin-top: -200px;
}
.containera {
    width: 90%;
    
  
   
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.containera h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 50px;
    background: #fff;
    margin-top: 20px;
}
.containera li a:hover {
    color: #e701e7;
    transition: all 0.5s ease;
}
.col-1 {
    flex-basis: 30%;
    padding: 10px;
    margin-bottom: 20px;
}
.col-1 img {
    width: 55px;
    margin-bottom: 15px;
}
.col-1 p {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
}
.col-2 {
    flex-basis: 15%;
    padding: 10px;
    margin-bottom: 20px;

}
.col-2 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}
.col-2 ul {
    list-style: none;
}
.col-2 ul li {
    margin-bottom: 10px;
}
.col-2 ul li a {
    color: #fff;
    text-decoration: none;
}
.col-3 {
    flex-basis: 15%;
    padding: 10px;
    margin-bottom: 20px;
}
.col-3 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}
.col-3 ul {
    list-style: none;
}
.col-3 ul li {
    margin-bottom: 10px;
}
.col-3 ul li a {
    color: #fff;
    text-decoration: none;
}
.col-4 {
    flex-basis: 20%;
    padding: 10px;
    margin-bottom: 20px;
}
.col-4 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}
form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
form .far{
    color: #ccc;
    margin-right: 10px;
}
form input{
    background: transparent;
    width: 100%;
    border: none;
    color: #fff;
    outline: none;
}
form button{
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    outline: none;
}
.social-icons{
    margin-top: 50px;
}
.social-icons a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #25262A;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}
.social-icons a:hover{
    background: #e701e7;
    color: #fff;
    transition: all 0.5s ease;
}
.footer-2{
    width: 100%;
    background: #25262A;
    color: #fff;
    padding-top: 20px;
    text-align: center;
}

  @keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
  }



  footer {
    margin-bottom: -100%;
    padding: 1.6rem;
    background-color: #333;
    color: white;
    font-size: 1.2rem;
    text-align: center;

    

}
  

  @media screen and (max-width: 375px){
    .nav__logo{
      font-size: 50%;
    }
    .left span{
      font-size: 120%;
    }
    .left h1{
      font-size: 90%;
    }
    .left p{
      font-size: 90%;
    }
    .hero .left .hero-btn{
      font-size: 50%;
    }
    .img1{
    height: 50vh;
    }
    .img2{
      height: 50vh;
      }
      
  footer {
    margin-bottom: -1150%;
    padding: 1.6rem;
    background-color: #333;
    color: white;
    font-size: 1.2rem;
    text-align: center;

    

}
  }
  
  @media screen and (max-width: 414px){
    .nav__logo{
      font-size: 50%;
    }
    .left span{
      font-size: 120%;
    }
    .left h1{
      font-size: 90%;
    }
    .left p{
      font-size: 90%;
    }
    .hero .left .hero-btn{
      font-size: 70%;
    }
    .img1{
    height: 50vh;
    }
    .img2{
      height: 50vh;
      }
          
  footer {
    margin-bottom: -1000%;
    padding: 1.6rem;
    background-color: #333;
    color: white;
    font-size: 1.2rem;
    text-align: center;

    

}
  }

  
  @media screen and (max-width: 430px){
    .nav__logo{
      font-size: 40%;
    }
    .left span{
      font-size: 120%;
    }
    .left h1{
      font-size: 90%;
    }
    .left p{
      font-size: 90%;
    }
    .hero .left .hero-btn{
      font-size: 70%;
    }
    .img1{
    height: 50vh;
    }
    .img2{
      height: 50vh;
      }
      footer {
        margin-bottom: -955%;
        padding: 1.6rem;
        background-color: #333;
        color: white;
        font-size: 1.2rem;
        text-align: center;
      }
        
  }

   
    
  @media screen and (max-width: 820px){
    .nav__logo{
      font-size: 80%;
    }
    .left span{
      font-size: 150%;
    }
    .left h1{
      font-size: 100%;
    }
    .left p{
      font-size: 100%;
    }
    .hero .left .hero-btn{
      font-size: 100%;
    }
    .img1{
    height: 50vh;
    }
    .img2{
      height: 50vh;
      }
                         
footer {
  margin-bottom: -280%;
  padding: 1.6rem;
  background-color: #333;
  color: white;
  font-size: 1.2rem;
  
}
  }
  

  

 

  
  @media screen and (max-width: 414px){
    .nav__logo{
      font-size: 60%;
    }
    .left span{
      font-size: 120%;
    }
    .left h1{
      font-size: 90%;
    }
    .left p{
      font-size: 70%;
    }
    .hero .left .hero-btn{
      font-size: 70%;
    }
    .img1{
    height: 50vh;
    }
    .img2{
      height: 50vh;
      }
  }



  @media screen and (max-width: 390px){
          
  footer {
    margin-bottom: -1100%;
    padding: 1.6rem;
    background-color: #333;
    color: white;
    font-size: 1.2rem;
    text-align: center;
  }
    
}

 

    
@media screen and (max-width: 912px){
               
footer {
  margin-bottom: -130%;
  padding: 1.6rem;
  background-color: #333;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
}

    
@media screen and (max-width: 540px){
              
footer {
  margin-bottom: -750%;
  padding: 1.6rem;
  background-color: #333;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
}

@media screen and (max-width: 344px){
  .nav__logo{
    font-size: 50%;
  }
  .left span{
    font-size: 120%;
  }
  .left h1{
    font-size: 90%;
  }
  .left p{
    font-size: 90%;
  }
  .hero .left .hero-btn{
    font-size: 70%;
  }
  .img1{
  height: 50vh;
  }
  .img2{
    height: 50vh;
    }

                 
footer {
margin-bottom: -1250%;
padding: 1.6rem;
background-color: #333;
color: white;
font-size: 1.2rem;
text-align: center;
}
}

   
@media screen and (max-width: 853px){
                
footer {
  margin-bottom: -200%;
  padding: 1.6rem;
  background-color: #333;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
}

@media screen and (max-width: 412px){
           
  footer {
    margin-bottom: -1000%;
    padding: 1.6rem;
    background-color: #333;
    color: white;
    font-size: 1.2rem;
    text-align: center;
  }
}


@media screen and (max-width: 1024px){
           
  footer {
    margin-bottom: -180%;
    padding: 1.6rem;
    background-color: #333;
    color: white;
    font-size: 1.2rem;
    text-align: center;
  }
}


@media screen and (max-width: 360px){
  .nav__logo{
    font-size: 50%;
  }
  .left span{
    font-size: 120%;
  }
  .left h1{
    font-size: 90%;
  }
  .left p{
    font-size: 70%;
  }
  .hero .left .hero-btn{
    font-size: 70%;
  }
  .img1{
  height: 50vh;
  }
  .img2{
    height: 50vh;
    }

             
footer {
  margin-bottom: -1200%;
  padding: 1.6rem;
  background-color: #333;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
}

@media screen and (max-width: 375px){
  .nav__logo{
    font-size: 50%;
  }
  .left span{
    font-size: 120%;
  }
  .left h1{
    font-size: 90%;
  }
  .left p{
    font-size: 70%;
  }
  .hero .left .hero-btn{
    font-size: 70%;
  }
  .img1{
  height: 50vh;
  }
  .img2{
    height: 50vh;
    }
               
footer {
margin-bottom: -1150%;
padding: 1.6rem;
background-color: #333;
color: white;
font-size: 1.2rem;
text-align: center;
}
}

 
@media screen and (max-width: 768px){
  .nav__logo{
    font-size: 80%;
  }
  .left span{
    font-size: 150%;
  }
  .left h1{
    font-size: 90%;
  }
  .left p{
    font-size: 90%;
  }
  .hero .left .hero-btn{
    font-size: 100%;
  }
  .img1{
  height: 50vh;
  }
  .img2{
    height: 50vh;
    }
 
}
