* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 100%;
    color: #16124C;
}
@media screen and (max-width: 992px) {
    body {
        font-size: 180%;
    }
}


/*------------------------------ Selection ------------------------------*/

::selection {
    background: #16124C;
    color: white;
}

::-moz-selection {
    background: #16124C;
    color: white;
}


/*------------------------------ Typographie ------------------------------*/

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.125em;
    font-weight: 900;
    letter-spacing: 0.500em;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.750em;
    font-weight: 400;
    letter-spacing: 0.125em;
}

h3 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.563em;
    font-weight: bold;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 24px !important;
    padding-top: 16px;
}

h3::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: -8px;
    background-color: #FEB47B;
    height: 18px;
    width: 80%;
    z-index: -1;
}

h4 {
    font-size: 1.500em;
    line-height: 1.4em;
}

p {
    font-weight: 300;
    line-height: 1.5em;
}


/*------------------------------ Link ------------------------------*/

a {
    text-decoration: none;
}


/*------------------------------ Layout ------------------------------*/
section {
    margin: 50px 0;
}

.wrapper {
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 1200px) {
    .wrapper {
        max-width: 970px;
    }
}

@media screen and (max-width: 992px) {
    .wrapper {
        max-width: 750px;
    }
}


/*------------------------------ Form ------------------------------*/

label {
    font-size: 0.938em;
    font-weight: 500;
}

label .requested {
    color: #FF7F50;
}

input {
    display: block;
    border: none;
    background-color: #F5F5F5;
    width: 100%;
    height: 35px;
    padding: 8px 16px;
    font-size: 1.000em;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    color: #16124C;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom: 2px solid #FF7F50;
}

input.withLabel, textarea.withLabel {
    margin-top: 4px;
}

textarea {
    display: block;
    border: none;
    background-color: #F5F5F5;
    width: 100%;
    min-height: 160px;
    padding: 8px 16px;
    font-size: 1.000em;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    color: #16124C;
}


/*------------------------------ Button ------------------------------*/

button {
    font-size: 1.000em;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    padding: 12px 24px;
    background-color: #FEB47B;
    color: white;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #FF7F50;
    transition: background-color 0.2s;
}

.success-message {
    position: absolute;
    left: 37%;
    top: 203px;
    text-align: center;
    background-color: #DFF7D0 ;
    padding: 50px 80px;
    border-radius: 10px;
    color: #629E3B;
}