@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";*/
}

::before,
::after {
    box-sizing: border-box;
}

:root {
    --main-color: #002349;
    --main-color-second: rgb(255, 56, 56);
    --main-color-yellow: #FFCB00;
    --main-color-bg: #f5f9fb;
    --main-red: rgb(255, 56, 56);
    --main-red-opacity: rgba(255, 213, 213, 0.2);
    --footer-background: #001731;

    --border-color: #e9e9e9;

    --color-f5: #f5f5f5;
    --color-f7: #f7f7f7;
    --color-db: #dbdbdb;
    --color-eb: #ebebeb;
    --color-9b: #bbbbbb;
    --text-color: #3F5561;
    --text-dark: #1b1b1b;

    --text-opaque: #d4d4d4;
    --bottom: #dee2e6;

    --white: #ffffff;
    --white-1: rgba(255, 255, 255, 0.1);
    --white-2: rgba(255, 255, 255, 0.2);
    --white-3: rgba(255, 255, 255, 0.3);
    --white-4: rgba(255, 255, 255, 0.4);
    --white-5: rgba(255, 255, 255, 0.5);
    --white-6: rgba(255, 255, 255, 0.6);
    --white-7: rgba(255, 255, 255, 0.7);
    --white-8: rgba(255, 255, 255, 0.8);
    --white-9: rgba(255, 255, 255, 0.9);

    --dark-1: rgba(0, 0, 0, 0.1);
    --dark-2: rgba(0, 0, 0, 0.2);
    --dark-3: rgba(0, 0, 0, 0.3);
    --dark-4: rgba(0, 0, 0, 0.4);
    --dark-5: rgba(0, 0, 0, 0.5);
    --dark-6: rgba(0, 0, 0, 0.6);
    --dark-7: rgba(0, 0, 0, 0.7);
    --dark-8: rgba(0, 0, 0, 0.8);
    --dark-9: rgba(0, 0, 0, 0.9);
    --dark-other: rgba(44, 44, 44, 0.1);

    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    --swiper-pagination-color: #2cadd4;

    --font-family-darcing: 'Dancing Script', cursive;
    --font-family-freight: "freight-big-pro", serif;

}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

.italic {
    font-family: "Newsreader", serif;
    font-style: italic;
    color: var(--main-color-second);
}

li {
    list-style: none;
}

.max-width {
    max-width: 90%;
    margin: 0 auto;
}

.max-80 {
    max-width: 80%;
    margin: 0 auto;
}

.max-70 {
    max-width: 70%;
    margin: 0 auto;
}

.max-content {
    max-width: 70%;
    margin: 0 auto;
}

body {
    margin: 0;
    padding: 0;
    transition: all 0.3s linear;
}

h1,
h2,
p {
    margin-bottom: 0;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.fa-file-alt::before {
    content: '\f15c';
    font-family: FontAwesome;
}

.fa-calendar-alt::before {
    content: '\f073';
    font-family: FontAwesome;
}

.fa-lightbulb::before {
    content: '\f0eb';
    font-family: FontAwesome;
}

.fa-cubes::before {
    content: '\f1b3';
    font-family: FontAwesome;
}

.fa-long-arrow-alt-right::before {
    content: '\f30b';
    font-family: FontAwesome;
}

.fa-newspaper-o::before {
    content: '\f1ea';
    font-family: FontAwesome;
}

.fa-file-pdf-o::before {
    content: '\f1c1';
    font-family: FontAwesome;
}

.fa-check-square-o::before {
    content: '\f046';
    font-family: FontAwesome;
}

.fa-pause::before {
    content: '\f04c';
    font-family: FontAwesome;
}

.fa-graduation-cap::before {
    content: '\f19d';
    font-family: FontAwesome;
}

.fa-delicious::before {
    content: '\f1a5';
    font-family: FontAwesome;
}

.titleGeneral {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.titleGeneral .right {
    width: 150px;
    height: 3px;
    background: var(--main-color);
    margin-right: 20px;
}

.titleGeneral .left h1 {
    font-size: 3rem;
    color: var(--main-color);
}


/*****************************
        HEADER Accueil START
*****************************/

#header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
}

#navbar {
    width: 100%;
}

nav .navbar {
    height: 12vh;
    width: 100%;
    /* line-height: 11vh; */
    margin-top: 2vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: var(--white-1);
    backdrop-filter: blur(10px); */
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

nav .navbar .logo {
    width: 260px;
    height: 50px;
}

.navbar .logo a {
    display: flex;
}

.navbar .logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.navbar .logo a h1 {
    color: var(--white-9);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3rem;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

nav .navbar .logo a h1 span {
    font-weight: 600;
}

nav .navbar .nav-links {
    height: 100%;
}

nav .navbar .nav-links .links {
    display: flex;
    margin-top: -1vh !important;

}

nav .navbar .nav-links .links li {
    position: relative;
    display: inline-block;
    list-style: none;
    line-height: 12vh;
    margin: 0 2px;
}

nav .navbar .nav-links .links li a {
    color: var(--white-9);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav .navbar .nav-links .links li a.active {
    font-weight: 700;
}

nav .navbar .nav-links .links li:hover a {
    /* color: var(--main-color); */
    background: var(--white-1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
}

nav .navbar .nav-links .links li .arrow {
    text-align: center;
    font-size: 1rem;
}

nav .navbar .nav-links .links li .htmlcss-arrow,
nav .navbar .nav-links .links li .js-arrow {
    transition: all 0.3s ease;
}

nav .navbar .nav-links .links li:hover .htmlcss-arrow,
nav .navbar .nav-links .links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .nav-links .links .sub-menu {
    position: absolute;
    top: 12vh;
    left: 0px;
    width: 300px;
    height: auto;
    padding: 10px;
    background: var(--white);
    border-radius: 2px;
    line-height: 25px;
    box-shadow: 0 0 10px var(--dark-1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

nav .navbar .nav-links .links .sub-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 40px;
    height: 10px;
    width: 10px;
    background: var(--white);
    transform: rotate(45deg);
}

nav .navbar .nav-links .links li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

nav .navbar .nav-links .links .sub-menu li {
    width: 100%;
    height: 60px;
    transition: 0.5s;
    border-bottom: 1px solid var(--color-f5);
    margin: 0;
}

nav .navbar .nav-links .links .sub-menu li i {
    font-size: 0.9rem;
    color: var(--main-color);
    height: 40px;
    width: 40px !important;
    background: rgba(231, 243, 255, 0.3);
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
}

nav .navbar .nav-links .links .sub-menu li a:hover i{
    color: var(--main-red);
}

nav .navbar .nav-links .links .sub-menu li span {
    width: 230px;
    margin-left: 10px;
}

nav .navbar .nav-links .links .sub-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 0.8rem;
    font: 500;
    color: var(--dark-5) !important;
    padding-left: 0;
    padding-right: 0;
    line-height: 20px;
}

nav .navbar .nav-links .links .sub-menu li a:hover {
    background: transparent;
    padding-left: 10px !important;
    color: var(--main-red) !important;
}

nav .navbar .nav-links .links .sub-menu li:last-of-type {
    border-bottom: none;
}

.navbar .fa-bars,
.navbar .close,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .fa-times {
    display: none;
}

.nav-links .sidebar-logo {
    display: none;
}


.navbar .rightOption {
    display: flex;
}

.navbar .rightOption .dropdown{
    margin-right: 15px;
}

.navbar .rightOption .dropdown button{
    background: transparent;
    color: white;
    width: 40px;
    height: 40px;
    border: 0px transparent;
}

.navbar .rightOption .dropdown .dropdown-menu{
    min-width: 40px!important;
}

.navbar .rightOption #user-btn {
    margin-right: 10px;
}

.navbar .rightOption #user-btn i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: var(--white-9);
    background: var(--white-1);
    backdrop-filter: blur(10px);
    transition: all 0.3s linear;
}

.navbar .rightOption #search-btn i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: var(--white-9);
    background: var(--main-red);
    backdrop-filter: blur(10px);
    transition: all 0.3s linear;
}

.navbar .rightOption i {
    font-size: 1rem;
    cursor: pointer;
    color: var(--white);
}

.navbar .rightOption #search-btn:hover i {
    background: var(--white-5);
    /* color: var(--main-color); */
    transition: all 0.3s linear;
}

/* search bar start */

.navbar .search-bar-container {
    position: fixed;
    top: -3vh;
    bottom: -3vh;
    width: 40%;
    height: 103vh;
    right: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    background-size: cover;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 1.5s;
    z-index: 1111;
}

.navbar .search-bar-container.active {
    right: 0%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: 1.1s;
}

.navbar .search-bar-container form {
    width: 100%;
    z-index: 1111;
}

.navbar .search-bar-container #search-bar {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 3px;
    border: 2px solid var(--white);
    backdrop-filter: blur(20px);
    height: 50px;
    line-height: 50px;
    color: white;
    position: relative;
    justify-content: space-between;
    border-radius: 30px;
    overflow: hidden;
}

.navbar .search-bar-container .text h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 30px;
}

.navbar .search-bar-container #search-bar input {
    width: 80%;
    height: 50px;
    border: none;
    padding-left: 25px;
    background: transparent;
    color: var(--main-color);
    outline: none;
}

.navbar .search-bar-container #search-bar button {
    right: 0;
    top: 0;
    border: none;
    height: 100%;
    width: 20%;
    /* text-align: right; */
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 30px;
    line-height: 46px;
    background: var(--white);
    color: var(--main-color);
    cursor: pointer;
}

.navbar .search-bar-container .icons-fa-div {
    position: absolute;
    top: 5%;
    right: 5%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 8px;
    border: 2px solid #bebebe;
    backdrop-filter: blur(20px);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
}

.navbar .search-bar-container .icons-fa-div:hover {
    background: var(--white-5);
    border: 2px solid transparent;
    transition: all 0.3s linear;
}

.navbar .search-bar-container .icons-fa-div.active {
    right: -100%;
    transition: 1000ms;
}

.navbar .search-bar-container .icons-fa-div .fa {
    color: white;
    font-size: 18px;
    transition: all 0.3s linear;
}

.navbar .search-bar-container .icons-fa-div:hover .fa {
    color: var(--white);
    transition: all 0.3s linear;
}

/* end search bar header */

/* user bar start */

.navbar .user-bar-container {
    position: fixed;
    top: -3vh;
    bottom: -3vh;
    width: 40%;
    height: 103vh;
    right: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    background-size: cover;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 1.5s;
    z-index: 1111;
}

.navbar .user-bar-container.active {
    right: -6%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: 1.1s;
}

.navbar .user-bar-container .user-icon-close {
    position: absolute;
    top: 5%;
    right: 10%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 8px;
    border: 2px solid #e1e1e1;
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
    z-index: 1111;
}

.navbar .user-bar-container .user-icon-close:hover {
    background: var(--main-color);
    transition: all 0.3s linear;
    border: 2px solid transparent;
}

.navbar .user-bar-container .user-icon-close.active {
    right: -100%;
    transition: 1000ms;
}

.navbar .user-bar-container .user-icon-close .fa {
    color: var(--main-color);
    font-size: 18px;
    transition: all 0.3s linear;
}

.navbar .user-bar-container .user-icon-close:hover .fa {
    color: var(--white);
}


@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar .user-bar-container .form {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bottom);
    border-radius: 10px;
    height: auto;
    width: 350px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1111;
}

.navbar .user-bar-container .form h1 {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.navbar .user-bar-container .form .line {
    width: 60px;
    height: 4px;
    border-radius: 5px;
    background: var(--main-color);
    margin: 0px auto;
    margin-bottom: 20px;
}

.navbar .user-bar-container .form .inputBox {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 0 !important;
    width: 100%;
}

.navbar .user-bar-container .form .inputBox span {
    line-height: 22px;
    padding-bottom: 8px;
    color: var(--main-color);
}

.navbar .user-bar-container .form .inputBox input {
    height: 45px;
    width: 100%;
    border: 2px solid var(--bottom);
    border-radius: 8px;
    padding-left: 10px;
}

.navbar .user-bar-container .form .links a {
    color: #6d6d6d;
    transition: 0.3s;
}

.navbar .user-bar-container .form .links a:hover {
    text-decoration: underline;
}

.navbar .user-bar-container .form input[type="submit"] {
    height: 45px;
    width: 100%;
    line-height: 45px;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
    border-radius: 8px;
    border: none;
}

/* user bar end */

/*********** END HEADER HOME ************/


/******************************
        HEADER PAGE START
********************************/

#headerPage {
    position: relative;
    width: 100%;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
    background-color: var(--main-color);
}

