*{
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0;
    margin: 0;
}

/*navbar start*/
li, a, button{
    font-family: "YanoneKaffeesatz", sans-serif ;
    font-weight: 500;
    font-size: 19px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 1%;
    background-color: rgba(0, 0, 0, 0.911);
    width: 100%;
    position: fixed;
    top:0%;
    z-index: 1;
    
}

.logo{
    cursor: pointer;
    width: 10%;
    padding: 0px 10px;
    order: 3;
    margin-left: auto;
    margin-right: 10px;
}

.nav{
    order: 1;
}

.nav_links1{
    list-style: none;
    background-color:none;
    padding: 0px;
}

.nav_links1 li{
    display: inline-block;
    padding: 8px;
    margin: 0px 0px;
    background-color: none;
    border-radius: 10px;
}

.nav_links1 li:nth-child(1){
    padding: 0px 0px 0px 0px;
    color:  blue;
    margin: 0px 0px 0px -11px;
}

.nav_links1 li a{
    transition: all 0.3s ease 0s;
    background-color: none;
    padding: 8px;
}

.nav_links1 li a:hover{
    color: rgb(169, 34, 0);
    background-color: white;
}

.cta{
    background-color: none;
    border-radius: 50px;
    padding: 0px 0px;
    margin: 0px 30px;
    order: 2;
}

.button{
    padding: 4px 15px;
    background-color: rgb(169, 34, 0);
    border: 1px solid rgb(169, 34, 0) ;
    border-radius: 10px;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;

}

.button:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(169, 34, 0) ;
}
/*navbar end*/

/*screen resize start*/

@media (max-width:380px){
    header{
        display: hidden;
    }
    .logo{
        display: none;
    }
    .nav{
        display: none;
    }
    .cta{
        display: none;
    }
}

@media (max-width:440px){
    .container .box .details{
        display: none;
    }
    
    .container .box:hover .details{
        display: none;
    }
    
    .container .box .details .content{
        display: none;
    }
    
    .container .box .details .content h2{
        display: none;
    }
    
    .container .box .details .content p{
        display: none;
        
    }
}

/*screen resize end*/

/*side nav start */
#sideNav{
    width: 210px;
    height: 100vh;
    position: fixed;
    right: -210px;
    top: 0;
    background:white;
    z-index: 2;
    transition: 0.5s;
    box-shadow: 2px 5px 21px 2px rgba(70, 63, 63, 0.781);
    
}

nav ul li{
    list-style: none;
    margin: 0px;
    margin-top: 0px;
    transition: 0.5s;
    text-align: center;
    font-size: 50px;
    padding: 30px;
    display: flex;
    flex-wrap: nowrap; 
}



nav ul li:hover{
    background-color: rgb(218, 212, 212);
    padding: 30px 40px;
    font-size: 30px;
    transition: 0.5s;

}

#sideNav nav ul li:nth-child(1){
    margin-top: 15vh;
}

nav ul li a{
    text-decoration: none;
    color: brown;
    margin-right: 100px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 10px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

#manuBtn{
    width: 40px;
    height: 40px;
    background:brown ;
    text-align: center;
    position: fixed;
    right: 0.5%;
    top:6%;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
    box-shadow: 1px 2px 20px 1px rgba(70, 63, 63, 0.781);
}

#manuBtn img{
    width: 30px;
    margin-top: 8px;
}
/*side nav end */


main{
    margin: 0px;
    padding: 0px;
}

.bground{
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.61),rgba(0, 0, 0, 0.904),rgb(0, 0, 0) ), url("../img/5.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ptcont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: blu;
    margin: auto;
    width: 99%;
}

.part1{
    display: flex;
    flex-basis: 30%;
}

.part1 .img_box{
    margin: 10vh auto;
    width: 100%;
    max-width: 300px;
}

.part1 .img_box img{
    width: 100%;
    border-radius: 50%;
}

.part2{
    display: flex;
    flex-basis: 50%;
}

.part2 .text_cont{
    width: 100%;
    background-color: antiquewhit;
    margin: 9vh auto;
}

.part2 .text_cont h1{
    font-size: clamp(2rem, 5vw, 6rem);
    color: brown;
    font-weight: 200;
    margin: 10px;
}

.part2 .text_cont p{
    font-size: clamp(.63rem, 1.25vw, 2.55rem);
    color: white;
    font-weight: 300;
    margin: 3px;
}

