@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

.h1-min,
.p-max,
.timeline-container .timeline-content .p-max {
    font-size: 18px;
}

.container,
.hcg-slides {
    justify-content: center;
}

.menu a,
.menu-calltoaction a {
    text-decoration: none;
    color: #ee0978;
}

body {
    font-family: Arial,sans-serif;
}

html {
    scroll-behavior: smooth;
}

.p-maj,
.timeline-container .timeline-content h1,
h1 {
    color: #ee0978;
}

.h1-min {
    margin-top: 0;
}

.entete {
    color: #03b8bb;
    text-transform: none;
    font-weight: 600;
    font-size: 15px;
}

.drapeau {
    width: 50px;
    height: 25px;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 11;
}

#contact,
.btn-calltoaction {
    margin-top: 40px;
}

.menu .sous-menu ul li a:hover,
p {
    color: #09a5a2;
}

.p-center {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.p-leg {
    text-align: right;
    font-style: italic;
}

section {
    width: 100%;
    padding-top: 250px;
    min-height: 50vh;
}

.container {
    display: flex;
    align-items: center;
}

.content {
    width: 70%;
    text-align: center;
}

.div-left,
.div-right {
    width: 48%;
    text-align: justify;
}

.div-right {
    float: right;
}

.div-left {
    float: left;
}

.logo img {
    width: 20%;
    margin-top: 10px;
}

.equipe img,
.icon img,
.menu,
.timeline,
iframe {
    width: 100%;
}

.menu {
    z-index: 10;
    position: fixed;
    top: 0;
    padding-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
}

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

.menu li {
    display: inline-block;
    margin: 0;
}

.menu .sous-menu:hover ul,
.menu a {
    display: block;
}

.menu a {
    padding: 15px 20px;
}

.menu a:hover {
    font-weight: 700;
    color: #0abcb8;
    background-color: transparent;
    transition: .3s;
}

.menu-calltoaction a {
    padding: 10px;
    border: .8px solid #ee0978;
    border-radius: 10px;
    text-transform: uppercase;
}

#contact button[type=submit],
.btn-calltoaction a {
    margin-top: 20px;
    padding: 10px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-calltoaction:hover a {
    color: #fff;
    background-color: #ee0978;
    transition: .3s;
}

.menu .sous-menu ul {
    display: none;
    z-index: 10;
    position: absolute;
    top: 85%;
    left: 50%;
    padding: 10px;
}

.menu .sous-menu ul li {
    margin: 10px 0;
}

.menu .sous-menu ul li a {
    margin-top: 10px;
    padding: 13px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    color: #ee0978;
    background-color: #fff;
    -webkit-box-shadow: 10px 10px 16px 5px rgba(0,0,0,.1);
    box-shadow: 10px 10px 16px 5px rgba(0,0,0,.04);
    transition: color .3s;
}

#enchantes .btn-calltoaction {
    text-align: left;
    text-align: left;
    margin-left: 155px;
    margin-top: -80px;
    z-index: 10;
    margin-bottom: 65px;
}

@media (max-width:1300px) {
    #enchantes .btn-calltoaction {
        display: none;
    }
}
@media (min-width:2000px) {
    #enchantes .btn-calltoaction {
        display: none;
    }
}

.wrapper .icon,
.wrapper .tooltip {
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
}

.anim-right {
    opacity: 0;
    animation: 2s ease-out forwards slideright,2s ease-out forwards fadein;
    transform: translateX(100px);
}

.anim-left {
    opacity: 0;
    animation: 2s ease-out forwards slideleft,2s ease-out forwards fadein;
    transform: translateX(-100px);
}

