/* HEADER */

* {
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
  }
  
  body {
    background-color: #f6d9c0;
  }
  
  
  .banner {
    width: 100%;
    height: 100vh;
    background-image:
      url(./images/allef-vinicius-hxNiXP498UI-unsplash.jpg);
     
    background-size: cover;
    background-position: center;
    
  }
  
      .navbar {
        width: 85%;
        margin: auto;
        padding: 35px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: bold;
        
        
  }
  
  .logo {
    width: 300px;
    cursor: pointer;
    
  }
  
  .navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: white;    text-transform: uppercase;
  }
  
  .navbar ul li::after {
    content: "";
    height: 3px;
    width: 0;
    background: white;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
  }
  
  .navbar ul li:hover::after {
    width: 100%;
  }
  
  .content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
     
    
  }
  
  .content h1 {
    margin-top: 100px;
    font-size: 70px;
    margin-top: 80px;
    font-family: bc-alphapipe, sans-serif;
padding-bottom: 2%;    
    

font-weight: 300;

font-style: normal;
  }
  
 .do {
 width: 100%;
    position: absolute;
    top: 50%;
    text-align: center;
    color: #fff;
     
 }
.de {
margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
   
    padding-right: 12.5%;
    padding-left: 12.5%;
}
  .login-btn {
    width: 300px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 50px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    
  }
  
  
  
  .cover {
    background: white;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    z-index: -1;
    transition: 0.5s;
    font-family: 'Montserrat', sans-serif;
  }
  
  button:hover span {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
  }
  
  button:hover {
    border: none;
    color: black;
    transition: 1s;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* PRODUCTS */
  .product {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color:#f6d9c0;
    padding-top: 5%;


  }
  
  .product-category {
    padding: 0 10vw;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
  }
  
  .product-container {
    padding: 0 10vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  
  .product-container::-webkit-scrollbar {
    display: none;
  }
  
  .product-card {
    flex: 0 0 auto;
    width: 250px;
    
    margin-right: 40px;
  }
  
  .product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  
  
  
  
  
  .pre-btn,
  .nxt-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    z-index: 8;
  }
  
  .pre-btn {
    left: 0;
    transform: rotate(180deg);
  }
  
  .nxt-btn {
    right: 0;
  }
  
  .pre-btn img,
  .nxt-btn img {
    opacity: 0.2;
  }
  
  .pre-btn:hover img,
  .nxt-btn:hover img {
    opacity: 1;
  }
  
  .collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  
  .collection {
    position: relative;
  }
  
  .collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .collection p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 50px;
    text-transform: capitalize;
  }
  
  .collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
  }
  .content h1 {
    font-family: bc-alphapipe, sans-serif;
    color: white;

font-weight: 300;

font-style: normal;
    font-size: 84px;

  }

  .content p {
margin-right:200px;
margin-left: 200px;
  }

  ul li a {
      font-size: 16.1px;
      
  }
  .product {
    margin: 0%;
  }
  .image-grid {
    --gap: 16px;
    --num-cols: 4;
    --row-height: 300px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
  }

  
  .image-grid-col-2 {
    grid-column: span 2;
    
  }
  .image-grid-row-2 {
    grid-row: span 2;
    
  }
  
  .image-grid > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .portfolio {
     background-color: #f6d9c0;
   
     text-align: center;
     padding-bottom: 100px;
     top: 50%;
     padding-top: 50px;
    

    
     
     

  }

  .portfolio-txt {
    text-align: center;
    
    display: flex;
  justify-content: center;
  align-items: center;
 height: 100px;
 font-size: 84px;
  font-family: bc-alphapipe, sans-serif;
  
    
  }
  hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
    background-color: #fff;
  }
  .spacer {
  aspect-ratio: 3/2;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  }
  
  
  custom-shape-divider-top-1651772846 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1651772846 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 110px;
}

.custom-shape-divider-top-1651772846 .shape-fill {
    fill: #0E0E0C;
}
.portfolio-waves{
background-color: #f6d9c0;
}
.custom-shape-divider-bottom-1651774089 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1651774089 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 103px;
}

.custom-shape-divider-bottom-1651774089 .shape-fill {
    fill: #0E0E0C;
}