#navbarPage {
    width: 100%;
}

#navbarPage .navbarInfo {
    height: 5vh;
    line-height: 5vh;
    background-color: var(--footer-background);
}

#navbarPage .navbarInfo .block {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

#navbarPage .navbarInfo .block .itemLeft {
    display: flex;
    align-items: center;
    margin-top: -2.5vh !important;
}

#navbarPage .navbarInfo .block .itemLeft .reseauxsociaux {
    display: flex;
}

#navbarPage .navbarInfo .block .itemLeft .reseauxsociaux .item {
    margin: 0 5px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    background: var(--white-1);
    backdrop-filter: blur(10px);
}

#navbarPage .navbarInfo .block .itemLeft .reseauxsociaux .item a {
    display: block;
    width: 100%;
    height: 100%;
}

#navbarPage .navbarInfo .block .itemLeft .reseauxsociaux .item i {
    color: var(--white-7);
    font-size: 10px;
}

#navbarPage .navbarInfo .block .itemLeft .contact {
    display: flex;
    margin-left: 10px;
}

#navbarPage .navbarInfo .block .itemLeft .contact .item {
    margin: 0 5px;
}

#navbarPage .navbarInfo .block .itemLeft .contact .item a {
    color: var(--white-8);
    font-size: 14px;
    font-weight: 300;
}

#navbarPage .navbarInfo .block .itemRight ul {
    display: flex;
}

#navbarPage .navbarInfo .block .itemRight ul li {
    margin: 0 5px;
    border-right: 1px solid var(--white-3);
}

#navbarPage .navbarInfo .block .itemRight ul li:last-child {
    border-right: none;
}

#navbarPage .navbarInfo .block .itemRight ul li a {
    font-size: 0.8rem;
    color: var(--white-8);
    font-weight: 300;
    padding-right: 10px;
}

nav .navbarPage {
    position: relative;
    height: 12vh;
    width: 100%;
    line-height: 12vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--white-3);
}

nav .navbarPage .logo {
    width: 270px;
    height: 50px;
}

nav .navbarPage .logo a {
    display: flex;
}

nav .navbarPage .logo img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

nav .navbarPage .logo a h1 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3rem;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

nav .navbarPage .logo a h1 span {
    font-weight: 600;
}

nav .navbarPage .nav-links {
    height: 100%;
}

nav .navbarPage .nav-links .links {
    display: flex;
}

nav .navbarPage .nav-links .links li {
    position: relative;
    display: inline-block;
    list-style: none;
    line-height: 12vh;
    margin: 0 2px;
}

nav .navbarPage .nav-links .links li a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    height: 40px;
    /* line-height: 40px; */
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav .navbarPage .nav-links .links li a.active {
    font-weight: 700;
}

nav .navbarPage .nav-links .links li a:hover {
    color: var(--main-color);
}

nav .navbarPage .nav-links .links li .arrow {
    text-align: center;
    font-size: 1rem;
}

nav .navbarPage .nav-links .links li .htmlcss-arrow,
nav .navbarPage .nav-links .links li .js-arrow {
    transition: all 0.3s ease;
}

nav .navbarPage .nav-links .links li:hover .htmlcss-arrow,
nav .navbarPage .nav-links .links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbarPage .nav-links .links .sub-menu {
    position: absolute;
    top: 12vh;
    left: 0px;
    width: 300px;
    height: auto;
    padding: 10px;
    background: var(--white);
    border-radius: 2px;
    line-height: 25px;
    box-shadow: 0 0 10px var(--dark-1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

nav .navbarPage .nav-links .links .sub-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 40px;
    height: 10px;
    width: 10px;
    background: var(--white);
    transform: rotate(45deg);
}

nav .navbarPage .nav-links .links li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

nav .navbarPage .nav-links .links .sub-menu li {
    width: 100%;
    height: 60px;
    transition: 0.5s;
    border-bottom: 1px solid var(--color-f5);
    margin: 0;
}

nav .navbarPage .nav-links .links .sub-menu li i {
    font-size: 0.9rem;
    color: var(--main-color);
    height: 40px;
    width: 40px !important;
    background: rgba(231, 243, 255, 0.3);
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
}

nav .navbar .nav-links .links .sub-menu li span {
    width: 230px;
    margin-left: 10px;
}

nav .navbarPage .nav-links .links .sub-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 0.8rem;
    font: 500;
    color: var(--dark-5) !important;
    padding-left: 0;
    padding-right: 0;
    line-height: 20px;
}

nav .navbarPage .nav-links .links .sub-menu li a:hover {
    background: transparent;
    padding-left: 10px !important;
    color: var(--main-color) !important;
}

nav .navbarPage .nav-links .links .sub-menu li:last-of-type {
    border-bottom: none;
}

.navbarPage .fa-bars,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .fa-times {
    display: none;
}


.navbarPage .rightOption {
    display: flex;
    align-items: center;
}

.navbarPage .rightOption #user-btn {
    margin-right: 10px;
}

.navbarPage .rightOption #user-btn i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--white-1);
    backdrop-filter: blur(10px);
    transition: all 0.3s linear;
}

.navbarPage .rightOption #search-btn i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--white-1);
    backdrop-filter: blur(10px);
    transition: all 0.3s linear;
}

.navbarPage .rightOption i {
    font-size: 1rem;
    cursor: pointer;
    color: var(--main-color);
}

.navbarPage .rightOption #search-btn:hover i,
.navbarPage .rightOption #user-btn:hover i {
    background: var(--main-color);
    color: var(--white);
    transition: all 0.3s linear;
}

/* search bar PAGE start */

.navbarPage .search-bar-container {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 40%;
    height: 100vh;
    right: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    background-size: cover;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 1.5s;
    z-index: 1111;
}

.navbarPage .search-bar-container.active {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: 1.1s;
}

.navbarPage .search-bar-container form {
    width: 100%;
    z-index: 1111;
}

.navbarPage .search-bar-container #search-bar {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    border: 2px solid var(--main-color);
    backdrop-filter: blur(20px);
    height: 50px;
    line-height: 50px;
    color: white;
    position: relative;
    justify-content: space-between;
    border-radius: 30px;
    overflow: hidden;
}

.navbarPage .search-bar-container .text h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    padding-bottom: 30px;
}

.navbarPage .search-bar-container #search-bar input {
    width: 80%;
    height: 50px;
    border: none;
    padding-left: 25px;
    background: transparent;
    color: var(--main-color);
    outline: none;
}

.navbarPage .search-bar-container #search-bar button {
    right: 0;
    top: 0;
    border: none;
    height: 50px;
    width: 20%;
    text-align: right;
    padding-right: 25px;
    border-radius: 30px;
    line-height: 50px;
    background: transparent;
    color: var(--main-color);
    cursor: pointer;
}

.navbarPage .search-bar-container .icons-fa-div {
    position: absolute;
    top: 5%;
    right: 5%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 8px;
    border: 2px solid #bebebe;
    backdrop-filter: blur(20px);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
}

.navbarPage .search-bar-container .icons-fa-div:hover {
    background: var(--main-color);
    border: 2px solid transparent;
    transition: all 0.3s linear;
}

.navbarPage .search-bar-container .icons-fa-div.active {
    right: -100%;
    transition: 1000ms;
}

.navbarPage .search-bar-container .icons-fa-div .fa {
    color: #b3b3b3;
    font-size: 18px;
    transition: all 0.3s linear;
}

.navbarPage .search-bar-container .icons-fa-div:hover .fa {
    color: var(--white);
    transition: all 0.3s linear;
}


/* user bar start */

.navbarPage .user-bar-container {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 40%;
    height: 100vh;
    right: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-left: 1px solid rgb(226, 226, 226);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 1.5s;
    z-index: 1111;
}

.navbarPage .user-bar-container.active {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: 1.1s;
}

.navbarPage .user-bar-container .user-icon-close {
    position: absolute;
    top: 5%;
    right: 10%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 8px;
    border: 2px solid #e1e1e1;
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
    z-index: 1111;
}

.navbarPage .user-bar-container .user-icon-close:hover {
    background: var(--main-color);
    transition: all 0.3s linear;
    border: 2px solid transparent;
}

.navbarPage .user-bar-container .user-icon-close.active {
    right: -100%;
    transition: 1000ms;
}

.navbarPage .user-bar-container .user-icon-close .fa {
    color: var(--main-color);
    font-size: 18px;
    transition: all 0.3s linear;
}

.navbarPage .user-bar-container .user-icon-close:hover .fa {
    color: var(--white);
}


@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbarPage .user-bar-container .form {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bottom);
    border-radius: 10px;
    height: auto;
    width: 350px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1111;
}

