/* FONTS */

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Bold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Light.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-LightItalic.ttf');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'SackersGothic';
    src: url('../fonts/SackersGothic/SackersGothic-Light.ttf');
    font-weight: 400;
    font-style: normal;
}




/* GENERAL */

:root {
    /*--background-lunar: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    --background-darkspace: radial-gradient(ellipse at top, #0b0f17 0%, #0c0c0d 100%);
    --color-white: #e9f2f1;
    --color-lunar: #e2d1c3;
    --color-red: #e83439;
    --color-black: #0c0c0d;
    --container-padding: 110px;
    --project-padding: 55px;
    --contact-item-height: 60px;*/
    --color-white: #FFFCFC;
    --color-light-grey: #DDDADB;
    --color-orange: #fb4c0d; /* #F5A53F; << #2AB4B3 << #E40F46;*/
    --color-grey: #707070;
    --color-dark-grey: #575756;
    --color-black: #000000;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    position: relative;
    margin: 0;
    height: 100%;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    background: var(--color-white);
    padding-top: 64.8px;
}

a, a:visited {
    color: var(--color-orange);
    text-decoration: none;
    transition: all ease .3s;
}
a:hover, a:focus {
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2 , h3, h4 {
    line-height: 1;
    text-transform: uppercase;
}

button:focus {
    outline: none;
}



/* NAVBAR */

.navbar-dark {
    color: var(--color-white);
    background-color: var(--color-black) !important;
    padding: .9rem 4.6rem;
    z-index: 12;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 30px;
    height: 23px;
    padding: 0;
    border: none;
}

.navbar-toggler .navbar-toggler-icon {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-white);
}

.navbar-brand {
    background-color: var(--color-dark-grey);
    padding: 25px 65px 39px;
}

.navbar-brand img {
    height: 90px;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 1.2em;
    color: var(--color-white);
    transition: all ease .3s;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--color-orange);
}

.navbar-dark .navbar-nav .nav-link svg {
    height: 25px;
}

.navbar-dark .navbar-nav .nav-link svg path {
    fill: var(--color-white);
    transition: all ease .3s;
}

.navbar-dark .navbar-nav .nav-link:focus svg path,
.navbar-dark .navbar-nav .nav-link:hover svg path,
.navbar-dark .navbar-nav .nav-link.active svg path,
.reservationForm-text svg path {
    fill: var(--color-orange);
}

.navbar-dark .navbar-icons {
    flex-direction: row;
}

.navbar-dark .navbar-icons .nav-item + .nav-item {
    margin-left: 10px;
}

.navbar-dark .navbar-icons .nav-link {
    width: 36px;
    height: 36px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-white);
    border-radius: 50%;
}

.hashtag {
    font-size: 1.2em;
    text-transform: uppercase;
    margin-left: 20px;
}

.navbar-dark .navbar-main .nav-item + .nav-item {
    border-left: 2px solid var(--color-white);
}

.navbar-dark .navbar-main .nav-link {
    text-transform: uppercase;
    padding: 0 1rem;
}


/* CONTENT */

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.main-container {
    position: relative;
    margin-top: 36px;
    margin-bottom: 30px;
    transition: opacity ease .5s;
    opacity: 1;
}

.bg-white {
    display: inline-block;
    color: var(--color-black);
    background-color: var(--color-white);
}

.bg-pink {
    display: inline-block;
    color: var(--color-white);
    background-color: var(--color-orange);
}

.bg-black {
    display: inline-block;
    color: var(--color-white);
    background-color: var(--color-black);
}

.btn-primary {
    font-size: 1.1em;
    text-transform: uppercase;
    color: var(--color-white);
    border-radius: 0;
    background-color: var(--color-orange);
    border: none;
    padding: 14px 44px;
    transition: all ease .3s;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:hover {
    background-color: var(--color-black);
}
.btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}

.form-control {
    min-width: 235px;
    font-size: 1.1em;
    color: var(--color-grey);
    border: 1px solid var(--color-grey);
    border-radius: 0;
    transition: all .15s ease-in-out;
}
.form-control.focus, .form-control:focus {
    box-shadow: none;
    border-color: var(--color-orange);
}

.form-error {
    color: var(--color-orange);
}

.body-bottom {
    position: relative;
    margin-bottom: 55px;
}

.about-chat {
    position: fixed;
    bottom: 55px;
    right: 0;
    /*position: relative;*/
    /*display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 75px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-orange);*/
    z-index: 10;
}

#aboutChatBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 75px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-orange);
    cursor: pointer;
}

#aboutChatBtn svg {
    height: 35px;
}

