.contact-hero {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.contact-hero img {
    width: 100%;

    object-fit: cover;
    object-position: center;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
}

.contact-hero__overlay h1 {
    font-size: 3rem;
    font-weight: 800;
}

.contact-hero__overlay h1 span {
    font-weight: 400;
}

.contact-hero__line {
    width: 80px;
    height: 3px;
    background: #cfe68a;
    margin-top: 16px;
}




.contact-info {
    padding: 60px 0;
    background: #fffaf0;
}

.contact-info__item i {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-info__item h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info__border {
    border-left: 2px solid #0b4f2f;
    border-right: 2px solid #0b4f2f;
}


.contact-form {
    padding: 80px 0;
    background: #fffaf0;
}

.contact-form__box {
    max-width: 520px;
}

.contact-form .form-control {
    background: #0b4f2f;
    border: none;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 16px;
}

.contact-form .form-control::placeholder {
    color: #cfe68a;
}

.contact-btn {
    background: #eaffb0;
    border-radius: 999px;
    padding: 10px 28px;
    font-weight: 700;
}

.contact-btn:hover {
    background: #d5ffb0;
}

.contact-social {
    padding: 40px 0;
}

.social-icons i {
    font-size: 28px;
    margin: 0 10px;
}


.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

.contact-info p a,
.contact-social a {
    text-decoration: none;
    color: #000;
}

@media (max-width: 768px) {
    .contact-hero img {
        height: 100%;
    }
}