*
{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Nunito', sans-serif;
}
::-webkit-scrollbar
{
   width: 0;
}
body
{
   width: 100vw;
   height: 100vh;
   overflow-y: hidden;
   top: 0 !important;
}
.skiptranslate iframe {
   display: none !important;
}
#preloader
{
   position: fixed;
   width: 100%;
   height: 100%;
   z-index: 5000;
   user-select: none;
   pointer-events: none;
   background: #e0e0e0;
   display: flex;
   align-items: center;
   justify-content: center;
   filter: hue-rotate(360deg);
   opacity: 1;
   bottom: 0;
   scale: 1;
   overflow: hidden;
}
#loader
{
   position: fixed;
   width: 150px;
   height: 150px;
   background-size: 100%;
   transition: 1.2s;
   display: flex;
   align-items: center;
   justify-content: center;
}
#loader span
{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform: rotate(calc(18deg * var(--i)));
}
#loader span::before
{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 15px;
   height: 15px;
   border-radius: 50%;
   background: #1c99cb;
   box-shadow: 0 0 5px #1c99cb,
               0 0 10px #1c99cb,
               0 0 15px #1c99cb,
               0 0 20px #1c99cb,
               0 0 40px #1c99cb,
               0 0 60px #1c99cb,
               0 0 80px #1c99cb,
               0 0 100px #1c99cb;
   animation: loadanimate 2s linear infinite;
   animation-delay: calc(0.1s * var(--i));
}
@keyframes loadanimate {
   50%
   {
      transform: scale(1);
   }
   80%,100%
   {
      transform: scale(0);
   }
}
#loader img
{
   width: 120px;
}
:root
{
   --studentcolor1:#2A0869;
   --studentcolor2:#9130D8;
}
.students-col::-webkit-scrollbar
{
   width: 8px;
   scroll-behavior: smooth;
}
.students-col::-webkit-scrollbar-thumb
{
   background-color: rgba(255, 255, 255, 0.7);
   border-radius: 10px;
}
.students-col::-webkit-scrollbar-track
{
   border-radius: 10px;
   margin-bottom: 1.3em;
   margin-top: 1.3em;
}
/*Translate*/
.goog-te-gadget-icon {
   border-radius: 50px;
 }
 
 
