#contact-page .general-header {
    background-image: url("/assets/images/bg/shorline-gallivanting.jpg");
}

#contact-card-section div.inner {
    align-items: center;
    gap        : 24px;
    font-size  : 14px;
    line-height: 22px;
    font-weight: 500;
    padding-top: calc(var(--general-padding) + 30px);
}

#contact-card-section h1 {
    margin: 0;
}

.contact-brief-info {
    display       : flex;
    flex-direction: column;
    color         : #555;
}

.contact-brief-info:last-child span:first-child,
.contact-link:not(footer .contact-link) span {
    font-weight: 600;
    color      : #333;
}

#contact-form-section div.inner {
    padding-bottom: calc(var(--general-padding) + 30px);
}

#contact-form-section form {
    display: flex;
    gap    : 30px;
}

#contact-form-section form>div {
    width     : 100%;
    text-align: left;
}

#contact-form-section button[type="submit"] {
    background-color: #273f44;
    color           : var(--white);
    border          : solid 2px #273f44;
    font-weight     : 600;
    cursor          : pointer;
    transition      : all ease 0.3s;
    border-radius   : 4px;
    display         : flex;
    align-items     : center;
    justify-content : center;
    max-width       : 133px;
    height          : 48px;
    width           : 100%;
}

#contact-form-section button[type="submit"]:hover {
    background-color: var(--primary);
    border-color    : var(--primary);
}

#contact-form-section button[type="submit"]:active {
    background-color: var(--white);
    color           : var(--primary);
}


@media screen and (max-width: 768px) {

    #contact-form-section form {
        flex-direction: column;
        gap           : 15px;
        max-width     : 500px;
        margin        : auto;
        width         : 100%;
    }

    #contact-form-section form>div.left>.input-container {
        margin: 0;
    }

    #contact-form-section button[type="submit"] {
        max-width: 100%;
        margin   : auto;
    }

}