@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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
    letter-spacing: 1px;
}
body, html{
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.BodyBG{
    background-color: #3701671d;
}
/* NavBar */
.navbar{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: #370167;
    background-color: #fff;
}
.navbar h1 {
    margin-left: 10px;
}
.nav-links{
    display: flex;
    align-items: center;
}
.nav-links a{
    color: #370167;
}
.nav-links .ctn a{
    color: whitesmoke;
}
.nav-links li{
    margin: 0 30px;
}
.active {
    color: #370167 !important;
    text-decoration: underline;
    font-weight: bold;
}
/* Header */
header{
    width: 100vw;
    height: 100vh;
    background-image: url('uploads/Home.jpeg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.header-content{
    margin-bottom: 150px;
    color: whitesmoke;
    text-align: center;
}
.header-content h2{
    font-size: 4vmin;
}
.line{
    width: 150px;
    height: 4px;
    background: #370167;
    margin: 10px auto;
    border-radius: 5px;
}
.header-content h1{
    font-size: 7vmin;
    margin-top: 50px;
}
.header-content h3{
    font-size: 4vmin;
    margin: 10px auto;
}
.ctn{
    padding: 8px 15px;
    background: #370167;
    border-radius: 30px;
    color: whitesmoke;
}
.menu-btn{
 position: absolute;   
 top: 30px;
 right: 30px;
 width: 40px;
 cursor: pointer;  
 display: none;  
}

/* -----------------About Us----------------- */
.AboutUs{
    margin: 50px auto;
}
.AboutUs h1{
    text-align: center;
    font-size: 7vmin;
    margin-top: 50px;
    color: #370167;
}
.AboutUs .row{
    width: 100%;
    display: flex;
    background-color: #37016760;
    justify-content: space-between;
    margin-top: 50px;
}
.AboutUs .col{
    width: 50%;
    margin: auto;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.AboutUs .content-col{
    flex-direction: column;
}
.AboutUs .content-col h3{
    font-size: 5vmin;
    color: #370167;
}
.AboutUs .content-col p{
    margin: 10px 0px 20px 0px;
    padding: 10px;
}
.AboutUs .col .image-gallery {
    align-items: center;
    justify-content: center;
}
.AboutUs .col .image-gallery img{
    height: 400px;
}
/* Products */
.Products{
    margin: 50px auto;
    text-align: center;
    width: 60%;
}
.Products h1 {
    text-align: center;
    font-size: 7vmin;
    margin-top: 50px;
    color: #370167;
}
.Products .title{
    margin-top: 50px;
}
.Products .row{
    display: flex;
    margin-top: 10px;
}
.Products .row .col1,
.Products .row .col2,
.Products .row .col3
{
    width: 100%;
    margin: 10px;
    padding: 30px;
    color: whitesmoke;
}
.Products .row .col1,
.Products .row .col3
{
    background-color: #484872;    
}
.Products .row .col2{
    background-color: #37016794;
}

.Products .row .col1 img,
.Products .row .col2 img,
.Products .row .col3 img{
    width: 100%;
}

.Products .row .col1 h4,
.Products .row .col2 h4,
.Products .row .col3 h4,
.Products .row .col1 p,
.Products .row .col2 p,
.Products .row .col3 p{
    margin: 20px auto;
}
.Products .row .col1 p,
.Products .row .col2 p,
.Products .row .col3 p{
    color: rgba(245, 245, 245, 0.686);
}
/* Footer */
.footer{
    width: 100%;
    min-height: 100px;
    padding: 20px 80px;
    margin: 0;
    background: #484872;
    text-align: center;
    color: #f5f5f560;
}
.footer .row{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}
.footer .row .col h5{
    font-size: 14px;
    color: white;
    margin-bottom: 10px;
    text-decoration: underline;
}
.footer .row .col ul{
    list-style-type: disc;
    font-size: small;
}
.footer .row .col li a{
    color: #f5f5f560;
}
.footer .row .col li{
    cursor: auto;
    text-align: start;
}
.footer p{
    color: whitesmoke;
    margin: 20px auto;
}
/* Contact Us */
.Contact{
    margin: 50px auto;
    text-align: center;
}
.ContactH1 {
    text-align: center;
    font-size: 7vmin;
    color: #370167;
}
.Contact .row{
    width: 100%;
    display: flex;
    margin-top: 50px;
    background-color: #37016760;
    justify-content: space-around;
    padding: 20px;
}
.Contact .row h1{
    font-size: 5vmin;
    color: whitesmoke;
}
.Contact .row h3{
    font-size: 2vmin;
    color: #f5f5f5b1;
}
.Contact .row .col1{
    padding: 50px;
    background-color: #484872;
}
.Contact .row .col2{
    padding: 50px;
    background-color: #370167a2;
}

/* Product Page */
.ProductsPage{
    margin-top: 100px;
    margin-bottom: 200px;
}
.ProductsPage .ProductTitle {
    text-align: center;
    font-size: 7vmin;
    color: #370167;
}
.ProductsPage .row{
    display: block;
}

.ProductsPage .row .col{
    padding: 50px 10px;
    width: 40%;
    margin: 20px auto;
    height: 100vh;
    color: whitesmoke;
}
.ProductsPage .row .col h1{
    text-align: center;
    font-size: 3vmin;
}
.ProductsPage .row .col .ProductDetails{
    display: block;
    width: 100%;
    margin: auto;
    background-color: #484872;
    padding: 30px;
}
.ProductsPage .row .col .ProductDetails .Productimage img{
    margin: auto;
    width: 100%;
    height: 250px;
    padding: 10px;
}
.ProductsPage .ProductContent{
    text-align: center;
    font-size: 2vmin;
}
/* -----------------responsive----------------- */
@media only screen and (max-width: 990px) and (min-width: 800px) { 
    .navbar h1 {
        font-size: 3vmin;
    }
    .ProductsPage .row .col {
        width: 70%;
    }
}
@media only screen and (max-width:850px){
    .menu-btn{
        display: block;
        background-color: black;
    }
    .navbar{
        padding: 0;
    }
    .logo{
        position: absolute;
        top: 30px;
        left: 30px;
    }
    .nav-links{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background: #370167;
        margin-top: -900px;
        transition: all 0.5s ease;
    }
    .mobile-menu{
        margin-top: 0px;
        border-bottom-right-radius: 30%;
    }
    .nav-links li {
        margin: 30px auto;        
    }
    .logo,
    .nav-links li a{
        color: whitesmoke;      
    }
    .ctn{
        border: 2px solid whitesmoke;
    }
    /* Events */
    .AboutUs .row,
    .Products .row{
        flex-direction: column;
    }
    .AboutUs .row .col{
        width: 100%;
    }
    .events .col img{
        max-width: 90%;
    }
    .footer{
        padding: 10px;
    }
}
@media only screen and (max-width:678px){
    .footer .row{
        display: block;
        align-items: center;
        justify-content: center;
    }
    .footer .row .col {
        width: 100%;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width:500px){
    .AboutUs .col .image-gallery img {
        height: 300px;
    }
}
@media only screen and (max-width:380px){
    .AboutUs .col .image-gallery img {
        height: 200px;
    }
}
/* Animation */
img{
    transition: transform .3s ease;
}
img:hover{
    transform: scale(1.1);
}
.ctn:hover{
    background: #fdfdfe;
    color: #370167;
    font-weight: bolder;
    border: 2px solid #370167;   
    box-shadow: 2px 2px 5px #00000060;
}
.nav-links .ctn a:hover{
    color: #370167;
}
.nav-links .ctn:hover a{
    color: #370167;
}
li:hover{
    cursor: pointer;
}
