:root {
    --bg-primary: #F3FFEC;
    --primary: #444444;
    --main: #389000;
    --bg: linear-gradient(180deg, #F3FFEC 0%, rgba(243, 255, 236, 0) 100%);

}

.tour-hero {
    background-image: url('../images/contact-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh;
    position: relative;
    background-size: cover;
}

.tour-about-bg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, #F3FFEC 0%, rgba(243, 255, 236, 0) 100%); */
}

.tour-content {
    padding-top: 100px;
}

.tour-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    color: var(--primary);
}

.tour-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: center;
    color: var(--primary);
    padding-top: 12px;
}

.contact-hero-btn {
    padding-top: 100px;
}

.contact-hero-btn a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.01em;
    background-color: var(--main);
    padding: 10px 80px;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid var(--main);
    transition: all .3s ease-in-out;
}

.contact-hero-btn a:hover {
    background-color: transparent;
    border-color: white;
}

/* =============================================== */
.contact-add {
    margin-top: 100px;
}

.continfo {
    padding: 10px;
}

.continfo a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--primary);
    text-decoration: none;
    padding: 0px 10px;
    transition: .3s;
}

.continfo a:hover {
    color: var(--main);
}

.contact-form-section {
    margin-top: 150px;
}

.form-content h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.005em;
    border-bottom: 2px solid var(--main);
    margin-bottom: 10px;
}

.form-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    padding: 10px 0px;
    color: var(--primary);
    text-align: center;
}

.contact-form {
    width: 48%;
    margin: auto;
}

.form-input {
    height: 60px;
    padding: 0px 20px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #4444445e;
    /* color: var(--main); */
}

.form-input::placeholder {
    color: #4444445e;
}

.form-input:focus {
    outline: var(--main);
    border-color: var(--main) !important;
}

.form-input-text {
    padding: 20px 20px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #4444445e;
    /* color: var(--main); */
}

.form-input-text::placeholder {
    color: #4444445e;
}

.form-input-text:focus {
    outline: var(--main);
    border-color: var(--main) !important;
}

.form-btn {
    margin-top: 50px;
    background-color: transparent;
    color: var(--main);
    border: 2px solid var(--main);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: center;
    padding: 10px 30px;
    border-radius: 100px;
    transition: all .3s ease-in-out;
}

.form-btn:hover {
    background-color: var(--main);
    color: white;
}

.map-section {
    margin-top: 150px;
}

@media(max-width:1280px) {
    iframe {
        height: 440px;
    }
}

@media(max-width:1023px) {
    .contact-form {
        width: 100%;
    }
}

@media(max-width:767px) {
    iframe {
        height: 500px;
    }

    .form-input {
        margin-top: 12px;
        height: 50px;
    }

    .form-input-text {
        margin-top: 12px;
        max-height: 200px;
    }

    .contact-add {
        margin-top: 45px;
    }

    .contact-form-section {
        margin-top: 75px;
    }

    .map-section {
        margin-top: 80px;
    }
}

@media(max-width:424px) {
    .contact-info {
        justify-content: center;
    }
}