#aboutChatTxt {
    position: absolute;
    /*top: 20px;*/
    top: 0;
    left: 10px;
    /*width: 275px;*/
    width: max-content;
    height: 75px;
    font-size: 1.2em;
    font-weight: 400;
    color: var(--color-white);
    background-color: var(--color-orange);
    /*padding: 40px 25px 20px;*/
    padding: 17px 30px;
    /*transform: translate(50%, -100%);*/
    transform: translate(50%, 0%);
    transition: all ease .5s;
}

#aboutChatTxt.show {
    left: 10px;
    /*transform: translate(-100%, -100%);*/
    transform: translate(-100%, 0%);
}

#aboutChatTxt p:first-child {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

#aboutChatText p:last-child {
    margin-bottom: 0;
}

#aboutChatCircle {
    display: none;
    position: fixed;
    bottom: -45px;
    left: -220px;
    /*display: block;*/
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 5px solid var(--color-orange);
}

#tarteaucitronRoot #tarteaucitronAlertBig {
    background-color: var(--color-grey) !important;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize2 {
    background-color: var(--color-orange) !important;
}

.basic-title h1 {
    font-size: 2em;
    margin-bottom: 60px;
}

.basic-text {
    column-count: 4;
}

.basic-text * {
    font-size: 1em !important;
    text-transform: initial !important;
}

.basic-text p {
    font-weight: 400;
}



/* HOME */

.home-container {
    position: relative;
    margin-bottom: 75px;
}

.home-container .main-container {
    margin-bottom: 0;
}

.home-text {
    padding: 60px 100px 40px 50px;
}

.home-text h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
}

.home-text p,
.home-text li {
    font-size: 1.3em;
    font-weight: 400;
}

.home-jumbotron {
    text-align: right;
}

.home-title {
    font-family: "SackersGothic", sans-serif;
    text-align: left;
    margin-bottom: 15px;
}

.home-title .home-title-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.home-title span {
    display: inline-block;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-orange);
    /*border: 1px solid var(--color-grey);*/
}

.home-title > span:nth-child(1) {
    font-size: 1.2em;
    padding: 20px 70px;
    /*margin-right: 100px;*/
    margin-bottom: 4px;
}

.home-title .home-title-bottom > span:nth-child(1) {
    font-size: 0.6em;
    padding: 10px 30px;
    margin-right: 8px;
    margin-bottom: 4px;
}

.home-title .home-title-bottom > span:nth-child(2) {
    font-size: 1.2em;
    padding: 20px 70px;
}

.home-date {
    padding: 8px 35px;
}

.home-date h2 {
    font-size: 1.7em;
    margin-bottom: 0;
}

.home-edition {
    display: flex;
    align-items: center;
    font-size: 1.7em;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 10px;
}

.home-edition .bg-pink {
    padding: 2px 20px 2px 5px;
    margin-left: 10px;
}

.aside-right {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 43%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-right: 0;
}

.aside-right .bg-black + .bg-black {
    margin-top: 25px;
}

.aside-right .bg-black a {
    display: block;
    color: var(--color-white);
    padding: 15px 20px;
}
.aside-right .bg-black a:hover {
    color: var(--color-orange);
}

.aside-right .bg-black h4 {
    font-size: 1.8em;
    margin-bottom: 6px;
}

.aside-right .bg-black p {
    font-size: 1.3em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.mentions-legales-btn {
    position: absolute;
    bottom: 10px;
    left: 70px;
}

.mentions-legales-btn .icon {
    width: 31px;
    float: left;
    text-align: center;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin-right: 10px;
}

.mentions-legales-btn a,
.mentions-legales-btn .icon {
    font-size: 1.3em;
    color: var(--color-white);
}



/* CALENDAR */

.calendar-text {
    max-width: 300px;
    padding: 60px 40px 20px;
    border-radius: 8px;
}

.calendar-text h1 {
    font-size: 1.3em;
    text-transform: initial;
}

.calendar-text p {
    font-size: 1em;
    font-weight: 400;
}

.calendar-text svg {
    display: block;
    width: 40px;
    /*margin: 25px auto 0;*/
    align-self: center;
}

#topics {
    width: 100%;
    font-size: 1.1em;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-grey);
    margin-bottom: 25px;
}

.calendar {
    height: 100%;
}

.calendar-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.time-label {
    font-size: 1.1em;
    text-align: center;
    text-transform: uppercase;
    padding: 13px 50px;
    border-radius: 8px;
    background-color: var(--color-white);
}

.time-choice {
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: var(--color-white);
    padding: 28px;
    margin-top: 12px;
    /*border: 2px solid var(--color-white);*/
    transition: all ease .3s;
}
.time-choice:hover {
    /*border: 2px solid var(--color-orange);*/
    background-color: var(--color-orange);
}

.time-choice.disabled {
    cursor: initial;
    background-color: var(--color-light-grey);
}
.time-choice.disabled:hover {
    background-color: var(--color-grey);
}

