*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
/* banner */
.ban{
    background-image:url(./baneerimage.png);
    width: 100%;
    height: 5vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.banrap{
    width: 100%;
    height: 50vh;
}
.banrap1 {
    margin: auto;
    /* padding-top: 375px; */
}
/* navigation bar */
#nav{
    width: 100%;
    height: 10vh;
    background: white;
    position: relative;
    top: 0px;
    padding-top: 3vh;
    border-bottom: 5px solid white;
}
.navrap{
    width: 80%;
    margin: auto;
}
.logo{
    position: absolute;
    padding-left: 40vh;
}
.logo img{
    height: 15vh;
}
/* navigation bar1 */
#nav1{
    width: 100%;
    height: 7.5vh;
    background: rgb(118, 11, 11);
    position: relative;
    margin-top: 5%;
    /* border-bottom: 5px solid black; */
}
.navrap1{
    width: 80%;
    margin: auto;
}
.menu{
    float: right;
}
.menu ul{
    margin-top: 20px;
}
.menu ul li{
    display: inline;
}
.menu ul li a {
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    padding-left: 35px;
    padding-right: 35px;
    background-color: rgb(118, 11, 11);
    color: white;
}
.menu ul li a:hover{
    color: black
}
body{
    background: white;
}
.img-gallery{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 30px;
}
.img-gallery img{
    width: 100%;
    cursor: pointer;
}
.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px;
}
.full-img img{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.full-img img{
    width: 90%;
    max-width: 500px;
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
/* footer */
.footercontainer{
    background-color: #111;
}
.footercontainer{
    width: 100%;
    padding: 70px 30px 20px;
}
.socialicons{
    display: flex;
    justify-content: center;
}
.socialicons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialicons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
.socialicons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialicons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
@media(max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    }
    .footerNav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}