@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Raleway:wght@400;700&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    /* overflow: hidden; */

    /* background-color: rgb(66, 124, 82); */
    /* background-color: #355e3b; */
    /* background-color: #004225; */
    /* color: rgb(11, 76, 15); */
}


/****************gallery sub menu********************/

/* .gallery-sub-menu-ul {
    display: flex;
    position: absolute;
    top: 177px;
    left: 840px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90px;
    height: 13px;
    list-style-type: none;
}

.gallery-sub-menu-ul .gallery-sub-menu-li a{
    color: rgb(94, 92, 92);
    text-decoration: none;
    position: relative;
    font-size: 12px;
}
.gallery-sub-menu-ul .gallery-sub-menu-li {
    display: none;
    position: relative;
    top: 75px;
    left: -42px;
    width: 180px;
    height: 30px;
    margin: 0 auto;
    text-align: center;
    padding: 5px;
    background-color: white;
}

#gallery-dropdown:hover .gallery-sub-menu-ul .gallery-sub-menu-li{
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 500;
}
#gallery-dropdown.gallery-sub-menu-li:hover  .gallery-sub-menu-ul .gallery-sub-menu-li {
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 500;
}
 */
/*******************gallery title***************************/
#gallery-title {
    display: flex;
    justify-content: center;
}

.gallery-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 826px;
    height: 1.6em;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding-left: 20px;
    text-transform: capitalize;
    text-align: center;
    background: linear-gradient(to right, rgba(71, 70, 69, 0), rgba(71, 70, 69, 0.2), rgba(71, 70, 69, 0.4), rgba(71, 70, 69, 0.8), rgba(71, 70, 69, 1), rgba(71, 70, 69, 0.8), rgba(71, 70, 69, 0.4), rgba(71, 70, 69, 0.2), rgba(71, 70, 69, 0));    color: white;
}

/********************gallery************************/
/*****************************gallery skew menu********************************/

.gallery-menu{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 14px 0px 5px 0px;
}

.gallery-menu .gallery-menu-ul {
    width: 826px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(to right, rgba(71, 70, 69, 0), rgba(71, 70, 69, 0.2), rgba(71, 70, 69, 0.4), rgba(71, 70, 69, 0.8), rgba(71, 70, 69, 1), rgba(71, 70, 69, 0.8), rgba(71, 70, 69, 0.4), rgba(71, 70, 69, 0.2), rgba(71, 70, 69, 0));
            color: white;
    /* background: -webkit-radial-gradient(center, ellipse cover, rgba(181, 189, 200, 1) 0%, rgba(130, 140, 149, 1) 36%, rgba(40, 52, 59, 1) 100%); */
    /* Chrome10-25,Safari5.1-6 */
}

.gallery-menu .gallery-menu-ul .gallery-menu-li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 25px;
    /* background: -webkit-radial-gradient(center, ellipse cover, rgba(206, 220, 231, 1) 0%, rgba(89, 106, 114, 1) 100%); */
        /* Chrome10-25,Safari5.1-6 */
    /* Chrome10-25,Safari5.1-6 */
    /* Chrome10-25,Safari5.1-6 */
    background: rgb(71, 70, 69);
    border: 1px solid #eee;
    border-radius: 25px;
    margin: 0px 5px 3px 5px;
    text-transform: capitalize;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.gallery-menu .gallery-menu-ul .gallery-menu-li:hover {
    background: -webkit-radial-gradient(center, ellipse cover, rgba(181, 189, 200, 1) 0%, rgba(130, 140, 149, 1) 36%, rgba(40, 52, 59, 1) 100%);
    color: white;
    /* transition: all 0.5s ease-in-out; */
    /* Chrome10-25,Safari5.1-6 */    /* color: tomato; */
}

.gallery-menu .gallery-menu-ul a {
    display: flex;
    font-size: 11px;
    color: white;
    text-decoration: none;
}

.gallery-menu .gallery-menu-ul a:hover {
    color: white;
}

/********************gallery main*************************/

.galleryContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 64vh;
    background-color: rgb(224, 224, 199);
}

.galleryBox {
    position: relative;
    width: 170px;
    height: 170px;
    transform-style: preserve-3d;
    animation: animate 20s linear infinite;
    animation-play-state: running;
}

@keyframes animate {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.galleryBox:hover {
    animation-play-state: paused;
}

.galleryBox span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 70deg)) translatez(320px);
    -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0005);
}

.galleryBox span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}