* {
    box-sizing: border-box
}

@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.reos-nav {
    /* font-family: 'Poppins', sans-serif; */
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* position: absolute; */
    padding: 10px 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;

    border-bottom: 1px solid #dbdbdb;
    transition: background-color 0.3s, box-shadow 0.3s;
}


.reos-nav .reos-nav-menu .menu {
    color: #2d2d2d;
}
.reos-nav .reos-nav-menu .menu:hover {
    color: #044386;
    text-decoration: underline;
}





.main-galary {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 60px;
    /* margin-top: 120px; */
    animation: load 0.5s ease;
}
@keyframes load {
    0%{
        opacity: 0.2;
        margin-top: 10px;
    }
    100%{
        opacity: 1;
        margin-top: 0px;
    }
}
.gallery-head {
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 80px;
    font-size: 25px;
    font-weight: 500;
    color: #4d4d4d;
}

.gallery-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.gallery-col {
    width: 100%;
    display: flex;
    gap: 20px;
    height: 300px;
}

.gallery-row-one {
    width: 60%;
}

.gallery-row-two {
    width: 40%;
}

.gallery-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-col img.reveal {
    opacity: 1;
    transform: translateY(0);
}


@media only screen and (max-width:756px) {
    * {
        box-sizing: border-box
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

    body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
    }

    .reos-nav {
        /* font-family: 'Poppins', sans-serif; */
        display: flex;
        background-color: #fff;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        /* position: absolute; */
        padding: 10px 10px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;

        border-bottom: 1px solid #dbdbdb;
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    .reos-nav .reos-nav-menu .menu {
        color: #2d2d2d;
    }

    .main-galary {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 5px;
    }

    .gallery-head {
        width: 100%;
        padding: 20px;
        text-align: left;
        margin-top: 70px;
        font-size: 20px;
        font-weight: 500;
        color: #4d4d4d;
    }

    .gallery-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .gallery-col {
        width: 100%;
        display: flex;
        gap: 10px;
        height: 180px;
    }

    .gallery-row-one {
        width: 65%;
    }

    .gallery-row-two {
        width: 35%;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 10px;
    }

}