/* =========================================
MASONRY GALLERY
========================================= */

.masonry-gallery-section{

    padding:50px 0;

    background:
    linear-gradient(
    135deg,
    #020b22 0%,
    #03163f 45%,
    #020b22 100%);
}

/* =========================================
HEADING
========================================= */

.gallery-heading{

    text-align:center;

    margin-bottom:40px;
}

.gallery-heading span{

    display:inline-flex;

    padding:14px 32px;

    border-radius:50px;

    background:
    rgba(124,58,237,0.14);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#c4b5fd;

    font-size:14px;

    font-weight:1150;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;
}

.gallery-heading h2{

    color:#ffffff;

    font-size:55px;

    line-height:1.1;

    font-weight:1150;

    margin-bottom:24px;
}

.gallery-heading p{

    max-width:1150px;

    margin:auto;

    color:
    rgba(255,255,255,0.82);

    font-size:20px;

    line-height:1.6;
}

/* =========================================
MASONRY GRID
========================================= */

.masonry-gallery{

    display:flex;

    gap:25px;
}

.gallery-column{

    flex:1;
}

.gallery-column img{

    width:100%;

    height:250px;

    object-fit:cover;

    margin-bottom:25px;

    border-radius:24px;

    cursor:pointer;

    transition:0.4s ease;

    border:
    1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.22);
}

.gallery-column img:hover{

    transform:
    translateY(-8px)
    scale(1.02);

    box-shadow:
    0 25px 55px rgba(124,58,237,0.28);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .masonry-gallery{

        flex-wrap:wrap;
    }

    .gallery-column{

        flex:0 0 calc(50% - 13px);
    }

    .gallery-heading h2{

        font-size:44px;
    }
}

@media(max-width:767px){

    .gallery-column{

        flex:100%;
    }

    .gallery-heading h2{

        font-size:34px;
    }

    .gallery-heading p{

        font-size:16px;
    }
}

/* =========================================
IMAGE POPUP
========================================= */

.image-popup{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:999999;
}

.image-popup.show-popup{

    display:flex;
}

.image-popup img{

    max-width:90%;
    max-height:90%;
}

.close-popup{

    position:absolute;

    top:30px;
    right:40px;

    font-size:55px;

    color:#ffffff;

    cursor:pointer;
}


.image-popup.active-popup{

    display:flex !important;

}



/* =========================================
FAQ SECTION
========================================= */

.faq-section{

    padding:40px 0;

    background:
    linear-gradient(
        180deg,
        #071226 0%,
        #081830 100%
    );
}


/* HEADER */

.faq-header{

    text-align:center;

    margin-bottom:30px;
}

.faq-header span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    border-radius:40px;

    background:
    rgba(124,58,237,0.14);

    border:
    1px solid rgba(167,139,250,0.25);

    color:#8b5cf6;

    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:24px;
}

.faq-header h2{

    font-size:46px;

    line-height:1.10;

    color:#ffffff;

    font-weight:1200;

    max-width:1200px;

    margin:auto;
}


/* CONTAINER */

.faq-container{

    max-width:1280px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:24px;
}


/* ITEM */

.faq-item{

    padding:34px 34px;

    border-radius:26px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    transition:0.4s ease;

    backdrop-filter:blur(14px);
}

.faq-item:hover{

    transform:
    translateY(-5px);

    border-color:
    rgba(124,58,237,0.35);

    background:
    rgba(124,58,237,0.08);

    box-shadow:
    0 20px 50px rgba(124,58,237,0.16);
}


/* QUESTION */

.faq-item h3{

    font-size:26px;

    color:#ffffff;

    font-weight:800;

    margin-bottom:18px;
}


/* ANSWER */

.faq-item p{

    font-size:17px;

    line-height:1.9;

    color:
    rgba(255,255,255,0.78);

    text-align:justify;
}


/* RESPONSIVE */

@media(max-width:768px){

    .faq-section{

        padding:80px 0;
    }

    .faq-header h2{

        font-size:36px;
    }

    .faq-item{

        padding:28px 22px;
    }

    .faq-item h3{

        font-size:22px;
    }

    .faq-item p{

        font-size:16px;
    }
}


