@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,800;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,800;1,700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: all .3s ease;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --color-main: rgb(72, 102, 185);
    --color-mainlight: rgb(138, 155, 228);
    --color-mainstrong: rgb(43, 53, 92);
    --color-white: rgb(255, 255, 255);
    --color-yellow: orange;
    --color-black: rgb(0, 0, 0);
    --color-black-transparent: rgba(0, 0, 0, 0.603);
    --color-transparent: transparent;
    --color-whitesmock: whitesmoke;
    --color-red: red;
    --color-shadow: rgba(0, 0, 0, 0.151);
}

button {
    cursor: pointer;
}

input,
select {
    height: 40px;
    width: 100%;
    border-radius: 5px;
    padding: 0px 10px;
    margin: 5px 0px;
    border: 1px solid var(--color-mainlight);
}

input[type="checkbox"],
input[type="radio"] {
    height: 17px;
    width: 17px;
    border-radius: 5px;
    margin: 5px 0px;
    border: 1px solid var(--color-move);
    margin-right: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

textarea {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    margin: 5px 0px;
    border: 1px solid var(--color-mainlight);
}

label {
    color: rgb(62, 63, 63);
}

.dflex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.flex {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.spacebetween {
    justify-content: space-between;
}

.left,
.right {
    width: 50%;
}

.btn {
    height: 40px;
    width: 100%;
    border-radius: 5px;
    padding: 0px 10px;
    margin: 5px 0px;
    margin-top: 10px;
    border: none;
    font-size: 18px;
    background: var(--color-main);
    color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.body {
    min-height: 80vh;
}

a {
    text-decoration: none;
    color: inherit;
}

.ref {
    text-decoration: underline;
    color: blue;
}

main {
    min-height: 70vh;
    width: 100%;
    max-width: 100%;
}

.container {
    padding: 50px 13%;
    padding-bottom: 10px;
    width: 100%;
}

/* ========================= */
.top_banniere {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: auto;
    display: block;
}

.top_banniere .banniere {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
    background: none;
    animation: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes change {
    0% {
        background-image: url("../img/bg-annimate/b.jpg");
    }

    20% {
        background-image: url("../img/bg-annimate/c.jpg");
    }

    40% {
        background-image: url("../img/bg-annimate/e.JPG");
    }

    60% {
        background-image: url("../img/bg-annimate/d.jpg");
    }

    80% {
        background-image: url("../img/bg-annimate/f.jpg");
    }

    100% {
        background-image: url("../img/bg-annimate/b.jpg");
    }
}

.top_banniere .banniere .content {
    width: 100%;
    flex: 1;
    min-height: 0;
    height: auto;
    background-image: linear-gradient(
        135deg,
        rgba(51, 94, 158, 0.9) 0%,
        rgba(72, 102, 185, 0.88) 50%,
        rgba(123, 123, 206, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 5%;
    padding-bottom: 30px;
}

.top_banniere .banniere .liens {
    width: 100%;
    flex-shrink: 0;
    height: max-content;
    margin-top: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 20px 20px 0 0;
}

.top_banniere .banniere .content .acronyme {
    font-size: 50px;
    color: white;
    font-weight: 800;
    line-height: 55px;
    text-align: center;
}

.top_banniere .banniere .content .acronyme span {
    font-size: 30px;
}

.top_banniere .banniere .sigle {
    font-size: 50px;
    color: white;
    font-weight: normal;
    text-align: center;
}

.top_banniere .banniere .content p {
    font-size: 25px;
    text-align: center;
    color: var(--color-yellow);
}

.top_banniere .banniere .content .bouton {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}
.top_banniere .banniere .content .bouton button {
    padding: 13px 20px;
    border: none;
    background-color: var(--color-white);
    color: var(--color-move);
    font-weight: normal;
    font-size: 20px;
    margin: 10px 5px;
    border-radius: 50px;
    font-weight: 700;
}

.top_banniere .banniere .content .bouton #contact {
    background-color: var(--color-yellow);
    color: white;
    background-image: linear-gradient(to right, rgb(255, 166, 0), 70%, rgb(241, 224, 68));
}

.top_banniere .banniere .content .bouton #Add {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.top_banniere .banniere .content .bouton #contact:hover {
    background-image: linear-gradient(to right, rgb(255, 187, 0), rgb(243, 243, 131));
    color: var(--color-white);
    font-weight: 700;
}

.top_banniere .banniere .content .bouton #Add:hover {
    background-color: var(--color-mainlight);
    font-weight: 700;
}

.banniere .liens-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: max-content;
    padding: 20px;
    padding-bottom: 5px;
    list-style: none;
}

.banniere .liens-inner > a {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.banniere .liens-inner hr {
    width: 0;
    height: 36px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0;
    flex-shrink: 0;
}

.banniere .liens-inner .bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-mainstrong);
    color: rgb(25, 25, 68);
}

.banniere .liens-inner .bloc i {
    font-size: 25px;
    margin-top: -5px;
    margin-right: 0;
    margin-bottom: 2px;
    color: rgb(139, 139, 139);
}

.top_banniere .right {
    display: none;
    width: 30%;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 0px;
    padding-left: 5px;
    background-color: white;
    z-index: 50px;
}

.top_banniere .right .titre {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    padding: 5px 10px;
    margin-top: 10px;
    text-align: center;
    background-color: rgb(197, 209, 228);
    color: var(--color-main);
}

.top_banniere .right .annonces {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.top_banniere .right .annonces .element{
    padding-right: 20px;
    background-color: whitesmoke;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.top_banniere .right .annonces .element .ttr {
    background-color: var(--color-mainlight);
    padding: 2px 10px;
    width: max-content;
    font-weight: normal;
    color: white;
    font-size: 12px;
    border-radius: 0px 20px 20px 0px;
    margin-bottom: 5px;
}

.top_banniere .right .annonces .element p {
    font-size: 14px;
    padding-left: 10px;
    line-height: 16px;
}

.top_banniere .right .annonces .element h5 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black-transparent);
    margin-top: 3px;
    text-align: right;
}

.top_banniere .right .plus {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-main);
}

/* -- */
.top_banniere .news {
    margin-top: 10px;
}

.top_banniere .news .news-elements {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.top_banniere .news-elements .element {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}

.top_banniere .news-elements .element .image {
    width: 25%;
    height: 80px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.top_banniere .news-elements .element .text {
    width: 75%;
    padding-left: 10px;
}

.top_banniere .news-elements .element .text .t {
    font-size: 15px;
    color: var(--color-main);
}

.top_banniere .news-elements .element .text p {
    font-size: 14px;
}

.top_banniere .news-elements .plus {
    margin-top: -5px;
}

/* ============== */
.home-news {
    width: 100%;
    margin-bottom: 30px;
}

/* -------- */
.home-news .news-wrapper{
    width: 100%;
    display: flex;
    gap: 10px;
}

.news-wrapper .element{
    width: calc(33%);
    height: max-content;
    position: relative;
}
.news-wrapper .element img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: inherit;
}
.news-wrapper .element:nth-child(2){
    margin-top: 30px;
}
.news-wrapper .element .texte{
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
    background-color: rgba(25, 45, 83, 0.719);
}
.news-wrapper .element .texte h2{
    font-size: 18px;
    line-height: 20px;
    color: white;
}
.home-news .btn_plus{
    margin-top: -15px;
}

/* ============================ */

.title {
    font-size: 30px;
    font-weight: 800;
    margin: 10px 0px;
    margin-bottom: 40px;
    color: var(--color-mainstrong);
}

.title::after {
    content: "";
    width: 150px;
    height: 5px;
    background-color: var(--color-yellow);
    position: absolute;
    display: flex;
    z-index: 300;
    margin-top: 10px;
    border-radius: 20px;
}

.sub-title {
    font-size: 16px;
    font-weight: normal;
    color: var(--color-black-transparent);
    margin-bottom: -10px;
}

.title2 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0px;
    margin-bottom: 20px;
    color: var(--color-mainstrong);
}

.apropos {
    width: 100%;
    display: flex;
    margin-top: 1rem;
}
.apropos .title{
    font-size: 40px;
}
.apropos .left,
.apropos .right {
    width: 50%;
}
.apropos .left p {
    font-size: 18px;
}

.apropos .right {
    padding-left: 30px;
}

.apropos .right .campus {
    font-size: 20px;
    color: var(--color-mainstrong);
    margin-bottom: 20px;
}

.apropos .right .images {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin: auto;
    border-radius: 50px 0 0 0;
}

.apropos .right .images .slide-elmt {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    transition: 1s;
    border-radius: 5px;
}

.apropos .right .nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 40%;
    left: 5px;
}

.apropos .right .nav button {
    border: none;
    font-size: 25px;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(230, 146, 146, 0.534);
}

.apropos .right .nav button:hover {
    background-color: rgba(146, 182, 230, 0.63);
}

/* ------ */
.plus-btn {
    font-size: 16px;
    font-weight: normal;
    color: var(--color-white);
    background-color: var(--color-mainstrong);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 30px;
    border: 0px;
}