.navbarPage .user-bar-container .form h1 {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.navbarPage .user-bar-container .form .line {
    width: 60px;
    height: 4px;
    border-radius: 5px;
    background: var(--main-color);
    margin: 0px auto;
    margin-bottom: 20px;
}

.navbarPage .user-bar-container .form .inputBox {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 0 !important;
    width: 100%;
}

.navbarPage .user-bar-container .form .inputBox span {
    line-height: 22px;
    padding-bottom: 8px;
    color: var(--main-color);
}

.navbarPage .user-bar-container .form .inputBox input {
    height: 45px;
    width: 100%;
    border: 2px solid var(--bottom);
    border-radius: 8px;
    padding-left: 10px;
}

.navbarPage .user-bar-container .form .links a {
    color: #6d6d6d;
    transition: 0.3s;
}

.navbarPage .user-bar-container .form .links a:hover {
    text-decoration: underline;
}

.navbarPage .user-bar-container .form input[type="submit"] {
    height: 45px;
    width: 100%;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
    border-radius: 8px;
    border: none;
}

/* user bar end */

/************** END HEADER PAGE *************/


.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(26, 64, 95, 0.2);
    animation: animateLeft 15s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animateLeft {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/* search bar end */




.btnHome {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 1px solid #e1e1e1;
    font: 12px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

.btnHome::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.btnHome::after {
    transition: border 0.1s linear 0.05s;
}

.btnHome .btn-inner {
    position: relative;
    z-index: 2;
}

.btnHome:hover {
    color: #373737;
    transition: color 0.1s linear 0s;
}

.btnHome:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.btnHome:hover::after {
    border-color: #373737;
    transition: border 0.1s linear 0s;
}

/* ===== HOME SECTION ========== */

.home{
    position: relative;
	height: 100vh;
	overflow: hidden;
    position: relative;
    object-fit: cover;
}
.home .slide{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
    background-position: center;
    object-fit: cover;
	z-index: 10;
	display: none;
	padding: 0 15px;
	animation: slide 2s ease;
}
.home .slide.active{
	display: flex;
}
@keyframes slide{
	0%{
		transform: scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}
.home .container{
	flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}
.home .caption{
    max-width: 800px;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 100!important;
}
.home .caption h1{
	font-size: 3.5rem;
    font-weight: 300;
    color: white;
    position: relative;
    z-index: 10;
}
.home .caption h2{
	font-size: 3.5rem;
    font-weight: 600;
    color: white;
	margin: 0;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 10;
}
.home .slide.active .caption h1{
	opacity: 0;
	animation: captionText .5s ease forwards;
	animation-delay: 1s;
}
.home .slide.active .caption h2{
	opacity: 0;
	animation: captionText .5s ease forwards;
	animation-delay: 1.5s;
}
.home .caption p{
	font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
	margin-bottom: 15px;
    color: #ececec;
    font-family: sans-serif;
    position: relative;
    z-index: 10;
}
.home .slide.active .caption p{
	opacity: 0;
	animation: captionText .5s ease forwards;
	animation-delay: 2s;
}
.home .caption .lien{
    margin-top: 2rem;
}

.home .caption .homeAppel {
    background: white;
    color: var(--main-color);
    font-weight: 500;
    display: flex;
}
.home .caption a{
	margin: 10px;
    padding: 10px 25px;
    border: 1px solid var(--white);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    /* border-radius: 30px; */
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}
.home .caption a:nth-child(2){
    margin-left: 10px;
}
.home .slide.active .caption a{
	opacity: 0;
	animation: captionText .5s ease forwards;
	animation-delay: 2.5s;
}
@keyframes captionText{
	0%{
		opacity: 0;transform: translateX(-100px);
	}
	100%{
		opacity: 1;transform: translateX(0px);
	}
}
.home .controls .prev,
.home .controls .next{
	position: absolute;
	z-index: 10;
    top: 50%;
	cursor: pointer;
}
.home .controls .prev{
	left: 5%;
	transition: .5s;
}
.home .controls .next{
	right: 5%;
	transition: .5s;
}
.home .indicator{
	position: absolute;
	left: 50%;
	bottom: 20px;
	z-index: 1;
	transform: translateX(-50%);
	cursor: pointer;
    z-index: 10;
}
.home .indicator div{
	display: inline-block;
	width: 10px;
	height: 10px;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 50%;
	text-align: center;
	line-height: 25px;
	margin: 0 3px;
	transition: all 2s;
}
.home .indicator div.active{
	background: #ffffff;
	transition: all 2s;
}
.next .fa, .prev .fa{
    font-size: 4rem;
    margin-top: -40px;
    transition: .5s;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}
.next .fa:hover, .prev .fa:hover{
    color: #ffffff;
}

.home .slider{
    position: relative;
    height: 100% !important;
    width: 100% !important;
}

.home .gradient {
    position: absolute;
    top: -50vh;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#00284B));
    background:linear-gradient(to bottom, transparent, #00284B);
    z-index: 9;
}
.home .gradient-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:#00284B;
    opacity: 0.5;
    z-index: 9;
}

.home .lien {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .lien a {
    margin: 10px;
    padding: 10px 25px;
    /* background: var(--white-1);
    backdrop-filter: blur(10px); */
    border: 1px solid var(--white);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    /* border-radius: 30px; */
    text-transform: uppercase;
}

.home .lien .homeAppel{
    background: white;
    color: var(--main-color);
    font-weight: 500;
    display: flex;
}

/* ======= END SECTION HOME ======== */

/* ===== SECTION  VALEURS FAC ====== */

#valeursfac {
    /* padding-top: 100px; */
    padding-bottom: 100px;
    position: relative;
    background-color: #f7f7f7;
}

.borderline {
    position: absolute;
    top: 0;
    right: -40%;
    height: 900px;
    width: 900px;
    border-radius: 50%;
    background: white;
    border: 80px solid rgb(249, 249, 249);
    animation: movedelement 3s ease infinite;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(100px, 100px);
        transform: translate(100px, 100px);
    }

    50% {
        -webkit-transform: translate(50px, 50px);
        transform: translate(50px, 50px);
    }

    75% {
        -webkit-transform: translate(100px, -50px);
        transform: translate(100px, -50px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}


.valeursfac .title {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-top: 100px;
}

.valeursfac .title .right {
    width: 150px;
    height: 3px;
    background: var(--main-color);
    margin-right: 20px;
}

.valeursfac .title .left h1 {
    font-size: 3rem;
    color: var(--main-color);
}


.valeursfac .block {
    position: relative;
}

.valeursfac .block .left {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.valeursfac .block .left .item {
    position: relative;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(10, 50, 80, 0.1);
    background: white;
    z-index: 9;
}

.valeursfac .block .left .item:nth-child(1) {
    background: var(--main-color);
}

.valeursfac .block .left .item .icon {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background: var(--main-color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.valeursfac .block .left .item:nth-child(1) .icon {
    background: white;
}

.valeursfac .block .left .item .contenu {
    margin-top: 20px;
    position: relative;
}

.valeursfac .block .left .item .contenu h1 {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}

.valeursfac .block .left .item:nth-child(1) .contenu h1 {
    color: white;
}

.valeursfac .block .left .item .contenu p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}

.valeursfac .block .left .item:nth-child(1) .contenu p {
    color: var(--white);
    font-weight: 100;
}

.valeursfac .block .left .item .contenu .div-left {
    margin-left: 15px;
    padding-top: 10px;

}

.valeursfac .block .left .item .contenu .div-left .fa {
    font-size: 0.7rem;
    margin-right: 5px;
    color: var(--main-color-second);
}

.valeursfac .block .left .item .contenu span {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}

.valeursfac .block .left .item .contenu a {
    display: block;
    margin-top: 20px;
    /* padding-top: 15px; */
    color: var(--main-color-second);
    text-decoration: underline;
}

/* MODAL CONTENU */
.modal-title {
    font-size: 2rem;
    color: var(--main-color-second) !important;
}

.modal-body .contenu p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}

.modal-body .contenu .div-left {
    margin-left: 15px;
    padding-top: 10px;

}

.modal-body .contenu .div-left .fa {
    font-size: 0.7rem;
    margin-right: 5px;
    color: var(--main-color-second);
}

.modal-body .contenu span {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}


.valeursfac .block .right {
    position: relative;
    margin-left: 20%;
    align-self: start;
}

.valeursfac .block .right .icon:nth-child(1) {
    position: absolute;
    top: 10%;
    left: -20%;
    width: 350px !important;
    height: 350px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e2f2ff;
}

.valeursfac .block .right .icon:nth-child(1) .circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #f5f7fb;
}

.valeursfac .block .right .icon:nth-child(2) {
    position: absolute;
    bottom: -20%;
    left: 15%;
    width: 350px !important;
    height: 350px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e2f2ff;
}

.valeursfac .block .right .icon:nth-child(2) .circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #f5f7fb;
}

.valeursfac .block .right .image {
    position: relative;
    z-index: 2;
}

.valeursfac .block .right .image img:nth-child(1) {
    width: 500px;
    height: 500px;
    border-radius: 50%;
}

.valeursfac .block .right .image img:nth-child(2) {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    bottom: -10%;
    left: -10%;
}


/* ========== END VALEUR ... ========== */



/******************************
    WELCOME TO FAC START
******************************/

#welcomeToFac {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.welcomeToFac {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 2rem;
    align-items: center;
}

.welcomeToFac-left {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.welcomeToFac-left .title {
    width: 100%;
}

.welcomeToFac-left .title h1 {
    color: var(--main-color);
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 500;
    text-align: justify;
}

.welcomeToFac .content {
    margin-top: 30px;
}

.welcomeToFac .content .text p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8rem;
    color: var(--dark-7);
    text-align: justify;
    padding-bottom: 25px;
}

.welcomeToFac-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 80px;
}

.welcomeToFac-right .block-right {
    height: 600px;
    width: 430px;
    border-radius: 10px;
    box-shadow: 0 0rem 1rem rgb(0, 0, 0, 0.2);
}

.welcomeToFac-right .block-right .box {
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.welcomeToFac-right .block-right .box .player {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.welcomeToFac-right .block-right .box .details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.welcomeToFac-right .block-right .box .track-art {
    margin: 25px;
    height: 150px;
    width: 150px;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    -moz-box-shadow: 0px 6px 5px #ccc;
    -webkit-box-shadow: 0px 6px 5px #ccc;
    box-shadow: 0px 6px 5px #ccc;
    -moz-border-radius: 190px;
    -webkit-border-radius: 190px;
    border-radius: 190px;
}

.welcomeToFac-right .block-right .box .now-playing {
    font-size: 1rem;
    color: var(--white-7);
}

.welcomeToFac-right .block-right .box .track-name {
    font-size: 1.5rem;
    color: var(--white);
}

.welcomeToFac-right .block-right .box .track-artist {
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--white-8);
}

.welcomeToFac-right .block-right .box .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.welcomeToFac-right .block-right .box .active {
    color: var(--white);
}

.welcomeToFac-right .block-right .box .repeat-track,
.welcomeToFac-right .block-right .box .random-track,
.welcomeToFac-right .block-right .box .playpause-track,
.welcomeToFac-right .block-right .box .prev-track,
.welcomeToFac-right .block-right .box .next-track {
    color: var(--white);
    transition: 0.2s;
}

.welcomeToFac-right .block-right .box .playpause-track {
    margin-left: 30px;
    margin-right: 30px;
}

.welcomeToFac-right .block-right .box .repeat-track:hover,
.welcomeToFac-right .block-right .box .random-track:hover,
.welcomeToFac-right .block-right .box .playpause-track:hover,
.welcomeToFac-right .block-right .box .prev-track:hover,
.welcomeToFac-right .block-right .box .next-track:hover {
    opacity: 1.0;
}

.welcomeToFac-right .block-right .box .slider_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcomeToFac-right .block-right .box .seek_slider,
.welcomeToFac-right .block-right .box .volume_slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    background: #83a9ff;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.welcomeToFac-right .block-right .box .seek_slider::-webkit-slider-thumb,
.welcomeToFac-right .block-right .box .volume_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #3774ff;
    cursor: pointer;
    border-radius: 100%;
}

.welcomeToFac-right .block-right .box .seek_slider:hover,
.welcomeToFac-right .block-right .box .volume_slider:hover {
    opacity: 1.0;
}

.welcomeToFac-right .block-right .box .seek_slider {
    width: 60%;
}

.welcomeToFac-right .block-right .box .volume_slider {
    width: 30%;
}

.welcomeToFac-right .block-right .box .current-time,
.welcomeToFac-right .block-right .box .total-duration {
    padding: 10px;
    color: var(--white);
}

.welcomeToFac-right .block-right .box i.fa-volume-down,
.welcomeToFac-right .block-right .box i.fa-volume-up {
    padding: 10px;
    color: var(--white);
}

i,
i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
    cursor: pointer;
}

.welcomeToFac-right .block-right .box .randomActive {
    color: black;
}

.welcomeToFac-right .block-right .box .rotate {
    animation: rotation 8s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.welcomeToFac-right .block-right .box .loader {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcomeToFac-right .block-right .box .loader .stroke {
    background: #f1f1f1;
    height: 150%;
    width: 10px;
    border-radius: 50px;
    margin: 0px 5px;
    animation: animate 1.4s linear infinite;
}

@keyframes animate {
    50% {
        height: 20%;
        background: #4286f4;
    }

    100% {
        height: 100%;
    }
}

.welcomeToFac-right .block-right .box .stroke:nth-child(1) {
    animation-delay: 0s;
}

.welcomeToFac-right .block-right .box .stroke:nth-child(2) {
    animation-delay: 0.3s;
}

.welcomeToFac-right .block-right .box .stroke:nth-child(3) {
    animation-delay: 0.6s;
}

.welcomeToFac-right .block-right .box .stroke:nth-child(4) {
    animation-delay: 0.9s;
}

.welcomeToFac-right .block-right .box .stroke:nth-child(5) {
    animation-delay: 0.6s;
}

.welcomeToFac-right .block-right .box .stroke:nth-child(6) {
    animation-delay: 0.3s;
}

.welcomeToFac-right .block-right .box .stroke:nth-child(7) {
    animation-delay: 0s;
}

/***** WELCOME TO FAC END ****/


/******************************
    NUMBER SPEAK START
******************************/

#numberSpeakSection {
    background: var(--footer-background);
    padding-top: 70px;
    padding-bottom: 70px;
}

#numberSpeakSection .number {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#numberSpeakSection .number .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-right: 1px solid var(--white-2);
    transition: all 0.4s ease-in-out;
}

#numberSpeakSection .number .item:last-child {
    border-right: 1px solid transparent;
}

#numberSpeakSection .number .item .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#numberSpeakSection .number .item .icon i {
    font-size: 4.5rem;
    color: var(--white-1);
    opacity: 0.7;
}