.part2 .text_cont span{
    font-size: clamp(.77rem, 1.25vw, 2.97rem);
    color: crimson;
    font-weight: 400;
    margin: 3px;
}

/*screen resize start*/
@media (max-width:425px){
    .part2 .text_cont{
        width: 100%;
        background-color: antiquewhit;
        margin: 1vh auto;
    }

    header{
        display: hidden;
    }
    .logo{
        display: none;
    }
    .nav{
        display: none;
    }
    .cta{
        display: none;
    }
}
/*screen resize end*/


/* image start */

.pics_cont{
    width: 90%;
    margin: auto;
    display: flex;
}

.image-gallery{
    width: 100%;
    margin:  auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}

.image-gallery .image-box{
    position: relative;
    background-color: #d7d7d8;
    overflow: hidden;
}

.image-gallery .image-box:nth-child(7n+1){
    grid-column: span 2;
    grid-row: span 2;
}

.image-gallery .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.image-gallery .image-box:hover img{
    transform: scale(1.1);
}

.image-gallery .image-box .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fafafaf2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.image-gallery .image-box:hover .overlay{
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 1;
}

.image-gallery .image-box .details{
    text-align: center;
    display: none;
}

.image-gallery .image-box .details .title{
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    top: -5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease; 
}

.image-gallery .image-box .details .category{
    font-size: 18px;
    font-weight: 400;
    position: relative;
    bottom: -5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease; 
}

.image-gallery .image-box:hover .details .title{
    top: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s 0.2s ease; 
}

.image-gallery .image-box:hover .details .category{
    bottom: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s 0.2s ease; 
}

.image-gallery .image-box .details .title a,
.image-gallery .image-box .details .category a{
    color: #222222;
    text-decoration: none;
}

/* Leats make it responsive*/
@media(max-width:768px){
    .image-gallery{
        
        grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
        grid-auto-rows: 250px;
        
    }

    .image-gallery .image-box:nth-child(7n+1){
        grid-column: unset;
        grid-row: unset;
    }
}
/* Leats make it responsive*/
/* image end */

/*fotter start*/
footer{
    position: relative;
    width: auto;
    margin-top: 8rem;
    height: auto;
    padding: 50px 50px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container0{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

footer .container0 .sec{
    margin-right: 30px;

}

footer .container0 .sec.aboutus{
    width: 40%;
}

footer .container0  h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container0  h2:before{
    content: '';    
    position: absolute;
    bottom: -5px;
    left: 0;
    width:50px  ;
    height: 2px;
    background-color: brown;
}

footer p{
    color: #999;
}

.sci{
    margin-top: 20px;
    display: flex;
}

.sci li{
    list-style: none;
}

.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: all ease 0.3s;
}

.sci li a:hover{
    background: brown;
    transition: all ease 0.3s;
}

.sci li a .fab{
    color: #fff;
    font-size: 20px;
    transition: all ease 0.3s;
}

.quickLinks{
    position: relative;
    width: 25%;
}

.quickLinks ul li {
    list-style: none;
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease 0.25s;
}

.quickLinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease 0.25s;
}

.quickLinks ul li a:hover{
    color: #fff;
    transition: all ease 0.25s;
    padding-left: 8px;
}

.contact0{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.contact0 .info0{
    position: relative;
}

.contact0 .info0 li {
    display: flex;
    margin-bottom: 16px;
}

.contact0 .info0 li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact0 .info0 li span{
    color: #999;
}

.contact0 .info0 li a{
    color: #999;
    text-decoration: none;
}

.contact0 .info0 li a:hover{
    color: #fff;
    text-decoration: none;
}

.copyrightText{
    width: auto;
    background-color: #181818;
    padding: 8px 50px;
    text-align: center;
    color: #999;
}

/*responsive code start*/

@media (max-width: 991px ){
    footer{
        padding: 40px;
    }

    footer .container0{
        flex-direction: column;
    }

    footer .container0 .sec{
        margin: 0px auto;
        margin-bottom: 40px;
    }

    footer .container0 .sec.aboutus,.quickLinks,.contact0{
        width: 100%;
    }

    .copyrightText{
        padding: 8px 50px;
    }

}
/*responsive code end*/
/*fotter end*/