@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;500;600;700&display=swap');

body
{
    height: 100%;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Poppins' sans-serif;
    background: #e9e9eb;
}

/* logo */
#container #logo
{
    position: fixed;

    opacity: .15;
    margin-top: 22vh;
    margin-left: 31vw;
}
#container #logo1
{
    position: absolute;
    left: 8%;
    top: 0;
    font-size: 3vw;
    z-index: 997;
    font-weight: bold;
    color: rgb(173, 19, 19);
}
.logo_gall{
    height: 72vh;
    width: 38vw;
}

.logo_gall1{
    width: 7vw;
    height: 6vw;
}
/* navbar */
#navbar
{
    height: 7vw;
    width: 98.8vw;
    position: absolute;
    top: 0;
    left: 0;
    background: #fdfefe;
    display: grid;
    justify-content: end;
    place-items: center;
    z-index: 222;
}
#navbar ul
{
    list-style: none;
    display: flex;
    flex-direction: row;
}
#navbar ul li:hover {
    height: 3.4vw;
    border-radius: 20%;
    background: #e9e9eb;
    transition: all 0.5s ease-out;
}
#navbar ul li
{
    font-size: 2vw;
    margin: 4vw 4vw;

}
#navbar ul li a
{
    text-decoration: none;
    color: #000;
}
#navbar ul li a:hover
{
    
    color: #165397;
    transition: all 0.3s ease;
}

#navbar ul li a.active
{
    color: #971616;
    text-decoration: underline;
}

*
{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

::before, ::after
{
    box-sizing: border-box;
}
ul
{
    list-style: none;
}

.section
{
    margin-top: 10vh;
    height: 100vh;
    display: block;
    padding: 0 3.0vw;
    opacity: 1;
    position: fixed;
    left: 1vw;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}
.section.back-section
{
    z-index: 1;
}
.section.active
{
    z-index: 2;
    opacity: 1;
    animation: slideSection 1s ease;
}
@keyframes slideSection
{
    0%
    {
        transform: translateX(100%);
    }
    100%
    {
        transform: translateX(0%);
    }
}
.hidden
{
    display: none !important;
}

.container
{
    max-width: 85vw;
    width: 100%;
    margin: auto;
}
.section .container
{
    padding-top: 6.0vw;
    padding-bottom: 7.0vw;
}
.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 6.0vw;
}


.row
{
    display: flex;
    flex-wrap: wrap;
    margin-left: -2vw;
    margin-right: -2vw;
    position: relative;
}

.padd-15
{
    padding-left: 1.5vw;
    padding-right: 1.5vw;
}
.shadow-dark
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}


/* gallery */
.gallery .container
{
    padding-bottom: 4.0vw;
}

.gallery .gallery-item
{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 3.0vw;
}
.gallery .gallery-item-inner
{
    border: .6vw solid var(--bg-black-100);
    border-radius: 1.0vw;
    overflow: hidden;
    cursor: pointer;
}
.gallery .gallery-item-inner .gallery-img img
{
    width: 100%;
    display: block;
}



@media (max-width:500px)
{


    .gallery .gallery-item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 3vw;
    }
    
}
@media (max-width:400px)
{


    .gallery .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3vw;
    }
    #navbar
{
    height: 15vw;
    width: 98.8vw;
    position: absolute;
    top: 0;
    left: 0;
    background: #fdfefe;
    display: grid;
    justify-content: end;
    place-items: center;
    z-index: 222;
}
#container #logo1
{
    position: absolute;
    left: 8%;
    top: 0;
    font-size: 5vw;
    z-index: 997;
    font-weight: bold;
    color: rgb(173, 19, 19);
}
.logo_gall1{
    height: 12vw;
    width: 12vw;
}
#navbar ul li
{
    font-size: 3vw;
    margin: 8vw 2vw;

}

}
