@import '../base/variables.css';

.contact__section {
    padding-top: 20px;
    background: linear-gradient(to right bottom, rgba(111, 198, 213, 0.8), rgba(40, 101, 180, 0.8));
}

.contact {
    margin: auto;
    width: 90%;
    height: auto;
    display: grid;
    gap: 50px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.contact__box {
    display: flex;
    flex-flow: wrap;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    min-height: 60px;
    padding: 0px 20px 0px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.contact__header {
    font-size: var(--font-size-sm);
    text-align: center;
    text-transform: uppercase;
    color: white;
    transition: all .2s;
}

.contact__icon {
    width: 36px;
    height: 36px;
}

.contact__icon__text {
    font-size: var(--font-size-sm);
}

.contact__body {
    display: flex;
    flex-flow: column;
}

@media screen and (min-width: 496px) {
    .contact {
        margin: auto;
        width: 75%;
    }
}

@media screen and (min-width: 992px) {
    .contact {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .contact__icon__text {}
}

.contact__form__box {
    width: 100%;
    background-color: white;
}

.contact__form {
    display: grid;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.contact__form__group {
    display: inline-block;
    margin-top: 20px;
}

.contact__form__input {
    font-size: 1.3rem;
    font-family: inherit;
    padding: 1.3rem 2rem;
    margin-bottom: 10px;
    width: 100%;
}

.contact__form__label {
    height: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 1.6rem;
    cursor: pointer;
    position: relative;
    padding-left: 4.5rem;
}

.contact__form__button {
    height: 2rem;
    width: 2rem;
    display: inline-block;
}

.contact__form_radio__label {
    height: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 1.6rem;
    cursor: pointer;
    position: relative;
    padding-left: 4.5rem;
}

.contact__form__radio-input {
    display: none;
}

.sendmail {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.sendmail__cc__msg {
    font-size: var(--font-size-sm);
    margin: 0px;
    text-transform: none;
}

.sendmail_text {
    font-size: var(--font-size-md);
    margin: 0px;
    text-transform: none;
}

@media screen and (min-width: 992px) {
    .contact__form {
        padding-top: 10px;
    }

    .contact__form__group {
        margin-top: 10px;
    }

    .contact__form__input {
        width: 700px;
    }
}

.indications {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.indications__maps {
    place-self: flex-start;
    width: 48px;
    height: 48px;
}

.address {
    font-size: var(--font-size-sm);
    font-weight: bold;
    text-decoration: none;
    color: rgb(82, 82, 82);
}

@media screen and (min-width: 992px) {
    .indications {
        padding-top: 10px;
    }
}