@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

:root{
    --white-light: rgba(255, 255, 255, 0.5);
    --alice-blue: #f8f9fa;
    --carribean-green: #40c9a2;
    --gray: #ededed;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Quicksand', sans-serif;
    background-color: #1c2127;
}
body {
    margin: 0px;
    padding: 0px;
  }
  
  .container .image {
    position: absolute;
    width: 100vw;
    height: 100vh;
  }
  
  .container .menu-icon {
    position: absolute;
    color: white;
    font-size: 30px;
    left: 42px;
    top: 24px;
    cursor: pointer;
    z-index: 1;
  }
  
  .menu-container {
    height: 0%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    background: #1c2127;
    overflow: hidden;
    transition: 1s ease-in-out;
  }
  
  .menu-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .menu-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 70px;
    color: #ccc;
    opacity: 0.3;
    display: block;
    font-family: sans-serif;
    transition: .3s ease-in-out;
  }
  .menu-content a:hover{
    opacity: 1;
    color: #fff;
    transition: 0.5s;
  }
  
  .menu-container .closebtn {
    position: absolute;
    top: 36px;
    right: 48px;
    font-size: 50px;
    color: white;
    z-index: 1;
    cursor: pointer;
  }
  

/* Utility stylings */
.detay_btn{
    color: #fff;
    text-decoration: none;
}

.detay_div{
    background-color: #1b998b;
    border-radius: 10px;
    width: 100%;
    height: 4vh;
    letter-spacing: 1px;
    padding: 5px 0 0 5px;
}

.detay_div:hover{
    transform: scale(1.1);
    transition-duration: 0.5s;
}

img{
    width: 100%;
    display: block;
}
.container{
    width: 88vw;
    margin: 0 auto;
}
.lg-title,
.md-title,
.sm-title{
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 0.6rem 0;
    text-transform: capitalize;
}
.lg-title{
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    padding: 1.3rem 0;
    opacity: 0.9;
}
.md-title{
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
}
.sm-title{
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
}
.text-light{
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    /* opacity: 0.5; */
    margin: 0.4rem 0;
}

/* product section */
.products{
    padding: 3.2rem 0;
}
.products .text-light{
    text-align: center;
    width: 70%;
    margin: 0.9rem auto;
}
.product{
    margin: 2rem;
    position: relative;
}
.product-content{
    background: var(--gray);
    padding: 3rem 0.5rem 2rem 0.5rem;
    cursor: pointer;
}
.product_img_content{
    border-radius: 5%;
}
.product-img{
    background: var(--white-light);
    box-shadow: 0 0 20px 10px var(--white-light);
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    transition: background 0.5s ease;
}
.product-btns{
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.btn-cart, .btn-buy{
    background: transparent;
    border: 1px solid black;
    padding: 0.8rem 0;
    width: 125px;
    font-family: inherit;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.6s ease;
}
.btn-cart{
    background: black;
    color: white;
}
.btn-cart:hover{
    background: var(--carribean-green);
}
.btn-buy{
    background: white;
}
.btn-buy:hover{
    background: var(--carribean-green);
    color: #fff;
}
.product-info{
    background: white;
    padding: 2rem;
}
.product-info-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rating span{
    color: var(--carribean-green);
}
.product-name{
    color: black;
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}
.product-price{
    padding-top: 0.6rem;
    padding-right: 0.6rem;
    display: inline-block;
}
.product-price:first-of-type{
    text-decoration: line-through;
    color: var(--carribean-green);
}
.product-img img{
    transition: transform 0.6s ease;
}
.product:hover .product-img img{
    transform: scale(1.1);
}
.product:hover .product-img{
    background: var(--carribean-green);
}
.product:hover .product-btns{
    opacity: 1;
}
.off-info .sm-title{
    background: var(--carribean-green);
    color: white;
    display: inline-block;
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    z-index: 1;
    letter-spacing: 3px;
    cursor: pointer;
}

/* product collection */
.product-collection{
    padding: 3.2rem 0;
}
.product-collection-wrapper{
    padding: 3.2rem 0;
}
.product-col-left{
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3)), url("images/fashion-img-1.jpg") center/cover no-repeat;
}
.product-col-r-top{
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3)), url("images/fashion-img-2.png") center/cover no-repeat;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50vh;
    padding: 2rem 1.5rem 3.2rem;
    margin: 5px;
}
.product-col-r-bottom > div:first-child{
    background: #eaa001;
}
.product-col-r-bottom > div:last-child{
    background: #0090ff;
}
.product-col-content{
    text-align: center;
    color: white;
}
.product-collection .text-light{
    opacity: 1;
    font-size: 0.8;
    font-weight: 400;
    line-height: 1.7;
}
.btn-dark{
    background: black;
    color: white;
    outline: 0;
    border-radius: 25px;
    padding: 0.7rem 1rem;
    border: 0;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.6s ease;
    font-size: 1rem;
    font-family: inherit;
}
.btn-dark:hover{
    background: var(--carribean-green);
}




.scroll_down{
    position: absolute;
    bottom: 6%;
    right: 5%;
}

.scroll_down i{
    position: fixed;
    display: block;
    padding: 12px;
    font-size: 25px;
    color: white;
    background-color:#53a5ce ;
    border-radius: 30px;
    transition: all .50s ease;
}

.scroll_down i:hover{
    transform: translateY(-5px);
}

.logo{
    position: absolute;
    z-index: -1;
    width: 71%;
    height: 71%;
    top: -5%;
    padding-left:30%;
    z-index: -1;
}
.logo2{
    display: none;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: -7%;
    padding-left:33%;
}
/* Media Queries */
@media(max-width:450px){
    .product_img_content{
        width: 240px;
        height: 200px;
    }
}
@media(max-width:500px) {
    .detay_div{
        height: 8vh;
    }
}
@media(max-width:1350px){
    .logo{
        width: 75%;
        height: 75%;
    }
}
@media(max-width:1200px){
    .logo{
        width: 80%;
        height: 80%;
        padding-left: 23%;
    }
}
@media(max-width:1000px){
    .logo{
        width: 85%;
        height: 85%;
        padding-left: 20%;
    }
}
@media(max-width:850px){
    .logo{
        width: 100%;
        height: 100%;
        padding-left: 7%;
        margin-top: 10%;
    }
}
@media(max-width:550px){
    .logo{
        width: 100%;
        height: 100%;
    }
    .menu-content a{
        font-size: 50px;
    }
}
@media (max-width:380px){
    *{
        display: none;
    }

}
@media screen and (min-width: 992px){
    .product-items{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .product-col-r-bottom{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 1200px){
    .product-items{
        grid-template-columns: repeat(3, 1fr);
    }
    .product{
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .products .text-light{
        width: 50%;
    }
}

@media screen and (min-width: 1336px){
    .product-items{
        grid-template-columns: repeat(4, 1fr);
    }
    .product-collection-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .flex{
        height: 60vh;
    }
    .product-col-left{
        height: 121.5vh;
    }
}