main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    align-self: stretch;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1888px;
}
.contact-section {
    color: var(--Black);
    margin: 0px 80px;

}

@media (max-width: 900px) {
    .contact-section {
        margin: 0 20px;
    }
}



.contact-section h1 {
align-self: start}

.contact-content {
    display: flex;
    flex-direction: row;
    gap: 65px;
    box-sizing: border-box;
}

.contact-left {
    width: 24%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.repeater-item {
    display: flex;
    gap: 25px;
    flex: 1;
    align-items: start;
}

.contact-repeater-icons {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.horizontal-line {
    width: 1px;
    background-color: var(--Black);
    align-self: stretch;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}


.contact-form-top-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px;
}

.contact-form-top-div p {
    margin-top: 0;
}

.contact-form-top-div input,
.contact-form-top-div select {
    width: 100%;
    box-sizing: border-box;

}


.contact-form-name span input, .contact-form-email span input,
.contact-form-theme span select {
    padding: 10px 5px 15px 5px;
    margin: 0;
}

.contact-form-name span input, .contact-form-email span input,
.contact-form-theme span select, .contact-form-message textarea {
    outline: none;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--Black);
    font-size: 16px;
    font-family: 'SpaceGrotesk', sans-serif;
}

.contact-form-name span input:focus, .contact-form-email span input:focus,
.contact-form-theme span select:focus, .contact-form-message textarea:focus {
    border-bottom-color: var(--Red);
}


.contact-form-message textarea {
    width: 100%;
    padding: 8px 5px;
}

.wpcf7-list-item, .wpcf7-list-item input {
    margin: 0;
}

.wpcf7-list-item a {
    display: inline;
}

.contact-submit {
    background-color: var(--Soft-Black);
    color: var(--White);
    text-transform: uppercase;
}


.contact-submit-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact-submit-button p {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-submit-button input {
    background-color: var(--Softer-Black);
    width: 350px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    transition: ease-in-out 0.2s;
    border: 0;
    font-size: 18px;
    font-weight: 500;
    font-family: 'SpaceGrotesk', sans-serif;
    order: 2;
}

.contact-submit-button:hover input {
    cursor: pointer;
    background-color: var(--Red);
}

.wpcf7-spinner {
    order: 1;
}


























.faq {
    margin: 0 80px;
    width: auto;
    max-width: 1888px;
}

@media (max-width: 900px) {
    .faq {
        margin: 0 20px;
        width: auto;
    }

    .contact-content {
        flex-direction: column;
        max-width: 100%
    }

    .contact-left {
        width: 100%;
    }

    .horizontal-line {
        width: 100%;
        height: 1px;
    }



}



@media (max-width: 600px) {
    .contact-form-top-div {
        width: 100%;
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .faq-section {
        display: none;
    }

    .contact-submit-button p {
        width: 100%;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-submit-button input {
        width:200px;
    }

}









