#numberSpeakSection .number .item h1 {
    position: relative;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    z-index: 2;
}

#numberSpeakSection .number .item span {
    font-size: 4.5rem;
    font-weight: 600 !important;
    color: white !important;
}

/***** NUMBER SPEAK END ****/

/******************************
    DEPARTEMENT START
******************************/

#departement {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

#departement::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #00284B;
    opacity: 0.9;
}

.departement .block {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 9;
}

.departement .title {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding-left: 20px;
}

.departement .title .right {
    width: 150px;
    height: 3px;
    background: var(--white);
    margin-right: 20px;
}

.departement .title .left h1 {
    font-size: 3rem;
    color: var(--white);
}

.departement .left .contenu p {
    font-size: 1rem;
    font-weight: 100;
    color: var(--white-9);
    padding-bottom: 20px;
}

.departement .left .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.departement .left .bottom h1 {
    color: white;
    font-size: 3rem;
    text-align: center;
    line-height: 2rem;
}

.departement .left .bottom h1 span {
    font-size: 2rem;
}

.departement .block .right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.departement .block .right .item {
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.departement .block .right .item .icon {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background: var(--main-color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.departement .block .right .item .icon img {
    height: 60px !important;
    object-fit: contain;
}

.departement .block .right .item .contenu {
    margin-top: 30px;
}

.departement .block .right .item .contenu h1 {
    font-size: 1.5rem;
    color: var(--main-color);
}

.departement .block .right .item .contenu p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
    text-align: justify;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

.departement .block .right .item .contenu a {
    color: white;
    padding: 10px 20px;
    background: var(--main-red);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s linear;
}

.departement .block .right .item .contenu a:hover {
    background: transparent;
    color: var(--main-red);
    border: 1px solid var(--main-red);
}

.departement .block .right .item .contenu a i {
    font-size: 0.7rem;
    padding-left: 10px;
}

/*********** END DEPARTEMENT *********/


/********************************
    FAIRE LA FAC
*********************************/

#fairelafac {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 650px;
    width: 100%;
}

#fairelafac .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#fairelafac .hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#fairelafac .hero-left h1 {
    text-align: center;
}

#fairelafac .hero-left button {
    position: absolute;
    padding: 10px 15px;
    margin: 10px;
    border: none;
    background-color: black;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
}

#fairelafac .hero-left button:last-of-type {
    right: 0;
}

#fairelafac .hero-left button:active {
    transform: scale(0.9);
}

#fairelafac .hero-left .layers {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#fairelafac .hero-left .layers .layer {
    display: grid;
    grid-template-rows: 6rem 3fr 1fr;
    /* background-color: white; */
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.5s;
    transform: translateX(100%);
    opacity: 0;
}

#fairelafac .hero-left .layers .layer-displayed {
    transform: translateX(0);
    opacity: 1;
    z-index: 1;
}

#fairelafac .hero-left .layers .layer-displayed-exit {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

#fairelafac .hero-left .layers .layer>span {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
}

#fairelafac .hero-left .layers .layer__image {
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
}

#fairelafac .hero-left .layers .layer__info {
    display: none;
    grid-template-columns: 1fr 1.3fr;
    column-gap: 2rem;
    font-size: 1.5rem;
}

#fairelafac .hero-left .layers .layer__info div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#fairelafac .hero-left .layers .layer__info div:first-child {
    align-items: flex-end;
    color: gray;
}

#fairelafac .hero-left .layers .layer__info div:last-child {
    font-weight: bold;
}

#fairelafac .hero-left .layers .layer:nth-child(1)>span {
    color: var(--color1);
}

#fairelafac .hero-left .layers .layer:nth-child(2)>span {
    color: var(--color2);
}

#fairelafac .hero-left .layers .layer:nth-child(3)>span {
    color: var(--color3);
}

#fairelafac .hero-right {
    grid-column: 2;
    position: relative;
    overflow: hidden;
    background: var(--color-f7);
}

#fairelafac .hero-right>.layer {
    background-color: #E41936;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.5s;
}

#fairelafac .hero-right>.layer-displayed {
    transform: translateX(0);
    z-index: 2;
}

#fairelafac .hero-right>.layer-displayed-exit {
    transition-delay: 1s;
    transition-duration: 0;
    z-index: 1;
}

#fairelafac .hero-right>.layer:nth-child(1) {
    background-color: var(--color1);
}

#fairelafac .hero-right>.layer:nth-child(2) {
    background-color: var(--color2);
}

#fairelafac .hero-right>.layer:nth-child(3) {
    background-color: var(--color3);
}

#fairelafac .hero-right .photo-name {
    position: absolute;
    top: 33%;
    left: 50%;
    width: 20%;
    font-size: 1.5rem;
    z-index: 2;
}

#fairelafac .hero-right .photo-name span {
    display: block;
}

#fairelafac .hero-right .photo-name__wrapper {
    position: relative;
}

#fairelafac .hero-right .photo-name__title {
    font-weight: bold;
}

#fairelafac .hero-right .photo-name .layer {
    padding: 10px;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

#fairelafac .hero-right .photo-name .layer-displayed {
    transform: translateX(0);
    transition-delay: 0.5s;
}

#fairelafac .hero-right .photo-frame {
    position: absolute;
    overflow: hidden;
    animation-play-state: paused;
}

#fairelafac .hero-right .photo-frame:nth-child(4) {
    top: 10%;
    left: 10%;
    width: 40%;
    height: 40%;
    z-index: 3;
}

#fairelafac .hero-right .photo-frame:nth-child(4) .cover {
    background-color: black;
}

#fairelafac .hero-right .photo-frame:last-child {
    top: 40%;
    left: 20%;
    width: 65%;
    height: 50%;
    z-index: 2;
}

#fairelafac .hero-right .photo-frame .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

#fairelafac .hero-right .photo-frame .layer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition-delay: 0.5s;
}

#fairelafac .hero-right .photo-frame .layer-displayed {
    opacity: 1;
}

@keyframes cover {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    95% {
        width: 0;
    }

    100% {
        width: 0;
    }
}


/******** END FAIRE LA FAC ********/


/******************************
    VALVE START
******************************/

#valve {
    background: #fafafa;
    padding-top: 100px;
    padding-bottom: 100px;
}

.valve .titleOne {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.valve .titleOne .right {
    width: 150px;
    height: 3px;
    background: var(--main-color);
    margin-right: 20px;
}

.valve .titleOne .left h1 {
    font-size: 3rem;
    color: var(--main-color);
}

.valve .block {
    display: flex;
    width: 100%;
}

.valve .block .left .title h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--main-color);
}

.valve .block .right .title h1 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--main-color);
}

.valve .block .right .contentValve {
    margin-top: 50px;
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; */
}

.valve .block .right .contentValve .itemValve {
    padding: 30px !important;
    background: #ffffff;
    border-radius: 10px !important;
    border: 1px solid var(--bottom);
    transition: all 0.4s linear;
}

.valve .block .right .contentValve .itemValve:hover {
    background: var(--main-color);
}

.valve .block .right .contentValve .itemValve:hover .top .date h1 {
    color: var(--white-8);
}

.valve .block .right .contentValve .itemValve .top .date h1 {
    color: var(--color-9b);
    font-size: 0.8rem;
    font-weight: 300;
}

.valve .block .right .contentValve .itemValve .middle {
    margin-top: 30px;
}

.valve .block .right .contentValve .itemValve:hover .middle .title h2 {
    color: var(--white);
}

.valve .block .right .contentValve .itemValve .middle .title h2 {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: justify;
    color: var(--dark-8);
}

.valve .block .right .contentValve .itemValve:hover .middle .title p {
    color: var(--white-8);
}

.valve .block .right .contentValve .itemValve .middle .title p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--dark-6);
    line-height: 1.3rem;
    padding-top: 20px;
}

.valve .block .right .contentValve .itemValve .bottom {
    margin-top: 30px;
}

.valve .block .right .contentValve .itemValve .bottom .lien a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--dark-6);
    border: 1px solid var(--dark-5);
}

.valve .block .right .contentValve .itemValve:hover .bottom .lien a {
    border: 1px solid var(--main-red);
    background: var(--main-red);
    color: var(--white);
}

.valve .block .right .contentValve .itemValve .bottom .lien a:nth-child(1) {
    display: none;
}

/********* VALVE END *********/


/****************************
        ACTUALITE START
*****************************/

#actualite {
    padding-top: 70px;
    padding-bottom: 50px;
}

.actualite {
    position: relative;
}

.actualite .title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actualite .title h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--main-color);
    text-transform: uppercase;
}

.actualite .title p {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--dark-7);
}

.effet-1 {
    position: absolute;
    left: -5%;
    top: -10%;
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    animation: movedelement 5s linear infinite;
}

.effet-1 div {
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background: var(--dark-1);
    margin: 0 10px 10px;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }

    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }

    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.actualite .blockCarousel {
    margin-top: 30px;
}

.actualite .blockCarousel .itemActualite {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.actualite .blockCarousel .itemActualite::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.05);
}

.actualite .blockCarousel .itemActualite .content {
    position: absolute;
    bottom: 0;
    height: auto;
    width: 100%;
    padding: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.actualite .blockCarousel .itemActualite .content .titre h1 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: justify;
    color: var(--white);
}

.actualite .blockCarousel .itemActualite .content .date p {
    text-transform: uppercase;
    color: var(--white-6);
    padding-top: 10px;
    padding-bottom: 10px;
}

.actualite .blockCarousel .itemActualite .content .text p {
    color: var(--white-9);
    font-size: 1rem;
    font-weight: 300;
}

.actualite .blockCarousel .itemActualite .content .lien a {
    display: block;
    height: 30px;
    width: 120px;
    color: var(--white-9);
    text-align: center;
    line-height: 30px;
    border: 1px solid var(--white-7);
    margin-top: 10px;
}

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px auto;
}

.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background: var(--main-color);
}

/************ END ACTUALITE **********/


/****************************
        FABLAB START
*****************************/

#fablab {
    padding-top: 80px;
    padding-bottom: 80px;
}

.fablab .block {
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 2rem;
    align-items: center;
}

.fablab .block .item .title h1,
.fablab .block .item .title h2 {
    font-size: 2rem;
    color: var(--white);
}

.fablab .block .item {
    background: var(--white-1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 50px;
}

.fablab .block .item .logo {
    height: 100px;
    width: 200px;
    margin-bottom: 30px;
}

.fablab .block .item .text p {
    color: var(--white);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: justify;
}

.fablab .block .item .lien {
    margin-top: 50px;
}

.fablab .block .item .lien a {
    padding: 10px 25px;
    background: var(--white-1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: var(--white);
}

/******** END FABLAB *********/


/******************************
    DEPARTEMENT START
******************************/

#actualite-home {
    position: relative;
    padding-bottom: 100px;
    background: #fafafa;
}

.actualite-home .title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
}

.actualite-home .title h1 {
    font-size: 3rem;
    color: var(--main-color);
}

.actualite-home .title a {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    background: var(--main-color);
    border-radius: 5px;
    padding: 10px 25px;
}

.actualite-home .title a i {
    font-size: 1rem;
    padding-left: 5px;
}

.actualite-home .block-global {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 2rem;
    margin-top: 50px;
}

.actualite-home .block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.actualite-home .block .item {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.05), 0px 5px 22px rgba(0, 0, 0, 0.03), 0px 12px 17px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.05), 0px 5px 22px rgba(0, 0, 0, 0.03), 0px 12px 17px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.05), 0px 5px 22px rgba(0, 0, 0, 0.03), 0px 12px 17px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.actualite-home .block .item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to top, #1d1d1d 30%, transparent);
    opacity: 0.8;
}

.actualite-home .block .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.actualite-home .block .item:hover img {
    transform: scale(1.1);
}

.actualite-home .block .item .text {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
    background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(15, 15, 15, 0.95));
}

.actualite-home .block .item .text span {
    padding: 5px;
    border-radius: 3px;
    background: var(--main-red);
    color: white;
    font-size: 16px;
}

