* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Roboto";
  src: url(../others/fonts/Roboto/RobotoSerif-Light.ttf);
  font-weight: light;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(../others/fonts/Roboto/RobotoSerif-LightItalic.ttf);
  font-weight: light;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url(../others/fonts/Roboto/RobotoSerif-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(../others/fonts/Roboto/RobotoSerif-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Roboto", sans-serif !important;
}

:root {
  --mainColor: #f9b034;
  --secondColor: #347df9;
  --thirdColor: #EEEEEE;
  --blackColor: #000;
  --whiteColor: #fff;
}

.mainColor {
  color: var(--mainColor);
}

.bg-mainColor {
  background-color: var(--mainColor);
}

.secondColor {
  color: var(--secondColor);
}

.bg-secondColor {
  background-color: var(--secondColor);
}

.secondColorBorder {
  border-color: var(--secondColor) !important;
}

.blackColor {
  color: var(--blackColor);
}

.bg-blackColor {
  background-color: var(--blackColor);
}

.whiteColor {
  color: #fff;
}

/* scrollbar styles START */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--mainColor);
}

::-webkit-scrollbar-thumb {
  background: var(--secondColor);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--thirdColor);
}

/* scrollbar styles END */
/* selection styles START */
/* Code for Firefox */
::-moz-selection {
  color: var(--fourthlyColor);
  background: var(--mainColor);
}

::selection {
  color: var(--fourthlyColor);
  background: var(--mainColor);
}

