/**WEBSITE DEV**/
#contact-header {
    height: 275px;
    background: url(../img/Vector-website-dev.svg);
    align-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    h1 {
        text-align: center;
    }
}

#contact-cards {
    text-align: center;

    .col {
        margin-top: 40px;
    }
    .header-image {
        margin: 10px auto;
    }



    .card {
        a {
            text-decoration: none;
            color: black;
            font-size: 16px;
            font-family: 'ABeeZee';
        }
        &:hover {
            a {
                color: white;
            }
        }
    }

    margin-bottom: 150px;
}


#contact-p1 {
    margin-bottom: 80px;
    .row {
        align-items: center;
    }
    img {
        min-width: 300px;
        max-width: 350px;
        width: 100%;
    }
    p {
        margin-top: 15px;
        margin-bottom: 0;
    }
}

#contact-cms {
    background-color: var(--primary-color-gray-light);
    height: fit-content;
    .row {
        align-items: center;
    }

    h1 {
        margin: 0 0 40px auto;
        width: fit-content;
        text-align: right;
        padding: 10px 40px;
        border-radius: 20px 0 0 20px;
        background: var(--gold-gradient-to-top);
        color: white;
    }

    img {
        min-width: 300px;
        max-width: 350px;
        width: 100%;
    }
}

#contact-unique {

    height: fit-content;
    .row {
        align-items: center;
    }

    h1 {
        margin: 40px auto 40px 0;
        width: fit-content;
        text-align: right;
        padding: 10px 40px;
        border-radius: 0 20px 20px 0;
        background: var(--gold-gradient-to-top);
        color: white;
    }

    img {
        min-width: 300px;
        max-width: 350px;
        width: 100%;
    }
}
#contact-form {
    .container .row .col img {
        max-width: 100%;
        min-width: 300px;
    }

    margin-bottom: 50px;
}
.contact-form {

    label {
        display: none;
    }

    .full-width {
        width: 100%;
    }

    input {
        border-radius: 4px;
        border: 1px solid var(--primary-color-gold-light);
        padding-left: 5px;
        margin-bottom: 15px;

        &:focus-visible {
            border: 1px solid var(--primary-color-gold-dark);
        }
    }

    textarea {
        border-radius: 4px;
        border: 1px solid var(--primary-color-gold-light);
        padding-left: 5px;

        &:focus-visible {
            border: 1px solid var(--primary-color-gold-dark);
        }
    }

    p {
        input {
            margin-right: 10px;
        }
        a {
                text-decoration: none;
                color: var(--primary-color-gold-text);
        }
    }

    .contact-btn {
        background: var(--gold-gradient-to-right);
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
    }
}