.goog-te-gadget-simple {
     background-color: transparent !important;
     border:0 !important;
     font-size: 10pt;
    font-weight:800;
     display: inline-block;
     padding:0 10px !important;
     cursor: pointer;
     zoom: 1;
     border-radius: 12px;
 }
 
 .goog-te-gadget-simple  span {
    color:white !important;
}
.goog-te-gadget-simple span:nth-child(3)
{
   display: none;
}
.translate
{
   color:white;
   font-size: 16px;
   font-weight: bolder;
   position: relative;
   height: 30px;
   width: 90%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
}
.translate:hover
{
   background: rgba(255, 255, 255, 0.4);
   box-shadow: 0 0 5px black;
   border-radius: 100px;
}
/*Translate*/
nav
{
   background-color: rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(5px);
   position: fixed;
   z-index: 2000;
   padding:10px 1.5%;
   padding-left: 10%;
   width: 100%;
   transition: 0.3s;
}
.nav-anim
{
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    padding: 4px 1%;
    padding-left: 5%;
}
nav .logo_img
{
    margin-left: 50px;
}
nav img
{
   height: 42px;
   transition: 0.3s;
}
.nav-wrapper
{
   position: relative;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
nav .menu ul
{
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 15px;
   flex-wrap: wrap;
   height: 15px;
}
nav .menu ul li
{
   list-style-type: none;
}
#MenuBtn
{
   display: none;
   font-size: 24px;
   color: white;
}
.hider
{
   display: none;
   color: white;
   font-size: 24px;
}
.vh_line
{
   background: white;
   height: 25px;
   width: 4px;
   border-radius: 15px;
   opacity: 1;
   margin: 0;
   padding: 0;
   margin-right: 15px;
   box-shadow: 0 0 5px black;
}
nav .menu .menu-link
{
   color:white;
   font-size: 17px;
   position: relative;
   text-decoration: none;
   transition: 0.3s;
}
nav .menu .menu-link:hover
{
   color: #22b5f0;
}
nav .menu .menu-link::after
{
   content: '';
   display: block;
   width: 0;
   height: 3px;
   background: white;
   border-radius: 10px;
   margin: auto;
   transition: 0.3s;
}
nav .menu .menu-link:hover::after
{
   background:#22b5f0;
   width: 100%;
}
footer
{
   position: relative;
   width: 100%;
   background: #3586ff;
   min-height: 100px;
   padding: 20px 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin-top: 120px;
}
.wrapper
{
   margin-top: 100px;
}
footer .wrapper
{
   display: flex;
   flex-direction: column;
   gap: 20px;
}
footer .social-icon,
footer .menu
{
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 25px;
   text-transform: capitalize;
   flex-wrap: wrap;
}
footer .menu
{
   margin-right: 20px;
}
footer .social-icon span a
{
   font-size: 2.2em;
   color: white;
   display: block;
   text-decoration: none;
   transition: 0.35s;
   width: 50px;
   height: 50px;
}
footer .menu span
{
   display: flex;
   flex-direction: row;
   gap: 25px;
}
footer .menu span a
{
   font-size: 1.6em;
   color: white;
   display: block;
   text-decoration: none;
   transition: 0.35s;
   opacity: 0.4;
}
footer .menu span a:hover
{
   opacity: 1;
}
footer .social-icon span a:hover
{
   transform: translateY(-8px);
   scale: 1.18;
}
footer .bist
{
   color: white;
   text-align: center;
   font-size: 1.1em;
   opacity: 0.5;
   pointer-events: none;
   user-select: none;
}
.trinsyca
{
   text-align: center;
   font-size: 16px;
   color: white;
}
.trinsyca g
{
   opacity: 0.5;
}
.trinsyca a
{
   color: #E4B063;
   font-size: 18px;
   letter-spacing: 1px;
   text-shadow: 0 0 10px #E4B063,0 0 10px #E4B063,0 0 10px #E4B063;
   opacity: 1;
   text-decoration: none;
   transition: all 0.2s ease-in-out;
}
.trinsyca a:hover
{
   color: red;
   text-shadow: 0 0 10px red,0 0 10px red,0 0 10px red,0 0 10px red;
}
.trinsyca a:active
{
   text-shadow: 0 0 10px red,0 0 10px red,0 0 10px red,0 0 10px red,0 0 10px red,0 0 10px red;
}
.spayai {
   text-align: center;
   font-size: 16px;
   color: white;
}

.spayai g {
   opacity: 0.6;
}

.spayai a {
   color: #000;
   font-size: 18px;
   letter-spacing: 1px;
   text-shadow: 0 0 10px #000, 0 0 10px #000;
   opacity: 1;
   text-decoration: none;
   transition: all 0.2s ease-in-out;
}

.spayai a:hover {
   color: #000;
   text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}

.spayai a:active {
   text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}
footer .wave
{
   position: absolute;
   top: -95px;
   left: 0;
   width: 100%;
   height: 100px;
   background: url(../img/tools/wave.png);
   background-size: 1000px 100px;
}
footer .wave#wave1
{
   z-index: 800;
   opacity: 1;
   bottom: 0;
   animation: animateWave 4s linear infinite;
}
footer .wave#wave2
{
   z-index: 799;
   opacity: 0.5;
   bottom: 10px;
   animation: animateWave_2 4s linear infinite;
}
footer .wave#wave3
{
   z-index: 800;
   opacity: 0.2;
   bottom: 15px;
   animation: animateWave 3s linear infinite;
}
footer .wave#wave4
{
   z-index: 799;
   opacity: 0.7;
   bottom: 20px;
   animation: animateWave_2 3s linear infinite;
}
@keyframes animateWave {
   0%
   {
      background-position-x: 1000px;
   }
   100%
   {
      background-position-x: 0;
   }
}
@keyframes animateWave_2 {
   0%
   {
      background-position-x: 0;
   }
   100%
   {
      background-position-x: 1000px;
   }
}
.teachers
{
   width: 100%;
   padding: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 50px;
   margin-top: 30px;
}
.teachers h1
{
   color: rgb(80, 80, 80);
   text-shadow: 0 0 2px rgb(80, 80, 80),0 0 2px rgb(80, 80, 80),0 0 2px rgb(80, 80, 80),0 0 2px rgb(80, 80, 80);
   letter-spacing: 1px;
   font-size: 38px;
   font-weight: bold;
   user-select: none;
   text-transform: capitalize;
   text-align: center;
}
.teachers-col
{
   width: 1430px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 50px;
   flex-wrap: wrap;
   margin-bottom: 50px;
}
.teachers-detail
{
   width: 290px;
   height: 340px;
   background-color: rgba(0, 0, 0, 0.10);
   cursor: default;
   transition: all 0.3s ease-in-out;
   border: 4px solid rgba(0, 0, 0, 0.03);
   border-radius: 30px;
   display: flex;
   align-items: end;
   justify-content: center;
   position: relative;
   padding: 15px 0;
}
.teachers-detail:hover
{
   transform: translateY(-8px);
   box-shadow: 0 8px 10px -3px rgba(0, 0, 0, 0.4);
}
.teachers-detail:hover img
{
   border-radius: 30px;
   top: -6.5%;
   box-shadow: 0 3px 5px 1px #707375;
   scale: 1.25;
   border: 3px solid rgba(0, 0, 0, 0.08);
}
.teachers-detail:hover .teachers-txt h3
{
   top: 39.5%;
}
.teachers-detail img
{
   height: 120px;
   width: 120px;
   object-fit: cover;
   border-radius: 60px;
   position: absolute;
   top: 3%;
   transition: all 0.25s ease-in-out;
   border: 3px solid transparent;
   background: #ebebeb;
}
.teachers-txt
{
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}
.teachers-txt h3
{
   position: absolute;
   top: 45%;
   transition: all 0.25s ease-in-out;
   text-shadow: 0 0 2px black;
   text-transform: capitalize;
}
.jobs p
{
   padding: 0;
   margin: 0;
   font-size: 16px;
   padding: 8px;
   width: 230px;
   border-top: 1px solid rgba(0, 0, 0, 0.2);
   text-transform: capitalize;
   color: rgba(0, 0, 0, 0.7);
}
.jobs p:nth-last-child(1)
{
   border-bottom: 1px solid rgba(0, 0, 0, 0.2);
   padding-bottom: 8px;
   margin-bottom: 4px;
}
@media (max-width: 1430px)
{
   .teachers-col
   {
      width: 100%;
      gap: 20px;
   }
}
@media (max-width: 1180px)
{
   footer .menu
   {
      gap: 12px;
   }
   footer .menu span
   {
      gap: 12px;
   }
   footer .menu span a
   {
      font-size: 1.4em;
   }
   footer
   {
      padding: 20px 15px;
   }
   footer .bist
   {
      font-size: 1em;
   }
}
@media (max-width:570px)
{
   footer .menu
   {
      gap: 10px;
      flex-direction: column;
      margin-right: 15px;
   }
   footer .menu span
   {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 20px;
   }
   footer .menu span:nth-child(2)
   {
      gap: 45px;
      margin-right: 10px;
   }
   footer .menu span a
   {
      font-size: 1.3em;
   }
}