/* header Start */
.showUl {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header {
  box-shadow: 1px 0 8px 10px rgba(0, 0, 0, 0.08);
  background-color: var(--secondColor);
  right: 0;
  z-index: 400;
}
header ul {
  text-decoration: none;
  margin: 0;
  padding-right: 0.5rem;
}
header ul li {
  padding: 0.3rem 0.3rem;
  display: inline;
}
header ul li a {
  text-decoration: none;
  padding: 1rem 0.6rem;
  padding-top: 0.6rem;
  font-size: 1.1rem !important;
  color: var(--whiteColor);
  position: relative;
  cursor: pointer;
}
header ul li a::after {
  content: "";
  width: 100%;
  height: 0px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  bottom: 5px;
  transition: 0.1s;
  border-radius: 3px;
}
header ul li a:hover {
  color: var(--fourthlyColor);
}
header ul li a:hover::after {
  transition: 0.1s;
  height: 3px;
  box-shadow: 0 3px 13px 3px rgba(0, 0, 0, 0.2);
}
header ul li.liOfUlOfBooks, header ul li.knowUs {
  position: relative;
}
header ul li.liOfUlOfBooks:hover ul, header ul li.knowUs:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: 0.3s;
}
header ul li.liOfUlOfBooks ul, header ul li.knowUs ul {
  position: absolute;
  display: block;
  width: 100%;
  top: 42px;
  left: 0;
  padding: 0.5rem;
  border-radius: 3px;
  background-color: var(--secondColor);
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
header ul li.liOfUlOfBooks ul li, header ul li.knowUs ul li {
  display: block;
  padding: 0;
  text-align: center;
  padding: 0.3rem 0;
  cursor: pointer;
}
header ul li.liOfUlOfBooks ul li a, header ul li.knowUs ul li a {
  margin: auto;
  padding: 0.3rem 0;
  font-size: 0.9rem !important;
  color: var(--whiteColor);
}
header ul li.liOfUlOfBooks ul li a::after, header ul li.knowUs ul li a::after {
  bottom: 0;
}
header ul li.knowUs {
  padding: 0.5rem 2rem;
}
header ul li.knowUs .ulOfAboutUs li {
  display: flex;
  justify-content: space-between;
}
header ul li.knowUs .ulOfAboutUs li a {
  margin: 0;
}
header .parentOf3Divs {
  display: none;
}

@media only screen and (max-width: 991px) {
  header ul {
    display: none;
    overflow-y: auto;
  }
  header ul.lessThen768px {
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    left: 0;
    top: 0px;
    right: 0;
    bottom: auto;
    direction: rtl;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
  }
  header ul.lessThen768px li {
    font-weight: 500;
    margin: 1.2rem 0;
    font-size: 1.5rem;
  }
  header ul li.liOfUlOfBooks, header ul li.knowUs {
    position: static;
  }
  header ul li.liOfUlOfBooks ul, header ul li.knowUs ul {
    position: static;
    display: none;
    padding: 0.5rem;
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  header ul li.liOfUlOfBooks ul li, header ul li.knowUs ul li {
    display: block;
    padding: 0;
    padding: 0.3rem 0;
  }
  header ul li.liOfUlOfBooks ul li a, header ul li.knowUs ul li a {
    margin: auto;
    padding: 0.3rem 0;
  }
  header ul li.liOfUlOfBooks ul li a::after, header ul li.knowUs ul li a::after {
    bottom: 0;
  }
  header .parentOf3Divs {
    cursor: pointer;
    padding: 1rem;
    display: inline;
    position: relative;
    z-index: 300;
  }
  header .parentOf3Divs:active {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 50%;
  }
  header .parentOf3Divs .my3divs {
    height: 5px;
    width: 35px;
    background-color: var(--whiteColor);
    display: block;
    position: relative;
    border-radius: 3px;
    margin-bottom: 5px;
  }
}
/* header End */
/* main Start */
main .sec1 {
  height: 100vh;
  width: 100%;
  background: linear-gradient(45deg, var(--secondColor), var(--mainColor));
  z-index: 0;
  overflow: hidden;
  position: relative;
}
main .sec1 .myvideo {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  main .sec1 .myvideo {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
  }
}
main .sec1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
main .sec1 section {
  height: 100vh;
  padding-top: 75px;
  color: white;
}
main .sec2 aside {
  position: relative;
}
main .sec2 aside::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 13px;
  border: 15px solid var(--mainColor);
  border-bottom: 17px solid transparent;
  border-top-width: 20px;
}
main .sec2 aside div {
  height: 100%;
  color: white;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.2);
}
main .sec3 {
  position: relative;
  background: linear-gradient(45deg, var(--secondColor), var(--mainColor));
  z-index: 0;
}
main .sec3 .featuredStudents {
  height: 45vh;
}
@media only screen and (max-width: 600px) {
  main .sec3 .featuredStudents {
    height: 30vh;
  }
}
@media only screen and (min-width: 1500px) {
  main .sec3 .featuredStudents {
    height: 30vh;
  }
}
@media only screen and (min-width: 2000px) {
  main .sec3 .featuredStudents {
    height: 20vh;
  }
}
main .sec3 .featuredStudents .featuredStudent {
  height: 100%;
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: rgba(211, 211, 211, 0.9019607843);
  transition: all 1s ease-in-out, z-index 500ms ease-in-out;
  color: #000 !important;
  border-radius: 6px;
}
@media only screen and (max-width: 500px) {
  main .sec3 .featuredStudents .featuredStudent h6 {
    font-size: 0.9rem !important;
  }
}
main .sec3 .featuredStudents .featuredStudent1 {
  left: 10%;
  transform: translate(-10%, -50%) scale(0.6);
  z-index: 2;
}
main .sec3 .featuredStudents .featuredStudent2 {
  left: 25%;
  transform: translate(-25%, -50%) scale(0.8);
  z-index: 10;
}
main .sec3 .featuredStudents .featuredStudent3 {
  z-index: 20;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 1s ease-in-out, z-index 100ms linear;
}
main .sec3 .featuredStudents .featuredStudent4 {
  left: 75%;
  transform: translate(-75%, -50%) scale(0.8);
  z-index: 10;
}
main .sec3 .featuredStudents .featuredStudent5 {
  left: 90%;
  transform: translate(-90%, -50%) scale(0.6);
  z-index: 2;
}
main .sec3 .featuredStudents .featuredStudent6,
main .sec3 .featuredStudents .featuredStudent7,
main .sec3 .featuredStudents .featuredStudent8,
main .sec3 .featuredStudents .featuredStudent9,
main .sec3 .featuredStudents .featuredStudent10 {
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  z-index: 0;
  opacity: 0;
}
main .sec3 .featuredStudentsN {
  height: 45vh;
}
@media only screen and (max-width: 600px) {
  main .sec3 .featuredStudentsN {
    height: 30vh;
  }
}
@media only screen and (min-width: 1500px) {
  main .sec3 .featuredStudentsN {
    height: 30vh;
  }
}
@media only screen and (min-width: 2000px) {
  main .sec3 .featuredStudentsN {
    height: 20vh;
  }
}
main .sec3 .featuredStudentsN .featuredStudentN {
  height: 100%;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: rgba(211, 211, 211, 0.9019607843);
  transition: all 1s ease-in-out, z-index 500ms ease-in-out;
  border-radius: 6px;
}
main .sec3 .featuredStudentsN .featuredStudent21 {
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 5;
}
main .sec3 .featuredStudentsN .featuredStudent22 {
  left: 20%;
  transform: translate(-20%, -50%) scale(0.8);
  z-index: 10;
}
main .sec3 .featuredStudentsN .featuredStudent23 {
  z-index: 20;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 1s ease-in-out, z-index 100ms linear;
}
main .sec3 .featuredStudentsN .featuredStudent24 {
  left: 80%;
  transform: translate(-80%, -50%) scale(0.8);
  z-index: 10;
}
main .sec3 .featuredStudentsN .featuredStudent25 {
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 0;
}
main .sec3 .parentOfArrow {
  z-index: 10;
}
main .sec3 .parentOfArrow .my-arrow {
  background-color: var(--mainColor);
  border-radius: 50%;
}
main .sec5 article aside {
  padding: 0 !important;
}

footer {
  box-shadow: -1px 0 20px 10px rgba(0, 0, 0, 0.08);
}

.w-fit-content {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.h-fit-content {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.arb {
  font-family: sans-serif !important;
  color: var(--whiteColor) !important;
  border-bottom: 1px solid #fff;
}
.arb:hover {
  border-bottom: none;
}

.theAfter {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.theAfter::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 3px;
}

.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-in;
}
.fade-in.appear {
  opacity: 1;
}

.scale-in {
  transform: scale(0.1);
  transition: transform 200ms ease-in;
}
.scale-in.appear {
  transform: scale(1);
}

.textToShow {
  display: none;
}

.showText .textToShow {
  display: inline;
}

.pointer {
  cursor: pointer;
}

@-webkit-keyframes rotat {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes rotat {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}/*# sourceMappingURL=style.css.map */