.time-slot {
    font-size: 1em;
    line-height: 1;
}

.remaining-places {
    font-size: 0.8em;
    line-height: 1;
    margin-top: 10px;
}

.remaining-places span {
    color: var(--color-orange);
    transition: all ease .3s;
}
.time-choice:hover .remaining-places span {
    color: var(--color-white);
}

.reservationForm-wrapper {
    position: fixed; /*absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .6);
    transition: all ease .5s;
    opacity: 0;
    z-index: -1;
}
.reservationForm-wrapper.show {
    opacity: 1;
    z-index: 11;
}

.main-container.hide {
    opacity: 0;
}

.reservationForm-inner {
    position: relative;
    /*display: flex;
    flex-direction: column;
    align-items: center;*/
    background-color: #ffffff;
    padding: 75px 100px 55px;
    margin: 0 15px;
}

#reservationClose {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 2em;
    color: var(--color-orange);
    transition: all ease .3s;
}
#reservationClose:hover {
    color: var(--color-black);
}

#reservationForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 530px;
    /*background-color: #ffffff;*/
    /*padding: 75px 100px;*/
}
#reservationForm.hide {
    display: none;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
}

.hidden-fields {
    display: none;
}

.hidden {
    height: 0;
    padding: 0;
    border: none;
}

.reservationForm-text {
    font-size: 1.2em;
    color: var(--color-grey);
    text-align: center;
    text-transform: uppercase;
    padding: 0 20px;
}

.reservationForm-text svg {
    width: 60px;
    margin-top: 15px;
}


/* LIVE */

.live-text {
    padding: 60px 30px;
}

.live-title {
    margin-bottom: 50px;
}

.live-title h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.live-title h2 {
    font-size: 1.6em;
    margin-bottom: 0;
}

.live-slot {
    display: flex;
}

.live-slot p {
    width: 50%;
    font-size: 1.4em;
    line-height: 1.2;
    margin-bottom: 0;
}

.live-slot + .live-slot {
    margin-top: 20px;
}

.conferences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    min-height: 380px;
    background-color: var(--color-orange);
}

.mentions-legales .logo-top,
.conferences .logo-top,
.conferences .about-chat,
.replay .logo-top {
    display: none;
}

.live-wrapper {
    position: relative;
}

.waiting {
    position: absolute;
    top: 0;
    /*left: 50%;*/
    left: 0;
    /*width: calc(100% - 30px);*/
    width: calc(100% - 408px);
    /*height: 100%;*/
    height: 99%;
    background-color: var(--color-black);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    /*transform: translateX(-50%);*/
    overflow: hidden;
}

.waiting img {
    width: 500px;
}

.conferences h1 {
    font-size: 2em;
    color: var(--color-white);
    margin-top: 124px;
}

.program-title {
    display: block;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.program-title h2 {
    font-size: 1.8em;
}

.program-slot {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.program-slot div:first-child {
    width: 20%;
}

.program-slot p {
    margin: 0;
}

.program-slot div:first-child p {
    font-size: 1.8em;
    color: var(--color-orange);
    text-transform: uppercase;
    /*padding-left: 100px;*/
}

.program-slot div:last-child p {
    font-size: 1.5em;
    font-weight: 400;
}

.program-slot + .program-slot {
    border-top: 1px solid var(--color-grey);
}

.replay .container-fluid:nth-child(2n) {
    background-color: var(--color-light-grey);
}

.replay .container-fluid:nth-child(2n+1) .replay-wrapper .row {
    background-color: var(--color-light-grey);
}

.replay .container-fluid:nth-child(2n) .replay-wrapper .row {
    background-color: var(--color-white);
}

.replay-wrapper {
    padding: 75px 15px;
}

.replay-video {
    max-height: 500px;
}
.replay-video-450 {
    max-height: 450px;
}
.replay-video p {
    margin-bottom: 0;
}

.replay-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.replay-text h2 {
    font-size: 2em;
    color: var(--color-orange);
    margin-bottom: 20px;
}

.replay-text h3 {
    font-size: 1.4em;
    font-weight: 400;
    color: var(--color-grey);
    margin-bottom: 40px;
}

.replay-text p {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--color-grey);
    margin-bottom: 0;
}

.replay-text p + p {
    margin-top: 10px;
}



/* FILES */

.fiches-pratiques h1 {
    font-size: 2em;
    margin-top: 134px;
}

.fiches-pratiques h2 {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 30px;
}

.files-wrapper > div {
    margin-bottom: 20px;
}

/*.files-wrapper > div:nth-child(5),
.files-wrapper > div:nth-child(6),
.files-wrapper > div:nth-child(7),
.files-wrapper > div:nth-child(8) {
    margin-top: 20px;
}*/

.img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 225px;
    height: auto;
    max-height: 225px;
}

