@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800&display=swap');

body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans';
    width: 100%;
}
* {
    box-sizing: border-box; /* Ensures padding and borders are included in width/height */
}
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

.container {
    display: flex;
    align-items: normal;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.logo{
    margin: 0.5% 1%;
    border-radius: 50%;
    overflow: hidden;
}
.container button.ins{
    margin: 0;
    margin-right: 1px;
    height: 40px;
    background-color: #FFF;
    color: #00C89A !important;
}
.container button.ins a, .content button.ins a{
    color: #00C89A;
    text-decoration: none;
}
.container button.ins a:visited, .content button.ins a:visited{
    color: #00C89A;
}
.container button.con{
    margin: 0;
    height: 40px;
    background-color: #00C89A;
    color: #fff;
}
.container button.con a, .content button.con a{
    color: #fff;
    text-decoration: none;
}
.container button.con a:visited, .content button.con a:visited{
    color: #fff;
}
.container .lang{
    margin: 0;
    padding: 0;
    border: none;
}
.container .lang img{
    width: 33px;
    object-fit: contain;
}
.container .nav{
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: auto;
    margin: 0;
}
.container li{
    list-style: none;
    margin: 0 10px;
    text-wrap: nowrap;
}
.container button{
    background-color: transparent;
    border: solid 3px #00C89A;
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    box-shadow: 0px 59px 23px rgba(255, 214, 89, 0.01), 
    0px 33px 20px rgba(255, 214, 89, 0.05), 
    0px 15px 15px rgba(255, 214, 89, 0.09), 
    0px 4px 8px rgba(255, 214, 89, 0.1);
}
a:not(.presentation a){
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.nav a{
    color: #00C89A;
}
.container > .header{
    display: flex;
    align-items: center;
    width: 100%;
}

.container > .header > div:last-child{
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.container .nav-toggle{
    display: none;
}

.container .conarrow{
    flex-shrink: 0;
    transform: scale(0.9);background-color: #00C89A;
    color: white;
    display: none;
    padding: 7px;
}
.nav-backdrop{
    display: none;
}
.nav #dropdown-button, .nav a{
    filter: drop-shadow(0px 45px 18px rgba(11, 2, 99, 0.01)) drop-shadow(0px 25px 15px rgba(11, 2, 99, 0.1)) drop-shadow(0px 11px 11px rgba(11, 2, 99, 0.18)) drop-shadow(0px 3px 6px rgba(11, 2, 99, 0.2));
}
.nav a:hover, .nav #dropdown-button:hover{
    color: #ffd659;
    filter: none;
}
#dropdown-button {
    border: none;
    cursor: pointer;
    color: #00C89A;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    top: 0;
    background-image: url('../droparrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
    margin: 0;
    box-shadow: none;
}
#dropdown-button:hover {
    background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.9761 19.7875L8.17984 11.5037C7.36609 10.3437 8.19609 8.75 9.61234 8.75L20.3898 8.75C21.8061 8.75 22.6361 10.3437 21.8236 11.5037L16.0248 19.7875C15.9096 19.952 15.7563 20.0864 15.5781 20.1791C15.3999 20.2718 15.202 20.3203 15.0011 20.3203C14.8002 20.3203 14.6023 20.2718 14.4241 20.1791C14.2458 20.0864 14.0914 19.952 13.9761 19.7875Z" fill="%23ffd659"/></svg>');
}
#dropdown {
    position: absolute;
    background: #FFFFFF;
    border-radius: 5px 24px 12px;
    width: 250px;
    height: 170px;
    background-color: #FFF;
    z-index: 20000;
    overflow: hidden;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
    gap: 5px;
}
#dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
#dropdown a {
    text-wrap: wrap;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    display: block;
    width: 100%;
    text-shadow: none;
}
.spacer{
    margin: auto;
    width: 80%;
    background-color: #ffd559ab;
    height: 1px;
}
.content{
    border-top: #00C89A solid 4px;
    padding: 1%;
    color: #FFF;
    position: relative;
    padding-bottom: 20px;
    transition: all 1.5s ease;
    background: linear-gradient(114.42deg, rgba(0, 200, 154, 0.75) 3.19%, transparent 22.33%), linear-gradient(114.19deg, rgba(0, 200, 154, 0.05) 3.93%, rgba(255, 255, 255, 0.05) 99.7%), url(../backgroundContent.svg);
    background-color: rgba(11, 2, 99, 1);
    background-size: cover;
    background-position: 0 0, 0 0, center center;
}
.content .buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#Reserve, .platform1{
    background-color: #00C89A;
    border-radius: 10px;
    display: flex;
	align-items: center;
	justify-content: center;
    border: none;
    z-index: 42;
    padding: 10px;
    cursor: pointer;
    position: relative;
}
#Reserve{
    box-shadow: 0px 42px 107px rgba(0, 229, 141, 0.34), 0px 24.7206px 32.2574px rgba(0, 229, 141, 0.1867), 0px 10.2677px 13.3981px rgba(0, 229, 141, 0.22), 0px 3.71362px 4.84582px rgba(0, 229, 141, 0.153301), 0px 0px 0px #FFFFFF, inset 0px 1px 1px 2px #D9FFF0, inset 0px 1px 1px 1px #D9FFF0;
}
#Reserve:hover{
    background-color: #00C89ACC;
    transition: 0.5s ease;
}
#Reserve::after{
    content: "";
    position: absolute;
    bottom: -70%;
    left: 75%;
    width: 10%;
    height: 50%;
    border-radius: 50%;
    background: #FFD659;
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}
.platform1{
    background-color: #ffd659;
    cursor: auto;
    padding: 5px 10px;
}
.platform1 p{
    color: #0B0263;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}
#Reserve a{
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}
#Reserve img, .platform1 img{
    object-fit: contain;
    margin-right: 10px;
}
#reserdiv{
	display: none;
    opacity: 0;
	position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: min(400px, calc(100vw - 24px));
    max-height: calc(100vh - 2%);
    box-sizing: border-box;
	border-radius: 12px;
	z-index: 22001;
    transition: all 0.5s ease;
    background-color: #FFF;
    box-shadow: inset 0px 4px 4px rgba(11, 2, 99, 0.18);
}
#reserdiv::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  border-radius: 12px;

  background: linear-gradient(
    to top,
    #0B0263 10%,
    transparent 90%
  );

  pointer-events: none;
  z-index: -1;
}
#reserdiv::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20%;
  border-radius: 12px;

  background: linear-gradient(
    to bottom,
    #0B0263 5%,
    transparent 100%
  );

  pointer-events: none;
  z-index: -1;
}
#reserdiv h3{
	display: block;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
    font-size: 20px;
	margin-bottom: 20px;
	margin-left: 10%;
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 15px auto;
    text-align: center;
}
#reserdiv .backbutton {
	display: inline;
	background: transparent;
	border: none;
	cursor: pointer;
	position: absolute;
    z-index: 11;
	top: 10px;
    left: 10px;
	width: 45px;
}
#reserdiv .backbutton img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#reserdiv form {
    max-height: calc(100vh - 2vh - 96px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 18px;
    scrollbar-width: 6px;
    overscroll-behavior: contain;
}
#reserdiv form::-webkit-scrollbar {
    width: 6px;
}
#reserdiv form::-webkit-scrollbar-thumb {
    background: #00C89A;
}
#reserdiv form {
    scrollbar-color: #00C89A auto;
}
form input, form select {
    width: 80%;
	padding: 10px;
	margin: 10px auto;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: #0B0263;
    font-size: 1.1em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    outline: none;
    position: relative;
	left: 7%;
	box-shadow: 0px 36px 14px rgba(11, 2, 99, 0.01), 
	0px 20px 12px rgba(11, 2, 99, 0.05), 
	0px 9px 9px rgba(11, 2, 99, 0.09), 
	0px 2px 5px rgba(11, 2, 99, 0.1);
}
form label {
	display: none;
    font-family: 'Fira Sans', Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #0B0263;
	text-wrap: nowrap;
	position: relative;
	left: 10%;
	box-sizing: border-box;
	margin-bottom: 5px;
}

