.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%);
}

@media screen and (max-width: 1439px){
    .hero-pages-image{
        right: -15%;
    }
}

@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%;
    }
}