.btn-plus {
    border: 1px solid gray;
    border-radius: 50px;
    font-size: 16px;
    color: white;
    width: max-content;
    padding: 10px 20px;
    margin-top: 20px;
    background-image: linear-gradient(to right, var(--color-mainstrong), 50%, var(--color-main));
}

/*  */
.filieres {
    width: 100%;
    padding: 30px 0px;
}

.filieres .container {
    padding-top: 0px;
}

.ttl {
    font-size: 23px;
    font-weight: 800;
    margin: 0px;
    color: var(--color-black);
    width: max-content;
    padding: 5px 20px;
    margin-bottom: 5px;
    color: var(--color-main);
}
.ttl i{
    color: var(--color-yellow);
    color: var(--color-black-transparent);
}
.ttl span{
    font-weight: normal;
    font-size: 20px;
    color: var(--color-main);
    color: var(--color-black-transparent);
}
.filieres hr{
    border: 1px dashed rgb(192, 191, 191);
}
.filieres .licence {
    margin-bottom: 10px;
}

/* ------------ */
.contents-filr .box {
    height: 280px;
    padding: 5px;
    position: relative;
}
.contents-filr .box .cut{
    width: 40px;
    height: 70px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -20px;
    z-index: 600;
    transform: rotate(80deg);
}
.contents-filr .box .cutL{
    width: 40px;
    height: 70px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -20px;
    z-index: 600;
    transform: rotate(70deg);
}

.contents-filr .box .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-image: url("../img/IMG_20210817_143815_415.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.contents-filr .box .content .txt{
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0px;
    left: 0;
    top: 0;
    padding: 20px;
    border-radius: inherit;
    background-image: linear-gradient(transparent,40%,rgb(14, 69, 95));
}

.contents-filr .box .content .icon {
    border-radius: 100%;
    color: white;
    background-color: var(--color-yellow);
    font-size: 30px;
    margin-bottom: 10px;
    align-self: center;
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
}
.contents-filr .box .content .icon span{
    margin: auto;
}

.contents-filr .box .content .name {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--color-main);
    text-align: center;
    color: white;
}

.contents-filr .box .content:hover {
    cursor: pointer;
    transition: none;
    transition: 0.3s;
}

.contents-filr .box .content .icon:hover {
    background-color: orange;
    color: white;
    border: 1px solid white;
}

.contents-filr .box .content:hover .icon {
    background-color: white;
    color: orange;
    border: 1px solid orange;
}

/*  */
.contents-filieres {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    z-index: 0;
}

.contents-filieres .box {
    width: calc(100%/3);
    height: max-content;
    padding: 10px;
}

.contents-filieres .box .content {
    padding: 20px;
    border: 1px solid rgb(170, 170, 170);
    border-radius: 5px;
}

.contents-filieres .box .content .icon {
    border: 1px solid var(--color-main);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    width: max-content;
    color: orange;
    font-size: 30px;
    margin-bottom: 10px;
}

.contents-filieres .box .content .name {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--color-main);
}

.contents-filieres .box .content:hover .icon {
    background-color: orange;
    color: white;
    border: 1px solid white;
}

/* ------------ */
.vacation{
    width: 100%;
    height: 35rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    padding: 3rem;
    margin-top: 2rem;
    border-top: 7px dashed rgb(255, 255, 255);
    border-bottom: 7px dashed rgb(255, 255, 255);
}
.vacation-inner {
    width: 40%;
    height: max-content;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.904);
    padding: 30px;
    border-top: 4px solid rgb(255, 208, 0);
    border-bottom: 4px solid rgb(255, 208, 0);
}

.vacation-inner .Titre{
    font-size: 35px;
    font-weight: 100;
    margin-bottom: 20px;
    color: rgb(19, 32, 75);
}

.vacation-inner .item{
    display: flex;
    gap: 20px;
}

.vacation-inner .item .icon{
    font-size: 40px;
    color: var(--color-main);
}
.vacation-inner .item hr{
    margin: 0 10px;
}
.vacation-inner .item .titre{
    font-size: 30px;
    color: var(--color-main);
    margin-bottom:0;
}
.vacation-inner .item .titre span{
    font-size: 30px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 0;
}
.vacation-inner .item p{
    font-size: 25px;
    font-weight: 800;
    color: var(--color-yellow);
}

/*  */
.counter {
    width: 100%;
    height: auto;
    background-image: url("../img/IMG_6481.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

 .counter-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 90, 0.918);
    /* padding: 80px 0px; */
}

.counter .container {
    padding-top: 0px;
}
.counter-inner{
    width: 100%;
    display: flex;
}
.counter-inner .image{
    width: 30%;
}
.counter-inner .image img{
    width: 100%;
    object-fit: cover;
    margin-top: -60px;
    margin-bottom: -10px;
}
.counter-inner .items{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 3rem;
}
.counter .item {
    width: calc(100%/2);
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
}

.counter .item span {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-yellow);
    text-align: center;
    height: max-content;
    margin: auto 0;
}

.counter .item h2 {
    font-size: 40px;
    color: white;
    text-align: center;
    margin-top: 10px;
    margin-right: 10px;
}
.counter .item div{
    width: 100%;
    height: max-content;
}
.counter .item h4 {
    font-size: 20px;
    font-weight: normal;
    color: white;
}

/* ------- */
.corps-academique{
    padding-bottom: 4rem;
}
.corps-academique .container{
    padding-bottom: 5rem;
}
.corps-academique-inner{
    width: 100%;
}
.corps-academique-inner .bloc{
    width: 100%;
    height: auto;
    padding: 10px;
    border: 1px solid rgb(223, 221, 221);
}
.corps-academique-inner .bloc .image{
    width: 100%;
    height: 270px;
    position: relative;
}
.corps-academique-inner .bloc .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}
.corps-academique-inner .bloc .image .logo{
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 10px;
    background-color: white;
    padding: 2px;
    padding-top: 3px;
    padding-bottom: 0;
    border-radius: 5px 5px 0 0;
}
.corps-academique-inner .bloc .descript{
    padding: 10px 0px;
}
.corps-academique-inner .bloc .descript h2 i{
    font-size: 16px;
    color: gray;
}
.corps-academique-inner .bloc .descript .niveau{
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}
.corps-academique-inner .bloc .descript .nom{
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}
.corps-academique-inner .bloc .descript .fx{
    font-size: 16px;
    font-weight: 700;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
}
.corps-academique-inner .bloc .descript .mail{
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    text-transform: lowercase;
    color: rgb(114, 158, 199) !important;
}
/*  */
.academique-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.academique-inner .bloc{
    width: calc(100%/3 - 5px);
    height: auto;
    padding: 10px;
    border: 1px solid rgb(223, 221, 221);
}
.academique-inner .bloc .image{
    width: 100%;
    height: 270px;
    position: relative;
}
.academique-inner .bloc .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}
.academique-inner .bloc .image .logo{
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 10px;
    background-color: white;
    padding: 2px;
    padding-top: 3px;
    padding-bottom: 0;
    border-radius: 5px 5px 0 0;
}
.academique-inner .bloc .descript{
    padding: 10px 0px;
}
.academique-inner .bloc .descript h2 i{
    font-size: 16px;
    color: gray;
}
.academique-inner .bloc .descript .niveau{
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}
.academique-inner .bloc .descript .nom{
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}
.academique-inner .bloc .descript .fx{
    font-size: 16px;
    font-weight: 700;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
}
.academique-inner .bloc .descript .mail{
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    text-transform: lowercase;
    color: rgb(114, 158, 199) !important;
}
/*  */
.events{
    margin-top: -2rem;
}
.events .pubs {
    width: 100%;
    height: max-content;
    padding: 0;
}

.events .pubs .pub {
    width: 100%;
    height: max-content;
    margin: 5px;
}

.events .pubs .pub:hover .descript{
    background-color: rgb(255, 255, 255);
    cursor: pointer;
}

.events .pubs .pub .image {
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}

.events .pubs .pub .image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.events .pubs .pub .descript{
    width: 100%;
    height: max-content;
    padding: 10px;
    background-color: rgb(219, 226, 231);
}
.events .pubs .pub .descript .titre {
    font-size: 17px;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}
.events .pubs .pub .descript .txt{
    color: rgb(65, 65, 65);
    font-size: 16px;
    line-height: 18px;
    text-align: center;
}

.line {
    border: 1px dashed rgb(199, 199, 199);
    margin: 7px 10px;
}

.events .pubs .pub .descript .date {
    font-size: 12px;
    color: var(--color-black-transparent);
    margin-top: 5px;
    font-weight: normal;
    text-align: center;
}

.more-btn {
    width: 100%;
    display: flex;
    justify-content: right;
    margin: 20px 0px;
}

