/* ----------------------------------------------------------------------
/* 
Added latest part of css to make the whole website responsive
 */


* {
    padding: 0;
    margin: 0;
}
.img{
  object-fit:cover
}

body {
    /* background-image: url('../images/bg.png'); */
    width: 100%;
    /* background-color: pink; */
    background-color: rgb(255, 255, 255);
    height: 100%;
    font-family: 'Verdana', 'Arial', sans-serif;
    font-size: 1.25em;
    line-height: 1.5;
}

.wrapper {
    width: 100%;
    margin: auto;
}

.container {
    margin-left: 5px;
    border-width: 5px;
    padding-right:5px;
    /* margin-top: 10px; */
    width: 100%;
    /* overflow: hidden; */
}  

header {
    background-color:rgb(255, 255, 255);
    /* background-color:lightskyblue; */
    /* color: #f31237; */
    color: #4e12f3;
    
    font-style: Bold;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    
    /* min-height: 200px; */
    height:50px;
}

header #logo {
    float: left;
    width: 100px;
    margin: 18px;
}

header h1 {
    float: left;
            font-size: 2em;
            margin-top: 20px;
            margin-bottom: 10px;
    margin-left: 15px;
}

header p {
    float: left;
    font-size: 1em;
    font-style: italic;
    margin-top: 10px;
}

@media only screen and (max-width: 620px) {
    /* For mobile phones: */
    .menu, .main, .right {
      width: 100%;
    }
  }

nav {
    /* background-color: violet; */
    /* border-radius: 10%; */
    border-width: 13%;
    position:relative;
    width:80%;
    height: 50px; 
    background-color: rgb(255, 255, 255);
    display:flex;
    /* margin-left: 50px;
    margin-right: 50px; */
    /* margin-top: 10px;
    margin-bottom: 5px; */
    justify-content: space-between;
    align-items: center;
    /* padding: 1vw 8vw; */
    box-shadow: 2px 2px 10px silver;
    z-index: 999;
}



nav li {
    float: left;
    list-style-type: none;
}

nav a {
    display: block;
    text-decoration: none;
    color: blue;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 10px;
    padding-left: 18px;
    padding-right: 18px;
}

nav li > ul {
    display: none;
    position: absolute;

    
    width: 130px;
    font-size: small;
/*     background-color: #c7c7c1; */
    background-color:whitesmoke;
}

nav li > ul a {
    width: 130px;
    display: block;
}

nav li:hover > ul {
    display: block;
}

nav a:hover {
    background-color: #00b4d8;
}

/* Table Styles */

.table-wrapper{
    margin: 5px 20px 20px;
    box-shadow: 0px 25px 40px rgba( 0, 0, 0, 0.2 );
}

.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 10px;
}

.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 12px;
}

.fl-table thead th {
    color: #ffffff;
    background:  #0054d3;
}


.fl-table thead th:nth-child(odd) {
    color: cyan;
    /* background: rgb(238, 240, 238); */
    background: rgb(255, 255, 255);
}

.fl-table tr:nth-child(even) {
    background: whitesmoke;
}

#main {
    background-color: rgb(255, 255, 255);
}


#main-content {
    float: left;
    width: 100%;
    /* margin-left: 2%;
    margin-right: 2%; */
    text-align: justify;
}

#main-content h1 {
    font-style: 'Times New Roman';
    font-size: 1.5em;
    color: #582bc0;
}

#main-content h2 {
    font-size: 1em;
    color: #007fd3;
    margin-bottom: 10px;
}
#main-content img{
    width: 100%;
    height: 100%;
}
#main-content #pic{
    margin: 1px;
    width: 400px;
    height: 250px;
}
#main-content #gallery{
    float: left;
    width: 400px;
    height:400px;
}

/* experts */
#experts{
    /* padding:3vw 3vw 1vw 3vw; */
    text-align: center;
    margin-top: 10px;
/*     background-color:rgb(255, 255, 255); */
    background-color:#f5cac3;


}
#experts .expert-box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 1rem;
    margin-top: 20px;  
}

#experts .expert-box .profile{
/*     background:rgb(241, 240, 241); */
    background-color:#ffd166;
    padding:30px 10px ;
    font-size: large;
    margin-top: 5px;
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
    /* width:100px;
    height:100px; */
}



#experts .expert-box img{
    /* width: 30%;
    height: 30%; */
    width: 300px;
    height: 400px;
    /* border: 5px solid #555; */
    /* border-radius: 50%;
    background-size: cover; */
    background-position: center;

}

#main-content p {
    font-size: 0.8em;
    margin-bottom: 10px;
    margin-top: 10px;
}

hr {
    margin-bottom: 20px;
}

