body { padding-top: 56px; }
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-hero { background-color: white; }

/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom:.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }


/* footer */
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "system-ui";
}
.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: #11101d;
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.close{
  width: 78px;
}
.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details i{
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  padding-top: 40px;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: #1d1b31;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #1d1b31;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 12px;
}
.home-section{
  position: relative;
  background: white;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.sidebar.close ~ .home-section{
  left: 78px;
  width: calc(100% - 78px);
}
.home-section .home-content{
  height: 60px;
  display: flex;
  align-items: center;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text{
  color: #11101d;
  font-size: 35px;
}
.home-section .home-content .bx-menu{
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 400px) {
  .sidebar.close .nav-links li .sub-menu{
    display: none;
  }
  .sidebar{
    width: 78px;
  }
  .sidebar.close{
    width: 0;
  }
  .home-section{
    left: 78px;
    width: calc(100% - 78px);
    z-index: 100;
  }
  .sidebar.close ~ .home-section{
    width: 100%;
    left: 0;
  }
}
.logo-details img{
  margin-left: -25px;
  margin-top: 50px;
  margin-bottom: ;
  width: 125px;
  height: 100px;
}
.fa-tiktok{
  font-size: 2em;
}




/*--Sibebar--*/
  .Title{
   font-family: system-ui;
   font-size: 25px;
   font-weight: 100;
   color: rgba(0, 0, 0, .75);
   text-decoration: none;
  
}
.Title:hover{
 color: #E22828;
 
 transition: 2s;
  }
.Social-Icons {
   color: rgba(0, 0, 0, .75);
   right: 0;   
   top: 0;
   position: relative;
   margin-left: 1.2857vw;
   left: 36vw;
   top: 5px;
} 
.Social-Icons:hover{
 color: #E22828;
 transition: 2s;}
 .divider{ 
  margin-left: -122px; 
  width: 100vw; height: 5px; 
  background-color: #E22828; 
  display: inline-block;}



.container1{
  overflow: hidden;
  height: 300px;
  width: 625px;
  border-radius: 15px;
}
.container1 img{
  border-radius: 15px;
  height: 300px;
  width: 630px;
  transition: .3s ease-in-out;
} 
.container1 img:hover{
  transform: scale(1.2);
}
.Buttons{
  margin-top: 0px;
}
.Butt{
  border: 3px solid rgba(226, 40, 40, 1);
  background: none;
  padding: 10px 20px;
  font-size: 20px;
  font-family: system-ui;
  color: rgba(226, 40, 40, 1);
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
}
.Butt:hover{
  background: rgba(266, 40, 40, 0.40);
  transition: 1s
}

.Discover{
  display: flex;
  margin: 0px 0px 15px 0px;
  padding-left: 70px;
  font-family: ;
  padding-top: 50px;
}
.Footer{
  display: flex;
}
.Team{
  font-family: system-ui;
}
.Parts{
  padding-left: 75px;
  font-family: system-ui;
}
.Footer p{
  font-size: 17px;
  color: rgba(0, 0, 0, 0.75);
}
.Discover u{
  text-decoration-color: #E22828;
  color: black;
}

::-moz-selection {
  color: white;
  background: #E22828;
}

::selection {
  color: white;
  background: #E22828;
}
/*--Template--*/
.tablink {
  background-color: rgba(0, 0, 0, .75);
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 25%;
}

.tablink:hover {
  background-color: #777;
}


.tabcontent {
  color: rgba(0, 0, 0, .75);
  display: none;
  padding-left: 70px;
  height: 100%;
  padding-top: 75px;
  padding-right: 40px;
  font-family: system-ui;
  font-weight: normal;
  padding-bottom: 30px;
}
h3{
  font-size: 2.25em;
  font-weight: bold;
  color: black;
  padding-bottom: 10px;
}

#Math {background-color: white;}
#News {background-color: white;}
#Contact {background-color: white;}
#About {background-color: white;}


/*--Tabs--*/
.h1 h1{
  font-family: system-ui;
  font-weight: bold;
  padding-top: 50px;
  font-size: 3.5em;
}
.para1 p{
  font-family: system-ui;
  font-size: 1.25em;
  font-weight: normal;
  padding-right: 40px;
  color: rgba(0, 0, 0, .75);
  margin-bottom: 0px;
}
img{
  border-radius: 15px;
  margin-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
}
.para2 p{
  padding-top: 25px;
}
.three h3{
  padding-left: 70px;
  font-family: system-ui;
  font-size: 2em;
  font-weight: bold;
  padding-top: 50px;
}
.three p{
   padding-left: 70px;
  font-family: system-ui;
  font-size: 1em;
  font-weight: normal;
  padding-top: 25px;
  padding-right: 40px;
  color: rgba(0, 0, 0, .75);
}
hr.solid {
  border-top: 2px solid #bbb;
  margin: 30px 0px;
  border-radius: 20px;
  width: 1300px;
  position: center;
  }
.four h3{
  padding-left: 70px;
  font-family: system-ui;
  font-size: 2em;
  font-weight: bold;
  padding-top: 50px;
}
.four p{
   padding-left: 70px;
  font-family: system-ui;
  font-size: 1em;
  font-weight: normal;
  padding-top: 25px;
  padding-right: 40px;
  color: rgba(0, 0, 0, .75);
}
.ref h3{
  padding-left: 70px;
  font-family: system-ui;
  font-size: 2em;
  font-weight: bold;
  padding-top: 50px;
}
.ref p{
   
  font-family: system-ui;
  font-size: 1.25em;
  font-weight: normal;
  padding-top: 25px;
  padding-right: 40px;
  color: rgba(0, 0, 0, .75);
}
a{
  color: #E22828;
}

.indent{
  padding-left: 50px;
}
.equ1{
  text-align: center;
}
.dry{
  text-align: center;
}
.ref p{
  padding-bottom: 5px;
}

p{
  padding-bottom: 10px;
  font-family: system-ui;
  font-size: 1.25em;
  font-weight: normal;
  padding-top: 10px;
  padding-right: 40px;
  color: rgba(0, 0, 0, .75);
}
h2{
font-family: system-ui;
font-size: 1.75em;
font-weight: bold;
padding-top: 50px;
color: black;
padding-top: 10px;
}

.indent li{
  padding-bottom: 10px;
    font-family: system-ui;
    font-weight: normal;
    padding-top: 10px;
    padding-right: 40px;
    color: rgba(0, 0, 0, .75);
    font-size: 1.25em;
}
.Teamicon{
  color: rgba(0, 0, 0, .75);
}
.Teamicon2{
  font-size: 2em;
  color: rgba(0, 0, 0, .75);
}
.Teamicon2:hover{
  color:  red;
  transition: 1s;
}
.Teamicon:hover{
  color: red;
  transition: 1s;
}







/*--Table--*/
  table {
      border-collapse: collapse;
      border: 2px solid rgb(200,200,200);
      letter-spacing: 1px;
    }

    td, th {
      border: 2px solid rgb(190,190,190);
      padding: 10px 20px;
    }

    td {
      text-align: center;
    }

    caption {
      padding: 15px;
    }
    
/*--Slideshow--*/
.slideshow-container {
  max-width: 300px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 2.5em;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text1 {
  color: #f2f2f2;
  font-size: 1.25em;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 1.25em;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.clot img{
  width: 50px;
  animation: clot 21s linear infinite;
}
.clot{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  bottom: -70px;
  left: 0px;
}
@keyframes clot{
  0%{
    transform: translateY(0);
    opacity: 0;
  }
  50%{
    
    opacity: 1;
  }
   70%{
    
    opacity: 1;
  }
   100%{
    transform: translateY(-80vh);
    opacity: 0;
  }
}
.clot img:nth-child(1){
  animation-delay: 10.2s;
  width: 35px;
}
.clot img:nth-child(2){
  animation-delay: 3s;
}
.clot img:nth-child(3){
  animation-delay: 16s;
  width: 30px;
}
.clot img:nth-child(4){
  animation-delay: 5s;
}
.clot img:nth-child(5){
  animation-delay: 13.5s;
  width: 40px;
}
.clot img:nth-child(6){
  animation-delay: 9s;
  width: 55px;
}
.clot img:nth-child(7){
  animation-delay: 21s;
}
.exp p{
  padding-bottom: 25px;
  padding-top: 0px;
}
#parent{
  position: relative;
}

}
.front1{
  position: absolute;
  z-index: 30px;
}
.team7531 h2{
  font-size: 1.25em;
  margin: 0px;
}
.team7531 p{
  margin-left: 40px;
}