.actualite-home .block .item .text h1 {
    color: var(--white);
    font-size: 35px;
    font-family: var(--font-family-freight);
    font-weight: 100;
    padding-top: 10px;
    padding-bottom: 10px;
}

.actualite-home .block .item .text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-8);
    padding-bottom: 15px;
}

.actualite-home .block .itemlast {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.05), 0px 5px 22px rgba(0, 0, 0, 0.03), 0px 12px 17px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.05), 0px 5px 22px rgba(0, 0, 0, 0.03), 0px 12px 17px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.05), 0px 5px 22px rgba(0, 0, 0, 0.03), 0px 12px 17px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.actualite-home .block .itemlast img {
    height: 300px;
    object-fit: cover;
}

.actualite-home .block .itemlast .text {
    padding: 10px;
}

.actualite-home .block .itemlast .text span {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 400;
}

.actualite-home .block .itemlast .text h1 {
    font-size: 20px;
    color: var(--main-color);
    margin-top: 15px;
    margin-bottom: 15px;
}

.actualite-home .block .itemlast .text p {
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.actualite-home .block .itemlast .text a {
    color: var(--main-red);
    font-weight: 500;
}

.actualite-home .block-global .right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.actualite-home .block-global .event-item {
    cursor: pointer;
    position: relative;
    background: #FFF;
    box-shadow: 0px 11px 15px rgba(0, 0, 0, 0.05), 0px 9px 46px rgba(0, 0, 0, 0.03), 0px 24px 38px rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    padding: 13px 20px;
}

.actualite-home .block-global .event-item .title {
    font-size: 20px;
    color: var(--main-color);
    font-weight: 500;
    padding: 0 !important;
}

.actualite-home .block-global .event-item .details {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.actualite-home .block-global .event-item .details .date,
.actualite-home .block-global .event-item .details .location {
    text-transform: uppercase;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 400;
}

.actualite-home .block-global .event-item .details i {
    color: var(--main-red);
    font-size: 10px;
    padding-right: 5px;
}

.actualite-home .block-global .event-item .details .location {
    margin-left: 20px;
}

/*********** END ACTUALITE *********/


/****************************
    POLYTECHNIQUE SKILLS START
*****************************/

#skillspoly {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--footer-background);
    position: relative;
}

.skillspoly {
    display: grid;
    grid-template-columns: 200px 1fr;
    position: relative;
}

.skillspoly .vertical-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skillspoly .vertical-text span {
    width: 1px;
    height: 50px;
    background-color: var(--main-red);
}

.skillspoly .vertical-text p {
    display: block;
    writing-mode: vertical-lr;
    padding: 20px;
    color: white;
    font-size: 1.2rem;
    /* font-family: var(--font-family-freight); */
    font-weight: 100;
    letter-spacing: 3px;
    border-radius: 30px;
    transform: rotate(180deg);
}


.skillspoly .block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-right: 100px;
}

.skillspoly .block .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.skillspoly .block .item .two {
    display: flex;
    flex-direction: column;
}

.skillspoly .block .item .one .article {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skillspoly .block .item .one .article img{
    border-radius: 10px;
}

.skillspoly .block .item .one .article .hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 73, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
}

.skillspoly .block .item h1 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-red);
    padding-bottom: 20px;
}

.skillspoly .block .item h2{
    font-family: var(--font-family-freight);
    font-size: 2rem;
    color: white;
    padding-bottom: 40px;
}

.skillspoly .block .item p{
    color: var(--white-8);
}

.skillspoly .block .item h3{
    font-size: 0.8rem;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

.skillspoly .block .item .two a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 45px;
    color: var(--main-red);
    border: 2px solid var(--main-red);
}

.skillspoly .block .item .two .article .hover h1 {
    font-size: 1.3rem;
    font-family: var(--font-family-freight);
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.skillspoly .block .item .one .article .hover h2,
.skillspoly .block .item .two .article .hover h2 {
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.skillspoly .block .item .one .article .hover h2 span,
.skillspoly .block .item .two .article .hover h2 span {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--main-red);
    margin-right: 10px;
}

.skillspoly .block .item .one .article .hover p,
.skillspoly .block .item .two .article .hover p {
    color: var(--white-7);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}



/***** END POLYTECHNIQUE SKILLS *** */


/************************************
     FABLAB SKILLS
************************************/

#fabSkills {
    padding-top: 1rem;
    /* padding-bottom: 5rem; */
    background: white;
}

.fabSkills .container-fluid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.fabSkills .media {
    background-position: center;
    background-size: cover;
    height: 100%;
    position: absolute;
    transition: all 0.3s ease;
    width: 100%;
}

.fabSkills figure {
    height: 370px;
    overflow: hidden;
    position: relative;
}

.fabSkills figure a {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

.fabSkills figure:hover .media {
    transform: scale(1.25);
}

.fabSkills figcaption {
    color: #252830;
    height: calc(100% - 30px);
    margin: 15px;
    left: 0;
    position: absolute;
    top: 0;
    width: 250px;
}

.fabSkills .body {
    background-color: white;
    bottom: 0;
    padding: 15px;
    position: absolute;
    width: 100%;
}

.fabSkills svg {
    height: inherit;
    width: 100%;
}

.fabSkills svg text {
    text-anchor: middle;
}

.fabSkills svg #alpha {
    fill: white;
}

.fabSkills svg .title {
    font-size: 28px;
    font-family: "Montserrat";
    letter-spacing: 5px;
}

.fabSkills svg #base {
    fill: white;
    -webkit-mask: url(#mask);
    mask: url(#mask);
}

.fabSkills svg #base2 {
    fill: white;
    -webkit-mask: url(#mask2);
    mask: url(#mask2);
}


/***** END FABLABSKILLS *********/



/************************************
    CONTACT SECTION
************************************/

.contactBarniere{
    position: relative;
    padding: 136px 0;
}

.contactBarniere .block{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    border-bottom: 1px solid rgba(0, 40, 75, 0.3);
    padding-bottom: 60px;
    width: 800px;
    margin: 0 auto;
}

.contactBarniere .block .left h1{
    font-size: 3.5rem;
    font-family: var(--font-family-freight);
    color: var(--main-color);
}

.contactBarniere .block .right{
    padding-top: 60px;
    border-top: 1px solid rgba(0, 40, 75, 0.3);
}

.contactBarniere .block .right p{
    color: var(--main-color);
    font-weight: 300;
    line-height: 2rem;
}

.contactBarniere .block .right a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    height: 45px;
    width: 180px;
    border: 1px solid var(--main-red);
    color: var(--main-red);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
}


/***** END CONTACT SECTION *********/

/****************************
        NEWSLETTER START
*****************************/

.newsletter {
    display: flex;
    width: 100%;
    box-shadow: 0 1.9px 23.3px rgba(0, 0, 0, 0.025), 0 15px 71px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.newsletter .left {
    flex: 1.5;
    overflow: hidden;
}

.newsletter .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Pour que l'image s'adapte sans déformation */
}

.newsletter .right {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.newsletter .right h1 {
    font-size: 3rem;
    font-family: var(--font-family-freight);
    color: var(--main-color);
}

.newsletter .right p {
    padding-top: 50px;
    padding-bottom: 50px;
}

.newsletter .right .form form {
    display: grid;
    grid-template-columns: 60% 1fr;
    width: 100%;
    border: 2px solid var(--bottom);
    border-radius: 50px;
    padding: 5px;
}

.newsletter .right .form form input {
    height: 50px;
    border: none;
    background: transparent;
    outline: none;
    padding-left: 10px;
}

.newsletter .right .form form button {
    background: var(--main-color);
    color: white;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    outline: none;
    text-transform: uppercase;
}



/***** END NEWSLETTER ******/


/****************************
        FOOTER START
*****************************/
#footer-fac {
    background-color: var(--main-color);
    padding: 120px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

#footer-fac .img-footer {
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 1;
}

#footer-fac .img-footer img {
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

.footer-fac .block {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 2rem;
}

.footer-fac .logo {
    width: 270px;
    height: 50px;
}

.footer-fac .logo a {
    display: flex;
}

.footer-fac .logo img {
    height: 50px;
    width: 50px;
    filter: grayscale(100%);
    object-fit: contain;
}

.footer-fac .logo a h1 {
    color: var(--white-9);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3rem;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-fac .logo a h1 span {
    font-weight: 600;
}

.footer-fac .left .reseaux-sociaux {
    display: flex;
    margin-top: 20px;
    padding-left: 30px;
}

.footer-fac .left .reseaux-sociaux a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: var(--white);
    border: 1px solid var(--white-5);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-fac .left .reseaux-sociaux a:hover {
    background: var(--white-3);
}

.footer-fac .block .right .item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--white-4);
}

.footer-fac .block .right .item:nth-child(1) {
    padding-top: 0px;
}

.footer-fac .block .right .item .sous-item h1 {
    font-size: 14px;
}

.footer-fac .block .right .item .sous-item .link-prog{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 10px;
}

.footer-fac .block .right .item .sous-item .link-prog a{
    color: var(--white-7);
    font-weight: 300;
    transition: all 0.3s;
}

.footer-fac .block .right .item .sous-item .link-prog a:hover{
    color: white;
}

.footer-fac .block .right .item .sous-item .link li {
    margin-top: 6px;
}

.footer-fac .block .right .item .sous-item .link a {
    color: var(--white-7);
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-fac .block .right .item .sous-item .link a:hover {
    color: white;
}

.footer-fac .block .right .copyright {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-fac .block .right .copyright p {
    font-size: 14px;
    font-weight: 300;
    color: white;
}

.footer-fac .block .right .copyright .right {
    display: flex;
}

.footer-fac .block .right .copyright a {
    font-size: 14px;
    color: white;
    font-weight: 300;
    padding-left: 15px;
}

/****** FOOTER END ***********/





/* ======================================
=========================================

        LES PAGES START CSS

=========================================*/


/* ===== BARNIERE NEWS START ======*/

#barniere-new {
    padding-top: 20px;
    padding-bottom: 20px;
    background: var(--main-color-bg);
}

.barniere-new a {
    color: var(--main-color-second);
    font-size: 1rem;
    font-weight: 400;
}

/* ======= END BARNIERE NEWS ======*/

/* ======= SIMPLE BARNIERE START ========*/

#simpleBarniere {
    background: var(--main-color-bg);
    padding-top: 10px;
    padding-bottom: 10px
}

.simpleBarniere {
    height: 100%;
    width: 100%;
    display: flex;
    position: relative;
}

.simpleBarniere ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.simpleBarniere ul li a {
    font-size: 1rem;
    color: var(--main-color);
    text-transform: uppercase;
}

.simpleBarniere ul li i {
    font-size: 0.8rem;
}

.simpleBarniere ul li:nth-child(2) {
    color: var(--main-color);
    margin-left: 5px;
    margin-right: 5px;
}

.simpleBarniere ul li:nth-child(4) {
    margin-left: 5px;
    margin-right: 5px;
}

.simpleBarniere .title h1 {
    font-size: 86px;
    font-family: var(--font-family-darcing);
    color: var(--main-color);
}

.simpleBarniere .title .line {
    height: 4px;
    width: 100px;
    background: var(--main-color);
    border-radius: 4px;
    margin: 20px auto;
}

/* ======= END SIMPLE BARNIERE ========*/



/* ======= BARNIERE SECTION START ========*/

#barniere {
    height: 450px;
    width: 100%;
}

.barniere {
    position: relative;
    width: 100%;
    height: 100%;
}

.barniere .gradient {
    position: absolute;
    top: -50vh;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#00284B));
    background:linear-gradient(to bottom, transparent, #00284B);
}

.barniere .gradient-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:#00284B;
    opacity: 0.7;
}

.barniere .block {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 9;
}

.barniere .block .carre {
    background: var(--main-red);
    height: 2.5rem;
    width: 2.5rem;
    margin-right: 20px;

}

.barniere .block .left h1 {
    color: white;
    font-size: 3rem;
}


/********** END BARNIERE SECTION ***********/


/*===========================================
        PAGE DETAIL ACTUALITE
=============================================*/

