.top-page-container {
    background: #E7EDF1;
    padding: 50px 0;
}

.top-page-subtitle {
    width: 1100px;
    margin: 15px auto;
    font-size: 28px;
    color: #616160;
    text-align: center;
}

.top-page-bottom-decoration {
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 25'%3E%3Cpath d='M 0 0 L 800 0 C 750 12 600 25 400 25 C 200 25 50 12 0 0 ' fill='%23E7EDF1' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transform: translateY(-1px);
}

/*
/////////////////////////////////////////////////////////////
///////////////////    WORKSHOP    //////////////////////////
/////////////////////////////////////////////////////////////
*/

.workshops-container {
    width: 1400px;
    margin: auto;
}

.workshop-section {
    position: relative;
    height: 600px;
    margin-bottom: 80px;
}

.workshop-background {
    width: 100%;
    height: 450px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.workshop-background-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.workshop-group-container {
    border: 4px solid white;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    margin: 30px 60px;
    color: white;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    width: 225px;
    height: 175px;
    text-align: center;
    text-transform: uppercase;
}

.workshop-section.revert .workshop-group-container {
    right: initial;
    left: 0;
}

.workshop-group-number {
    display: inline-block;
    font-size: 40px;
    margin: 0 5px;
}

.workshop-contact {
    background: white;
    color: #064872;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;

    position: absolute;
    bottom: 0;
    right: 0;
    margin: 30px 60px;
    padding: 20px;
}

.workshop-section.revert .workshop-contact {
    right: initial;
    left: 0;
}

.workshop-overlay {
    background: rgba(6, 72, 114, 0.7);
    height: 100%;
    width: 450px;
    position: absolute;
    right: calc(50% + 40px);
}

.workshop-section.revert .workshop-overlay {
    right: initial;
    left: calc(50% + 40px);
}

.workshop-text-container {
    color: white;
    position: absolute;
    height: 450px;
    top: 75px;
    left: 0;
    padding: 70px 20px;
}

.workshop-text-container::before {
    content: '';
    width: 250px;
    height: 1px;
    background: white;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.workshop-text-container::after {
    content: '';
    width: 250px;
    height: 1px;
    background: white;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.workshop-text-title {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.workshop-text-description {
    font-size: 18px;
}

.workshop-text-info {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

.workshop-contact::first-letter {
    font-size: 25px;
}

/*
/////////////////////////////////////////////////////////////
/////////////////////    CONTACT    /////////////////////////
/////////////////////////////////////////////////////////////
*/   

.contact {
    margin: 150px auto 50px auto;
    width: 1400px;
    text-align: center;
}

.contact-title {
    font-size: 50px;
    font-weight: 600;
    color: #064872;
}

.contact-subtitle {
    font-size: 40px;
    color: #616160;
}

.contact-button {
    display: inline-block;
    margin: 50px 0;
    border-radius: 15px;
    background: #F3944D;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    width: 230px;
    text-align: left;
    position: relative;
}

.contact-button::after {
    content: '';
    width:  30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url('../media/imgs/fleche_blanche.png');
    background-size: contain;
}