.contact-wrapper {
    padding: 36px 0 130px;
    display: flex;
    gap: 32px;
}

.contact-info {
    width: 30%;
    padding: 24px;
    box-sizing: border-box;
}

.contact-form {
    width: 70%;
    padding: 24px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--clr-s-light);
}

.contact-form h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}

.contact-form input:not([type="checkbox"]) {
    height: 60px;
    line-height: 60px;
    color: var(--clr-s-light);
    margin-top: 10px;
}

.contact-form input:not([type="checkbox"])::placeholder,
.contact-form textarea::placeholder {
    color: var(--clr-s-light);
}

.contact-form textarea {
    color: var(--clr-s-light);
    margin-top: 10px;
    min-height: 300px;
    margin-bottom: 24px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    max-width: 100%;
}

.contact-form .group-field {
    display: flex;
    gap: 10px;
}

.contact-form .custom-checkbox {
    justify-content: center;
    margin-bottom: 24px;
    max-width: unset;
    display: flex;
    align-items: center;
}

.contact-form button {
    font-size: 24px;
    color: var(--clr-white);
    padding: 7px 64px;
    border-radius: 90px;
    border: 1px solid var(--clr-white);
    background: transparent;
    width: 100%;
    cursor: pointer;
}

@media(max-width: 1023px) {
    .contact-wrapper {
        flex-wrap: wrap;
    }

    .contact-wrapper>div {
        width: 100%;
        padding: 0;
    }

    .contact-wrapper {
        padding: 36px 0 60px;
    }

    .contact-form .group-field {
        flex-direction: column;
        gap: 0;
    }

    .contact-form input:not([type="checkbox"]),
    .contact-form textarea {
        font-size: 20px;
    }

    .contact-form .custom-checkbox {
        font-size: 20px;
    }

    .contact-form button {
        font-size: 20px;
    }
}