#actualite-detail {
    padding-top: 50px;
    padding-bottom: 100px;
}

.actualite-detail .block {
    display: flex;
}

.actualite-detail .block .left .title h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    color: var(--main-color);
    display: block;
    width: 100%;
    border-bottom: 3px solid var(--main-red);
    margin-bottom: 30px;
}

.actualite-detail .block .left .img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.actualite-detail .block .left .desc h1 {
    font-size: 2rem;
    color: var(--main-color);
    font-family: var(--font-family-freight);
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 10px;
}

.actualite-detail .block .left .all {
    margin-top: 20px;
}

.actualite-detail .block .left .all p {
    padding-bottom: 20px;
    font-size: 1rem;
    color: var(--text-color);
}

.actualite-detail .block .left .partage {
    margin-bottom: 10px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.actualite-detail .block .left .partage p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 300;
    text-transform: uppercase;
    padding-right: 10px;
}

.actualite-detail .block .left .partage .reseaux {
    display: flex;
    align-items: center;
}

.actualite-detail .block .left .partage .reseaux a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--main-color-bg);
    margin-left: 10px;
}

.actualite-detail .block .left .partage .reseaux a i {
    font-size: 1rem;
    color: var(--main-color);
}

.actualite-detail .block .left .bottom {
    border-top: 3px solid var(--main-red);
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actualite-detail .block .left .bottom a {
    border-radius: 5px;
    padding: 10px 25px;
    background-color: var(--main-color-bg);
    color: var(--main-red);
    font-size: 1rem;
    text-transform: uppercase;
}



.actualite-detail .block .right .item {
    background: var(--main-color-bg);
    padding: 20px;
    margin-bottom: 20px;
}

.actualite-detail .block .right .item h1 {
    font-size: 1.5rem;
    color: var(--main-color);
    font-family: var(--font-family-freight);
    font-weight: 300;
    padding-bottom: 10px;
}

.actualite-detail .block .right .recherche form {
    display: grid;
    grid-template-columns: 80% 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.actualite-detail .block .right .recherche form input {
    height: 50px;
    background: white;
    border: none;
    outline: none;
    padding-left: 10px;
    font-size: 1rem;
    font-weight: 300;
}

.actualite-detail .block .right .recherche form button {
    background: var(--main-color);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    border: none;
    outline: none;
}

.actualite-detail .block .right .categorie ul {
    margin: 0;
    padding: 0;
}

.actualite-detail .block .right .categorie ul li {
    border-bottom: 1px solid var(--bottom);
}

.actualite-detail .block .right .categorie ul li a {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 300;
}

.actualite-detail .block .right .categorie ul li:last-child {
    border-bottom: none;
}

.actualite-detail .block .right .recent-post .ens {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.actualite-detail .block .right .recent-post .item-ens {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 10px;
}

.actualite-detail .block .right .recent-post .item-ens img {
    object-fit: cover;
    height: 60px;
}

.actualite-detail .block .right .recent-post .item-ens .text h1 {
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: 400;
    padding: 0;
}

.actualite-detail .block .right .recent-post .item-ens .text p {
    font-size: 0.8rem;
    font-weight: 300;
    color: #5e5e5e;
}

.recentTitle h1 {
    font-size: 48px;
    color: var(--main-color);
    border-bottom: 3px solid var(--main-red);
    padding-bottom: 30px;
}

#recentsPosts {
    padding-top: 30px;
    padding-bottom: 100px;
}

.voirtout {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--main-red);
}

.voirtout .space {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voirtout p {
    font-size: 2rem;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
}

.voirtout a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    background: white;
    color: var(--main-red);
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px solid var(--main-red);
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.voirtout a:hover {
    background: var(--main-red);
    color: white;
    border: 2px solid var(--white);
    box-shadow: 0px 11px 15px rgba(250, 250, 250, 0.05), 0px 9px 46px rgba(250, 250, 250, 0.03), 0px 24px 38px rgba(251, 251, 251, 0.04);

}


/* ******* END DETAIL ACTUALITE******* */



/*===========================================
        PAGE PLAN STRATEGIQUE
=============================================*/

#plan-strategique {
    padding-top: 50px;
    padding-bottom: 50px;
}

.plan-strategique .title {
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--bottom);
    display: flex;
    justify-content: space-between;
}

.plan-strategique .title .titre h1 {
    font-size: 2rem;
    color: var(--main-color);
}

.plan-strategique .title .lien {
    display: flex;
}

.plan-strategique .title .lien a:nth-child(1) {
    color: var(--main-color);
    display: block;
    width: 180px;
    height: 45px;
    margin-right: 10px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--bottom);
}

.plan-strategique .title .lien a:nth-child(2) {
    color: var(--white);
    display: block;
    width: 180px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.plan-strategique .text {
    margin-top: 20px;
}

.plan-strategique .text p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--dark-7);
    line-height: 2rem;
}

/********** END PLAN STRATEGIQUE ***********/


/*===========================================
        PAGE NOS PROFESSEURS
=============================================*/

#personals {
    background: #f7f7f7;
    padding-top: 50px;
    padding-bottom: 50px;
}

.personals .titleOne {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.personals .titleOne .right {
    width: 150px;
    height: 3px;
    background: var(--main-color);
    margin-right: 20px;
}

.personals .titleOne .left h1 {
    font-size: 3rem;
    color: var(--main-color);
}

.personals .container {
    width: 1200px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 40px;
}

.tab_box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid #f7f7f7;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.tab_box .tab_btn {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    background: none;
    padding: 18px;
    border: none;
    cursor: pointer;
}

.tab_box .tab_btn.active {
    color: var(--main-red);
    border-bottom: 5px solid var(--main-red);
}

.content_box {
    padding: 20px;
}

.content_box .content {
    display: none;
    animation: moving 0.5s ease;
}

@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}

.content_box .content.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.content_box .content h2 {
    margin-bottom: 10px;
}

.linea {
    position: absolute;
    top: 62px;
    left: 30px;
    width: 90px;
    height: 5px;
    background-color: var(--main-red);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.content_box .card {
    display: grid;
    place-items: center;
    height: 24rem;
    overflow: hidden;
    border-radius: 0px!important;
    border-bottom: 2px solid #f7f7f7!important;
    transition: all 0.3s ease;
}

.content_box .card>* {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.content_box .card__background {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.content_box .card:hover .card__background{
    transform: scale(1.1);
}

.content_box .card__content {
    --flow-space: 0.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    /* height: 55%; */
    width: 100%;
    padding: 12% 1.25rem 1.875rem;
    background: linear-gradient(180deg,
            hsla(0, 0%, 0%, 0) 0%,
            hsla(0, 0%, 0%, 0.3) 10%,
            hsl(0, 0%, 0%) 100%);
    z-index: 2;
}



.content_box .card__content--container {
    --flow-space: 1.25rem;
}

.content_box .card__title {
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    color: white;
    /* bottom: 1rem; */
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.content_box .card:hover .card__title{
    color: var(--main-red);
}

.content_box .card__title::after {
    content: "";
    position: absolute;
    /* height: 0.3125rem; */
    width: calc(100% + 1.25rem);
    left: -1.25rem;
    background-color: var(--main-red);
}

.content_box .card__description{
    color: white;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 10px;
}

.content_box .card__content span{
    font-size: 14px;
    color: var(--main-red);
    display: none;
    transition: display 0.3s ease;
}

.content_box .card:hover .card__content span{
    display: block;
    transition: display 0.3s ease;
}





/********** END NOS PROFESSEURS ***********/


/*===========================================
        PAGE PROFIL PROFESSEUR
=============================================*/

#profilProfesseur{
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f7f7f7;
}

.profilProfesseur{
    padding: 50px;
    background: white;
    border: 1px solid var(--bottom);
}
.profilProfesseur .firstProfil{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.profilProfesseur .firstProfil .left{
    position: relative;
    width: 100%;
    height: 550px;
}

.profilProfesseur .firstProfil .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.profilProfesseur .firstProfil .left::after{
    content: "";
    position: absolute;
    border: 10px solid var(--main-red);
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
}

.profilProfesseur .firstProfil .right{
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

.profilProfesseur .firstProfil .right h1.center{
    font-size: 16px;
    padding-bottom: 10px;
    color: var(--main-color)!important;
    text-align: center;
}

.profilProfesseur .firstProfil .right h2{
    font-size: 2.5rem;
    color: var(--main-red);
    padding-bottom: 20px;
    text-align: center;
}

.profilProfesseur .firstProfil .right h3{
    color: var(--main-color);
    text-align: center;
}

.profilProfesseur .firstProfil .right i{
    font-size: 4rem;
    text-align: center;
    color: var(--main-color);
}

.profilProfesseur .firstProfil .right .description .titre{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 50px;
}

.profilProfesseur .firstProfil .right .description .titre h1{
    color: var(--main-color);
    font-size: 20px;
    padding-bottom: 20px;
    text-align: left;
}

.profilProfesseur .firstProfil .right .description .titre .line{
    height: 4px;
    width: 100px;
    background: var(--main-red);
    border-radius: 4px;
}

.profilProfesseur .firstProfil .right .description .desc p{
    padding-bottom: 20px;
}

/********** END PROFIL PROFESSEUR ***********/

/*===========================================
        PAGE DECANAT
=============================================*/

#decanat {
    padding-top: 50px;
    padding-bottom: 50px;
}

.decanat .title h1 {
    font-size: 2.5rem;
    color: var(--main-color);
    border-bottom: 1px solid var(--bottom);
    padding-bottom: 10px;
}

.decanat .decanat-doyen {
    margin-bottom: 50px;
}

.decanat .decanat-doyen .block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 50px;
}

.decanat .decanat-doyen .block .item{
    /* border: 1px solid var(--bottom); */
}

.decanat .decanat-doyen .block .item .img{
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.decanat .decanat-doyen .block .item .txt{
    padding: 20px;
    text-align: center;
    background: var(--footer-background);
}

.decanat .decanat-doyen .block .item .txt h1{
    font-size: 24px;
    color: var(--white);
}

.decanat .decanat-doyen .block .item .txt .line{
    width: 60px;
    height: 4px;
    background: var(--main-red);
    border-radius: 5px;
    margin: 10px auto;
}

.decanat .decanat-doyen .block .item .txt h2{
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--white);
}

.decanat .decanat-doyen .block .item .txt a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    color: var(--main-red);
    font-size: 16px;
}

.decanat .decanat-doyen .block .item .txt a i{
    font-size: 12px;
    padding-left: 10px;
}


/******* END DECANAT **********************/


/*===========================================
        PAGE PARTENARIAT
=============================================*/

#partenariats{
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--color-f7);
}

.partenariats .block{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partenariats .block .item{
    height: 200px!important;
    padding: 10px;
    border-radius: 10px;
    background: white;
    box-shadow: rgba(13, 21, 55, 0.06) 0 5px 50px;
    transition: all 0.3s ease;
}

.partenariats .block a:hover .item{
    box-shadow: 0 20px 20px 0 rgba(2, 19, 79, 0.1);
    transform: translateY(-2px);
}




/******* END PARTENARIAT **********************/


/*===========================================
        PAGE A PROPOS
=============================================*/

#aproposSection{
    padding-top: 50px;
    padding-bottom: 50px;
}

.aproposSection .block{
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 4rem;
}

.aproposSection .block .left{
    /* border: 1px solid red; */
}

.aproposSection .block .left h1{
    font-size: 1rem;
    font-weight: 100;
    text-transform: uppercase;
    color: var(--main-color);
    padding-bottom: 20px;
}

.aproposSection .block .left h2{
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-family-freight);
    text-align: left;
    padding-bottom: 20px;
}

.aproposSection .block .left p{
    line-height: 30px;
    color: var(--main-color);
    padding-bottom: 20px;
}

.aproposSection .block .right{
    position: relative;
}


#nosdoyens{
    padding-top: 50px;
    padding-bottom: 100px;
    background: var(--main-color);
}

.nosdoyens .titleGeneral{
    margin-bottom: 50px;
}

