:root {
    --dark-green: #163020;
    --light-green: #527853;
    --golden: #f3d15f;
    --pastel-green: #e7ece7;

    --hover-green: #e8efe8;
}

.container {
    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);
}

/* contact card section */

.ct-card-wrapper{
    max-width: 1000px;
    width: 90%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 0px 20px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    min-height: 500px;
}

.ct-card-msg-container{
    padding: 30px 20px;
    max-width: 600px;
    width: 100%;
}

.msg-head{
    font-size: 1.5rem;
    font-weight: 700;
   
}

.input-container{
    margin-bottom: 15px;
}

.input-container input, textarea {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--light-green);
    color: var(--dark-green);
    
}

textarea{
    height: 150px;
    resize: none;
  
}

.input-container input::placeholder, textarea::placeholder{
    color: var(--light-green);
}

.input-wrapper{
    width: 50%;
}

.send-msg{
    background-color: var(--golden);
    margin-top: 10px;
}

.cti-head{
    font-size: 1.5rem;
    font-weight: 700;
}


.contact-info-container{
    
    background-color: var(--dark-green);
    border-radius: 0px 20px;
    color: #fff;
    padding: 30px 100px;
    padding-left: 20px;
    height: 500px;
}

.contact-info-container p {
      opacity: 0.8;
}



.cti{
    padding: 10px;
}

.cti-f {
    padding: 10px 15px;
}

@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;
    }

    .ct-card-wrapper{
        flex-direction: column;
        height: auto;
    }

    .input-container{
        flex-direction: column;
    }

    .input-wrapper{
        width: 100%;
    }

    .contact-info-container{
        width: 100%;
        height: 350px;
    }

    .contact-info-container{
        justify-content: flex-start !important;
        gap: 30px !important;
    }

}