/* ----- GENERAL ------ */

/*
feb692
ea5455
*/

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    font-size: 1.8rem;
    background-color: #f7f7f7;
    color: #555;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
    margin: 4rem 0 2rem 0;
    color: #a33f6b;
}

h3 {
    font-size: 2rem;
    margin: 4rem 0 2rem 0;
    color: #ea5455;
}

header, section, footer {
    padding: 2rem;
    width: 100%;
    max-width: 140rem;
    margin: 0 auto;
}

footer {
    text-align: center;
}

img {
    max-width: 100%;
}

p {
    margin-bottom: 1rem;
}

button, .button {
    border: none;
    display: inline-block;
    background-color: #a83865;
    color: #f7f7f7 !important;
    padding: 1rem 3rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    margin-top: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .5s;
}

button:hover, .button:hover, .accordion:hover {
    /*border-radius: 10px;*/
    background-color: #eb5955;
    /*position: relative;*/
    /*top: 0.3rem;*/
    /*right: 0.3rem;*/
}


a, a:active, a:link, a:visited {
    text-decoration: none;
    color: #555;
}

a:hover {
    color: #a83865;
}

/* ----- SPECIFIC ------ */

.training-page h1, #application h2 {
    font-size: 3rem;
    margin: 4rem 0 2rem 0;
    color: #a33f6b;
    text-align: center;
}

.training-page h2 {
    font-size: 2rem;
    margin: 4rem 0 2rem 0;
    color: #ea5455;
    text-align: left;
}

.training-page h3 {
    text-align: left;
}

section h2 {
    text-align: center;
}

#jumbotron {
    position: relative;
    max-width: unset;
    max-height: 700px;
    padding: 0;
    background: url(../img/jumbotron.jpg) center;
    background-size: cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #f7f7f7;
}

#jumbotron:after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
}

#jumbotron div {
    width: 100%;
    max-width: 140rem;
    margin: 0 auto;
    padding: 2rem;
    margin-bottom: 4rem;
    z-index: 1;
}

#jumbotron h1 {
    text-transform: uppercase;
    font-size: 7rem;
}

#jumbotron p {
    font-size: 4rem;
    margin-top: -10px;
}

.jumbotron {
    text-align: center;
}

.jumbotron p {
    text-align: left;
}

#partners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

#partners img {
    max-width: 120px;
    margin: 10px 20px;
}

/* ----- HEADER ------ */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    justify-content: flex-end;
}

header nav div {
    margin: 0 1.1rem;
}

header nav div:first-child {
    margin-left: 0;
}

header nav div:last-child {
    margin-right: 0;
}

#logo img {
    max-width: 200px;
    display: block;
}

#language-picker span {
    cursor: pointer;
}

#language-picker span:not(:last-child) {
    margin-right: 5px;
}

@media screen and (max-width: 40rem) {
    header {
        flex-wrap: wrap;
        text-align: center;
    }

    header > * {
        width: 100%;
    }

    header nav {
        margin-top: 1.1rem;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    #jumbotron h1 {
        font-size: 4rem;
    }

    #jumbotron p {
        font-size: 2rem;
    }
}

/* ----- TRAININGS ------ */

.training {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.training img {
    max-width: 500px;
    width: 100%;
}

.training .button {
    margin-bottom: 4rem;
}

.training-right > div:first-child {
    text-align: right;
    max-width: 500px;
}

.training-left > div:last-child {
    max-width: 500px;
}

.training-left > div:first-child {
    margin-right: 4rem;
}

.training-right > div:last-child {
    margin-left: 4rem;
}

.subtrainings {
    text-align: center;
    display: flex;
}

.subtrainings button {
    flex: 1 1 0;
}

/* ----- ABOUT ------ */

#about p {
    text-align: center;
    max-width: 140rem;
    margin: 0 auto 10px;
}

/* ----- FORM ------ */

form {
    max-width: 100rem;
    margin: 0 auto;
}

form div {
    display: flex;
}

form input, form textarea, form select {
    display: inline-block;
    width: 100%;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    color: #555;
    padding: 1.5rem;
    background-color: white;
    /*border-bottom: #f7f7f7 0.3rem solid;*/
    border-bottom: #ffe3d5 0.3rem solid;
    margin: 2rem 1rem;
}

form button {
    display: block !important;
    margin: 2rem auto;
}

form input:focus, form textarea:focus, form select:focus {
    border-bottom: #a33f6b 0.3rem solid;
    outline: none;
}

button:focus {
    outline: none;
}

button.active {
    background-color: rgba(168, 56, 101, 0.7);
    background-color: #f49700;
}

#mail-response, #application-response {
    text-align: center;
}

@media screen and (max-width: 700px) {
    form div {
        flex-wrap: wrap;
    }
}

/* ----- DROPS ------ */

.drops {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*text-transform: lowercase;*/
    margin-top: 40px;
    flex-wrap: wrap;
}

.drop {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.drop span {
    font-size: 2.5rem;
}

.drop i {
    color: #f49700;
    margin-right: 20px;
}

.drop-important {
    margin-top: 40px;
}

.drop-important i {
    color: #eb5955;
}

/* ----- NOTIFICATIONS ------ */

.notifications div {
    text-align: center;
    margin: 1.1rem;
    font-size: 2.5rem;
    color: #a33f6b;
    color: #eb5955;
    font-weight: 400;
}

/* ----- ACCORDION ------ */

.accordion {
    background-color: #a83865;
    color: white;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.7rem;
    transition: 0.4s;
    font-weight: 300;
    position: relative;
    padding: 18px 36px 18px 18px;
    margin: 0;
}

h3.accordion:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    position: absolute;
    right: 18px;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 10px;
}

.panel > ul {
    margin: 20px 40px;
}

.panel h3 {
    margin-top: 20px;
    font-weight: normal;
}

/* ----- DETAILS ------ */

.details {
    display: flex;
    /*text-align: center;*/
    justify-content: space-between;
    flex-wrap: wrap;
}

.details div {
    margin: 0 20px;
    min-width: 200px;
    flex: 1 1 0;
}

.details div:first-child {
    margin-left: 0;
}

.details div:last-child {
    margin-right: 0;
}

ul {
    margin: 0 20px;
    list-style-type: square;
}

li {
    font-size: 1.6rem;
}

ul ul {
    margin: 0 40px;
    list-style-type: disc;
}

.image {
    text-align: center;
}

.image img {
    max-width: 500px;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .details > div {
        margin: 0 !important;
        width: 100%;
        flex: unset;
    }
}

/* --------- OTHER --------- */

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar {
    background: rgba(168, 56, 101, 0.2) !important;
}

::-webkit-scrollbar-thumb {
    background-color: #a83865;
}

::selection {
    background: #a83865;
    color: white;
    text-shadow: none;
}