.more-btn a {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main);
}
/*  */
.swiper {
    width: 100%;
    height: max-content;
}
.swiper-wrapper{
    position: relative;
    width: 100%;
    height: 10%;
    z-index: 1;
}
.swiper-slide{
    background-color: #0000;
    display: flex;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainSwiper{
    height: 450px;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
}
.secondSwiper{
    width: 100%;
    height: 100px;
    padding: 10px 0;
    border-radius: 10px;
    margin-top: 1rem;
}
.secondSwiper .swiper-slide{
    width: 25%;
    height: 100%;
    opacity: 0.4;
}
.secondSwiper .swiper-slide-thumb-active{
    opacity: 1;
}

/* --------------------- */
.small-main-banner {
    width: 100% !important;
    background-color: var(--color-mainlight);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.small-main-banner .content {
    width: 100%;
    height: max-content;
    background-color: var(--color-mainlight);
    background-color: rgba(138, 154, 228, 0.877);
}

.small-main-banner .container {
    padding-bottom: 50px;
}

.small-main-banner .title-banner {
    font-size: 35px;
    font-weight: 800;
    margin: 10px 0px;
    margin-bottom: 40px;
    margin-top: 30px;
    color: var(--color-white);
}

.small-main-banner .title-banner::before {
    content: "";
    width: 150px;
    height: 5px;
    background-color: var(--color-white);
    position: absolute;
    display: flex;
    margin-top: -10px;
    border-radius: 20px;
}

/* --------------- */
.second-banner {
    width: 100%;
    display: flex;
    margin: 40px 0px;
    border: 1px solid rgb(194, 193, 193);
    border-radius: 10px;
}

.second-banner .text_iner {
    width: 60% !important;
    height: max-content;
    padding: 20px;
}

.second-banner .text_iner>h2 {
    font-size: 35px;
    color: var(--color-main);
    margin: 10px 0px;
}

.second-banner .text_iner>p {
    font-size: 17px;
}

.second-banner .img {
    width: 40% !important;
    padding: 10px 20px;
}

.second-banner .img img {
    width: 100%;
}


/*  */
.gallary {
    width: 100%;
    margin: 50px 0px;
}

/* ------To top btn */
.totop_btn {
    position: fixed;
    right: 20px;
    bottom: 2%;
    padding: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    background-color: rgba(53, 83, 148, 0.705);

}

.totop_btn span {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-mainstrong);
    color: white;
    margin: auto;
}

.totop_btn:hover {
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-color: var(--color-main);
}

.totop_btn:hover span {
    color: rgb(255, 255, 255);
}

/* -------- */

/* -----about page-------- */

.abt-bg {
    width: 100%;
    background-image: url('../img/banner_bg.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.about {
    margin-bottom: 50px;
}

.about h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-mainlight);
    margin: 20px 0px;
}

.about ul {
    padding-left: 20px;
    margin: 10px 0px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.about .profile-etudiant ul {
    list-style: circle;
}

.about .profile-etudiant ul li ul {
    list-style-type: decimal-leading-zero;
}

.about .filr h4 {
    font-size: 18px;
    color: var(--color-mainlight);
    margin: 10px 0;
}

.about .filr ul {
    list-style: decimal;
}

.about .filr ul {
    color: var(--color-mainstrong);
    font-weight: 600;
}

.about .filr ul li i {
    color: var(--color-yellow);
    font-size: 20px;
}

.about .mivi ul {
    list-style-type: decimal-leading-zero;
    margin-left: 10px;
    color: var(--color-mainstrong);
}

.about .campus-images {
    margin: 30px 0;
}

.about .campus-images h2 {
    font-size: 20px;
}

.about .campus-images .images {
    display: flex;
    flex-wrap: wrap;
}

.about .campus-images .images .main {
    width: 47%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-right: 20px;
}

.about .campus-images .images .others {
    width: 50%;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 5px; */
}

.about .campus-images .images .others div {
    width: calc(100%/3);
    height: calc(100%/3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    border: 3px solid white;
}



/* ----contact----- */
.contact-page {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    display: flex;
    margin: 30px 0px;
    margin-bottom: 5rem;
}

.contact-coordonnees {
    width: 40%;
    padding: 20px;
    background-color: var(--color-mainstrong);
    border-radius: 10px;
    background-image: url("../img/animate_icon/icon_7.png");
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
}

.contact-coordonnees ul hr {
    border: 1px dashed gray;
}

.contact-coordonnees #intro {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.contact-coordonnees ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.contact-coordonnees li {
    font-size: 16px;
    color: white;
}

.contact-coordonnees .rso {
    width: 100%;
    margin: 10px 0px;
    margin-top: 20px;
}

.contact-coordonnees .rso ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: right;
    gap: 20px;
}

.contact-coordonnees .rso ul li:hover {
    /* padding: 8px; */
    color: orange;
    border-top: 3px solid white;
}

.contact-page .titre {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: normal;
    color: var(--color-main);
    font-weight: 700;
}

.contact-coordonnees li i {
    display: inline-flex;
    padding-top: 5px;
    color: orange;
    font-size: 18px;
    margin-right: 10px;
}

.contact-coordonnees .titre {
    color: white;
}

.contact-write {
    width: 60%;
    background-color: inherit;
    padding: 20px;
}

.contact-write input {
    margin-bottom: 20px;
    height: 45px;
    font-size: 15px;
}

.contact-write textarea {
    font-size: 15px;
}

.contact-write label {
    color: gray;
}

.contact-write button {
    margin-top: 20px;
    border: none;
    background-color: var(--color-main);
    padding: 15px 40px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.contact-map {
    width: 100%;
    height: max-content;
    border-radius: 10px;
    margin: 40px 0px
}

.contact-map iframe {
    width: 100%;
    border-radius: inherit;
}

/* -------login students----- */
.students-login {
    width: 100%;
    height: 100vh;
    display: flex;
}

.students-login>.formular {
    width: 50%;
    height: 80vh;
    padding: 40px;
    background-image: url('../img/banner_bg.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.students-login .right {
    width: 50%;
    height: 100%;
    padding: 40px;
    /* background-color: rgba(35, 40, 68, 0.911); */
    background-color: rgba(33, 32, 66, 0.856);
    display: flex;
}

.students-login .right svg {
    width: 80%;
    margin: 0px auto;
}

.students-login>.formular>h2 {
    font-size: 25px;
    font-weight: normal;
    margin-top: 40px;
}

.students-login>.formular>.frm {
    margin-top: 20px;
    /* padding: 20px; */
    border-radius: 10px;
    width: 80%;
}

.students-login>.formular>.frm button {
    width: max-content;
    font-size: 16px;
    padding: 10px 40px;
    border: none;
    background-color: var(--color-mainstrong);
    color: white;
    border-radius: 5px;
    margin-top: 20px;
}

.students-login>.right {
    display: flex;
    flex-direction: column;
}

.students-login>.right img {
    width: 100%;
    margin: auto 0px;
}

/* ----------Envents page--------- */
.events-page {
    width: 100%;
    gap: 10px;
}

.events-page .event {
    width: 100%;
    padding: 5px;
    display: flex;
    margin-bottom: 20px;
}

.events-page .event:hover {
    /* border: 1px solid var(--color-main); */
    border-radius: 5px;
    background-color: whitesmoke;
    cursor: pointer;
}

.events-page .event .image {
    width: 40%;
    height: 180px;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.events-page .event .descript {
    width: 60%;
    height: auto;
    padding-left: 20px;
}

.events-page .event .descript .titre {
    font-size: 18px;
    color: var(--color-main);
    margin-bottom: 6px;
}

.events-page .event .descript .txt{
    color: rgb(59, 59, 59);
}

.events-page .event .descript .date {
    font-size: 12px;
    color: var(--color-black-transparent);
    margin-top: 10px;
    font-weight: normal;
}

/* -------event-page------ */
.event-page {
    padding-bottom: 40px;
}

.event-page .content {
    width: 100%;
}

.event-page .content .image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
}

.event-page .content .descript {
    display: flex;
    flex-direction: column;
}

.event-page .content .descript .titre {
    font-size: 23px;
    color: var(--color-main);
    margin-bottom: 10px;
}

.event-page .content .descript .txt {
    font-size: 16px;
    margin-bottom: 10px;
}

.event-page .content .descript .date {
    font-size: 16px;
    color: var(--color-black-transparent);
    margin-top: 5px;
    font-weight: normal;
}

.event-page #return {
    font-size: 20px;
    color: var(--color-main);
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid var(--color-main);
}

.event-page #return:hover {
    background-color: var(--color-mainlight);
    color: white;
    cursor: pointer;
}

/* ------nvigation-btns----- */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px auto;
    margin-top: 40px;
    width: max-content;
    /* background-color: var(--color-mainstrong); */
}

.pagination i {
    font-size: 20px;
    font-weight: 800;
    padding: 5px 15px;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    background-color: var(--color-mainlight);
}

.pagination i:hover {
    cursor: pointer;
    background-color: var(--color-main);
    color: white;
}

.pagination ul {
    display: inherit;
    list-style: none;
    margin: 0 5px;
}

.pagination ul li {
    font-size: 16px;
    font-weight: 700;
    padding: 5px 12px;
    margin: auto 3px;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}

.pagination ul li:hover {
    cursor: pointer;
    color: var(--color-white);
    background-color: var(--color-mainlight);
}

