@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
    text-decoration: none;
    list-style-type: none;
    transition: all .3s ease;
}

:root {
    --main-color: #00122D;
    --btn-color: #39A7E5;
    --text-color: #000;
    --bg-color: #fff;
    --txt-white-op: #ffffff96;
}

::selection{
    background: var(--main-color);
    color: var(--bg-color);
}

.row {
    justify-content: space-between;
    margin: auto;
}

.row>div {
    margin: auto;
}

/* custom scroll bar */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1000;
}

.progress-bar {
    height: 5px;
    background: var(--btn-color);
    width: 0%;
}

/* code d'apparition  */
[class*="reveal-"] {
    opacity: 0;
    transform: translateY(30px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0);
    transition: 2s cubic-bezier(.5, 0, 0, 1);
}

.reveal-2 {
    transition-delay: .1s;
}

.reveal-3 {
    transition-delay: .2s;
}

.reveal-4 {
    transition-delay: .3s;
}

.reveal-5 {
    transition-delay: .4s;
}

.reveal-6 {
    transition-delay: .5s;
}

body {
    position: relative;
    width: 100%;
    height: 100vh;
}

.btnTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    border: none;
    padding: 10px;
    background: var(--main-color);
    cursor: pointer;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 15px var(--main-color);
    z-index: 150;
}

.btnTop box-icon {
    font-weight: bold;
    font-size: 20px;
}

/* .container{
    width: 90% !important;
    margin: auto;
    position: relative;
} */
header {
    width: 100%;
    height: auto;
    background: var(--main-color);
}

header .container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
}

header .container nav .logo {
    color: white;
    font-weight: 800;
    font-size: 2.5em;
    text-transform: uppercase;
    text-decoration: none;
}

header .container nav .logo .qui {
    padding: 0;
}

header .container nav .logo .zz {
    color: var(--btn-color);
}

header .container nav .button {
    background: var(--btn-color);
    color: white;
    font-size: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: .2em;
    padding-bottom: .2em;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transform: skew(-10deg, 0);
}

header .container nav .button:hover {
    transform: skew(10deg, 0);
}

header section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

/* header section .presentation {
    width: 39%;
} */

header section .presentation .bvn {
    font-size: 3em;
    font-weight: 700;
    color: var(--bg-color);
}

header section .presentation .explication {
    font-size: 1.6em;
    font-weight: 500;
    color: var(--txt-white-op);
    margin-bottom: 1em;
}

header section .presentation .btn {
    background: var(--btn-color);
    font-size: 1.5em;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    color: var(--bg-color);
    font-weight: 600;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    transition: all .3s ease;
}

button {
    transform: skew(-10deg, 0);
    transition: all .3s ease;
}

button:hover {
    transform: skew(10deg, 0);
}

header section .img-presentation {
    /* width: 40%; */
    height: 600px;
    background: url("../images/Customer_Survey-amico.png") no-repeat center;
    background-size: cover;
}

/* premiere section  */

.first-section {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

/* .first-section .row {
    flex-wrap: nowrap;
} */

.h1 {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
}

/* .ligne-first-section{
    justify-content: space-between;
} */

.ligne-first-section>div {
    padding: 2em;
    margin: -1em;
    margin-top: 1em;
    /* margin-right: 1px; */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px rgba(128, 128, 128, 0.123);
}

.ligne-first-section>div:hover {
    box-shadow: 0px 0px 15px grey;
    margin-top: -5px;
    cursor: pointer;
}

.ligne-first-section .image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 1em;
    overflow: hidden;
    background: rgba(128, 128, 128, 0.219);
    margin-bottom: 1.5em;
}

.ligne-first-section .image img {
    width: 100%;
    background-size: cover;
}

.ligne-first-section .texte {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.second-section {
    margin-top: 2em;
    margin-bottom: 2em;
    position: relative;
}

.second-section::after {
    position: absolute;
    content: '';
    top: 30%;
    left: 30%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #39a6e560;
    z-index: -1;
    animation: after 3s infinite;
}

@keyframes after {
    0% {
        top: 30%;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 30%;
    }
}

.second-section::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 10%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #39a6e560;
    z-index: -1;
    animation: before 3s infinite;
}

@keyframes before {
    0% {
        left: 10%;
    }

    50% {
        left: 15%;
    }

    100% {
        left: 10%;
    }
}


h2 {
    font-weight: 700;
    margin-bottom: 1em;
}

.second-section .row p {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.651);
    line-height: 35px;
}

.second-section .row img {
    background-size: cover;
}


.troisieme-section {
    background-color: var(--main-color);
    padding-top: 2em;
    padding-bottom: 2em;
}