@keyframes slideright {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideleft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

iframe {
    margin-top: 15px;
}

@media screen and (max-width:768px) {
    .menu li {
        display: block;
    }

    .menu a {
        padding: 15px;
    }

    .menu-calltoaction a {
        margin-right: 10%;
        margin-left: 10%;
    }

    iframe {
        width: 470px;
        height: 265px;
    }
}

.btn-calltoaction a {
    border: .8px solid #0abcb8;
    border-radius: 10px;
    color: #0abcb8;
}

.btn-calltoaction:hover a {
    color: #fff;
    background-color: #0abcb8;
    transition: .3s;
}

.timeline {
    z-index: -10;
    position: relative;
    margin: 0 auto;
    padding: 15px 0;
    max-width: 1140px;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: #0abcb8;
}

.timeline-container {
    position: relative;
    width: 45%;
    padding: 15px 30px;
    background: inherit;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.left h2,
.timeline-container.right h2 {
    text-align: left;
}

.timeline-container.right {
    left: 50%;
    width: 60%;
}

.timeline-container::after {
    content: '';
    z-index: 1;
    position: absolute;
    top: calc(50% - 8px);
    right: -8px;
    width: 16px;
    height: 16px;
    border: 2px solid #0abcb8;
    border-radius: 16px;
    background: #fff;
}

.timeline-container.right::after {
    left: -8px;
}

.timeline-container::before {
    content: '';
    z-index: 1;
    position: absolute;
    top: calc(50% - 1px);
    right: 8px;
    width: 50px;
    height: 2px;
    background: #0abcb8;
}

.timeline-container.right::before {
    left: 8px;
}

.timeline-container .date {
    display: inline-block;
    z-index: 1;
    position: absolute;
    top: calc(50% - 8px);
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0abcb8;
}

.timeline-container.left .date {
    right: -75px;
}

.timeline-container.right .date {
    left: -75px;
}

.timeline-container .icon {
    display: inline-block;
    z-index: 1;
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 20px;
    padding: 9px 0;
    border: 2px solid #0abcb8;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: #0abcb8;
    background: #fff;
}

.timeline-container.left .icon {
    right: 56px;
}

.timeline-container.right .icon {
    left: 56px;
}

.timeline-container .timeline-content {
    position: relative;
    padding: 30px 90px 30px 30px;
    border: 1px solid rgba(238,9,120,.4);
    border-radius: 0 500px 500px 0;
}

.timeline-container.right .timeline-content {
    padding: 60px 50px 70px 90px;
    border-radius: 250px 0 0 250px;
}

.timeline-container .timeline-content h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0abcb8;
}

.timeline-container .timeline-content p {
    margin: 0;
    text-align: justify;
    font-size: 15px;
    line-height: 22px;
    color: #09a5a2;
}

.timeline-container .timeline-content .h2-max {
    font-size: 22px;
}

#scroll-down a {
    padding-top: 60px;
}

#scroll-down a span {
    z-index: -10;
    position: absolute;
    top: 80%;
    left: 50%;
    box-sizing: border-box;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #0abcb8;
    border-radius: 50px;
}

#scroll-down a span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    box-sizing: border-box;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 100%;
    background-color: #0abcb8;
    -webkit-animation: 2s infinite sdb10;
    animation: 2s infinite sdb10;
}

@-webkit-keyframes sdb10 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0,0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        -webkit-transform: translate(0,20px);
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        opacity: 0;
        transform: translate(0,0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: translate(0,20px);
    }

    100% {
        opacity: 0;
    }
}

@media (max-width:1350px) {
    #scroll-down {
        display: none;
    }
}

.equipe {
    position: absolute;
    width: 40%;
    margin-top: 30px;
}

@media (max-width:950px) {
    section {
        padding-top: 400px;
    }

    .content {
        width: 90%;
    }

    .div-left,
    .div-right {
        float: none;
        width: 100%;
    }

    .timeline::after {
        left: 90px;
    }

    .timeline-container {
        width: 75%;
        padding-right: 30px;
        padding-left: 120px;
    }

    .timeline-container .timeline-content {
        border: 1px solid rgba(238,9,120,.2);
    }

    .timeline-container.right {
        left: 0;
        width: 75%;
    }

    .timeline-container.left::after,
    .timeline-container.right::after {
        left: 82px;
    }

    .timeline-container.left::before,
    .timeline-container.right::before {
        left: 100px;
        border-color: transparent #0abcb8 transparent transparent;
    }

    .timeline-container.left .date,
    .timeline-container.right .date {
        right: auto;
        left: 15px;
    }

    .timeline-container.left .icon,
    .timeline-container.right .icon {
        right: auto;
        left: 146px;
    }

    .timeline-container.left .timeline-content,
    .timeline-container.right .timeline-content {
        padding: 50px 30px 50px 90px;
        border-radius: 250px 0 0 250px;
    }

    .equipe {
        display: none;
    }
}

#hcg-slider-1 .hcg-slide-container {
    width: auto;
    height: auto;
    margin-top: 75px;
}

.hcg-slider {
    text-align: center;
    font-family: Arial,Helvetica,sans-serif;
}

.hcg-slide-container {
    display: inline-block;
    position: relative;
    max-width: 100%;
}