.pagination ul .active {
    color: white;
    background-color: var(--color-main);
}

/* ------------------------ */
.enseignants-page {
    width: 100%;
    margin-bottom: 40px;
}

.enseignants-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* gap: 40px; */
    margin-top: 2rem;
}

.enseignants-inner .element {
    width: calc(100% / 3);
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.enseignants-inner .element .image {
    height: 220px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.enseignants-inner .element .descript {
    height: 120px;
    display: flex;
    flex-direction: column;
}

.enseignants-inner .element .descript .nom {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-main);
    line-height: 21px;
}

.enseignants-inner .element .descript .nom span {
    font-size: 18px;
    color: orange;
}

.enseignants-inner .element .descript .cours {
    font-size: 18px;
    font-weight: normal;
    color: (var(--color-main));
    margin-bottom: 5px;
    margin-top: 10px;
}

/* -------------- */
/* .wrapper{
    max-width: 1100px;
    width: 100%;
    position: relative;
}
.wrapper i{
    height: 40px;
    width: 40px;
    background-color: #ffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
}
.wrapper i:first-child{
     left: -22px;
}
.wrapper i:last-child{
    right: -22px;
}
.carousel :where(.card .img){
    display: flex;
}
.wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 5px;
    overflow-x: auto;
    scroll-snap-type:  x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}
.carousel::-webkit-scrollbar{
    display: flex;    
}
.carousel.no-transition{
    scroll-behavior: auto;
}
.carousel .dragging{
    scroll-behavior: auto;
    scroll-behavior: auto;
}
.carousel .dragging .carousel-card{
    cursor: pointer;
    user-select: none;
}
.carousel .carousel-card{
    scroll-snap-align: start;
    width: 350px;
    border-radius: 1rem;
    display: flex;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media screen and (max-width: 900px) {
    .wrapper .carousel{
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width:600px) {
    .wrapper .carousel{
        grid-auto-columns: 100%;
    }
} */
/* ---------multi-slider----------- */

.slider-wrap {
    width: 100%;
    height: max-content;
    position: relative;
}

.slider-main {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 15px);
    gap: 5px;
    overflow: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-grid-row-align: start;
}

.slider-main>.item {
    width: 380px;
    cursor: pointer;
    user-select: none;
    scroll-snap-align: flex-start;
    -ms-grid-row-align: flex-start;
    transition: transform 0.5s;
}

.slider-main>.item img {
    width: 100%;
}

.slider-wrap button {
    border: none;
}

.slider-wrap .slider-btn {
    height: 40px;
    width: 40px;
    background-color: #ffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.slider-wrap .slider-btn:first-child {
    left: -22px;
}

.slider-wrap .slider-btn:last-child {
    right: -22px;
}

/* ------end multi-slider------ */

/*  */
.home-gallerie {
    width: 100%;
    height: max-content;
    margin: 50px 0px;
    margin-bottom: 5rem;
}

.home-gallerie .gallerie-inner {
    width: 100%;
    display: flex;
    gap: 1rem;
    padding-top: 20px;
    flex-wrap: nowrap;
}

.home-gallerie .gallerie-inner .photo {
    width: calc(100%/8);
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 3px solid rgba(214, 154, 64, 0.603);
    border: 3px solid white;
    margin-bottom: 10px;
    margin-right: -5px;
    /* filter: grayscale(90%); */
    transition: filter .5s;
}

.home-gallerie .gallerie-inner .photo:hover {
    cursor: pointer;
    filter: grayscale(0)
}

.home-gallerie .gallerie-inner .photo:first-child {
    margin-top: -20px;
}

.home-gallerie .gallerie-inner .photo:last-child {
    margin-top: -20px;
}

/* .home-gallerie .gallerie-inner .up{
    margin-top: -20px;
}
.home-gallerie .gallerie-inner .up:hover{
    margin-top: 0px;
    transition: .4s;
    cursor: pointer;
} */
.home-gallerie .gallerie-inner .dwn:hover {
    margin-top: -20px;
    transition: .4s;
    cursor: pointer;
}

.home-gallerie button {
    border: 1px solid gray;
    padding: 10px 20px;
    background-color: transparent;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
}

.home-gallerie button:hover {
    background-origin: initial;
    transform: translateX(10px);
    transition: .4s;
    /* background-color: rgba(255, 166, 0, 0.459); */
    border: 1px solid rgba(255, 166, 0, 0.459);
}