.troisieme-section .container {
    text-align: center;
}

.troisieme-section .container .col .firstP {
    width: 50%;
    margin: auto;
    color: var(--bg-color);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
}

.troisieme-section .container .col .button {
    background: var(--btn-color);
    color: white;
    font-size: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: .2em;
    padding-bottom: .2em;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1em;
    transition: all .3s ease;
}

.troisieme-section .container .col .secondP {
    width: 50%;
    margin: auto;
    color: var(--bg-color);
    font-size: 1.2em;
    font-weight: 700;
}

.quatre-section {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

.quatre-section .row {
    flex-wrap: wrap;
}

.quatre-section .col .row {
    margin-top: 3em;
    padding: 3em;
}

.quatre-section .col .row>div{
    margin: -2em;
    margin-bottom: 1em;
    transition: all .3s ease;
}

.quatre-section .col .row>div:hover {
    cursor: pointer;
    margin-top: -1em;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.863);
}

.sport {
    position: relative;
    /* box-shadow: 0px 0px 15px black; */
    height: 500px;
    border-radius: 8px;
    background: url('../images/section_categories/jonathan-chng-3R4vPrSB1c4-unsplash.jpg') center no-repeat;
    background-size: cover;
    margin-bottom: 1em;
    transition: all .3s ease;
}

.Culture {
    position: relative;
    /* box-shadow: 0px 0px 15px black; */
    height: 500px;
    border-radius: 8px;
    background: url('../images/section_categories/debashis-rc-biswas-dyPFnxxUhYk-unsplash.jpg') center no-repeat;
    background-size: cover;
    margin-bottom: 1em;
    transition: all .3s ease;
}

.musique {
    position: relative;
    /* box-shadow: 0px 0px 15px black; */
    height: 500px;
    border-radius: 8px;
    background: url('../images/section_categories/marcela-laskoski-YrtFlrLo2DQ-unsplash.jpg') center no-repeat;
    background-size: cover;
    margin-bottom: 1em;
    transition: all .3s ease;
}

.science {
    position: relative;
    /* box-shadow: 0px 0px 15px black; */
    height: 500px;
    border-radius: 8px;
    background: url('../images/section_categories/national-cancer-institute-L7en7Lb-Ovc-unsplash.jpg') center no-repeat;
    background-size: cover;
    margin-bottom: 1em;
    transition: all .3s ease;
}


/* .sport img{
    width: 100%;
    background-size: cover;
    border-radius: 5px;
} */

.sport::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.726);
    border-radius: 8px;
}

.Culture::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.musique::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.726);
    border-radius: 8px;
}

.science::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.726);
    border-radius: 8px;
}

.overlay {
    padding-top: 2em;
    padding-bottom: 2em;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay h2 {
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.overlay p {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
}

.overlay .joueurs {
    position: absolute;
    top: 40%;
}

.overlay .questions {
    position: absolute;
    bottom: 4em;
}

.overlay .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 1em;
    right: auto;
    cursor: pointer;
}

.lien-cat {
    height: 25px;
}

.cinq-section ul {
    margin-top: 2em;
    margin-bottom: 2em;
    position: relative;
}

.cinq-section ul::after {
    position: absolute;
    content: '';
    width: 65px;
    height: 65px;
    top: 10%;
    right: 40%;
    border-radius: 50%;
    background-color: #39a6e560;
    z-index: -1;
    animation: ulAfter 3s infinite;
}

@keyframes ulAfter {
    0% {
        top: 10%;
    }

    50% {
        top: 35%;
    }

    100% {
        top: 10%;
    }
}

.cinq-section ul::before {
    position: absolute;
    content: '';
    width: 65px;
    height: 65px;
    bottom: 10%;
    left: 20%;
    border-radius: 50%;
    background-color: #39a6e560;
    z-index: -1;
    animation: ulBefore 3s infinite;
}

@keyframes ulBefore {
    0% {
        bottom: 10%;
    }

    50% {
        bottom: 35%;
    }

    100% {
        bottom: 10%;
    }
}

.cinq-section ul li {
    list-style-type: square;
    color: #0000008c;
    font-size: 20px;
    margin: 2em;
    font-weight: 600;
}

footer {
    background: var(--main-color);
    height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
}

.innerFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.innerFooter .logo {
    color: white;
    font-weight: 800;
    font-size: 2.5em;
    text-transform: uppercase;
    text-decoration: none;
}

.innerFooter .logo .qui {
    padding: 0;
}

.innerFooter .logo .zz {
    color: var(--btn-color);
}

.innerFooter p {
    color: white;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 22px;
}