@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Lora;
    
}
a{
    text-decoration: none;
    color: whitesmoke;
}
ul{
    list-style: none;
   
}

body , html{
    overflow-x: hidden;
}
.navbar{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: whitesmoke;
    
}

.nav-links{
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 30px;
}

.nav-links li .link{
    padding: 8px 15px;
    border-radius: 30px;
    transition: ease-in-out 0.3s;

}

.nav-links li .link:hover{

    color: #2c2c2c;
    background: whitesmoke;
}

.logo img{
    width: 30vmin;
}

header{
    width: 100vw;
    height: 100vh;
    background-image:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(slider1.jpg);
    background-attachment: fixed;
  
    background-position: bottom;
    background-size: cover ;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.header-content{
    margin-bottom: 150px;
    color: whitesmoke;
    text-align: center;
}

.header-content h1{
    font-size: 7vmin;
}
.line{
    width: 150px;
    height: 4px;
    background: #DA251C;
    margin: 10px auto;
    border-radius: 5px;
}

.header-content h3{
    font-size: 4vmin;
    margin-top: 50px;
    margin-bottom: 50px;
}

.ctn{
    padding: 8px 15px;
    background: #DA251C;
    border-radius: 30px;
    color: whitesmoke;
    cursor: pointer;
    transition: ease-in-out 0.4s;
}

.ctn:hover{
    color: #DA251C;
    background: whitesmoke;
    /* background: #68130f; */
}

.menubtn{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;
}


section{
    margin: 80px auto;
    width: 80%;
}
.title{
    text-align: center;
    font-size: 4vmin;

}


.products{
    height: 30vh;
}
h4{
    font-size: 3vmin;
    color: #484872;
    margin: 20px auto;

}
p{
    color: #575656;
    padding: 0 40px;
    font-size: 2vmin;
}
.products .ctn{
    margin-top: 30px;
    border: none;
}

.explore{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(explore.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    margin: 0px auto;
}

.explore-content{
    width: 60%;
    padding: 50px;
    color: whitesmoke;
    display: flex;
    align-items: center;
    flex-direction: column;

}

.explore-content h1{
    font-size: 6vmin;
   
}

.explore-content .line{
    margin-bottom: 50px;
}

.explore-content p{
    font-size: 2.5vmin;
    color: rgb(199, 199, 199);
}

.explore-content .ctn{
    margin-top: 40px;
}




.footer{
    width: 100%;
    min-height: 100px;
    padding: 20px 80px;
    margin: 0;
    background:#2c2c2c;
    text-align: center;
}

.footer p{
    color: whitesmoke;
    margin: 20px auto;
    padding: 20px auto;

}



@media only screen and (max-width:850px) {
    .menubtn{
        display: block;
       
    }
    
    .navbar{
        padding: 0;
    }
    .logo{
        position: absolute;
        left: 30px;
        top: 30px;
    }
    .nav-links{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background: #2c2c2c;
        margin-top: -900px;
        transition: all 0.5s ease;
        
    }
    .mobile-menu{
        margin: 0px;
    }
    .nav-links li{
        margin: 30px auto;
    
    }

    .explore-content{
        width: 100%;
    }

    .explore-content h1{
        text-align: center;
    }
}