/* Hero Section */
.hero-section {
    background-image: url('../images/contact/bg.webp');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: var(--black-5);
}

.hero-section h1{
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-section p{
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 400;
}

/*Contact Form*/

.contactForm{
    padding: 6rem 0;
}

.contactForm .card{
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px #00000040;

}

.contactForm .card-body{
    padding: 0;
    overflow: hidden;
}

.contactForm .leftSec{
    background: linear-gradient(180deg, #FEEAB9 0%, rgba(198, 145, 79, 0.75) 100%);
    padding-right: 0;
}

.contactForm .leftSec .topcontent{
    padding: 40px 120px 0px 60px;
}

.contactForm .leftSec .midcontent{
    padding: 40px;
}

.contactForm .leftSec .bottomcontent{
    overflow: hidden;
}


.contactForm .leftSec h1{
    color: var(--secondary-100);
    font-weight: 700;
    font-size: 2.8rem;
}

.contactForm .banner{
    white-space: nowrap;
    animation: bannermove 20s linear infinite;
}

.contactForm .rightSec{
    padding: 40px;
}

.contactForm .rightSec h1{
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.contactForm label{
    font-weight: 500;
    font-size: 1.1rem;
}

.contactForm input{
    padding: 15px 20px;
}

.contactForm .btn-sub{
    width: 100%;
    color: var(--black-5);
    background: var(--text-primary);
    padding: 15px 30px;
    font-weight: 500;
}

@keyframes bannermove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

@media (max-width: 768px) {

    .contactForm .leftSec{
        display: none!important;
    }

    .contactForm .rightSec{
        padding: 25px;
    }

    .contactForm .rightSec h1{
        font-size: 2rem;
    }
}