.contact {
    width: 100%;
    background: white;
    padding-bottom: 60px;

    .sub-header {
        font-size: 28px;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 14px;
    }

    .sub-header~.text {
        font-weight: 300;
        color: black;
    }
}

.map {
    display: block;
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: 5px;
}

.form {
    width: 100%;

    .header {
        font-size: 28px;
        color: var(--primary);
        font-weight: 600;
    }

    .custom-label {
        display: block;
        width: 100%;
        margin-bottom: 6px;
        font-weight: 600;
        font-size: 14px;
    }

    .custom-input {
        display: block;
        width: 100%;
        border: 1px solid lightgray;
        padding: 5px 10px;

        &:focus {
            border: 1px solid var(--tertiary);
        }
    }

    .c-input {
        border: 1px solid lightgray;
        border-radius: 0px;
        box-shadow: none !important;
        outline: none !important;

        &:focus {
            border: 1px solid var(--tertiary);
        }
    }

    .submit-button {
        display: block;
        width: 100%;
        padding: 12px;
        border: none;
        outline: none;
        background: var(--tertiary);
        color: white;
        font-weight: 700;
        letter-spacing: 3px;

        &:hover {
            background: var(--primary);
        }
    }
}


.custom-contact-anchor {
    text-decoration: none;
    color: black;

    &:hover {
        color: var(--primary);
    }

    .bi {
        color: var(--tertiary);
    }
}

@media (max-width:768px) {
    .map {
        min-height: 350px;
    }
}