.hcg-slides {
    display: none;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

.hcg-slides img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
}

#hcg-slide-next,
#hcg-slide-prev {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    text-decoration: none;
    text-shadow: 1px 1px 5px #686868;
    font-size: 18px;
    font-weight: 700;
    color: #0abcb8;
    transition: .6s;
    cursor: pointer;
}

#hcg-slide-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

#hcg-slide-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

#hcg-slide-next:hover,
#hcg-slide-prev:hover {
    color: #fff;
    background-color: #ee0978;
}

.hcg-slide-dot-control {
    margin-top: 10px;
    text-align: center;
}

.hcg-slide-dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: #ee09785b;
    cursor: pointer;
}

.hcg-slide-dot.dot-active {
    background-color: #ee0978;
}

.container-contact {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 750px;
}

#contact button[type=submit],
#contact input[type=email],
#contact input[type=number],
#contact input[type=tel],
#contact input[type=text],
#contact input[type=url],
#contact textarea {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 18px;
}

#contact input[type=email]::placeholder,
#contact input[type=tel]::placeholder,
#contact input[type=text]::placeholder,
#contact textarea::placeholder {
    color: #0abcb97e;
}

#contact {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 1px 0 rgba(0,0,0,.1) ,0 5px 5px 0 rgba(0,0,0,.1);
}

fieldset {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    min-width: 100%;
    border: none!important;
}

#contact input[type=email],
#contact input[type=number],
#contact input[type=tel],
#contact input[type=text],
#contact input[type=url],
#contact textarea {
    width: 80%;
    margin: 0 0 5px;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
}

#contact input[type=email]:hover,
#contact input[type=number]:hover,
#contact input[type=tel]:hover,
#contact input[type=text]:hover,
#contact input[type=url]:hover,
#contact textarea:hover {
    border: 1px solid #0abcb8;
    -webkit-transition: border-color .3s ease-in-out;
    -moz-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
}

#contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#contact button[type=submit] {
    border: .8px solid #ee0978;
    border-radius: 10px;
    color: #fff;
    background-color: #ee0978;
}

#contact button[type=submit]:hover {
    font-weight: 700;
    color: #fff;
    background-color: #b80059;
    transition: .3s;
}

#contact button[type=submit]:active {
    box-shadow: inset 0 1px 3px rgba(0,0,0,.5);
}

#contact input:focus,
#contact textarea:focus {
    border: 1px solid #0abcb8;
    outline: 0;
}

::-webkit-input-placeholder {
    color: #09a5a2;
}

:-moz-placeholder {
    color: #09a5a2;
}

::-moz-placeholder {
    color: #09a5a2;
}

:-ms-input-placeholder {
    color: #09a5a2;
}

.wrapper {
    display: inline-flex;
    margin-bottom: 50px;
    padding-left: 0;
    list-style: none;
}

.wrapper .icon {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 10px;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    background: #fff;
    transition: .2s cubic-bezier(.68,-.55,.265,1.55);
    cursor: pointer;
}

.wrapper .tooltip,
.wrapper .tooltip::before {
    position: absolute;
    background: #fff;
    transition: .3s cubic-bezier(.68,-.55,.265,1.55);
}

.wrapper .tooltip {
    top: 0;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
}

.wrapper .tooltip::before {
    content: "";
    bottom: -3px;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%) rotate(45deg);
}

.wrapper .icon:hover .tooltip {
    visibility: visible;
    top: -45px;
    opacity: 1;
    pointer-events: auto;
}

.wrapper .icon:hover .tooltip,
.wrapper .icon:hover span {
    text-shadow: 0 -1px 0 rgba(0,0,0,.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    color: #fff;
    background: #1a4789;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    color: #fff;
    background: #0277b5;
}

.wrapper .instagram:hover {
    color: #fff;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}

.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    color: #fff;
    background: #8d3cbd;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    color: #fff;
    background: #333;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    color: #fff;
    background: #c30000;
}

.wrapper .tiktok:hover,
.wrapper .tiktok:hover .tooltip,
.wrapper .tiktok:hover .tooltip::before {
    color: #fff;
    background: #000;
}

.icon:hover img {
    /*filter: brightness(0) invert(1);*/
}

.img-appli {
    width: 100%;
    color: #ee0978;
}

.msg-email {
    text-align: center;
    font-family: Arial,sans-serif;
    font-size: 25px;
    color: #ee0978;
}