#filieres, #matiere {
    background-image: url('../dropdown.svg'), url('../dropdown-sign.svg');
    background-repeat: no-repeat;
    background-position: right center, right 4px center;
    background-size: 24px, 15px;
}

#filieres:invalid, #matiere:invalid {
    color: #888;
}
form button {
	width: 40%;
	padding: 10px;
	margin: 10px auto;
	border: none;
	border-radius: 10px;
	background: #00C89A;
	color: #fff;
	font-size: 1.1em;
	cursor: pointer;
	position: relative;
	bottom: 0;
    z-index: 10;
	left: calc(50% - 20%);
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.25);
}
form button:hover {
    background-color: #0B0263;
    box-shadow: none;
}
.content h2{
    color: #FFD659;
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}
.content h2::before{
    content: "";
    position: absolute;
    left: 7%;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #FFD659;
    filter: blur(18px);
}
.content .hero{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.hero div{
    position: relative;
    background-color: #0B0263;
    font-weight: bold;
    line-height: 35px;
    border: #00C89A solid 6px;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    flex: 1;
    gap: 10px;
    margin: 0 2.5%;
    z-index: 1;
    box-shadow: 0px 67px 27px rgba(255, 214, 89, 0.01), 0px 37px 22px rgba(255, 214, 89, 0.07);
    box-shadow: 0px 196px 79px rgba(250, 215, 92, 0.01), 0px 110px 66px rgba(250, 215, 92, 0.05), 0px 49px 49px rgba(250, 215, 92, 0.09), 0px 12px 27px rgba(250, 215, 92, 0.1);
}
.hero div p{
    margin: 0 auto;
}
.hero div img{
    padding: 10px;
    background-color: #00C89A;
    border-radius: 8px;
}
.hero div button{
    background-color: #00C89A;
    border: none;
    padding: 13px;
    border-radius: 12px;
}
.hero div button:hover{
    background-color: #00C89ACC;
    cursor: pointer;
}
.hero div button a{
    text-decoration: none;
    color: white;
}
.huges{
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 3%;
}
.huges div{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(0, 200, 154, 0.264) 52.5%, rgba(0, 200, 154, 0.4) 100%), #FFFFFF;
    border: 1px solid rgba(95, 255, 245, 0.75);
    box-shadow: 0px 0px 15px rgba(65, 255, 198, 0.47), 0px 0px 20px rgba(65, 255, 198, 0.42);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0B0263;
    padding: 10px 18px;
}
.huges img{
    width: 20px;
    height: 20px;
    margin: 5px;
}
.huges div p{
    text-transform: uppercase;
    margin: 0 auto;
    font-size: 10px;
}
.content > p{
    line-height: 20px;
    font-size: 18px;
    padding-left: 3%;
    position: relative;
}
.content .tblo{
    position: absolute;
    bottom: 0;
    right: -5px;
    object-fit: contain;
    width: 8%;
    z-index: 1;
}
.content button a{
    text-decoration: none;
}
.content button:hover{
    background-color: #ffffff;
}
.content span{
    font-weight: bold;
    color: #00C89A;
}
.content .logins{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    gap: 10%;
    position: relative;
    z-index: 1;
}
.content .con{
    background: linear-gradient(180deg, rgba(0, 200, 154, 0.9) 0%, #00C89A 100%);
    border-width: 2px 2px 6px 2px;
    border-style: solid;
    border-color: #FFD659;
    box-shadow: 0px 1px 6px rgba(0, 200, 154, 0.24);
    border-radius: 8px;
    padding: 5px 20px;
}
.content .ins{
    border-width: 2px 2px 6px 2px;
    border-style: solid;
    border-color: #00C89A;
    box-shadow: 0px 1px 6px rgba(0, 200, 154, 0.24);
    border-radius: 8px;
    padding: 5px 20px;
}
.content .con:hover, .content .ins:hover{
    border: none;
    cursor: pointer;
}
.computerclassroom{
    display: none;
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 400px;
    z-index: 0;
}
.tilifon{
    display: none;
    position: absolute;
    bottom: 2%;
    right: 2%;
    width: 250px;
    z-index: 0;
    filter: drop-shadow(129px 6px 52px rgba(0, 200, 154, 0.01)) drop-shadow(72px 4px 44px rgba(0, 200, 154, 0.05)) drop-shadow(32px 2px 32px rgba(0, 200, 154, 0.09)) drop-shadow(8px 0px 18px rgba(0, 200, 154, 0.1));
    transform: matrix(0.99, 0.16, -0.16, 0.99, 0, 0);
}
.scholarcap-scroll{
    position: absolute;
    bottom : 0%;
    left: 0;
    width: 100px;
    z-index: 0;
}
.scholarcap-scroll-img{
    width: 100%;
    display: block;
}
.presentation{
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, transparent 90%, rgba(11, 2, 99, 0.5) 100%), linear-gradient( to bottom, rgba(11, 2, 99, 1) 0.5%, #fff 1.5%);
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    align-items: start;
    gap: 50px;
}
.sideimg{
    position: absolute;
    top: 100px;
    width: 75px;
    z-index: 0;
}
.rightlap{
    position: absolute;
    top: 100px;
    right: 0;
    width: 75px;
}
.presentation h3{
    color: #ffd659;
    text-align: center;
    margin: 100px auto;
    margin-bottom: 30px;
    font-size: 42px;
    grid-column: span 3;
}
.presentation div{
    border: 4px solid #00c899;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 4% 12%;
    position: relative;
    height: fit-content;
    align-self: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 200, 154, 0.15) 0%, rgba(255, 214, 89, 0.15) 100%);
}
.presentation div button {
    background-color: #00C89A;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}
.presentation div button:hover {
    background-color: #00C89ACC;
}
.presentation div button a{
    text-decoration: none;
    color: #fff;
    padding: 0;
}

.presentation div.visible {
  opacity: 1;
  transform: translateY(0);
}
.presentation p{
    color: #0B0263;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto;
}
.presentation a{
    position: relative;
    bottom: 0;
    display: block;
    margin: 10px;
    padding-top: 50px;
}
.presentation .Design5{
    position: absolute;
    width: 100px;
    bottom: 100px;
    right: -1%;
}
.presentation .jaune{
    position: absolute;
    width: 100px;
    bottom: 100px;
    right: -2%;
}
.presentation div img{
    background-color: #00C89A;
    border-radius: 8px;
    padding: 5px;
    margin: auto;
    width: 50px;
    margin-bottom: 10px;
    align-self: center;
}
.presentation div .abvimg{
    width: 100px;
    background-color: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
}
#Reserve3{
    background-color: #00C89A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 42;
    padding: 10px;
    cursor: pointer;
    position: relative;
    margin: 40px auto 100px;
    box-shadow: 0px 42px 107px rgba(0, 229, 141, 0.34), 0px 24.7206px 32.2574px rgba(0, 229, 141, 0.1867), 0px 10.2677px 13.3981px rgba(0, 229, 141, 0.22), 0px 3.71362px 4.84582px rgba(0, 229, 141, 0.153301), 0px 0px 0px 4px #EAF8F2, 0px 0px 0px 5px #FFFFFF, inset 0px 1px 18px 2px #D9FFF0, inset 0px 1px 4px 2px #D9FFF0;
    grid-column: 1 / -1;
    justify-self: center;
}
#Reserve3:hover{
    background-color: #00C89ACC;
    transition: 0.5s ease;
}
#Reserve3 a{
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    padding: 0;
    font-size: 20px;
}
#Reserve3 img{
    object-fit: contain;
    margin-right: 10px;
}
.mission{
    position: relative;
    width: 100%;
    background: rgba(11, 2, 99, 1);
    background-image: url('../missionbackgrnd.png');
    background-repeat: repeat;
    padding-bottom: 90px;
}
.mission h2{
    color: #ffd659;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    padding: 30px;
}
.mission .missionleft{
    position: absolute;
    top: 10px;
    width: 150px;
    left: 0;
}
.mission .missionright{
    position: absolute;
    top: 10px;
    width: 150px;
    right: 0;
}
.mission p{
    color: #fff;
    font-size: 28px;
    text-align: center;
    line-height: 40px;
    width: 50%;
    margin: 0 auto;
    font-weight: bold;
}
.mission .videooverlay{
    position: relative;
}
.mission .videoimage{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 500px;
    margin: 20px auto;
    background: url('../videoimage.png');
    background-size: 100% 100%;
    opacity: 0;
    transform: translateX(-50px);
}
.mission .videoimage.animate__animated{
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease-out;
}
.mission .videooverlay video{
    display: none;
}
.mission .videoclose{
    display: none;
}

