:root {
    --dark-green: #163020;
    --light-green: #527853;
    --golden: #f3d15f;
    --pastel-green: #e7ece7;

    --hover-green: #e8efe8;
}

.container {
    max-width: 1300px; 
    width: 90%;
    margin: 60px 0;
}

.sub-hero-section {
    width: 100%;
    height: 400px;

    position: relative;
}

.sub-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
}

.sub-hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #163020 1.32%, rgba(22, 48, 32, 0.50) 50.66%, rgba(255, 255, 255, 0.00) 100%);
    z-index: -1;
}

.sub-hero-content {
    padding-top: 190px;
    padding-bottom: 50px;
    color: #fff;
}


.sub-head {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--golden);
}

.sub-sub-para {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.links p {
    margin: 0;
}

.links a {
    text-decoration: none;
    color: #fff;
}

.links i {
    font-size: 0.9rem;
    margin-top: 5px;
}

.links a:hover {
    color: var(--golden);
}


.sub-page-head {
    text-align: center;
    color: var(--dark-green);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}


.sub-page-sub-head {
    text-align: center;
    color: var(--dark-green);
    font-size: 1rem;
    margin-bottom: 30px;
}

.info-section{
    margin-top: 60px;
}

.info-head{
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0;
}

.info-para{
    opacity: 0.8;
    text-align: justify;
}

hr{
    color: var(--dark-green);
    opacity: 0.8;
    
    margin-bottom: 10px;
}

@media screen and (max-width:767px) {
    .container {
        margin-bottom: 30px;
    }
    .sub-hero-section {
        height: 300px;
    }

    .sub-hero-content {
        padding-top: 100px;
    }

    .sub-head {
        font-size: 1.5rem;
        margin-bottom: 2px;
        font-weight: 500;
        color: var(--golden);
    }

    .sub-sub-para {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .links p {
        margin: 0;
        font-size: 0.8rem;
    }

    .links a {
        font-size: 0.8rem;
    }

    .links i {
        font-size: 0.6rem;
    }

    .sub-page-head {
       
        
        
        font-size: 2rem;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .sub-page-sub-head {
        
        
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: left;
    }

}