.nosdoyens .block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.nosdoyens .block .item:nth-child(1){
    padding: 10px;
    background: white;
}

.nosdoyens .block .item:nth-child(1) .img{
    border-radius: 5px;
    overflow: hidden;
}

.nosdoyens .block .item:nth-child(1) .txt h1{
    color: var(--main-color);
    font-weight: 400;
}

.nosdoyens .block .item:nth-child(1) p{
    color: var(--main-color);
    font-weight: 300;
}

.nosdoyens .block .item .img{
    position: relative;
    height: 340px;
    width: 100%;
}



.nosdoyens .block .item .img img{
    position: relative;
    filter: grayscale(100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.nosdoyens .block .item .img:hover img{
    filter: grayscale(0%);
}

.nosdoyens .block .item .txt{
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 5px;
}

.nosdoyens .block .item .line{
    display: none;
    height: 25px;
    width: 10px;
    margin-right: 10px;
    background: #ffcbd3;
}

.nosdoyens .block .item .txt h1{
    color: var(--white);
    font-size: 18px;
    font-weight: 300;

    text-align: center;
}

.nosdoyens .block .item p{
    text-align: center;
    color: rgb(236, 236, 236);
    font-weight: 100;
    /* font-family: var(--font-family-freight); */
}


/******* END APROPOS **********************/


/*===========================================
        PAGE FEMME ET GENIE
=============================================*/

#femmeetgenie{
    padding-top: 50px;
    padding-bottom: 50px;
}

.femmeetgenie .block{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.femmeetgenie .block .item{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;

}


/******* END FEMME ET GENIIE *****************/

/*===========================================
        PAGE D'INSCRIPTION
=============================================*/

#admissionPage {
    padding-top: 50px;
    padding-bottom: 50px;
}

.admissionPage .title {
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 20px;
}

.admissionPage .title h1 {
    font-size: 3rem;
    color: var(--main-color);
    text-align: center;
}

.admissionPage .block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 20px;
    align-items: center;
}

.admissionPage .block .left img {
    height: 300px;
    object-fit: cover;
}

.admissionPage .block .right p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 300;
    color: var(--text-color);
}

.admissionPage .etudiant-etranger {
    padding: 20px;
    background: #f5f9fb;
    border: 1px solid #e6e8ee;
    border-radius: 5px;
    margin-top: 30px;
    display: flex;
}

.admissionPage .etudiant-etranger p {
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: 400;
    padding-left: 20px;
}

.admissionPage .etudiant-etranger i {
    color: rgb(230, 185, 103);
    font-size: 3rem;
}

.admissionPage .matiere {
    margin-top: 30px;
}

.admissionPage .matiere h1 {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 400;
    padding-bottom: 20px;
}

.admissionPage .matiere p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 300;
}

.admissionPage .matiere p span {
    font-weight: 500;
}

.admissionPage .critereInscription .contenu {
    margin-top: 30px;
}

.admissionPage .critereInscription .contenu p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.8rem;
}

.admissionPage .blockItems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 20px auto;
}

.admissionPage .blockItems .item {
    border-radius: 8px;
    border: 2px solid var(--bottom);
    padding: 20px;
}

.admissionPage .blockItems .item .headerItem {
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--bottom);
}

.admissionPage .blockItems .item .headerItem h1 {
    font-size: 2rem;
    color: var(--main-color-second);
}

.admissionPage .blockItems .item .contenuItem {
    margin-top: 20px;
}

.admissionPage .blockItems .item .contenuItem div {
    display: flex;
    padding-bottom: 15px;
}

.admissionPage .blockItems .item .contenuItem div i {
    color: var(--main-color-yellow);
    font-size: 1.2rem;
}

.admissionPage .blockItems .item .contenuItem div p {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 300;
    padding-left: 10px;
}

.admissionPage .blockItems .item .contenuItem div a {
    background: var(--main-color-second);
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: var(--white);
    border-radius: 5px;
}

/* FAIRE LE CHOIS */

#faireChoix {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--main-color);
}

.faireChoix .block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.faireChoix .block .left h1 {
    color: var(--white);
    font-weight: 300;
    font-size: 2rem;
}

.faireChoix .block .left h2 {
    color: var(--white);
    font-size: 2rem;
    padding-bottom: 15px;
}

.faireChoix .block .left h3 {
    color: var(--main-color-second);
    font-size: 4rem;
    font-family: 'Dancing Script', cursive !important;
}

.faireChoix .block .right p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 2rem;
    text-align: justify;
}

#numberSpeak {
    padding-top: 50px;
    padding-bottom: 70px;
}

.numberSpeak .title {
    padding-top: 20px;
    padding-bottom: 20px;
}

.numberSpeak .title h1 {
    text-align: center;
    color: var(--white);
    font-size: 4rem;
}

.numberSpeak .title h1 span {
    font-family: 'Dancing Script', cursive !important;
    color: var(--main-color-second);
}

.numberSpeak .block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.numberSpeak .block .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--white-2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid var(--white-1);
}

.numberSpeak .block .item:last-child {
    border-right: none;
}

.numberSpeak .block .item .number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.numberSpeak .block .item h1 {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--white);
}

.numberSpeak .block .item span {
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
}

.numberSpeak .block .item p {
    font-size: 1.2rem;
    color: var(--main-color-yellow);
}

/********** END PAGE D'INSCRIPTION ***********/


/*===========================================
        PAGE DE CONTACT
=============================================*/

#contact-page-main {
    padding-top: 100px;
    padding-bottom: 50px;
}

.contact-page-main {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 4rem;
}

.contact-page-main-right .title h1{
    color: var(--main-color);
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--font-family-freight);
}

.contact-page-main-right .paragraph{
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 4rem;
    align-items: baseline;
    margin-top: 40px;
}

.contact-page-main-right .paragraph .line{
    border-top: 1px solid var(--main-red);
}

.contact-page-main-right .paragraph p{
    color: var(--main-color);
    line-height: 2rem;
    padding-bottom: 20px;
}

.contact-page-main-right .paragraph p:last-child{
    padding-bottom: 0;
}

.contact-page-main-right .contactText{
    margin-top: 50px;
    border-top: 1px solid var(--main-red);
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--main-red);
}

.contact-page-main-right .contactText p{
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: 300;
    /* padding-bottom: 10px; */
    line-height: 2.2rem;
}

.contact-page-main-right .contactText p a{
    color: var(--main-color);
}



.contact-page-main .contact-page-main-left .contact-page-main-left-item form .row {
    margin-bottom: 1rem;
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form label{
    font-size: 1rem;
    color: var(--main-color);
    font-weight: 300;
    padding-bottom: 10px;
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form label span{
    color: red;
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-sujet{
    margin-bottom: 1rem;
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-prenom input,
.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-nom input,
.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-email input,
.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-telephone input,
.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-sujet input {
    height: 50px;
    background: var(--main-color-bg);
    border: transparent;
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form textarea {
    width: 100%;
    height: 200px;
    resize: vertical;
    border: transparent;
    background: var(--main-color-bg);
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form #js-message{
    margin-bottom: 1rem;
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form input[type='checkbox']{
    height: 20px;
    width: 20px;
    /* border: 4px solid #e2e2e2; */
}

.contact-page-main .contact-page-main-left .contact-page-main-left-item form button {
    width: 240px;
    height: 50px;
    background: var(--main-red);
    border: 1px solid transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
}


.googleMap {
    width: 100%;
    height: 400px;
    border-top: 2px solid #f7f7f7;
}

.googleMap iframe {
    width: 100%;
    height: 100%;
}


/************** END PAGE CONTACT ******************/



/*========= PROGRAMMES DES COURS =============
==============================================*/

#programmes-cours {
    padding-top: 50px;
    padding-bottom: 50px;
}

.programmes-cours .title {
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--bottom);
    display: flex;
    justify-content: space-between;
}

.programmes-cours .title .titre h1 {
    font-size: 2rem;
    color: var(--main-color);
}

.programmes-cours .title .lien {
    display: flex;
}

.programmes-cours .title .lien a {
    color: var(--white);
    display: block;
    width: 180px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.programme-block-left {
    padding-top: 30px;
    border-radius: 5px;
}

.programme-block-left .programmesExplain h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--main-color);
    padding-bottom: 20px;
}

.programme-block-left .programmesExplain p {
    color: var(--dark-7);
    font-size: 1.2rem;
    font-weight: 300;
}

.programme-block-left .programmesExplain p span {
    font-weight: 600 !important;
}

.programme-block-left .programmesExplain table {
    width: 80%;
    margin: 10px auto;
    border-collapse: collapse;
}

.programme-block-left .programmesExplain table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

.programme-block-left .programmesExplain table tbody tr th {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.programme-block-left .programmesExplain table tbody tr .petit {
    padding-left: 20px;
    font-weight: 300;
}

.programme-block-left .programme-horaire-item {
    height: auto;
    transition: all 0.4s ease;
}

.programme-block-left .title h1 {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 500;
}

.programme-block-left .programme-horaire-item .promotion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--main-color);
    height: 50px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
}

.programme-block-left .programme-horaire-item .promotion h1 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
}

.programme-block-left .programme-horaire-item .promotion .fa-angle-down-fa::before {
    content: '+';
    color: var(--white);
    font-size: 1.5rem;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.programme-block-left .programme-horaire-item.active .promotion .fa-angle-down-fa::before {
    content: '-';
    color: var(--white);
    font-size: 1.7rem;
    transition: 0.8s;
}

.programme-block-left .programme-horaire-item .text h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 1.3rem;
    font-weight: 400;
    padding-top: 15px;
}

.programme-block-left .programme-horaire-item .module h3 {
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 400;
    padding-top: 15px;
}

.programme-block-left .programme-horaire-item .contentBx {
    position: relative;
    display: block;
    transition: all 1s ease;
}

.programme-block-left .programme-horaire-item .contentBx .file {
    width: 130px;
    height: 170px;
    margin: 20px auto;
}

.programme-block-left .programme-horaire-item .contentBx .lien {
    display: flex;
    align-items: center;
    justify-content: center;
}

.programme-block-left .programme-horaire-item .contentBx .lien a {
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    font-weight: 400;
    color: var(--main-color);
    box-shadow: var(--box-shadow);
    margin: 0 10px;
    transition: all 0.4s ease;
}

.programme-block-left .programme-horaire-item .contentBx .lien a:hover {
    background: var(--main-color);
    color: var(--white);
}

.programme-block-left .programme-horaire-cours {
    /* display: flex; */
    margin-top: 20px;
    height: auto;
}

.programme-block-left .programme-horaire-cours table {
    width: 100%;
    border: 2px solid var(--main-color);
    border-collapse: collapse;
    text-align: center;
}

.programme-block-left .programme-horaire-cours table thead th {
    border-bottom: 2px solid var(--main-color);
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}

.programme-block-left .programme-horaire-cours table th {
    font-size: 14px;
    border-right: 1px solid #6d6d6d;
}

.programme-block-left .programme-horaire-cours table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

.programme-block-left .programme-horaire-cours table tbody th {
    font-weight: 300;
    padding-top: 5px;
    padding-bottom: 5px;
}

.programme-block-left .programme-horaire-cours table tfoot th {
    border-top: 2px solid var(--main-color);
    padding-top: 5px;
    padding-bottom: 5px;
}

.programme-block-left .programme-horaire-cours table tfoot th:nth-child(1) {
    border-right: none;
}

.programme-block-left .programme-horaire-cours table tfoot th:nth-child(2) {
    border-right: none;
}

.programme-block-left .programme-horaire-cours a {
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
    background: var(--main-color);
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    margin: auto;
    margin-top: 30px;
    box-shadow: var(--box-shadow);
}

.programme-block-left .programme-horaire-cours a:hover {
    background: var(--white);
    color: var(--main-color);

}

.programme-promotion {
    padding-top: 40px;
}

.programme-promotion .titre {
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--border-color);
    margin-bottom: 20px;
}

.programme-promotion .titre h1 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
}

.block-promotion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.block-promotion .item {
    border: 2px solid var(--border-color);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s linear;
}

