*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-transform: capitalize;
    transition:all cubic-bezier(.34, 1.12,.68,1.31);
    }
    .navbar{
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        background-color: rgba(170, 101, 101, 0.726)!important;
        color: white;
    }

    .navbar ul li{
        list-style: none;
        display: inline-block;
        text-decoration: none;
        color: white;
        position: relative;
    }
    .navbar ul li::after{
        content: '';
        height: 3px;
        width: 0;
        background-color: white;
        position: absolute;
        left: 0;
        bottom: -.25px;
        transition: .5s;
    }
    .navbar ul li:hover::after{
        width: 100%;
    }

    ul{
        margin-left: 10%;
    }
    input{
        display: none;
    }
    .container1{
        margin-top: 8%;
        width: 100%;
        text-align: center;
    }
    h1{
        font-weight: normal;
        font-size: 35px;
        position: relative;
        margin: 40px 0;
    }
    h1::before{
        content: '';
        position: absolute;
        width: 100px;
        height: 3px;
        background-color: red;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        animation: animate 4s linear infinite;
    }
    @keyframes animate {
        0%{
            width:100px;
        }
        50%{
            width: 200px;
        }
        100%{
            width: 100px;
        }
    }
    .top-content{
        background-color: rgb(243, 243, 243);
        width: 90%;
        margin: 0 auto 20px auto;
        height: 60px;
        display: flex;
        align-items: center;
        border-radius: 5px;
        box-shadow: 3px 3px 5px lightgray;
    }
    .top-content h4{
        height: 100%;
        background-color: lightgray;
        line-height: 60px;
        padding: 0 50px;
    }
    /* label{
        display: inline-block;
        height: 100%;
        margin: 0 20px;
        line-height: 60px;
        font-size: 18px;
        color: gray;
        cursor: pointer;
        transition: .5s;
    }
    label:hover{
        color: black;
    } */

.container2 .image-container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
 }
 .container2 .image-container .image{
    height: 250px;
    width: 350px;
    overflow: hidden;
    border: 5px solid lightgray;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 20px;
}
.container2 .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.container2 .image-container .image:hover img{
    transform: scale(1.2);
}
.container2 .image-container .image:hover iframe{
    transform: scale(1.2);
}
   

    .copyrights{
        display: flex;
        column-gap:2%;
        background-color: rgba(173, 123, 123, 0.959);
        color: white;
    }
    .footer{
        background-color: rgba(170, 101, 101, 0.521);
        text-align: center;
        line-height: 10px;
        padding: 10px;
    }
    
    .preloader{
        background: rgba(255, 255, 255, 0.63);
        background-size: 20%;
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 1100;
        transition: opacity 2s, visibility 2s;
    }
    .preloader-hidden{
        opacity: 0;
        visibility: hidden;
    }
    .preloader::after{
        content: "";
        width: 75px;
        height: 75px;
        border-radius: 15px;
        animation: loading 2s ease infinite;
    }
    @keyframes loading {
        from{
            transform: rotate(0turn);
        }
        to{
            transform: rotate(1turn);
        }
    }


    