.hero-pages-container{
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #1c1c24;
    color: #fff;
}

.hero-pages-sub-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-pages-container::after{
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../assets/images/conf-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.hero-pages-container::before{
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3;
}

.hero-pages-content-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    min-height: 70vh;
}

.hero-pages-body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-pages-border{
    background-color: #C6D93B;
    width: 10%;
    height: 4px;
    margin: 10px 0 40px;
}

.hero-pages-heading{
    font-size: 52px;
    font-weight: 700;
    line-height: 52px;
}

.hero-pages-text-container{
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
}

.hero-pages-button{
    margin-top: 20px;
    padding: 10px 20px;
    /* background-color: #C6D93B; */
    border: #C6D93B solid 1px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: all linear 0.2s;
}

.hero-pages-button:hover{
    background-color: #C6D93B;
    color: #000;
}

.hero-pages-image-container{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-pages-image{
    position: absolute;
    width: 500px;
    height: 400px;
    object-fit: cover;
    object-position: 90%;
    z-index: 4;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

/* Gallery */
.gallery-container{
    padding: 80px 0;
    background-color: #121212;
}

.gallery-heading{
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-content-container{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-body{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-decoration: none;
}
.gallery-banner-tag{
    font-size: 20px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 22px !important;
    gap: 7px;
}

span.gallery-banner-location {
    font-size: 15px;
    display: block;
}

.gallery-image-container{
    border: #fff solid 1px;
    border-radius: 15px;
    padding: 10px;
    position: relative;
    transition: all linear 0.2s;
}

.gallery-image-container::after{
    content: unset;
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    z-index: 2;
    background-color: #00000077;
    border-radius: 5px;
    display: flex;
    font-family: 'FontAwesome';
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    transition: all linear 0.2s;
    color: #fff;
}

.gallery-image-container:hover::after{
    content: '\f08e';
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.gallery-image{
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}


@media screen and (max-width: 1439px){
    .hero-pages-image{
        right: -15%;
    }
}

@media screen and (max-width: 1200px){
    .gallery-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px){
    .hero-pages-container::before,
    .hero-pages-container::after,
    .hero-pages-image-container{
        display: none;
    }
    .hero-pages-content-container{
        grid-template-columns: repeat(1, 1fr);
        min-height: 0;
    }
    .hero-pages-border{
        width: 15%;
    }
}

@media screen and (max-width: 768px){
    .gallery-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery-image{
        width: 100%;
        margin: auto;
    }
}