*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    /* background:     #f2fbff !important        ; */
}

.header{
    border: 1px solid black;
    
}

.home{
    height: 100vh;
    background-image: url("../img/video-img1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 6px 15px 0px rgb(193 237 255 / 30%);
    /* background: rgba(0, 0, 0, 0.5); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-container{
    text-align: center;

}

.title{
}
.title span{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: white;
}
.title h1{
    font-size: 4rem ;
    letter-spacing: 2px;
    color: white;
    font-weight: 700;
}
.title p{
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 500;
    color: white;
    width: 80%;
    margin: 3rem auto;
}
.demo-title{
    text-align: center;
    height: 150px;
    position: relative;
}

.demo-title p{
    background: #efefef;
    padding: .3rem .1rem;
    color: #000;
    font-size: .9rem;
}
.demo-title h1{
    margin:7rem 0 1rem 0;
    color: #000 ;
    font-weight: 700;
    font-size: 2rem;
}
.demo-title span{
    width: 15% !important;
    
    position: absolute;
    left: 43%;
    /* top: -1rem; */
    border-radius: .5rem;
    border-bottom: 4px solid #2a9d8f;
    width: 100%;
}




.title .btn{
    padding: 1.4rem 1.9rem !important;
    background: #2a9d8f;
    border-radius: .4rem;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .3s all;
}
.title .btn:hover{
    color: white;
    background-color: #264653;
    transform: translateY(-3px);
}


.img a{
    background: #2a9d8f;
    padding: .5rem 1rem;
    border-radius: .2rem;
    color: white;
    text-align: center;
    margin-top: 2rem;
}


.new__sneaker-card{
    position: relative;
    padding: 3.5rem 1.5rem;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new__sneaker-card img{
    width: 100%;

}

.new__sneaker-overlay{
    position: absolute !important;
    left: 0;
    bottom: -100% !important;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(138,138,138, .3);
    transition: .3s;
}

.new__sneaker-card:hover .new__sneaker-overlay{
    bottom: 0 !important;   
}

.new__sneaker-overlay .btn{
    border-radius: .2rem;
    letter-spacing: 2px;
    background: #2a9d8f;
    color: #ffff;
    padding: 1rem 1rem;
}
.new__sneaker-overlay .btn:hover{
    color: white;
    background: #264653;
}
    



.footer-img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    align-items: center;
    background-image: url("../img/footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, .5);
    position: relative;
}
.footer-img:before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: 1px solid black;
    height: 100%;
    background: rgba(138,138,138, .5);
}


.footer-text{
    background: rgba(0,0,0, .3);
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    border-radius: 5px;
}
.footer-text h3{
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}
.footer-text span{
    letter-spacing: 2px;
}

.footer-text .btn{
    border-radius: .4rem;
    background: #2a9d8f;
    color: #ffff;
    margin-top: 1rem;
    padding: 1rem 2rem;
    transition: .3s all ease-in-out;
}
.footer-text .btn:hover{
    background: #264653;
    color: white;
    transform: translateY(-3px);
}

.footer{
    margin-top: 10rem;
}

@media screen and (max-width: 780px){
    .title h1{
        font-size: 2.2rem;
    }
    .footer-text span{
        font-size: .9rem;
    }
    .title p{
        font-size: 1rem;
    }
}
@media screen and (max-width: 980px){
    .footer-text span{
        font-size: .9rem;
    }
    .title h1{
        font-size: 2rem;
    }
    
}