:root {
    --dark-green: #163020;
    --light-green: #527853;
    --golden: #f3d15f;
    --pastel-green: #e7ece7;

    --hover-green: #e8efe8;
}

.container {
    margin-bottom: 60px;
}

.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);
}

.sitemap-wrapper{
    margin-top: 60px;
}

.sitemap-wrapper p {
    margin: 0;
}

.sitemap-head{
    font-size: 1.5rem;
    font-weight: bold;
}

.divide-line{
    width: 50px;
    height: 3px;
    background-color: var(--light-green);
    margin-top: 7px;
    margin-bottom: 15px;
}

.sitemap-container a {
    text-decoration: none;
    color: var(--dark-green);
    opacity: 0.8;
}


.sitemap-container  i {
    transition: all 0.6s;
    margin-right: 10px;
}

.sitemap-container a:hover i {
    transform: translateX(5px);
}

.sitemap-container a:hover {
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 3px;
}


@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;
    }
}