@font-face {
    font-family: "Ailerons";
    src: url('Ailerons-Typeface.otf');
}


a:hover {
    text-decoration: none !important;
}


body {
    margin: 0;
    overflow-x: hidden;
    padding-top: 1.5em;
}

.main-section {
    height:100vh;
}

.always-align-v {
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 100vh;*/
    flex-direction: column;
    position: relative;
}

.container {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

@media (min-width: 980px){
    .vertical-align {
        display: flex;
        align-items: center;
    }
    .the-date {
        right: 1em;
    }
}

.section-1 {
    position: relative;
    background: #ffffffd1;
}

.section-2 {
    position: relative;
    background-image: url("images/TourItFinal.png");
    background-size: cover;
    background-position: bottom;
}

.arrow-up {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.arrow-up img {
    height: 50px;
    position: absolute;
    top: 2em;
    animation: bounce 1s ease-in-out infinite;
}

.from-right {
    position: relative;
    /* animation: from-right 1s ease-in-out forwards; */
}

.d-1929 {
    text-align: right;
}

.nowaday {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
}

.turfu {
    font-family: 'Ailerons', sans-serif !important;
}

/*.arrow-up::after {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    content: "Découvrir";
    color: #000;
    background: #FFF;
    padding: 5px 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    margin: 10px;
}*/

.main-title {
    font-family: 'Playfair Display', serif;
    color: #292929;
    text-transform: uppercase;
    font-size: 3em;
    text-align: center;
    position: relative;
}

.main-title:after {
    content: "";
    height: 48px;
    width: 4px;
    background: #292929;
    position: absolute;
    /* border-radius: 50px; */
    right: 16px;
    top: 50%;
    transform: translate(0, -46%);
}

.the-text {
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

.the-date {
    font-size: 7em;
    position: relative;
    font-family: "Playfair Display", serif;
    color: #34334B;
}

.the-date::before {
    height: 10px;
    width: 100px;
    content: "";
    background: #E94639;
    position: absolute;
}

.date-inline {
    color: #292929;
    font-family: "Montserrat", serif;
    display: flex;
    justify-content: center;
    position: relative;
}

.debut {
    margin-right: 11em;
}

.coco {
    position: absolute;
    background: #292929;
    width: 150px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.bandeau {
    position: absolute;
    width: 100%;
    height: 95px;
    background: #FFF;
    box-shadow: 0 0 20px 0 #e2e2e2;
    bottom: 0;
    display: flex;
    align-items: center;
}

.tache-1 {
    position: absolute;
    height: 230px;
    top: 0;
    right: 0;
}


.main-nav {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    right: -48px;
    height: 100%;
    justify-content: center;
    width: 140px;
    background: #F1F1F1;
    z-index: 9;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px 0 #CCC;
    cursor: pointer;
    animation: slide-menu-out 0.3s ease-in-out forwards;
}

.main-nav:hover {
    animation: slide-menu-in 0.3s ease-in-out forwards;
}

.ul-main-nav {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.the-mini-date {
    list-style-type: none;
    margin: 5px 0;
    font-family: 'Playfair Display', serif;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.modern {
    font-family: 'Montserrat', serif !important;
    font-size: 13px;
}

.futur {
    font-family: 'Ailerons', serif !important;
}

.open-close {
    position: absolute;
    top: 50%;
    right: 140px;
    padding: 10px;
    background: #f1f1f1;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.the-mini-date {
    text-decoration: none !important;
    color: #34334B !important;
}

.bandoka {
    position: absolute;
    bottom: 0;
}

@keyframes bounce {
    0% {
       top: 2em;
    }
    50% {
        top: 3em;
    }
    100% {
        top: 2em;
    }
}

@keyframes from-right {
    0% {
        right: -360px;
        opacity: 0;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}

@keyframes slide-menu-in {
    0%{
        right: -48px;
    }
    100% {
        right: 0;
    }
}

@keyframes slide-menu-out {
    0%{
        right: 0;
    }
    100% {
        right: -140px;
    }
}