.bottom-wave {
min-height: 50px;
background-color: #f6d9c0;
position: relative;
 background-size: cover;
    background-position: center;
    padding-top: 7%;
    margin-top: 2%;


}
.login-btn1 {
width: 300px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 50px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid black;
    background: transparent;
    color: black;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.spacer-port {
width: 100%;
min-height: 100px;
background-color: #f6d9c0;
}

.content1 {
 width: 100%;
    position: absolute;
    
   
    transform: translateY(0%);
    transform: translateX(-0%);
    text-align: center;
    color: #fff;
    min-height: 200px;
    padding-top: 2%;

}




.stun-seed {
  padding-left: 12.5%;
     padding-right: 12.5%;

}

.consultation {
width: 100%;
min-height: 670px;
background-color: #0E0E0C;
z-index: 1;
color: #fff;

}

.txt-consultation h1{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  color: #fff;
  text-align: center
  ;
}
.txt-consultation p {

display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  color: #fff;
  text-align: center

  ;
}
.txt-consultation {

 text-align: center;
    
    display: flex;
  justify-content: center;
  align-items: center;
 min-height: 100px;
 font-size: 30px;
  font-family: bc-alphapipe, sans-serif;
    
}
.consultation-p {
padding-left: 12.5%;
padding-right: 12.5%;

}
.consultation-h {
font-family: bc-alphapipe, sans-serif;
font-size:260%;
}

.img-get {
width: 75%;
margin-left: 12.5%;
margin-right: 12.5%;

height: 230px;
margin-top: 3%;
}


.login-btn2 {
  width: 300px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 50px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;

}


  .cover1 {
    background: white;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    z-index: -1;
    transition: 0.5s;
    font-family: 'Montserrat', sans-serif;  
  }

  .info, .info1 {
    display: flex;
    min-height: 300px;
    margin-top: 5%;
  }

  

  
  
  

  .info-box2 {
    height: 400px;
flex: 1;
background-color: black;
justify-content: space-between;
margin-left: 2%;
border-radius: 3%;
color: white;
position: relative;
  }
  .info-box3 {
    height: 500px;
flex: 1;
background-color: aqua;
justify-content: space-between;
margin-left: 2%;
margin-right: 2%;
border-radius: 3%;
color: white;
position: relative;
  }
  
  

 .stack-top {
   z-index: 9;
 }
 
 .info-box1 {
  height: 300px;
flex: 1;
background-color: green;
justify-content: space-between;
margin-left: 2%;
border-radius: 3%;
color: white;
position: relative;

}
 
 
 
 
 .box {
  width: 100%;
  height: 100%;            
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  text-align: center;
  border-radius: 3%;
  padding-top: 50%;
 }
 
 .stack-top:hover {
   opacity: 0;
   transition: 1s;
 }
  

  .boxy {
  transform: translateY(-40%);
  padding-right: 5%;
  padding-left: 5%;
  font-size: 17px;
  
  }

  .boxy2 {
    transform: translateY(-25%);
    padding-right: 5%;
    padding-left: 5%;
    font-size: 17px;
    
    }

  .boxy3 {
    transform: translateY(-15%);
    padding-right: 5%;
    padding-left: 5%;
    font-size: 17px;
    
    }

  .info-title {
    text-align: center;
    font-size: 260%px;
    color: black;
    font-family: bc-alphapipe, sans-serif;
  }


  .img-get img{
    width: 100%;
    height: 100%;
  }
  .nuttts {
    padding-top: 5%;
    background-color: #0E0E0C;
  }
  
  

.info-box4 {

  height: 500px;
  flex: 1;
  background-color: white;
  justify-content: space-between;
  margin-left: 2%;
  margin-right: 2%;
  border-radius: 3%;
  margin-top: -2.5% ;
  color: black;
  position: relative;
}

.info-box5 {
  height: 400px;
  flex: 1;
  background-color: white;
  justify-content: space-between;
  margin-right: 2%;
  border-radius: 3%;
  color: black;
  position: relative;
  margin-top: 5%;
}

.info-box6 {
  height: 300px;
  flex: 1;
  background-color: white;
  justify-content: space-between;
  margin-right: 2%;
  border-radius: 3%;
  color: black;
  position: relative;
  margin-top: 12.5%;
}

.box1 {
  width: 100%;
  height: 100%;            
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  text-align: center;
  border-radius: 3%;
  padding-top: 50%;
}
body {
 
}

.bottom-wave1 {
  min-height: 50px;
background-color: #f6d9c0;
position: relative;
 background-size: cover;
    background-position: center;
    padding-top: 7%;
    margin-top: 20%;
}
.info-title {
font-family: bc-alphapipe, sans-serif;
font-size: 84px;
padding-top: 3%;
}
.consultation-p {
  text-align: center;
}

.title2 {
  transform: translateY(150%);
}

.title3 {
  transform: translateY(150%);
  padding-left: 1%;

}
.title4 {
  transform: translateY(125%);
}
.title5 {
  transform: translateY(50%);
}
.title6 {
  transform: translateY(25%);
}
.content li {
padding-left: 12.5%;
padding-right: 12.5%;
font-size: 20px;

}


.content p {
  font-size: 20px;
}
.consultation-p {
  font-size: 20px;
}