/*  */
.banner_bottom {
    width: 100%;
    height: max-content;
    background-image: url(../img/387862523.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner_bottom .container {
    padding-top: 0px;
}

.banner_bottom_content {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.89);
    padding: 50px 0px;
    color: white;
}

.banner_bottom_content h2 {
    font-size: 25px;
    color: orange;
}

.banner_bottom_content h2::before {
    content: "";
    width: 50px;
    height: 5px;
    border-radius: 50px;
    background-color: white;
    position: absolute;
    display: flex;
    margin-top: -10px;
}

.banner_bottom_content .missions {
    padding: 10px;
    background-image: url("../img/icons/rocket_120pxw.png");
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
}

.banner_bottom_content .visions {
    padding: 10px;
    background-image: url("../img/icons/pirate_120px.png");
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
}

.banner_bottom_content ol {
    margin-top: 10px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner_bottom_content ol li {
    font-size: 17px;
    font-weight: 500;
}

.banner_bottom_content hr {
    border-color: rgb(116, 115, 115);
}

.Dcol {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.Dcol article {
    width: 70%;
    padding-right: 20px;
}

.Dcol aside {
    width: 30%;
    height: max-content;
    padding-left: 20px;
    padding-bottom: 20px;
    border-left: 1px solid gray;
}

/* ---------- */
.diplomes-page {
    width: 100%;
}

.diplomes-page .operations {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
}

.diplomes-page .search {
    display: flex;
    min-width: 50%;
    position: relative;
}

.diplomes-page .search i {
    position: absolute;
    font-size: 18px;
    color: rgb(173, 173, 173);
    margin-left: 8px;
    margin-top: 15px;
}

.diplomes-page .search input {
    padding-left: 30px;
    font-size: 14px;
    border-radius: 5px 0px 0px 5px;
}

.diplomes-page .search button {
    border: none;
    background-color: var(--color-mainstrong);
    color: white;
    font-size: 18px;
    padding: 0 15px;
    height: 40px;
    margin: auto 0;
    border-radius: 0 5px 5px 0;
}

.etudiant-result{
    width: 400px;
    height: max-content;
    padding: 20px;
    border: 1px solid gray;
    border-radius: 10px;
    margin: 20px 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}
.etudiant-result #h{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.etudiant-result #h .titre{
    font-size: 30px;
    font-weight: 800;
    color: var(--color-mainstrong);
}
.etudiant-result #h img{
    width: 50px;
}
.etudiant-result .nom{
    font-size: 20px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 5px;
}
.etudiant-result .value{
    font-size: 16px;
}
.etudiant-result .filiere{
    font-size: 17px;
    color: var(--color-main);
    line-height: 19px;
    font-weight: 500;
    margin-bottom: 7px;
}
.etudiant-result .dip{
    width: 100px;
    margin: 0 auto;
    margin-top: -10px;
}
.etudiant-result .cap{
    width: 50px;
    margin: 0;
    margin-top: -10px;
}
.etudiant-result .nofound{
    width: 100px;
    margin: 0 auto;
}
.etudiant-result .nofoundText{
    font-size: 18px;
    color: red;
}

.table-diplomes {
    width: 100%;
    border-collapse: collapse;
}

.table-diplomes>thead {
    background-color: rgb(214, 198, 198);
}

.table-diplomes>thead th {
    border: 1px solid black;
    color: var(--color-mainstrong);
}

.table-diplomes .tbody {
    border: 1px solid black;
}

.table-diplomes>tbody td {
    border: 1px solid black;
    padding: 5px;
    font-size: 16px;
}
/* ----maintenance----- */
.page_maintenance{
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.952);
}
.page_maintenance .content{
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.page_maintenance .content img{
    width: 100px;
    height: 100px;
    margin: 0px auto;
}
.page_maintenance .content p{
    font-size: 25px;
    color: white;
    text-align: center;
    margin: 30px 0;
}
/* ----communiques-page---- */
.communiques-page {
    width: 100%;
    margin-bottom: 40px;
}

.communiques-contents {
    display: flex;
    flex-direction: column;
}

.communiques-contents .communique {
    width: 100%;
    height: max-content;
    padding: 20px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: rgb(248, 248, 248);
    /* border: 1px solid rgb(185, 210, 224); */
    margin-bottom: 1.2rem;
}

.communiques-contents .communique .titre {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.communiques-contents .communique .dest {
    background-color: var(--color-mainlight);
    color: white;
    border-radius: 0px 20px 20px 0px;
    font-size: 14px;
    font-weight: normal;
    padding: 5px 20px;
    padding-left: 10px;
    width: max-content;
    margin-bottom: 10px;
}

.communiques-contents .communique .texte {
    font-size: 16px;
    margin-bottom: 10px;
}

.communiques-contents .communique .by {
    font-size: 16px;
    text-align: right;
    margin-bottom: 10px;
    color: var(--color-black-transparent);
}

.communiques-contents .communique .by i {
    color: green;
}

.communiques-contents .communique .dt {
    font-size: 15px;
    font-weight: normal;
    color: var(--color-main);
}

.communiques-contents .communique .num {
    position: absolute;
    right: 0px;
    top: 0px;
    width: max-content;
    height: 30px;
    display: flex;
    padding: 0px 10px;
    padding-top: 3px;
    background-color: orange;
    color: white;
    border-radius: 0 0 50px 50px;
    font-size: 16px;
}

/* --------aside-contents--------- */
.aside-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.aside-contents .aside-title {
    font-size: 16px;
    background-color: var(--color-black-transparent);
    padding: 6px 0px;
    text-align: center;
    color: white;
    margin-bottom: 10px;
}

.aside-contents .rapido {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.aside-contents .rapido li {
    /* margin: 0px 10px; */
    padding: 5px 10px;
    background-color: rgba(131, 119, 119, 0.123);
    /* background-color: var(--color-mainstrong); */
    margin-bottom: 5px;
    color: var(--color-main);
    border-radius: 0px 0px 10px 10px;
}

.aside-contents .rapido li:hover {
    background-color: rgba(37, 37, 68, 0.548);
}

.aside-contents .rapido li:hover {
    background-color: var(--color-mainlight);
    cursor: pointer;
}

.aside-contents .annonces {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.aside-contents .annonces hr {
    border: 1px dashed gray;
}

.aside-contents .annonces .annonce {
    border: 1px solid gray;
    padding: 10px;
    margin-bottom: 10px;
}

.aside-contents .annonces .annonce p {
    font-size: 14px;
    color: var(--color-mainstrong);
}

.aside-contents .sep {
    margin: 20px 0px;
}

.aside-contents .activites {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 10px 0px;
}

.aside-contents .activites .element {
    width: calc(95%/3);
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

/*  */
.aside-contents .photos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 10px 0px;
}

.aside-contents .photos .element {
    width: calc(95%/3);
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
}

.aside-contents .tout {
    width: 100%;
    display: flex;
    justify-content: right;
}

.aside-contents .tout a {
    color: var(--color-main);
    font-weight: 600;
}

/* ------------------- */
.valve-numerique {
    margin-bottom: 40px;
}

.valve-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.valve-inner #vide {
    font-size: 20px;
    text-align: center;
    color: red;
}

.valve-inner .element {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color:rgb(151, 185, 236);
    border-radius: 10px;
}

.valve-inner .element p {
    font-size: 15px;
    color: var(--color-white);
    padding: 10px 0px;
    margin-right: 10px;
    text-align: right;
}
.valve-inner .today{
    background-color: rgb(162, 247, 162);
}
.valve-inner .today p{
    color: black;
}
.valve-inner .element img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

/* ------------------- */
.inscription-page {
    padding-bottom: 50px;
    background-color: rgb(196, 217, 241);
}
.inscription-page .container{
    padding: 50px 10%;
}
.inscription-inner {
    width: 100%;
    display: flex;
}

.inscription-inner .formulaire {
    width: 50%;
    background-color: var(--color-white);
    padding: 30px;
    /* padding-left: 0px; */
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.inscription-inner .formulaire input {
    border: 1px solid rgba(128, 128, 128, 0.774);
}

.inscription-inner .formulaire select {
    border: 1px solid rgba(128, 128, 128, 0.774);
}

.inscription-inner .image {
    width: 50%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.inscription-inner .formulaire #bienv {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    text-align: left;
}

.inscription-inner .formulaire form label {
    color: gray;
}

.inscription-inner .formulaire form .d {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.inscription-inner .formulaire form .d div {
    width: calc(100%/2);
    margin-top: 10px;
}

.inscription-inner .formulaire form #adrs {
    margin-top: 10px;
}

.inscription-inner .formulaire form button {
    padding: 10px 50px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background-color: var(--color-mainstrong);
    border: none;
    border-radius: 6px;
}

.inscription-inner .formulaire form .b {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.inscription-inner .formulaire form #condition {
    text-align: right;
    color: var(--color-main);
    font-size: 16px;
    margin: auto 0px;
}

.inscription-inner .formulaire .adresse{
    margin-top: 10px;
}

.inscription-inner .formulaire .adresse p{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -5px;
}

.msgOk{
    width: max-content;
    padding: 5px 10px;
    background-color: rgb(161, 255, 185);
    color: green;
    font-size: 16px;
    margin-bottom: 10px;
}
.msgError{
    width: max-content;
    padding: 5px 10px;
    background-color: rgb(253, 162, 162);
    color: red;
    font-size: 16px;
    margin-bottom: 10px;
}


/* --------------------------- */
.gallery-page {
    width: 100%;
    margin: 10px 0px;
}

.gallery-container {
    width: 100%;
    padding: 30px 0px;
    margin: 20px auto;
    columns: 4;
    column-gap: 10px;
}

.gallery-container .image {
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
    border-radius: 10px;
}

.gallery-container .image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

/* ----- */
.Top-actions .container {
    padding: 0px inherit;
}

.top-action-inner {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    height: max-content;
    padding: 20px 20px;
    list-style: none;
    border-bottom: 1px solid rgb(185, 184, 184);
    border-top: 1px solid rgb(185, 184, 184);
}

.top-action-inner .bloc {
    font-size: 17px;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-mainstrong);
}

.top-action-inner .bloc i {
    font-size: 25px;
    margin-top: -5px;
    margin-right: 10px;
    color: rgb(182, 182, 182);
}

/* ------------------- */
.horaire-contents {
    width: 100%;
    margin-bottom: 5rem;
}

.horaire-contents h2 {
    margin-bottom: 10px;
}

.horaire-contents .elements{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.horaire-contents .elements .element{
    margin: 10px 0;
    padding: 10px;
    border: 1px solid rgb(177, 176, 176);
    border-radius: 10px;
    background-color: whitesmoke;
}
.horaire-contents .elements .element h2{
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main);
}
.horaire-contents .elements .element img{
    width: 100%;
    border-radius: 10px;
}

.horaire-contents table {
    width: 100%;
    border-collapse: collapse;
}

.horaire-contents table thead {
    background-color: var(--color-mainlight);
    color: white;
}

.horaire-contents table th {
    border: 1px solid black;
    padding: 5px 0px;
}

.horaire-contents table td {
    border: 1px solid black;
    padding: 5px 10px;
    padding-right: 0px;
}

.horaire-page .head {
    width: 100%;
    margin: 20px 0px;
}

.horaire-page .head #titre {
    font-size: 22px;
    color: var(--color-white);
    font-weight: 700;
    padding: 10px;
    text-align: center;
    background-color: var(--color-mainlight);
    background-color: rgb(180, 197, 245);
}

.horaire-page .head #titre span {
    color: var(--color-mainstrong);
    font-weight: 800;
}

.horaire-page .head .control {
    width: 100%;
    height: max-content;
    padding: 20px;
    border-radius: 0 0px 10px 10px;
    border: 1px solid rgb(180, 197, 245);
    border-top: none;
}

.horaire-page .head .control h3 {
    margin-bottom: 10px;
    color: var(--color-mainlight);
}

.horaire-page .head .control .flex-elements {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    border: 1px solid rgb(236, 236, 236);
}

.horaire-page .head .control .select-block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.horaire-page .head .control .select-block select {
    width: calc(100%/2);
    height: 45px;
    border-radius: 0px;
    border: transparent;
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
}

.horaire-page .head .control button {
    border: none;
    color: var(--color-main);
    font-size: 23px;
    height: 47px;
    width: max-content;
    padding: 0px 30px;
}


/* -----------responsite------------ */

@media screen and (max-width: 1440px) {
    .container {
        padding: 50px 10%;
    }

    .slider-main>.item {
        width: 380px;
        cursor: pointer;
        user-select: none;
        scroll-snap-align: flex-start;
        -ms-grid-row-align: flex-start;
    }

}

/* ------------------- */
@media screen and (max-width: 1380px) {
    .container {
        padding: 50px 10%;
    }

    .slider-main>.item {
        width: 350px;
        cursor: pointer;
        user-select: none;
        scroll-snap-align: flex-start;
        -ms-grid-row-align: flex-start;
    }

}

@media screen and (max-width: 1280px) {
    .top_banniere{
        min-height: 80vh;
    }
    .container {
        padding: 50px 8%;
    }

    .slider-main>.item {
        width: 350px;
    }

    .top_banniere .right {
        padding-top: 20px;
    }

    .top_banniere .banniere {
        margin-top: 0;
        margin-bottom: 0;
    }

    .top_banniere .banniere .liens {
        margin-top: 30px;
        margin-bottom: -10px;
    }

    .banniere .liens-inner {
        padding: 20px;
    }

    .banniere .liens-inner .bloc {
        font-size: 18px;
    }

    .banniere .liens-inner .bloc i {
        font-size: 25px;
    }
}

@media screen and (max-width: 1220px) {
    .container {
        padding: 50px 8%;
    }
    .top_banniere .banniere .liens {
        margin-top: 30px;
        margin-bottom: -15px;
    }

    .slider-main>.item {
        width: 330px;
    }

    /* ---------- */
    .inscription-inner .formulaire {
        width: 60%;
        padding: 20px;
    }
    
    .inscription-inner .image {
        width: 40%;
        height: auto;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 50px 8%;
    }

    .top_banniere {
        display: block;
        flex-direction: unset;
    }

    .top_banniere .banniere {
        width: 100%;
    }

    .top_banniere .banniere .content {
        padding-top: 50px;
    }

    .top_banniere .banniere .content .acronyme {
        margin-bottom: 20px;
    }

    .top_banniere .banniere .content p {
        margin-bottom: 20px;
    }

    .top_banniere .right {
        width: 100%;
        padding: 0px 5%;
        padding-top: 20px;
    }

    .top_banniere .banniere .liens {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .banniere .liens-inner {
        padding: 20px;
        padding-bottom: 10px;
    }

    .banniere .liens-inner .bloc {
        font-size: 16px;
    }

    .banniere .liens-inner .bloc i {
        font-size: 25px;
    }

    .top_banniere .right .annonces hr {
        border: 1px dashed var(--color-shadow);
    }

    .top_banniere .right .annonces {
        padding-bottom: 10px;
        padding-right: 0px;
    }

    .top_banniere .right .annonces .elements {
        display: flex;
        gap: 20px;
    }

    .top_banniere .right .annonces .element {
        width: 50%;
    }

    .top_banniere .right .annonces .element .ttr {
        margin-bottom: 10px
    }

    /* -- */
    .top_banniere .news {
        display: none;
    }

    /* ============== */
    .home-news {
        width: 100%;
        margin-bottom: 0px;
    }

    .home-news .news-contents {
        width: 100%;
        flex-direction: column;
    }

    .home-news .news-contents-main {
        width: 100%;
    }

    .home-news .news-contents-main a {
        display: flex;
    }

    .news-contents-main .image {
        width: 50%;
        height: 250px;
    }

    .news-contents-main .text .titre {
        line-height: normal;
    }

    .news-contents-main .text {
        padding-left: 20px;
        width: 50%;
    }

    .home-news .news-contents-others {
        width: 100%;
        flex-direction: row;
        margin-top: 10px;
        padding: 0;
    }

    .news-contents-others .element {
        width: calc(100%/3);
        flex-direction: column;
        padding: 5px;
    }

    .news-contents-others .element a {
        flex-direction: column;
    }

    .news-contents-others .element .image {
        width: 100%;
        height: 150px;
    }

    .news-contents-others .element .text {
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }

    .news-contents-others .element .text .titre {
        font-size: 14px;
    }

    .news-contents-others .element .text p {
        text-align: justify;
        font-size: 14px;
    }

    /* ============================ */

    .title {
        font-size: 28px;
    }

    .apropos {
        margin-bottom: 0px;
    }

    .apropos .left p {
        font-size: 16px;
    }

    /*  */
    .slider-main {
        grid-auto-columns: calc((100% / 2) - 30px);
    }

    .slider-main>.item {
        width: 400px;
    }

    .slider-wrap .slider-btn:first-child {
        left: -30px;
    }

    .slider-wrap .slider-btn:last-child {
        right: -30px;
    }

    .filieres {
        padding: 0px;
    }

    /* ------------ */
    .vacation{
        height: 35rem;
        padding: 3rem;
    }
    .vacation-inner {
        width: 50%;
        padding: 30px;
    }

    .counter .item span {
        font-size: 60px;
        margin-bottom: -10px;
    }
    .counter .item h2 {
        font-size: 40px;
        color: white;
        text-align: center;
        margin-top: 10px;
        margin-right: 10px;
    }

    /* ------about--- */
    .about {
        margin-bottom: 50px;
    }

    .about .campus-images .images .main {
        width: 47%;
        height: 300px;
    }

    .about .campus-images .images .others {
        width: 50%;
        height: 300px;
    }

    .about .campus-images .images .others div {
        width: calc(100%/3);
        height: calc(100%/3);
    }

    /* --------aside-contents--------- */
    .aside-contents .activites .element {
        height: 60px;
    }

    .aside-contents .photos .element {
        height: 60px;
    }

    .enseignants-inner .element {
        padding: 10px;
    }

    .enseignants-inner .element .image {
        height: 200px;
    }

    .enseignants-inner .element .descript .nom {
        font-size: 18px;
        line-height: 19px;
    }
    /* ---------- */
    .inscription-page {
        padding-bottom: 30px;
    }
    
    .inscription-inner .formulaire {
        width: 60%;
        padding: 20px;
    }
    
    .inscription-inner .image {
        width: 40%;
        height: auto;
    }

    .academique-inner .bloc{
        width: calc(100%/3 - 5px);
    }
    .academique-inner .bloc .image{
        height: 230px !important;
    }

}

/* -------------------- */
@media screen and (max-width:768px) {
    .container {
        padding: 50px 5%;
    }

    .top_banniere .banniere .content .acronyme {
        font-size: 40px;
        line-height: 42px;
    }

    .top_banniere .right {
        padding-top: 20px;
    }

    .top_banniere .right .annonces .elements hr {
        margin: 0px 10px;
    }
    
    /* ============================ */
    .title {
        font-size: 25px;
    }

    .apropos {
        flex-direction: column;
        margin-top: -3rem;
        margin-bottom: 0;
    }

    .apropos .left {
        width: 100%;
    }

    .apropos .right {
        width: 100%;
        padding: 0px;
        padding-top: 20px;
    }

    .apropos .right .campus {
        margin-top: 30px;
        font-size: 16px;
    }
    .apropos .left p {
        font-size: 15px;
    }

    /*  */
    .slider-main {
        grid-auto-columns: calc((100% / 2) - 20px);
    }

    .slider-main>.item {
        width: 330px;
    }

    .slider-wrap .slider-btn:first-child {
        left: -20px;
    }

    .slider-wrap .slider-btn:last-child {
        right: -20px;
    }

    /*  */

    .filieres {
        padding: 0px;
        margin-top: -30px;
    }

    .more-btn {
        margin-bottom: 0px;
    }

    .filieres .box .content p {
        font-size: 14px;
    }

    .filieres .ttl {
        font-size: 18px;
    }
    .filieres .title{
        margin-bottom: 20px;
    }


    /* ------------ */
    .vacation{
        height: 35rem;
        padding: 2rem;
        margin-top: 2rem;
        border-top: 7px dashed rgb(255, 255, 255);
        border-bottom: 7px dashed rgb(255, 255, 255);
    }
    .vacation-inner {
        width: 80%;
        padding: 30px;
        border-top: 4px solid rgb(255, 208, 0);
        border-bottom: 4px solid rgb(255, 208, 0);
    }
    .vacation-inner .Titre{
        font-size: 35px;
        font-weight: 100;
        margin-bottom: 20px;
        color: rgb(19, 32, 75);
    }
    /*  */
    .counter-inner .image{
        display: none;
    }
    .counter-inner .image img{
        width: 100%;
        object-fit: cover;
        margin-top: -40px;
        margin-bottom: -10px;
    }
    .counter-inner .items{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding-top: 3rem;
    }
    .counter .item {
        width: calc(100%/2);
        height: max-content;
        display: flex;
        flex-wrap: wrap;
        padding: 0 40px;
        justify-content: center;
    }

    .counter .item span {
        font-size: 60px;
        margin-bottom: -10px;
    }

    .counter .item h2 {
        font-size: 40px;
        color: white;
        text-align: center;
        margin-top: 10px;
        margin-right: 10px;
    }
    .counter .item div{
        text-align: center;
    }

    /* --- */

    .events .pubs .pub .descript .titre {
        font-size: 15px;
    }

    .home-gallerie {
        margin-bottom: 4rem;
    }

    .home-gallerie .gallerie-inner .photo {
        height: 120px;
    }

    .second-banner {
        margin: 0px;
    }

    .second-banner .img {
        margin: auto;
    }

    .second-banner .text_iner h2 {
        font-size: 18px;
    }

    .second-banner .text_iner p {
        font-size: 13px;
    }


    .events-page .event .image {
        height: 200px;
    }

    .events-page .event .descript {
        padding-top: 0px;
    }

    /* ------2col------ */
    .Dcol {
        flex-direction: column;
    }

    .Dcol article {
        width: 100%;
        padding: 0;
    }

    .Dcol aside {
        width: 100%;
        padding-left: 0;
        padding-bottom: 0;
        border: none;
        margin-top: 30px;
        border-top: 1px solid black;
        padding-top: 20px;
    }

    /* --------aside-contents--------- */
    .aside-contents .activites .element {
        height: 150px;
    }
    .aside-contents .photos .element {
        height: 150px;
    }

    /* ------------------- */
    .valve-numerique {
        margin-bottom: 30px;
    }
    .valve-inner {
        gap: 20px;
    }

    /* ------------------- */
    .inscription-inner {
        flex-direction: column;
    }
    .inscription-page .container{
        padding: 50px 8%;
    }
    .inscription-inner .formulaire {
        width: 100%;
        padding: 30px;
    }
    .inscription-inner .image {
        width: 100%;
        height: 500px;
        border-radius: 10px;
    }

    /* -------login students----- */
    .students-login {
        flex-direction: column;
        height: max-content;
    }

    .students-login>.formular {
        width: 100%;
        padding: 40px;
    }

    .students-login .right {
        width: 100%;
        height: 300px;
        padding: 40px;
        margin-bottom: 50px;
    }

    .students-login .right svg {
        width: 100%;
        height: 300px;
    }

    .students-login>.formular>.frm {
        margin-top: 20px;
        border-radius: 10px;
        width: 80%;
    }

    .students-login>.right img {
        width: 100%;
        margin: auto 0px;
    }

    /*  */
    .filieres {
        padding-top: 0;
    }

    .filieres br {
        display: none;
    }

    .contents-filieres .box {
        width: calc(100%/2);
    }

    /* ----communiques-page---- */
    .communiques-contents .communique .titre {
        font-size: 17px;
    }

    .communiques-contents .communique .texte {
        font-size: 15px;
    }

    .communiques-contents .communique .by {
        font-size: 15px;
    }

    .Dcol article {
        width: 100%;
        padding: 0px;
    }

    .Dcol aside {
        width: 100%;
        padding: 0px;
        border: none;
    }

    .totop_btn {
        background-color: rgba(53, 83, 148, 0.534);
    }

    /* ------nvigation-btns----- */
    .pagination {
        margin: 20px auto;
        margin-top: 40px;
    }

    .enseignants-inner .element {
        width: calc(100% / 2);
        padding: 20px;
    }

    .enseignants-inner .element .descript {
        height: 100px;
    }

    .enseignants-inner .element .descript .nom {
        font-size: 18px;
        line-height: 19px;
    }

    .contact-page {
        flex-direction: column;
    }

    .contact-coordonnees {
        width: 100%;
    }

    .contact-coordonnees ul hr {
        margin: 10px 0px;
    }

    .contact-write {
        width: 100%;
    }

    /* -- */
    .banner_bottom_content .container {
        padding: 0px 2%;
    }

    .banner_bottom_content ol li {
        font-size: 15px;
        font-weight: 500;
    }

    /* --table----- */
    .table-area {
        overflow: scroll;
        padding: 10px;
    }
    /*  */
    .gallery-container {
        padding: 0;
        margin: 20px auto;
        columns: 3;
    }

    .academique-inner .bloc{
        width: calc(100%/2 - 5px);
    }
    .academique-inner .bloc .image{
        height: 230px !important;
    }

}

/* --------------- */
@media screen and (max-width: 425px) {
    .container {
        padding: 20px 5%;
    }

    .top_banniere .banniere .content {
        padding: 30px 10px;
    }

    .top_banniere .banniere .content .sigle {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .top_banniere .banniere .content .acronyme {
        margin-bottom: 20px;
        font-size: 25px;
        line-height: 30px;
    }

    .top_banniere .banniere .content .acronyme span {
        font-size: 18px;
    }

    .top_banniere .banniere .content {
        padding-bottom: 0;
    }

    .top_banniere .banniere .content p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .top_banniere .banniere .content .bouton button {
        padding: 10px;
        font-size: 17px;
        margin: 0px 10px;
    }

    .top_banniere .right {
        display: none;
    }

    .banniere .liens-inner {
        padding: 20px 10px;
        padding-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banniere .liens-inner .bloc {
        width: 100%;
        font-size: 13px;
        font-weight: 700;
    }

    .banniere .liens-inner .bloc i {
        font-size: 25px;
    }

    /* ============== */
    .small-main-banner .title-banner {
        margin-bottom: 0px;
    }

    .small-main-banner .title-banner {
        font-size: 24px;
        font-weight: 800;
    }

    /* ============================ */
    .title {
        font-size: 23px;
        line-height: 23px;
    }

    .apropos {
        margin-top: 0;
    }
    .apropos .title{
        font-size: 30px !important;
        margin-bottom: 30px;
    }
    .apropos .left {
        width: 100%;
        padding-bottom: 20px;
    }

    .apropos .right {
        width: 100%;
        padding: 0px;
    }
    .apropos .right .images{
        height: 250px;
        border-radius: 30px 0;
    }
    .apropos .right .images .slide-elmt{
        height: inherit;
    }
    .apropos .left p {
        font-size: 15px;
        /* margin-bottom: 10px; */
    }
    .apropos .left p:last-child{
        margin-top: 10px;
        background-color: red;
    }

    /*  */
    .slider-main {
        grid-auto-columns: calc((100% / 1) - 30px);
    }

    .slider-main>.item {
        width: 360px;
    }

    .slider-wrap .slider-btn:first-child {
        left: -15px;
    }

    .slider-wrap .slider-btn:last-child {
        right: -15px;
    }

    .filieres {
        padding: 0px;
    }

    /*  */
    .students-login>.formular {
        width: 100%;
        padding: 20px;
    }

    .students-login>.formular .frm {
        width: 100%;
    }

    .students-login .right {
        width: 100%;
        height: 300px;
        padding: 40px;
        margin-bottom: 50px;
    }

    /* ------------ */
    .vacation{
        height: 32rem;
        padding: 2rem;
        margin-top: 1rem;
        border-top: 5px dashed rgb(255, 255, 255) !important;
        border-bottom: 5px dashed rgb(255, 255, 255) !important;
    }
    .vacation-inner {
        width: 100%;
        padding: 20px;
        border-top: 4px solid rgb(255, 208, 0);
        border-bottom: 4px solid rgb(255, 208, 0);
    }
    .vacation-inner .Titre{
        font-size: 25px;
        margin-top: 0px;
    }
    .vacation-inner .item{
        padding-bottom: 10px;
    }
    .vacation-inner .item i{
        font-size: 30px;
        margin: auto 0;
    }
    .vacation-inner .item hr{
        margin: 0 10px;
    }
    .vacation-inner .item .titre{
        font-size: 23px;
        margin: 0;
    }
    .vacation-inner .item .titre span{
        font-size: 23px;
    }
    .vacation-inner .item p{
        font-size: 20px;
    }
    
    /*  */
    .counter .item {
        width: 50%;
        text-align: center;
    }

    .home-gallerie .gallerie-inner {
        gap: 10px;
    }

    .home-gallerie .gallerie-inner .photo {
        height: 150px;
    }

    .second-banner {
        margin: 0px;
        flex-direction: column;
    }

    .second-banner .img {
        margin: auto;
        width: 100% !important;
    }

    .second-banner .text_iner {
        width: 100% !important;
    }

    .second-banner .text_iner h2 {
        font-size: 18px;
    }

    .second-banner .text_iner p {
        font-size: 13px;
    }

    .banner_bottom_content .flex {
        flex-direction: column;
    }

    .banner_bottom_content .visions {
        margin-top: 20px;
    }

    /* -----about---- */
    .about-campus-img {
        height: 300px;
        border-radius: 20px;
        padding: 10px;
    }

    /*  */
    .filieres {
        padding-top: 1.5rem;
    }

    .filieres .ttl {
        font-size: 18px;
        padding-left: 0;
    }

    .filieres br {
        display: none;
    }

    .contents-filieres .box {
        width: 100%;
    }
    .filieres .master{
        margin-top: -20px;
    }
    /*  */
    .counter-inner{
        flex-direction: column;
    }
    .counter .image{
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 20px 0;
    }
    .counter .image img{
        width: 70%;
    }
    .counter .items{
        padding-top: 20px;
    }
    .counter .item {
        width: calc(100%/2);
        height: max-content;
        padding: 0px;
        justify-content: center;
        flex-direction: column;
    }
    .counter .item h2{
        margin-bottom: -10px;
    }
    .counter .item span{
        font-size: 50px;
    }
    .counter .item h4{
        font-size: 18px;
    }
    /* ----communiques-page---- */
    .communiques-contents .communique {
        padding: 20px 0px;
    }

    .communiques-contents .communique .titre {
        font-size: 16px;
    }

    .communiques-contents .communique .categorie {
        font-size: 13px;
        padding: 3px 10px;
    }

    .communiques-contents .communique .texte {
        font-size: 14px;
    }

    .communiques-contents .communique .by {
        font-size: 13px;
    }

    .communiques-contents .communique .dt {
        font-size: 14px;
    }

    .communiques-contents .communique .num {
        font-size: 13px;
    }

    /*  */
    .aside-contents .activites .element {
        height: 80px;
    }

    .aside-contents .photos .element {
        height: 80px;
    }

    .aside-contents .tout {
        margin-top: 10px;
    }

    .events-page .event {
        width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .events-page .event .image {
        width: 100%;
        height: 230px;
    }

    .events-page .event .descript {
        width: 100%;
        padding: 10px 0px;
        text-align: justify;
    }

    .events-page .event .descript .titre {
        font-size: 16px;
    }

    .events-page .event .descript .txt {
        font-size: 14px;
    }

    .totop_btn {
        width: 40px;
        height: 40px;
    }

    .totop_btn span {
        font-size: 30px;
        font-weight: 700;
        color: var(--color-mainstrong);
        color: white;
        margin: auto;
    }

    .enseignants-inner .element {
        width: 100%;
        padding: 10px;
    }

    .enseignants-inner .element .descript {
        height: max-content;
    }

    .enseignants-inner .element .descript .nom {
        font-size: 18px;
        line-height: 19px;
    }
    /* ------ */
    .inscription-page .container{
        padding: 20px 3%;
    }
    .inscription-inner .formulaire {
        padding: 20px;
    }
    .inscription-inner .formulaire #bienv{
        font-size: 16px;
    }
    .inscription-inner .image {
        height: 500px;
    }

    .inscription-inner .formulaire form .d {
        flex-direction: column;
    }
    .inscription-inner .formulaire form .d div{
        width: 100%;
    }

    .inscription-inner .formulaire input {
        border: 1px solid rgba(128, 128, 128, 0.774);
    }

    .inscription-inner .formulaire select {
        border: 1px solid rgba(128, 128, 128, 0.774);
    }

    .inscription-inner .b {
        flex-direction: column;
    }

    .inscription-inner button {
        width: 100%;
        margin-bottom: 20px;
    }

    .inscription-inner #conditions {
        width: 100%;
    }

    /* ------about-page--- */
    .about h3 {
        font-size: 17px;
    }

    .about .campus-images .images .main {
        width: 100%;
        height: 250px;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .about .campus-images .images .others {
        width: 100%;
        height: 250px;
    }

    /* ---------- */

    .diplomes-page .search {
        min-width: 70%;
    }

    .table-area {
        overflow: scroll;
        padding: 10px;
    }

    .table-diplomes {
        width: 100%;
        border-collapse: collapse;
    }

    .table-diplomes>thead {
        background-color: rgb(214, 198, 198);
    }

    .table-diplomes>thead th {
        border: 1px solid black;
        color: var(--color-mainstrong);
        padding: 0px 10px;
    }

    .table-diplomes .tbody {
        border: 1px solid black;
    }

    .table-diplomes>tbody td {
        border: 1px solid black;
        padding: 5px;
        font-size: 16px;
    }

    .corps-academique-page{
        margin: 1rem 0;
    }
    .academique-inner .bloc{
        width: 100%;
    }
    .academique-inner .bloc .image{
        height: 250px !important;
    }

}

/* ------------------- */
@media screen and (max-width: 375px) {

    /*  */
    .top_banniere .banniere .content .bouton button {
        padding: 10px 10px;
        font-size: 16px;
        margin: 0px 5px;
    }

    .banniere .liens-inner .bloc {
        font-size: 12px;
    }

    .banniere .liens-inner .bloc i {
        font-size: 20px;
    }

    .banniere .liens-inner hr {
        opacity: 0;
    }

    .slider-main {
        grid-auto-columns: calc((100% / 1) - 20px);
    }

    .slider-main>.item {
        width: 310px;
    }

    .slider-wrap .slider-btn {
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.555);
    }

    .slider-wrap .slider-btn:first-child {
        left: -12px;
    }

    .slider-wrap .slider-btn:last-child {
        right: -12px;
    }

    .slider-wrap .box {
        padding: 0px;
    }

    .title{
        margin-bottom: 30px !important;
    }

    .filieres {
        padding-top: 2rem;
    }

    .filieres .ttl {
        font-size: 16px;
    }
    .apropos{
        margin-top: -1rem;
    }
    .apropos .right .images {
        height: 250px;
    }

    /* -----about---- */
    .about h3 {
        font-size: 16px;
    }

    .about .campus-images .images .main {
        height: 200px;
        margin-bottom: 10px;
    }

    .about .campus-images .images .others {
        height: 250px;
    }
    .vacation .container{
        padding-top: 20px;
    }
    .contents-filieres .box {
        padding: 0px;
        margin-bottom: 10px;
    }

    /* ------------ */
    .vacation{
        height: 30rem;
        padding: 2rem;
        margin-top: 1rem;
        border-top: 5px solid rgb(144, 191, 223) !important;
    }
    .vacation-inner {
        padding: 20px;
        border-top: 4px solid rgb(255, 208, 0);
        border-bottom: 4px solid rgb(255, 208, 0);
    }
    .vacation-inner .Titre{
        font-size: 22px;
    }
    .vacation-inner .item{
        padding-bottom: 10px;
    }
    .vacation-inner .item .icon{
        font-size: 25px;
    }
    .vacation-inner .item .titre{
        font-size: 18px;
    }
    /*  */
    .events-page .event .image {
        height: 200px;
    }
    .events-page .event .descript .titre {
        font-size: 16px;
    }

    .events-page .event .descript p {
        font-size: 14px;
    }

    .totop_btn {
        right: 10px;
        background-color: rgba(53, 83, 148, 0.404);
    }

    .totop_btn span {
        font-size: 25px;
    }

    /* ------nvigation-btns----- */
    .pagination {
        margin: 10px 0px;
    }

    .contact-write {
        width: 100%;
        padding: 0px;
        padding-top: 20px;
    }

    .btn-plus {
        font-size: 14px;
        padding: 8px 15px;
    }
    .counter .content{
        padding-bottom: 20px;
    }
    .counter .item{
        margin-bottom: 10px;
    }
    .counter .item h2 {
        font-size: 30px;
    }

    .counter .item .val {
        font-size: 35px;
        font-weight: 700;
    }

    .counter .item h4 {
        font-size: 14px;
    }
    /*  */
    .gallery-container {
        columns: 2;
    }
    .gallery-container .image{
        border-radius: 6px;
    }
}

/* --------------------- */
@media screen and (max-width: 320px) {
    .container {
        padding: 20px 4%;
    }

    .top_banniere .banniere .content .acronyme {
        font-size: 20px;
        line-height: 30px;
        text-align: left;
    }

    .top_banniere .banniere .content .acronyme span {
        font-size: 15px;
    }

    .top_banniere .banniere .content p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .top_banniere .banniere .content .bouton button {
        padding: 10px;
        font-size: 14px;
        margin: 0px 5px;
    }
    .banniere .liens{
        margin-bottom: -10px !important;
        z-index: 20;
        
    }
    .container{
        z-index: -1;
    }
    .banniere .liens-inner{
        padding-bottom: 20px;
    }
    .banniere .liens-inner .bloc {
        font-size: 12px;
    }

    .banniere .liens-inner .bloc i {
        font-size: 20px;
    }

    .banniere .liens-inner hr {
        opacity: 0;
    }

    /*  */
    .apropos{
        margin-top: -3rem;
    }

    .slider-main {
        grid-auto-columns: calc((100% / 1) - 1px);
    }

    .slider-main>.item {
        width: 290px;
    }

    .slider-wrap .slider-btn {
        width: 30px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.425);
    }

    .slider-wrap .slider-btn:first-child {
        left: -8px;
    }

    .slider-wrap .slider-btn:last-child {
        right: -8px;
    }

    /* -----about---- */
    .about-campus-img {
        display: none;
    }

    /*  */
    .filieres {
        padding-top: 0;
    }

    .filieres .ttl {
        font-size: 16px;
    }

    .contents-filieres .box {
        padding: 0px;
        margin-bottom: 10px;
    }

    .contents-filieres .box .content .name {
        font-size: 14px;
    }

    .filieres br {
        display: none;
    }

    .vacation{
        height: 28rem;
        padding: 2rem 1rem;
        margin-top: 1rem;
        mask-border-mode:luminance;
        border-bottom: 5px solid rgb(245, 182, 8) !important;
    }
    .vacation-inner {
        padding: 15px;
    }
    .vacation-inner .Titre{
        font-size: 20px;
    }
    .vacation-inner .item{
        padding-bottom: 5px;
    }
    .vacation-inner .item .icon{
        font-size: 20px;
    }
    .vacation-inner .item .titre{
        font-size: 17px;
    }

    /*  */
    .counter {
        margin: 0px;
        margin-top: 20px;
    }

    .counter .item h2 {
        font-size: 30px;
    }

    .counter .item .val {
        font-size: 30px;
        font-weight: 700;
    }

    .counter .item h4 {
        font-size: 14px;
    }

    .contents-filieres .box {
        width: 100%;
    }

    .events .item {
        width: 295px;
        padding: 0px;
    }

    .events-page .event .image {
        height: 150px;
    }

    .enseignants-inner .element {
        padding: 0px;
    }

    .enseignants-inner .element .image {
        height: 180px;
    }

    .enseignants-inner .element .descript .nom {
        font-size: 16px;
        line-height: 17px;
    }
    /*  */
    .inscription-inner .formulaire {
        padding: 10px;
    }

    .academique-inner .bloc .image{
        height: 220px !important;
    }
}