.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%);
}

/* Mission */
.mission-container{
    background-color: #121212;
    color: #fff;
    padding: 70px 0;
    overflow: hidden;
}

.mission-sub-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.mission-img{
    width: 100%;
    max-height: 300px;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.mission-head{
    font-size: 36px;
    font-weight: 700;
    color: #fff
}

.mission-content-container{
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    margin-top: 20px;
    font-size: 17px;
}

.mission-content{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 10px;
}

.mission-text{
    margin: 0;
}

.mission-icon{
    width: 25px;
    height: 20px;
    margin-top: 4px;
    font-size: 20px;
    color: #C6D93B;
}

/* Form */
.form-main-container{
    padding: 70px 0;
    text-align: center;
    font-size: 17px;
    background: #232323;
    color: #fff;
    overflow: hidden;
}

.form-sub-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.form-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.form-head{
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 36px;
    text-align: start;
}

.form-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    /* grid-gap: 17px; */
}

.form-main-input{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.form-input{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* grid-gap: 17px; */
    justify-content: flex-start;
}

label.error{
    padding: 5px 10px;
    color: #ff0000;
    font-weight: 500;
    text-align: start;
}

.input-field{
    width: 100%;
    padding: 10px 20px;
    border: none;
    /* border-radius: 0px; */
    background-color: transparent;
    border: #777 solid 1px;
}

.input-field::placeholder{
    color: #fff;
}

.form-submit-btn{
    background-color: #C6D93B !important;
    color: #000;
    font-weight: 500;
    width: fit-content;
    border: none;
    border-radius: 0px;
    padding: 10px 20px;
}



@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%;
    }
}
@media screen and (max-width: 767px){
    .mission-sub-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .form-sub-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 575px){
    .form-input{
        flex-direction: column;
    }
    .form-main-input{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}