.img-hover {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-black);
    font-size: 1.1em;
    text-transform: uppercase;
    opacity: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, .6);
    transition: all ease .3s;

}
.img-wrapper:hover .img-hover {
    opacity: 1;
}



/* RESPONSIVE */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .home-jumbotron {
        margin-right: 0;
    }

    /*.files-wrapper .col-xl-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }*/

    .navbar-nav {
        align-items: center;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }

    .home-jumbotron {
        margin-right: 152px;
    }
}

@media (max-width: 1400px) {
    .home-jumbotron {
        margin-right: auto;
    }

    .home-title > span:nth-child(1) {
        font-size: 0.8em;
    }

    .home-title .home-title-bottom > span:nth-child(1) {
        font-size: 0.5em;
    }

    .home-title .home-title-bottom > span:nth-child(2) {
        font-size: 0.8em;
    }
}


@media (max-width: 1199px) {
    /*.files-wrapper > div:nth-child(4),
    .files-wrapper > div:nth-child(5),
    .files-wrapper > div:nth-child(6) {
        margin-top: 20px;
    }*/

    .home-title .home-title-bottom > span:nth-child(2) {
        font-size: 0.7em;
    }

    .aside-right {
        bottom: 50%;
    }
}

@media (max-width: 991px) {
    .navbar-main {
        margin-top: 20px;
    }

    .navbar-dark .navbar-main .nav-item {
        border-left: 2px solid var(--color-white);
    }

    .navbar-dark .navbar-main .nav-item + .nav-item {
        padding-top: 10px;
    }

    .home-jumbotron {
        width: 100%;
    }

    .home-title > span:nth-child(1) {
        font-size: 1em;
    }

    .home-text {
        width: 100%;
    }

    .aside-right {
        position: relative;
        bottom: initial;
        right: initial;
        width: auto;
        text-align: left;
        margin: 20px 0 20px auto;
    }

    .calendar-text {
        max-width: none;
        margin-bottom: 20px;
    }

    .time-choice {
        margin-top: 10px;
    }

    .live-wrapper iframe {
        height: 650px;
    }

    .program-slot p:first-child {
        padding: 10px !important;
    }

    .waiting {
        width: 94%;
        height: 56%;
        margin-left: 3%;
    }
}

@media (max-width: 767px) {
    .navbar-icons-wrapper {
        flex-direction: column;
    }

    .hashtag {
        margin: 0;
    }

    .calendar-inner:nth-child(3),
    .calendar-inner:nth-child(4) {
        margin-top: 20px;
    }

    .basic-text {
        column-count: 2;
    }

    /*.files-wrapper > div:nth-child(3) {
        margin-top: 20px;
    }*/

    .waiting {
        height: 41%;
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 89px;
    }

    .navbar-dark {
        padding: .9rem 2rem;
    }

    .navbar-brand {
        padding: 25px 35px;
        margin: 0;
    }

    .navbar-brand img {
        height: 60px;
    }

    .main-container {
        margin-top: 25px;
    }

    .home-title > span:nth-child(1),
    .home-title .home-title-bottom > span:nth-child(2) {
        font-size: .6em;
        padding: 20px 30px;
    }

    .home-title .home-title-bottom > span:nth-child(1) {
        font-size: .3em;
        padding: 10px 20px;
    }

    .home-date h2,
    .home-edition {
        font-size: 1.1em;
    }

    .home-text {
        padding: 35px;
    }

    .home-text h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .home-text ol {
        padding-left: 15px;
    }

    .home-text p, .home-text li {
        font-size: 1.1em;
    }

    .aside-right .bg-black h4 {
        font-size: 1.2em;
    }

    .aside-right .bg-black p {
        font-size: .9em;
    }

    .mentions-legales-btn {
        bottom: 35px;
        left: 25px;
    }

    .about-chat {
        bottom: 105px;
    }

    #aboutChatBtn {
        width: 50px;
        height: 45px;
    }

    #aboutChatBtn svg {
        height: 25px;
    }

    #aboutChatTxt {
        width: 185px;
        font-size: .9em;
    }

    #aboutChatCircle {
        display: none;
    }

    .conferences h1 {
        margin-top: 60px;
        overflow-wrap: break-word;
    }

    .program-slot div:first-child {
        width: auto;
    }

    .fiches-pratiques h1 {
        margin-top: 60px;
    }

    .fiches-pratiques h2 {
        overflow-wrap: break-word;
    }

    .files-wrapper > div {
        display: flex;
        justify-content: center;
    }

    .basic-text {
        column-count: 1;
    }

    .basic-title h1 {
        margin-bottom: 30px;
    }

    /*.files-wrapper > div:nth-child(2) {
        margin-top: 20px;
    }*/
}