.contact-header{
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.contact-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-header__filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(0deg, var(--header) 0%, #08174C38 100%);
}

.contact-header__container{
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    bottom: 30px;
}

.contact-header__title{
    text-transform: capitalize;
    font-family: "Syne", "sans-serif";
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-header__list{
    list-style: none;
    display: flex;
    padding-left: 0;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", "sans-serif";
    font-weight: 200;
    font-size: 16px;
}

.contact-header__container a {
    color: white;
    text-decoration: none;
}

.section__title {
    font-size: 38px;
    font-family: "Syne", "sans-serif";
    color: var(--header);
    font-weight: 400;
    letter-spacing: 1px;
}

.section__sub-title {
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    font-family: "Raleway", "sans-serif";
}

.section__paragraph{
    font-weight: 300;
    color: var(--light-gray);
    font-family: "Raleway", sans-serif;
}

input::placeholder, textarea::placeholder {
    color: var(--light-gray) !important;
    font-family: "Raleway", sans-serif;
    font-weight: 200;
}

.contact-card__icon-wrapper{
    width: 80px;
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card__title{
    font-size: 23px;
    font-family: "Syne", "sans-serif";
    font-weight: 300;
    color: var(--header)
}

.contact-card__description{
    font-size: 16px;
    font-family: "Raleway", "sans-serif";
    font-weight: 300;
    color: var(--light-gray)
}

.form-control{
    border: none;
    padding: 0;
}

.form-control input,
.form-control textarea {
    border: 1px solid var(--border);
    padding: 10px 15px;
}
.form-control input:focus,
.form-control textarea:focus {
    outline: none !important;
}
.form-control.error input,
.form-control.error textarea {
    border: 1px solid red;
}

.form-control.success input,
.form-control.success textarea{
    border: 1px solid var(--border);
}


small{
    color: red;
}

.form-control.error small {
    visibility: visible;
}

.form-control.success small {
    visibility: hidden;
}
.section__map{
    width: 100%;
    aspect-ratio: 1 / 1;
}

.btn {
    width: 100%;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .contact-header{
        aspect-ratio: 2 / 1;
    }

    .contact-header__title {
        font-size: 45px;
    }

    .section__title {
        font-size: 45px;
    }
    .btn{
        width: 30%;
    }
}
@media (min-width: 992px) {
    .contact-header{
        aspect-ratio: 3 / 1;
    }
    .btn{
        width: 25%;
    }
}

@media (min-width: 1200px) {
}


@media (min-width: 1400px) {
    .contact-header {
        aspect-ratio: 3.5 / 1;
    }
    .contact-header__title {
        font-size: 55px;
    }
    .section__title {
        font-size: 55px;
    }
    .section__paragraph{
        width: 60%;
    }
    .btn{
        width: 20%;
    }
    #form{
        padding: 30px;
    }
}