.mission .videooverlay.active{
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 2, 99, 0.9);
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.mission .videooverlay.active .videoimage{
    display: none;
}

.mission .videooverlay.active video{
    display: block;
    width: min(1000px, 92vw);
    max-height: 85vh;
    border-radius: 16px;
    border: 3px solid #00C89A;
    background: #000;
}

.mission .videooverlay.active .videoclose{
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #FFD659;
    color: #0B0263;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}
.comment{
    position: relative;
    width: 100%;
    background: url('../commentbcgrnd.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}
.comment .comment-panel{
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    will-change: transform, opacity;
}
.comment .comment-panel-left{
    transform: translateX(-80px);
}
.comment .comment-panel-right{
    transform: translateX(80px);
}
.comment .comment-panel.comment-visible{
    opacity: 1;
    transform: translateX(0);
}
.comment h2{
    color: #0B0263;
    text-align: center;
    font-size: 27px;
    font-weight: bold;
}

.comment img:not(.bkimage){
    position: relative;
    z-index: 1;
}
.bkimage{
    position: absolute;
    top: -5%;
    left: -10%;
    object-fit: cover;
    z-index: 0;
}
.comment p{
    color: #FFFFFF;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
}
.comment div div{
    background-color: #FFFFFF;
    display: flex;
    box-shadow: 0px 42px 107px rgba(11, 2, 99, 0.34), 0px 24.72px 32.26px rgba(11, 2, 99, 0.18), 0px 10.27px 13.4px rgba(11, 2, 99, 0.22), 0px 3.71px 4.85px rgba(11, 2, 99, 0.15);
    border-radius: 13px;
    margin: 30px auto;
}
.comment div div h4{
    color: #0B0263;
    font-size: 28px;
    font-weight: bold;
    border-right: 1px solid #0B0263;
    padding: 10px 20px;
    margin: 25px 0;
}
.comment div div h6{
    color: #0B0263;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 0%;
}
.comment div div p{
    color: #0B0263;
    font-size: 16px;
    font-weight: 100;
    line-height: 20px;
    margin: 0;
    text-align: left;
    padding: 0;
}
.comment div div div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    box-shadow: none;
    border-radius: 0%;
    margin: 0;
    background-color: transparent;
    gap: 5px;
    margin-left: 10px;
}
.howto{
    position: relative;
    width: 100%;
    background: url(../Howtobckgrnd.png);
    box-shadow: -15px -30px 30px 20px #0B0263, 15px -30px 30px 20px #0B0263;
}
.howto h1{
    color: #ffd659;
    text-decoration: underline;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    padding: 30px 0 10px 0;
}
.howto h2{
    color: #00C89A;
    text-align: center;
    font-size: 27px;
    font-weight: bold;
}
.howto .howtoleft{
    position: absolute;
    top: 10px;
}
.howto .howtoright{
    position: absolute;
    top: 10px;
    right: 0;
}
.howto .programmes{
    position: relative;
    width: 55%;
    text-align: center;
    color: #fff;
    margin-left: 45%;
    font-size: 18px;
    font-weight: bold;
}
.howto .programmes p{
    margin: 10px;
    line-height: 33px;
}
.howto .program{
    margin: 20px;
    padding: 20px;
}
.howto .programmes .thirdpc{
    position: absolute;
    top: 100px;
    left: -60%;
    margin-right: 24px;
    width: min(38vw, 360px);
    min-height: 240px;
}
.howto .programmes .thirdpc .prograshadow{
    position: absolute;
    z-index: 0;
    left: 56px;
    top: 7%;
    width: 100%;
}
.howto .programmes .thirdpc .prograpc{
    position: absolute;
    z-index: 1;
    left: -55px;
    top: -51%;
    width: 560px;
}
#Reserve2{
    width: 80%;
    background-color: #00C89A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: none;
    margin:  40px auto;
    box-shadow: 0px 42px 107px rgba(0, 200, 154, 0.34), 0px 24.7206px 32.2574px rgba(0, 200, 154, 0.18), 0px 10.2677px 13.3981px rgba(0, 200, 154, 0.22), 0px 3.71362px 4.84582px rgba(0, 200, 154, 0.15), 0px 0px 0px 4px #EAF8F2, 0px 0px 0px 5px #FFFFFF, inset 0px 1px 18px 2px #D9FFF0, inset 0px 1px 4px 2px #D9FFF0;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 50px;
}
#Reserve2:hover{
    background-color: #00C89ACC;
    transition: 0.5s ease;
    box-shadow: none;
}
#Reserve2 a{
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
}
.howto .programmespic{
    position: absolute;
    bottom: 0;
    width: 150px;
    left: -70%;
    object-fit: contain;
    display: none;
}
.howto .cours-wrapper{
    width: 70%;
    margin: 5% auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.howto .cours-en-ligne{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 5px 20px;
    gap: 10px;
    border: 3px solid #ffd659;
    border-radius: 9px;
}
.howto .cours-en-ligne img{
    width: 30px;
    object-fit: contain;
}
.howto .cours-en-ligne p{
    display: inline-block;
    font-size: 14px;
    color: #fff;
}
.howto .firstpresent{
    width: 50%;
    text-align: center;
    color: #fff;
    margin-left: 4%;
    font-size: 18px;
    font-weight: bold;
}
.howto .designs{
    position: absolute;
    width: 50%;
    height: 700px;
    right: 0px;
}
.howto .phoneshadow{
    position: absolute;
    width: 50%;
    top: 50%;
    right: 20%;
}
.howto .phones{
    position: absolute;
    top: 5%;
    left: -2%;
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.howto .con{
    background-color: #00C89A;
    border: solid 2px #00C89A;
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    position: relative;
    top: 5px;
    align-content: center;
    padding: 0px 20px 0px 20px;
    box-shadow: 0px 42px 107px rgba(0, 200, 154, 0.34), 0px 24.7206px 32.2574px rgba(0, 200, 154, 0.18), 0px 10.2677px 13.3981px rgba(0, 200, 154, 0.22), 0px 3.71362px 4.84582px rgba(0, 200, 154, 0.15), 0px 0px 0px 4px #EAF8F2, 0px 0px 0px 5px #FFFFFF, inset 0px 1px 18px 2px #D9FFF0, inset 0px 1px 4px 2px #D9FFF0;
}
.howto .con a{
    color: #ffffff;
    text-decoration: none;
}
.howto .con a:visited{
    color: #ffffff;
}
.howto .con:hover{
    background-color: #00C89ACC;
    box-shadow: none;
    transition: 0.5s ease;
}
.howto .scndimg{
    position: absolute;
    width: 150px;
    top: -50%;
    right: 0px;
    z-index: 10;
}
.howto .scndpresent{
    position: relative;
    width: 45%;
    text-align: center;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    line-height: 50px;
    color: #fff;
    margin-left: 50%;
    font-weight: bold;
}
.howto .scndpresent span{
    color: #00C89A;
}
.howto .cla{
    width: 100%;
    position: absolute;
    left: -100%;
    top: 15%;
}
.howto .cla img{
    object-fit: contain;
}
.howto .cla .presentpc{
    position: absolute;
    width: 100%;
    top: -100px;
    left: -20px;
    z-index: 5;
}
.howto .cla .pcshadow{
    width: 70%;
    position: absolute;
    left: 0;
}
.howto .spacer{
    width: 50%;
    height: 10px;
    background-color: #ffd659;
    margin: 20px auto;
    margin-top: 50px;
}
.howto .emo{
    position: absolute;
    right: 2%;
    width: 100px;
}
.howto .tutoriels{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.howto .tuto{
    position: relative;
    width: 30%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.howto .tuto p{
    position: absolute;
    width: 80%;
    left: -1%;
    z-index: 10;
    line-height: 50px;
    font-size: 20px;
}
.howto .tuto img{
    position: relative;
    top: -100%;
    left: -10%;
    width: 110%;
}
.howto .tutovid{
    background-color: #D9D9D9;
    background-image: url('../tuto-thumb.png');
    background-size: cover;
    background-position: center;
    width: 55%;
    height: 400px;
    margin: 5% auto;
    position: relative;
    border-radius: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}
.howto .videooverlay {
    position: relative;
}
.howto .videooverlay video {
    display: none;
}
.howto .videoclose {
    display: none;
}
.howto .videooverlay.active {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 2, 99, 0.9);
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.howto .videooverlay.active video {
    display: block;
    width: min(1000px, 92vw);
    max-height: 85vh;
    border-radius: 16px;
    border: 3px solid #00C89A;
    background: #000;
}
.howto .videooverlay.active .videoclose {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #FFD659;
    color: #0B0263;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}
.howto .thirdprsnt{
    width: 35%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: 4%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 200px;
}
.howto .thirdprsnt span{
    color: #00C89A;
}
.howto .Design8{
    position: absolute;
    right: 0px;
    top: 2750px;    
}
.howto .fourthprsnt{
    width: 45%;
    text-align: center;
    color: #fff;
    margin-left: 50%;
    margin-top: 25%;
    margin-bottom: 17%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 200px;
}
.howto .fifthprsnt{
    width: 35%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: 4%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 100px;
}
.howto .Design12{
    position: absolute;
    top: 3550px;
    right: 0;
    width: 700px;
}

.howto > div.howto-observe{
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.55s ease-out, opacity 0.55s ease-out;
    will-change: transform, opacity;
}

.howto > div.howto-observe.howto-visible{
    opacity: 1;
    transform: translateY(0);
}

.prsnt-carousel{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 64px 0;
    box-shadow: 0px 42px 107px rgba(87, 177, 255, 0.34), 0px 24.7206px 32.2574px rgba(87, 177, 255, 0.1867), 0px 10.2677px 13.3981px rgba(87, 177, 255, 0.22), 0px 3.71362px 4.84582px rgba(87, 177, 255, 0.153301), 0px 0px 0px 4px #E0E9F2, 0px 0px 0px 5px #FFFFFF, inset 0px 1px 18px 2px #D2EAFF, inset 0px 1px 4px 2px #D2EAFF;
    background: linear-gradient(180deg, #0073FF 0%, #0B0263 62.02%);
}
.prsnt-carousel .prsnt-track{
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}
.prsnt-carousel .prsnt-slide{
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 72px;
}
.prsnt-carousel .prsnt-text{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    width: 50%;
    text-align: center;
}
.prsnt-carousel .thirdprsnt .prsnt-text span{
    color: #00C89A;
}
.prsnt-carousel .thirdprsnt,
.prsnt-carousel .fourthprsnt,
.prsnt-carousel .fifthprsnt{
    margin: 0;
    width: 100%;
}
.prsnt-carousel .Design8,
.prsnt-carousel .Design9,
.prsnt-carousel .Design12{
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 550px;
    height: auto;
}
.prsnt-carousel .prsnt-list{
    width: 70%;
    margin: 4px auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.prsnt-carousel .prsnt-list li{
    color: #dff8ff;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    position: relative;
    text-align: left;
}
.prsnt-carousel .prsnt-list li::before{
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url('../checkdone.png') no-repeat center center;
    position: absolute;
    left: -40px;
    top: 10px;
}
.prsnt-carousel .prsnt-arrow{
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #00c899;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.prsnt-carousel .prsnt-prev{
    left: 12px;
}
.prsnt-carousel .prsnt-next{
    right: 12px;
}
.prsnt-carousel .prsnt-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.prsnt-carousel .prsnt-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}
.prsnt-carousel .prsnt-dot.active{
    background: #00C89A;
}


.howto .third{
    font-size: 40px;
    color: #ffd659;
    margin: auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.howto .fourth{
    color: #00C89A;
    font-size: 40px;
    margin: auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 170px;
}

.howto .Design11{
    position: absolute;
    right: 50px;
    bottom: 200px;
    z-index: 17;
}
.howto .fifth{
    font-size: 40px;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
}
.howto .sixth{
    color:#ffd659;
    font-size: 23px;
    margin: auto;
    width: 90%;
    text-align: center;
}
.howto .subscribe{
    width: 70%;
    padding: 50px 0;
    margin: auto;
    display: flex;
}
.howto .subscribe input{
    width: 70%;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 6px;
}
.howto .subscribe .subscribe-button{
    width: 25%;
    padding: 10px;
    background-color: #00C89A;
    color: #ffffff;
    border: none;
    color: #0B0263;
    font-size: 24px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.howto .contactus{
    position: relative;
    width: min(1100px, 92%);
    margin: 40px auto 80px;
    padding: 20px 20px 40px;
    z-index: 5;
}

.howto .contactus h1{
    text-align: center;
    margin-bottom: 24px;
}

.howto .contactus .contactus-content{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.howto .contactus .contactus-left{
    border-radius: 24px;
    color: #ffffff;
    padding: 56px 38px;
    box-shadow: 0px 22px 52px rgba(0, 200, 154, 0.22);
    text-align: center;
    position: relative;
    top: 10%;
}

.howto .contactus .contactus-left h2{
    color: #ffffff;
    font-size: clamp(28px, 2.4vw, 46px);
    line-height: 1.2;
    margin: 0 0 18px;
    font-weight: 800;
}

.howto .contactus .contactus-left p{
    color: #e9fffb;
    font-size: 19px;
    line-height: 1.45;
    margin: 8px 0;
    font-weight: 500;
}

.howto .contactus .contactus-form-card{
    background: #f2f5f5;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0px 22px 70px rgba(11, 2, 99, 0.35);
}

.howto .contactus .contactus-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.howto .contactus .contactus-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.howto .contactus .contactus-form input,
.howto .contactus .contactus-form textarea{
    width: 100%;
    margin: 0;
    border: 2px solid #9be7d5;
    border-radius: 8px;
    background: #f2f5f5;
    color: #0B0263;
    font-size: 18px;
    padding: 14px 16px;
    box-sizing: border-box;
    outline: none;
    font-family: 'Roboto', sans-serif;
    position: static;
    left: auto;
    display: block;
}

.howto .contactus .contactus-form textarea{
    resize: vertical;
    min-height: 170px;
}

.howto .contactus .contactus-form input:focus,
.howto .contactus .contactus-form textarea:focus{
    border-color: #00C89A;
    box-shadow: 0 0 0 3px rgba(0, 200, 154, 0.15);
}

.howto .contactus .contactus-form button{
    align-self: center;
    min-width: 180px;
    margin: 6px auto 0;
    border: none;
    border-radius: 10px;
    background: #00C89A;
    color: #ffffff;
    font-size: 24px;
    font-weight: 200;
    padding: 12px 26px;
    cursor: pointer;
    box-shadow: 0px 15px 36px rgba(0, 200, 154, 0.28);
    position: static;
    left: auto;
    display: block;
}

.howto .contactus .contactus-form button:hover{
    background: #00b98f;
}

.howto .contactus .contactus-bckgrnd{
    position: absolute;
    left: -18px;
    bottom: 10px;
    width: calc(100% + 36px);
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.howto .landing-faqs{
    width: min(1200px, 92%);
    margin: 26px auto 70px;
    position: relative;
    z-index: 6;
}

.howto .landing-faqs h1{
    text-align: center;
    margin-bottom: 22px;
}

.howto .landing-faq-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.howto .landing-faq-item{
    background: linear-gradient(102deg, #11c8a4 0%, #13cfad 48%, #11be9e 100%);
    border-radius: 12px;
    border: 1px solid rgba(171, 255, 237, 0.72);
    box-shadow: 0 0 0 1px rgba(132, 255, 234, 0.15) inset, 0 0 18px rgba(66, 255, 224, 0.38);
    overflow: hidden;
}

.howto .landing-faq-question{
    width: 100%;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
}

.howto .landing-faq-icon{
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    box-shadow: none;
    transform: rotate(0deg);
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.howto .landing-faq-answer{
    height: 0;
    overflow: hidden;
    opacity: 0;
    color: #f5fffd;
    font-size: 22px;
    line-height: 1.5;
    padding: 0 16px;
    transition: height 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.22s ease, padding 0.22s ease;
    background-color: #00C89A1A;
}

.howto .landing-faq-item.open .landing-faq-icon{
    box-shadow: none;
    transform: rotate(180deg);
}

.howto .landing-faq-item.open .landing-faq-answer{
    opacity: 1;
    padding: 2px 16px 18px;
}


.footer {
    position: relative;
    background-color: #6D8DCA;
    color: white;
    font-family: Arial, sans-serif;
    padding: 0px 20px;
    padding-bottom: 0;
    border-top: 5px solid #00C89A;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 250px;
    text-align: center;
}

.logan{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer-logo {
    width: 50%;
    max-width: 100px;
}

.slogan {
    color: #ffc857;
    font-size: 20px;
    width: 50%;
    margin: 0;
    text-shadow: #0B0263 1px 1px;
}
.emof{
    width: 15%;
    object-fit: contain;
    align-self: flex-start;
    transform: rotate(8deg);
}
.description {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
    text-align: left;
    text-shadow: #0B0263 2px 0px;
}
.footer .infos{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #0B0263;
}
.footer-section h3:not(.slogan) {
    color: #ffc857;
    text-decoration: underline;
    margin-bottom: 15px;
    text-shadow: #0B0263 2px 0px;
}

.apps p{
    text-shadow: #0B0263 2px 0px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

footer p{
    font-weight: bold;
    font-size: 14px;
}
.footer a{
    text-shadow: #0B0263 2px 0px;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    color: #555;
    font-size: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}
.footer-bottom a{
    color: #FFFFFF;
    text-shadow: #0B0263 2px 0px;
}

.social-icons a {
    display: inline-flex;
    margin: 0;
}
.social-icons{
    position: absolute;
    top: 320px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 26px;
    border: none;
    border-radius: 12px;
}
.social-icons::after{
    content: "";
    position: absolute;
    background: rgba(0, 200, 154, 0.79);
    filter: blur(50px);
    border-radius: 20px;
    transform: rotate(-180deg);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.social-icons img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
@media (min-width: 1500px) {
    .howto .cla {
        display: none;
    }
    .howto .scndpresent{
        margin: auto;
    }
    .howto .scndimg{
        display: none;
    }
}

@media(max-width: 1250px){
    .container .ins{
        display: none;
    }
    .Design77{
        display: none;
    }
    .howto .howtoleft,
    .howto .howtoright{
        display: none;
    }
    .howto .programmespic{
        display: none;
    }
    .howto .programmes .thirdpc{
        left: -80%;
    }
    .howto .tuto img{
        opacity: 0;
    }
    .howto .tuto p{
        padding: 20px;
        background-color: #00C89A;
        border-radius: 10px;
        border: 5px solid #ffc857;
    }
    .prsnt-carousel .Design8,
    .prsnt-carousel .Design9,
    .prsnt-carousel .Design12{
        width: 400px;
    }
}
@media (max-width: 1100px){
    .container .lang{
        display: none;
    }
    .container .conarrow{
        display: inline-flex;
        border-radius: 5px;
    }
    .container .conarrow a{
        color: #ffffff;
    }
    .container .conarrow img{
        transform: rotate(180deg) scale(1.7);
    }
    .container .con{
        display: none;
    }
    .content .computerclassroom, .content .tilifon{
        display: none;
    }
    .mission .videoimage{
        height: 400px;
    }
    .howto .programmes{
        width: 60%;
        margin-left: 40%;
    }
    .howto .programmes .thirdpc{
        width: min(40vw, 400px);
        left: -60%;
    }
}
@media (max-width: 1050px){
    .prsnt-carousel .prsnt-text{
        width: 50%;
    }
}
@media (max-width: 980px){
    .howto .contactus .contactus-content{
        grid-template-columns: 1fr;
    }

    .howto .contactus .contactus-left{
        padding: 34px 24px;
    }

    .howto .contactus .contactus-left h2{
        font-size: 30px;
    }

    .howto .contactus .contactus-left p{
        font-size: 17px;
    }

    .howto .contactus .contactus-form button{
        font-size: 28px;
    }
    .howto .contactus .contactus-left{
        border-radius: 16px 16px 0 0;
        padding: 22px 14px 58px;
        clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
        background-color: #00C89A;
        position: relative;
        z-index: -1;
        top: 40px;
    }
    .contactus .contactus-bckgrnd{
        display: none;
    }
    
    
    .howto .landing-faq-question{
        font-size: 26px;
        padding: 12px 14px;
    }
    
    .howto .landing-faq-icon{
        width: 48px;
        height: 48px;
    }
    
    .howto .landing-faq-answer{
        font-size: 20px;
    }
    .howto .cours-wrapper{
        width: 90%;
    }
    .howto .cla{
        left: -90%;
        top: 30%;
        transform: translateY(-50%);
    }
    .howto .programmes .thirdpc{
        left: -75%;
    }
}
@media (max-width: 950px){
    .container > .header{
        justify-content: space-between;
        padding: 8px 12px;
        background-color: #0B0263;
    }
    .container > .header > div:last-child{
        flex: none;
        min-width: unset;
    }
    .container .nav-toggle{
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        transform: scale(1.3);
        padding: 0;
        border-radius: 50%;
        border: 2px solid #00C89A;
        background: #00C89A;
        box-shadow: none;
        z-index: 21000;
    }

    .container .nav-toggle span{
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }

    .nav-backdrop{
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 2, 99, 0.45);
        backdrop-filter: blur(2px);
        z-index: 19990;
    }

    .nav-backdrop.show{
        display: block;
    }

    .container .nav{
        position: fixed;
        top: 0;
        left: -320px;
        width: min(300px, 85vw);
        height: 100vh;
        margin: 0;
        padding: 100px 16px 24px;
        background: linear-gradient(180deg, rgba(11, 2, 99, 0.98) 0%, rgba(4, 30, 109, 0.98) 100%);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 30px;
        overflow-y: auto;
        transition: left 0.28s ease;
        z-index: 20000;
    }

    .container .nav.nav-open{
        left: 0;
    }

    body.nav-open{
        overflow: hidden !important;
    }

    .container li{
        margin: 0;
    }

    .container .nav a,
    .container .nav #dropdown-button{
        width: 100%;
        color: #ffffff;
        text-align: left;
        font-size: 16px;
        filter: none;
        padding: 0;
    }

    .container .nav button{
        width: 100%;
        justify-content: flex-start;
        padding: 12px;
        box-shadow: none;
    }

    #dropdown{
        position: static;
        width: 100%;
        height: auto;
        background-color: #0B0263;
    }
    .mission .videoimage{
        height: 300px;
    }
    .prsnt-carousel .Design8,
    .prsnt-carousel .Design9,
    .prsnt-carousel .Design12{
        width: 300px;
    }
    .social-icons{
        position: relative;
        top: -50px;
        width: fit-content;
        left: 50%;
        transform: translateX(-50%);
    }
    .links{
        display: none;
    }
}


@media (max-width: 900px){
    .prsnt-carousel .prsnt-slide{
        flex-direction: column;
        gap: 20px;
        padding: 10px 56px;
    }
    .prsnt-carousel .prsnt-text{
        text-align: center;
    }
    .prsnt-carousel .Design8,
    .prsnt-carousel .Design9,
    .prsnt-carousel .Design12{
        width: min(100%, 560px);
    }
    .presentation div button{
        width: 80%;
        margin: 20px auto;
    }
    .howto .programmes{
        width: 90%;
        margin: auto;
    }
    .howto .programmes .thirdpc{
        position: static;
        width: 100%;
    }
    .howto .programmes .thirdpc .prograpc{
        top: -1%;
        left: 30%;
        width: 400px;
    }
    .howto .programmes .thirdpc .prograshadow{
        position: relative;
        top: 50px;
        width: 300px;
    }
    .howto .tutoriels{
        display: flex;
        flex-direction: column-reverse;
    }
    .howto .tutoriels .tuto img{
        display: none;
    }
    .howto .tutoriels .tuto{
        width: 100%;
    }
    .howto .tutoriels .tuto p{
        position: static;
    }
    .howto .tutovid{
        width: 90%;
    }
    .prsnt-carousel .Design12, .prsnt-carousel .Design8{
        order: -1;
    }
    .prsnt-carousel .prsnt-text{
        width: 90%;
    }
    .prsnt-carousel .prsnt-slide{
        flex-grow: 1;
    }
}
@media (max-width: 800px){
    .content{
        background-color: #0B0263;
        background-image: url('../Perspectivecontent.svg');
        background-repeat: no-repeat;
        background-position: top center;
    }
    .content h2::before, .content #Reserve::after{
        display: none;
    }
    .content .buttons{
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .content .buttons div, #Reserve{
        width: 90%;
        margin: auto;
    }
    .content h2 .part{
        text-decoration: underline;
    }
    .content h2 span{
        display: block;
    }
    .content .hero{
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    .hero .top3{
        order: -1;
    }
    .hero div{
        width: 92%;
        margin: 0;
    }
    .huges{
        margin: 60px auto;
        margin-bottom: 0;
        font-weight: bold;
        gap: 10%;
        font-size: 18px;
    }
    .huges div p{
        font-size: 14px;
    }
    .huges img{
        width: 40px;
        height: 40px !important;
        margin: 5px;
    }
    .content .computerclassroom{
        position: static;
        display: inline-block;
        width: 50%;
    }
    .content .tilifon{
        position: static;
        display: inline-block;
        width: 50%;
    }
    .imgbox{
        width: 100%;
        display: flex;
        justify-content: space-around;
        gap: 20px;
    }
    .content .ins, .content .con{
        padding: 16px 22px;
    }
    .mission .videoimage{
        height: 200px;
    }
    .mission .missionleft,
    .mission .missionright{
        top: 100px;
    }
    .comment{
        flex-direction: column-reverse;
        align-items: center;
        gap: 12px;
    }

    .comment .comment-panel{
        width: 94% !important;
    }
    .comment img{
        width: 40%;
        margin: auto;
        display: block;
    }
    .comment .bkimage, .comment-panel-right img{
        display: none;
    }
    .comment div div h6{
        font-size: 17px;
    }
    .howto .cours-wrapper{
        width: 100%;
    }
}
@media (max-width: 700px){

    .content .buttons{
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .imgbox img{
        transform: scale(1.3);
        margin: 20px auto;
    }

    .presentation{
        grid-template-columns: 1fr;
        padding: 20px 0 30px;
    }

    .presentation h3{
        grid-column: 1;
        font-size: 32px;
    }

    .presentation div{
        margin: 40px 4% 0;
    }

    #Reserve3{
        margin: 20px auto 150px;
        max-width: 90%;
    }

    
    .presentation .Design5,
    .presentation .jaune{
        top: 52%;
        width: 70px;
    }

    .howto .programmes,
    .howto .firstpresent,
    .howto .scndpresent{
        width: 94%;
        margin: 20px auto;
    }

    .howto .programmes .thirdpc .prograpc{
        width: 300px;
    }
    .howto .programmes .thirdpc .prograshadow{
        width: 250px;
    }
    #Reserve2{
        width: 90%;
    }
    .howto .cours-wrapper{
        width: 94%;
        flex-direction: column;
        gap: 12px;
    }

    .howto .designs,
    .howto .cla{
        display: none;
    }

    .howto .Design11{
        bottom: 250px;
    }

    .footer-container{
        flex-direction: column;
    }

    .footer-bottom{
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tblo,
    .scholarcap-scroll,
    .mission .missionleft,
    .mission .missionright,
    .howto .programmespic,
    .howto .scndimg,
    .howto .phoneshadow,
    .howto .phones,
    .howto .scndimg,
    .howto .Design11e,
    .emo,
    .Design77{
        display: none !important;
    }

    .content h2{
        font-size: 24px;
    }

    .mission h2,
    .howto h1,
    .presentation h3{
        font-size: 28px;
    }

    .mission p,
    .howto .sixth{
        width: 94%;
        font-size: 18px;
        line-height: 30px;
    }

    .howto .subscribe{
        width: 94%;
        flex-direction: column;
        gap: 10px;
    }

    .howto .subscribe input,
    .howto .subscribe .subscribe-button{
        width: 100%;
    }

    .howto .landing-faq-question{
        font-size: 18px;
    }
    .links{
        display: block;
        margin-bottom: 100px;
    }
}

@media (max-width: 620px){
    .howto .contactus{
        width: 96%;
        margin: 26px auto 58px;
        padding: 10px 8px 24px;
    }

    .howto .contactus h1{
        font-size: 46px;
        margin-bottom: 14px;
    }

    .howto .contactus .contactus-content{
        gap: 0;
    }

    .howto .contactus .contactus-left h2{
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .howto .contactus .contactus-left p{
        font-size: 14px;
        line-height: 1.45;
        margin: 6px 0;
    }

    .howto .contactus .contactus-form-card{
        position: relative;
        border-radius: 20px;
        padding: 16px 14px 20px;
        z-index: 4;
    }

    .howto .contactus .contactus-row{
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .howto .contactus .contactus-form input,
    .howto .contactus .contactus-form textarea{
        font-size: 14px;
        padding: 10px 11px;
    }

    .howto .contactus .contactus-form textarea{
        min-height: 128px;
    }

    .howto .contactus .contactus-form button{
        min-width: 140px;
        font-size: 30px;
        line-height: 1;
        padding: 10px 18px;
    }

    .howto .contactus .contactus-bckgrnd{
        width: calc(100% + 10px);
        left: -5px;
        bottom: 8px;
    }

    .howto .landing-faqs{
        width: 96%;
        margin: 22px auto 46px;
    }

    .howto .landing-faqs h1{
        font-size: 44px;
        margin-bottom: 14px;
    }

    .howto .landing-faq-list{
        gap: 12px;
    }

    .howto .landing-faq-question{
        font-size: 14px;
        font-weight: 700;
        padding: 12px 10px;
    }

    .howto .landing-faq-icon{
        width: 34px;
        height: 34px;
    }

    .howto .landing-faq-answer{
        font-size: 13px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .howto .landing-faq-item.open .landing-faq-answer{
        max-height: 260px;
        padding: 0 10px 12px;
    }
    .howto .Design11{
        bottom : 5%;
    }
}
@media (max-width: 450px){
    .howto h1 {
        font-size: 20px;
        margin: 30px;
    }
    .howto .programmes .thirdpc .prograpc{
        left: 18%;
        top: 2%;
    }
    .howto .programmes .thirdpc .prograshadow{
        margin: 20px auto 0;
    }
    .content .huges{
        width: 60%;
    }
}
@media (max-width: 400px){
    #reserdiv .backbutton{
        transform: scale(1.2);
    }
    #reserdiv h3{
        font-size: 15px;
    }
    .content .logins{
        gap: 2%;
    }
    .prsnt-carousel .prsnt-list{
        width: 90%;
    }
    .prsnt-carousel .prsnt-list li{
        font-size: 16px;
    }
}
@media (max-width: 350px){
    .prsnt-carousel .prsnt-list{
        width: 100%;
    }
}