* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    /* 1rem = 10px so 16px here */
    font-size: 1.6rem;
    font-family: 'Hind', sans-serif;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height:4.8rem;
    padding: 0 2.5rem;
    background: #8762a9;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all ease .4s;
    border: 2px solid #8762a9;
}

.button:hover{
    background:#fff ;
    color:#8762a9;
    font-weight: 500;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #8762a9 url('/img/bg_trame.png') repeat;
    color: #fff;
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
}

header {
    width: 100%;
}
.page .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8.5rem;
    background: #fff;
    padding: 0 2rem;
    box-shadow: 0px 0px 7px 0px rgba(64, 65, 65, 0.22);
}
.content__img {
    max-width: 100%;
}
.page main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    width: 100%;
    min-height: 100%;
    padding: 2rem 4rem;
}

.page .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.content__info {
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    font-weight: 300;
    max-width: 100%;
}

.content__info__contact {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.content__info__title {
    font-size: 7.2rem;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
}
.content__info .content__img {
    display: none;
}

/*Contact*/
.page.contact {
    background: #eeeef4;
    color: #494645;

}

.page.contact main {
    padding-top: 12rem;
    justify-content: center;
    align-items: flex-start;
}

.contact__wrap {
    display: flex;
    flex-direction: column;
    width: 74.6rem;
}

.contact__wrap__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact__wrap__header p {
    font-size: 1.8rem;

}

.contact__wrap__title {
    font-size: 7.2rem;
    flex: 1 0 auto;
    font-weight: 300;
}

.contact__form__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.contact__form__container .contact__col {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 20rem; 
}

.contact__form__container .field__wrap input,
.contact__form__container .field__wrap select,
.contact__form__container .field__wrap textarea {
    width:100%;
    display: block;
    margin-top: 1.5rem;
    height: 6.2rem;
    background: #fff;
    border: .1rem solid #cdcdcd;
    padding:0 1rem 0 2rem;
    font-size: 1.6rem;
    color: #494645;
    font-family: 'Hind', sans-serif;
    border-radius: .2rem;
}
.contact__form__container .field__wrap option {
    height: 150px;
}
.contact__form__container .field__wrap textarea {
    min-height: 11.8rem;
    max-height: 11.8rem;
    min-width: 100%;
    padding: 2rem;
}

.contact__form__container .field__wrap__multi input:first-child {
    border-right: 0;
}

.form__line {
    margin-top: 3rem;
    width: 100%;
}

.contact__form__container .field__wrap {
    display: flex;
    flex: 1;
    gap: 0;
}

form .button {
    min-width:23rem;
}


@media only screen and (max-width: 320px) {
    .content__info__title {
        font-size: 3.5rem;
        text-align: center;
    }
    .content__info {
        gap: 3rem;
        font-size: 1.8rem;
        text-align: center;
    }
    .content__info__contact {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .content__info p:last-child {
        width: 150px;
        margin: 0 auto;
        text-align: center;
    }
    .content__img {
        display: none;
    }
    .content__info .content__img {
        display: block;
    }
  }

  @media only screen and (min-width: 321px) and (max-width: 740px) {
    .content__info__title {
        text-align: left;
        font-size: 4.2rem;
    }
    .content__info__contact {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .content__info {
        gap: 3rem;
        font-size: 1.8rem;
        text-align: center;
    }
    .content__img {
        display: none;
    }
    .content__info .content__img {
        display: block;
    }
  }



