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


/*custom font*/
@font-face
{
	font-family: GlacialIndifferenceBold;
	src: url(../fonts/GlacialIndifference-Bold.otf);
}
body
{
    font-family: "Poppins";
    min-height: 100vh;
    width: 100%;
}
a
{
    color: auto;
    text-decoration: none;
}
.coming-soon
{
    background-image: url(../images/background/bg.png);
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.coming-soon::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: linear-gradient(to right, rgb(0,238, 172),rgb(0,255, 179) );
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    z-index: 10;

}
.coming-soon::after
{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(33, 33, 33);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 10;


}
.coming-soon-overlay
{
    background-image: url(../images/background/bg-layer.png);
    min-height: 100vh;
    width: 100%;
}
.wrapper
{
    width: 92%;
    margin: 0 auto;
    padding: 50px 0;
}

/* nav */

.coming-soon_nav
{
    display: flex;
    justify-content: space-between;
    min-height: 50px;
}
.logo a
{
    font-size: 28px;
    font-family: "GlacialIndifferenceBold";
    color: rgb(27, 27, 27);
    font-weight: bold;
    line-height: 1;
  }
  .logo i
  {
        color: rgb(27, 27, 27);
      font-size: 28px;
      margin-right: 5px;
  }
.nav-end
{
    display: flex;
    height: auto;
}
.nav_icons i
{
    color: rgb(27, 27, 27);
    font-size: 21px;
    margin-right: 20px;
    line-height: 1;
}
.nav_custom
{
    margin-left: 35px;
    display: flex;
}
.nav-ham
{
    width: 28px;
    height: auto;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-right: 35px;
  }
  
  .nav-ham span 
{
    display: block;
    height: 3px;
    width: 100%;
    background-color: rgb(27, 27, 27);
    margin-bottom: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  .nav-ham.open span:nth-child(1) {
    margin-top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  .nav-ham.open span:nth-child(2) {
    opacity: 0;
    margin-left: -60px;
    margin-top: 0;
  }
  
  .nav-ham.open span:nth-child(3)
  {
    margin-top: -18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
.shop-icon
{
    position: relative;
}
.shop-icon img
{
    width: 100%;
}
.cart-count
{
    border-radius: 50%;
    border: solid 2px rgb(255, 255, 255);
    background-color: rgb(238, 51, 100);
    width: 21px;
    height: 21px;
    font-size: 8px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-align: center;
    line-height: 19px;
    position: absolute;
    right: -9px;
    top: -5px;
}
.navham-content
{
    width: 30%;
    height: 100%;
    position: absolute;
    z-index: 20;
    right: 0;
    background-color: rgb(33, 33, 33);
    top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.5s linear;
    color: rgb(255, 255, 255);
}
.navham-content .inner
{
    width: 90%;
    padding: 50px;
}
.navham-content .nav_icons
{
    display: none;
}
.navham-content.active
{
    opacity: 1;
    transform: translateX(0);
}
.navham-content .nav-ham
{
    margin-left: auto;
    margin-top: 35px;
}
.navham-content .nav-ham span
{
    background-color: rgb(255, 255, 255);;
}






.coming-soon-inner
{
    min-height: auto;
    width: 25%;
    text-align: right;
    position: absolute;
    left: 6%;
    bottom: 60px;


}
.coming-soon-title
{
    color: rgb(27, 27, 27);

}
.coming-soon-title span
{
    font-size: 39px;
    display: block;
    position: relative;
    left: -20px;
    top: 60px;
}
.coming-soon-title h1
{
    font-size: 160px;
    font-weight: bold;
    width: fit-content;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.coming-soon-title h1::after
{
    content: "";
    display: block;
    width: -webkit-fill-available;
    height: 13px;
    background-color: rgb(5, 251, 183);
    position: absolute;
    bottom: 25px;
    z-index: -1;
}
#countdown
{
    font-size: 70px;
    color: rgb(27,27,27);

    text-transform: uppercase;
    width: auto;
    display: flex;
    min-height: auto;
    justify-content: space-between;
    text-align: center;
}
#countdown .timer
{
    width: 25%;
    height: auto;
    font-weight: bold;
    line-height: normal;
}
#countdown span
{
    display: block;
    word-break: break-all;
    font-size: 13px;
    font-weight: 500;
    line-height: 0.2;
    width: fit-content;
    margin: 0 auto;
}
#countdown span::after
{
  content: "";
  display: block;
  width: -webkit-fill-available;
  height: 3px;
  background-color: rgb(5, 251, 183);
  margin-top: 4px;
  
}
.shapes-big,.shapes-small
{
    position: absolute;
}
.shapes-big
{
    right: -350px;
    top: -40px;
}
.shapes-big .shape-1
{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-image: linear-gradient(to right, rgb(0,238, 172),rgb(0,255, 179) );
}
.shapes-big .shape-2
{
    box-shadow: 15px 15px 25px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 15px 15px 25px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 15px 15px 25px 0px rgba(0,0,0,0.75);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-image: linear-gradient(to right, rgb(0,238, 172),rgb(0,255, 179) );
    position: relative;
    top: 80px;
    left: -30px;
}
.shapes-small
{
    top: 44px;
    right: -325px;
}
.shapes-small .shape-1
{
    width: 40px;
    height: 40px;
    background-image: linear-gradient(to left, rgb(0,238, 172),rgb(0,255, 179) );
    border-radius: 50%;
    box-shadow: 1px 15px 25px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 15px 25px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 15px 25px 0px rgba(0,0,0,0.75);
    position: relative;
    top: 25px;
    right: -30px;


}
.shapes-small .shape-2
{
    width: 60px;
    height: 60px;
    background-image: linear-gradient(to left, rgb(0,238, 172),rgb(0,255, 179) );
    border-radius: 50%;


}