aside {
    margin-left: 1%;
    margin-right: 1%;
    float: right;
    width: 28%;
}

aside input[type="text" ] {
    width: 70%;
    height: 3%;
    padding: 5px 0px;
    border: thin;
    margin-top: 5%;
}

aside h2 {
    font-size: 1em;
    margin-top: 5px;
    margin-bottom: 20px;
}

aside h2:last-child {
    margin-top: 200px;
}

aside li {
    list-style-type: none;
}

aside a {
    display: block;
    text-decoration: none;
    font-size: 0.8em;
    color: #d35400;
    padding: 5px ;
    font-family: 'Times New Roman', Times, serif;
}

aside a:hover {
    background-color: #e67e22;
    color: #ffffff;
}


aside #logo {
    margin-right: 2%;
    float: left ;
    width: 490px;
    height: 200px;
}



  
  /*--------------------------------------------------------------*/


/* Our Services */
.services {
  padding-bottom: 20px;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon {
  background: #fceef3;
    border-radius:1.5rem;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
    border-radius:1.5rem;
}

.services .icon-box-pink:hover {
  border-color: #00afb9;
}

.services .icon-box-cyan .icon {
  background: #e6fdfc;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.services .icon-box-green .icon {
  background: #eafde7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-green:hover {
  border-color: #41cf2e;
}

.services .icon-box-blue .icon {
  background: #e1eeff;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #2282ff;
}



/* -----------------------Registration FOrm */
.aaa{
    background-image: url(diamond_background3.jpg);
    background-size: cover;
}
.cover1{
    background-image: url(login_background.jpg);
    background-size: cover;
    height: 100px;
}
.bbb{
    width: 100px;
    height: 200px;
    margin-top: 15px;
    margin-left: 10px
}
.ccc1{
    font-family: sans-serif;
    color: darkblue;
    margin-top: 10px;
}
.cccc{
    font-family: sans-serif;
    font-size: 20px;
    margin-top: 10px;
}
.ddd1{
    font-family: sans-serif;
    margin-top: 10px;
    width: 300px;
    height: 35px;
    border-radius: 5px;
    margin-left: 50px;
}
.ddd2{
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 25px;
    width: 350px;
    height: 35px;
    border-radius: 5px;
}
.ddd3{
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 90px;
    width: 300px;
    height: 35px;
    border-radius: 5px;
}
.ddd4{
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 68px;
    width: 170px;
    height: 35px;
    border-radius: 5px;
}
.ddd5{
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 10px;
    width: 170px;
    height: 35px;
    border-radius: 5px;
}
.ddd6{
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 50px;
    width: 350px;
    height: 35px;
    border-radius: 5px;
}
.ddd7{
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 22px;
    width: 350px;
    height: 35px;
    border-radius: 5px;
}
.eee{
    font-family: sans-serif;
    margin-left:200px ;
    margin-top:10px ;
}
.cover2{
    background-image: url(diamond_background.jpg);
    background-size: cover;
    height: 410px;
}
.llll{
    width: 90%;
    height: 66px;
    float: left;
}


.line{
    height:150px;
    width: 1px;
    background-color: white;
}
.cover{
    background-image:url(cover_school.jpg);
    background-size: cover;
    height:100px ;
}
.aa{
    font-weight: 400;
    font-size: 30px;
    font-family: sans-serif;
}
.bb{
    color: orange;
    float: left;
    margin-left: 20px;
    font-weight: 400;
    font-family: sans-serif;
}
.cc{
    font-weight: 400; 
    font-family: sans-serif;
}
.dd{
    background-color: #ffb327;
    width: 100%;
    height: 300px;
    float: left;
    
}
.ee{
    font-family: sans-serif;
    font-weight: 100;
    font-size: 20px;
    float: left;
    
}
.ff{
    height: 200px;
    width: 300px;
}
.gg{
    font-family: sans-serif;
    font-weight: 100;
    font-size: 15px;
    float: left;
}
.hh{
     height:150px;
    width: 1px;
    background-color: white;
    float: left;
}
.ii{
    height: 250px;
    width:250px;
   font-family: sans-serif;
    font-weight: 100;
    font-size: 15px;
    float: left;
    margin-top: 15px;
}
.jj{
    height: 150px;
    width:230px;
   font-family: sans-serif;
    font-weight: 100;
    font-size: 13px;
    margin-top: 15px;
}
.nn{
    height: 250px;
    width: 300px;
}
.yy{
    height: 1px;
    width: 300px;
    background-color: white;
}
.zz{
    margin-left: 12px;
    padding-top: 5px;
}
.pp{
    margin-top: 50px;
}
.ss{
    width: 300px;
    margin-top: 30px;
    background-color: black;
    height: 1px;
}
.tt{
    margin-top: 30px;
}
.zzz{
    background-image: url(background2.jpg);
    background-size: cover;
    height: 500px;
}
.ccc{
    width:40%;
    height: 350px;
    margin-top: 40px;
    margin-left: 30%;
}
.cc1{
    margin-top: 20px;
    margin-left: 23px;
    height: 40px;
    border-radius: 5px;
}
.cc2{
    margin-top: 20px;
    margin-left: 5px;
    height: 40px;
    border-radius: 5px;
}
.cc3{
    margin-top: 20px;
    margin-left: 150px;
    height: 40px;
    width: 200px;
    border-radius: 5px;
}
.cc4{
    margin-left: 280px;
}






.a1{
    width: 100%;
    height: 2000px;
    background-image: url(diamond_background.jpg);
    background-size: cover;
    margin-top: 10px;
}
.b1{
    text-align: center;
    background-color: black;
}
.b2{
    background-color: darkblue;
    color: white;
    text-align: center;
}
.c1{
    text-align: center;
    background-color: aqua;
}
.d1{
    background-color:ghostwhite;
}
.e1{
    width: 250px;
    height: 35px;
    border-radius: 5px;
    margin-top: 10px;
    text-align-last:center;
}
.f1{
    text-align: center;
    font-family: sans-serif;
    font-weight: 500;
    height: 45px;
}
.g1{
    width: 250px;
    height: 35px;
    border-radius: 5px;
    text-align-last:center;
}
.g2{
    width: 250px;
    height: 35px;
    border-radius: 5px;
    text-align-last:center;
}
.i1{
    width: 860px;
    height: 53px;
    border-radius: 5px;
    text-align-last:center;
    margin-top: 10px;
}
.j1{
    width: 860px;
    height: 35px;
    border-radius: 5px;
    margin-top: 10px;
    text-align-last:center;
}
.k1{
    text-align: center;
}
.k2{
    background-color: white;
    border-radius: 2px;
    margin-top: 5px;
}
.l1{
    margin-top: 10px;
    margin-left: 300px;
}






















/* ---------------------- */

/****vidéo****/
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .videoWrapper iframe {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 80%;
    height: 90%;
  }

/* ------------------- */



footer {
/*     background-color: #37c02b; */
    background-color: #ffd166;
    color: #ffffff;
    font-size: 0.6em;
    margin-bottom: 8px;
}

footer img {
    display: block;
    float: right;
    margin: 8px;
    width: 30px;
}

footer p {
    text-align: center;
    margin: 11px;
}

/* ----------------- */
/* Date-15/02/23 */

.teachers {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(27rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 1.5rem;
  }
  
  .teachers .box {
    text-align: center;
    overflow: hidden;
  }
  
  .teachers .box:hover .image .share {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  
  .teachers .box:hover .image .share a {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 1;
    -webkit-transition: -webkit-transform .2s .2s;
    transition: -webkit-transform .2s .2s;
    transition: transform .2s .2s;
    transition: transform .2s .2s, -webkit-transform .2s .2s;
  }
  
  .teachers .box .image {
    overflow: hidden;
    height: 32rem;
    width: 100%;
    position: relative;
    border-radius: 1rem;
  }
  
  .teachers .box .image .share {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10;
    overflow: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  
  .teachers .box .image .share a {
    font-size: 2.5rem;
    margin: 2rem 1.5rem;
    color: #fff;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
    opacity: 0;
  }
  
  .teachers .box .image .share a:hover {
    color: #fa1d86;
  }
  
  .teachers .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .teachers .box .content {
    padding-top: 1rem;
  }
  
  .teachers .box .content h3 {
    font-size: 2rem;
    color: #302851;
  }
  
  .teachers .box .content span {
    color: #666;
    font-size: 1.5rem;
  }
  
  .blog {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
    gap: 1.5rem;
  }
  
  .blog .box .image {
    height: 25rem;
    width: 100%;
    overflow: hidden;
  }
  
  .blog .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: .5rem;
  }
  
  .blog .box .content {
    padding: 2rem;
    background: #f5f5f5;
  }
  
  .blog .box .content .icons {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .blog .box .content .icons a {
    font-size: 1.4rem;
    color: #666;
  }
  
  .blog .box .content .icons a:hover {
    color: #224bcf;
  }
  
  .blog .box .content .icons a i {
    padding-right: .5rem;
    color: #224bcf;
  }
  
  .blog .box .content h3 {
    font-size: 1.7rem;
    padding: .5rem 0;
    color: #302851;
  }
  
  .blog .box .content p {
    padding: 1rem 0;
    font-size: 1.4rem;
    line-height: 2.5;
    color: #666;
  }
  
  .contact .icons-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
  }
  
  .contact .icons-container .icons {
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
/*     background: #f5f5f5; */
      background: #48cae4;
    margin-bottom: 1rem;
  }
  
  .contact .icons-container .icons i {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 2rem;
/*     color: #224bcf; */
      color: #0096c7;
    background: #e9edfb;
    border-radius: 40%;
    text-align: center;
    margin-bottom: .5rem;
  }
  
  .contact .icons-container .icons h3 {
    font-size: 2rem;
/*     color: #302851; */
      color: #ef476f;
    padding: .7rem 0;
  }
  
  .contact .icons-container .icons p {
    line-height: 2;
    font-size: 1.4rem;
/*     color: #666; */
    color:#7209b7;
  }
  
  .contact .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .contact .row form {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    border-radius: 1rem;
    background: #f5f5f5;
    padding: 2rem;
  }
  
  .contact .row form h3 {
    font-size: 2rem;
    color: #302851;
    margin-bottom: .5rem;
  }
  
  .contact .row form .box, .contact .row form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    color: #666;
    text-transform: none;
    margin: 1rem 0;
    border-radius: .5rem;
    background: #fff;
  }
  
  .contact .row form textarea {
    height: 10rem;
    resize: none;
  }
  
  .contact .row .map {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 14rem;
            flex: 1 1 14rem;
    width: 60%;
    border-radius: 1rem;
  }
/* Date-15/02/23 */



.contact {
    background: url("../images/contact-bg.jpg") center center / cover;
    padding-bottom: 2rem;
    color: #fff;
    height: auto;
}

.form-control {
    color: #fff !important;
}

.contact-content {
    margin-top: 1rem;
}

.contact-content .form {
    background-color: rgba(250, 250, 250, 0.1);
    /* padding: 4rem 2rem 2rem 2rem; */
}

.contact-content .form-control {
    margin-bottom: 1rem;
    background-color: rgba(250, 250, 250, 0.1);
    border: none;
    padding: 1rem;
}

input.form-control,
textarea.form-control {
    border: none !important;
    box-shadow: none !important;
}

.contact-content .btn {
    background-color: #f5a425;
    color: #fff;
    font-weight: 100;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px ;
    border-radius: 0;
    padding: 0px 0px;
}

.contact-content input {
    color: #fff;
    border: none;
}

.contact .ligne {
    height: 1rem;
}


/************footer*************/

footer {
    background-color: rgb(194, 186, 186);
    text-align: center;
    color: rgb(16, 82, 168);
    font-weight: 600;
    margin: 0;
    padding: 20px;
    border-top: #fff 2px solid;
}

footer p {
    margin-bottom: 0;
}

/* Date-15/02/23 */
.footer {
/*     background: #f5f5f5; */
    background: #ffd8be;
  }
  
  .footer .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
  }
  
  .footer .box-container .box h3 {
    font-size: 1.1rem;
    /* padding: 1rem 0; */
    color: #df2993;
/*       color: #ffd8be; */
  }
  
  .footer .box-container .box a {
    display: block;
    font-size: 0.8rem;
    /* padding: 1rem 0; */
/*     color: #666; */
      color: #6d23b6;
      margin:0.75rem;
  }
  
  .footer .box-container .box a:hover {
/*     color: #640d2e; */
      color: #f35b04;
  }
  
  .footer .box-container .box a:hover i {
    padding-right: 2rem;
  }
  
  .footer .box-container .box a i {
    color: #bb1264;
    /* padding-right: .5rem; */
  }
  
  .footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    /* padding-top: 2.5rem; */
    font-size: 1rem;
    color: #666;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
  
  .footer .credit span {
    color: #fa1d86;
  } 
  /* Date-15/02/23 */


@media (max-width: 1200px) {
    html {
      font-size: 55%;
    }
    section {
      padding: 3rem 2rem;
    }
  }
  
  @media (max-width: 768px) {
    #menu-btn {
      display: inline-block;
    }
    .header {
      padding: 2rem;
    }
    .header .navbar {
      position: absolute;
      top: 99%;
      left: 0;
      right: 0;
      background: #224bcf;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
              clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    .header .navbar.active {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .header .navbar ul li {
      width: 100%;
    }
    .header .navbar ul li ul {
      width: 100%;
      position: relative;
    }
    .about .content h3 {
      font-size: 3rem;
    }
    .main-video video {
      width: 95%;
      border-width: .2rem;
    }
  }
  
  @media (max-width: 450px) {
    html {
      font-size: 50%;
    }
  }