.block-promotion .item:hover {
    background: var(--main-color);
}

.block-promotion .item a {
    display: block;
    text-align: center;
}

.block-promotion .item h1 {
    font-size: 4rem;
    text-align: center;
    color: var(--main-color);
}

.block-promotion .item:hover h1 {
    color: var(--white);
}

.block-promotion .item p {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: var(--dark-8);
}

.block-promotion .item:hover p {
    color: var(--white-8);
}

.block-promotion .item p span {
    color: var(--main-color);
    font-weight: 500;
}

.block-promotion .item:hover p span {
    color: var(--white-8);
}

.block-promotion .item i {
    font-size: 2rem;
    text-align: center;
    color: var(--main-color);
}

.block-promotion .item:hover i {
    color: var(--main-color-second);
}

/* ===== END PAGE PROGRAMMES DES COURS ======= */



/*===============================*/
/*========== RESPONSIVE =========*/
/*===============================*/

@media(max-width: 768px) {


    section {
        overflow: hidden !important;
    }

    .max-width{
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .max-80{
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .max-70{
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    /* Réorganisation des éléments */


    nav .navbar {
        height: 10vh;
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Masquer les éléments desktop */

    .rightOption #user-btn {
        display: none !important;
    }

    /* Logo centré */
    nav .navbar .logo {
        width: 190px;
        height: 27px;
        margin-top: 4px;
    }

    .navbar .logo {
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar .logo a {
        align-items: center;
    }

    .navbar .logo a h1 {
        font-size: 0.7rem;
        line-height: 1rem;
        text-align: center;
        width: 150px;
    }

    .navbar .logo img {
        height: 27px;
        width: 27px;
    }

    /* Icône menu burger gauche */
    .navbar .fa-bars {
        display: block !important;
        font-size: 1.5rem;
        color: var(--white-9);
        order: -1;
    }

    /* Conteneur recherche droite */
    .navbar .rightOption {
        order: 3;
        margin-left: auto;
    }

    /* Adaptation de la barre de recherche */
    .navbar .search-bar-container {
        width: 100%;
        right: -100%;
    }

    .navbar .search-bar-container.active {
        right: 0;
    }





    /* Sous-menus adaptation */
    .nav-links .links li .sub-menu {
        width: 100%;
        left: 0;
        top: 8vh;
    }

    .nav-links{
        left: -100%;
        visibility: hidden;
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 1s;
        width: 0;
    }

    /* Menu mobile */
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: -2vh;
        left: 0%;
        width: 100vw;
        height: 102vh !important;
        overflow-y: auto;
        overflow-x: hidden;
        background: var(--footer-background);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: 1s;
        visibility: visible;
        opacity: 1;
        z-index: calc(3.40282e+40) !important;
    }

    .nav-links .close{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 30px;
        right: 10px;
        height: 45px;
        width: 45px;
        background: var(--main-red);
        cursor: pointer;
    }


    .nav-links .close img{
        height: 30px;
        object-fit: contain;
    }

    nav .navbar .sidebar-logo {
        width: 250px;
        height: 50px;
        margin-top: 5px;
        margin-bottom: 10px;
        border: 2px solid white;
    }

    .navbar .sidebar-logo a {
        display: flex;
        align-items: center;
    }

    .navbar .sidebar-logo a h1 {
        font-size: 1rem;
        line-height: 1.4rem;
        text-align: center;
        width: 200px;
        color: white;
    }

    .navbar .sidebar-logo img {
        height: 35px;
        width: 35px;
    }

    nav .navbar .nav-links ul {
        padding-left: 0;
    }

    nav .navbar .nav-links .links {
        display: flex;
        flex-direction: column;
        margin-top: 60px !important;
    }


    nav .navbar .nav-links .links li {
        position: relative;
        display: block;
        margin: 0 !important;
        line-height: 0 !important;
    }

    nav .navbar .nav-links .links li a {
        color: white !important;
    }

    nav .navbar .nav-links .links li:hover a {
        color: white;
        background: transparent;
    }

    nav .navbar .nav-links .links .sub-menu {
        display: flex;
        flex-direction: column;
        position: relative;
        padding-left: 10px;
        top: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
    }

    nav .navbar .nav-links .links .sub-menu li {
        border-bottom: 1px dashed var(--white);
    }

    nav .navbar .nav-links .links .sub-menu::before {
        display: none;
    }

    nav .navbar .nav-links .links .sub-menu li a {
        color: white !important;
    }

    nav .navbar .nav-links .links .sub-menu li i {
        background-color: white;
    }

    nav .navbar .nav-links .links .sub-menu li a:hover {
        color: white !important;
        padding-left: 20px;
    }

    nav .navbar .nav-links .links li .js-arrow {
        display: none;
    }


    /* HOME SECTION */

    .home .caption{
        max-width: 100%;
    }

    .home .caption h1{
        font-size: 2rem;
    }

    .home .caption h2{
        font-size: 2rem;
    }

    .home .caption p{
        width: 80%;
        margin: 10px auto;
    }

    .home .content{
        width: 100%;
        padding: 10px;
    }

    .home .content .title h1{
        font-size: 2rem;
        text-align: center;
    }

    .home .content .title h2{
        font-size: 2rem;
        text-align: center;
    }

    .home .lien{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 20px;
    }

    .home .lien a{
        padding: 0;
        display: flex;
        width: 100%;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        margin: 0;
    }

    .home .lien .homeAppel i{
        display: none;
    }

    /* VALEURS FAC */

    #valeursfac{
        padding-bottom: 50px;
    }

    .valeursfac .title{
        padding-top: 50px;
    }

    .valeursfac .title .right{
        width: 75px;
    }

    .valeursfac .title .left h1{
        font-size: 2rem;
    }

    .valeursfac .block .left{
        grid-template-columns: 1fr;
    }

    /* WELCOME TO FAC */

    #welcomeToFac{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .welcomeToFac{
        grid-template-columns: 1fr;
    }

    .welcomeToFac-left .title h1{
        font-size: 2rem;
        line-height: 2.3rem;
    }

    .welcomeToFac-right {
        margin-left: 0;
    }

    .welcomeToFac-right .block-right{
        width: 100%;
    }

    /* NUMBER SPEAK */

    #numberSpeakSection{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #numberSpeakSection .number{
        grid-template-columns: repeat(2, 1fr);
    }

    #numberSpeakSection .number .item{
        border-right: none;
        border-bottom: 1px solid var(--white-2);
    }

    #numberSpeakSection .number .item:nth-child(1){
        border-right: 1px solid var(--white-2);
    }
    #numberSpeakSection .number .item:nth-child(3){
        border-bottom: none;
        border-right: 1px solid var(--white-2);
    }
    #numberSpeakSection .number .item:last-child {
        border-right: none;
        border-bottom: none;
    }

    #numberSpeakSection .number .item h1{
        font-size: 1rem;
    }
    #numberSpeakSection .number .item span{
        font-size: 3rem;
    }

    /* DEPARTEMENT */

    #departement{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .departement .title .right{
        width: 75px;
    }

    .departement .title .left h1{
        font-size: 2rem;
    }

    .departement .block .right{
        grid-template-columns: 1fr;
    }

    /* VALVE */

    #valve{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .valve .titleOne .right{
        width: 75px;
    }

    .valve .titleOne .left h1{
        font-size: 2rem;
    }

    /* ACTUALITE */

    #actualite-home{
        padding-bottom: 50px;
    }

    .actualite-home .title{
        flex-direction: column;
        text-align: center;
    }

    .actualite-home .title h1{
        font-size: 2rem;
        padding-bottom: 10px;
    }

    .actualite-home .block{
        gap: 1rem;
    }
    .actualite-home .block-global{
        grid-template-columns: 1fr;
    }

    .actualite-home .block .item .text{
        padding-bottom: 10px;
    }

    .actualite-home .block .item .text h1{
        font-size: 25px;
    }

    .actualite-home .block .itemlast{
        grid-template-columns: 1fr;
    }

    /* POLYTECHNIQUE SKILLLS */

    .skillspoly {
        grid-template-columns: 50px 1fr;
    }

    .skillspoly .block {
        display: flex;
        flex-direction: column;
        padding-right: 10px;
        gap: 2rem;
    }

    .skillspoly .block .item{
        width: 100%!important;
        display: flex;
        flex-direction: column;
    }

    .skillspoly .block .item .one .article{
        height: 250px;
    }

    .skillspoly .block .item .two{
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skillspoly .block .item:nth-child(2){
        flex-direction: column-reverse;
    }


    /* FABLAB SKILLS */

    .fabSkills .container-fluid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* NEWSLETTER */

    .newsletter .left{
        display: none;
    }

    .newsletter .right{
        background: var(--main-color-bg);
        padding: 10px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .newsletter .right p{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* CONTACT SECTION */

    .contactBarniere{
        overflow-y: hidden!important;
        padding: 10px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contactBarniere .block{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }

    .contactBarniere .block .left h1{
        font-size: 2rem;
        line-height: 2rem;
    }




    /* FOOTER */

    #footer-fac{
        padding: 10px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-fac .block{
        grid-template-columns: 1fr;
    }

    .footer-fac .logo img{
        filter: none;
    }

    .footer-fac .block .right .item{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-fac .block .right .item .sous-item h1,
    .footer-fac .block .right .item .sous-item .link a{
        font-size: 16px;
    }

    .footer-fac .block .right .copyright{
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: left;
    }

    .footer-fac .block .right .copyright p{
        font-size: 16px;
    }

    .footer-fac .block .right .copyright .left{
        padding-top: 10px;
    }

    .footer-fac .block .right .copyright .right{
        flex-direction: column;
        text-align: left;
        justify-content: left;
        padding: 0;
    }

    .footer-fac .block .right .copyright .right li a{
        padding: 0;
        margin: 0;
    }

    /* ====== LES PAGES ======= */

    /* BARNIERE */
    #barniere,
    .barniere{
        height: 350px;
    }

    .barniere .block .carre{
        height: 1.5rem;
        width: 1.5rem;
        margin-right: 10px;
    }

    .barniere .block .left h1{
        font-size: 2rem;
    }

    /* ==== PAGE PROGRAMMES DES COURS===== */

    .programmes-cours .title .lien{
        align-items: center;
    }

    .programmes-cours .title .lien a{
        width: 160px;
        font-size: 0.9rem;
    }

    .programme-block-left .programmesExplain table{
        width: 100%;
    }

    .programme-promotion .titre h1{
        font-size: 1.5rem;
    }

    .block-promotion{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .block-promotion .item{
        padding: 20px;
    }

    .block-promotion .item h1{
        font-size: 3rem;
    }

    .block-promotion .item p{
        font-size: 1rem;
        padding-top: 10px;
    }

    /* ===== PAGE INSCRIPTION ===== */

    .admissionPage .title h1{
        font-size: 33px;
    }

    .admissionPage .block{
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .admissionPage .blockItems{
        grid-template-columns: 1fr;
    }

    /* ==== PAGE APROPOS ======= */

    #nosdoyens{
        padding-bottom: 50px;
    }

    .aproposSection .block{
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nosdoyens .block{
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* ===== DECANT ====== */

    .decanat .decanat-doyen .block{
        grid-template-columns: 1fr;
    }

    /* ==== NOS PROFESSEURS === */

    .personals .container {
        width: 100%;
    }

    .tab_box{
        display: none;
    }

    .content_box{
        padding: 0;
    }
    .content_box .content.active{
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content_box .card{
        height: auto;
    }

    .content_box .content:nth-child(2),
    .content_box .content:nth-child(3),
    .content_box .content:nth-child(4),
    .content_box .content:nth-child(5){
        display: none;
    }

    /* PAGE CONTACT */

    #contact-page-main{
        padding-top: 50px;
    }

    .contact-page-main{
        display: flex;
        flex-direction: column;
    }

    .contact-page-main-right .title h1{
        font-size: 2.5rem;
    }

    .contact-page-main .contact-page-main-left .contact-page-main-left-item form button{
        width: 100%;
    }
}
