/* fonts  */
@font-face {
  font-family: "Raleway-regular";
  src: url(../fonts/Raleway-Regular.ttf);
}
@font-face {
  font-family: "Raleway-medium";
  src: url(../fonts/Raleway-Medium.ttf);
}
@font-face {
  font-family: "Raleway-bold";
  src: url(../fonts/Raleway-Bold.ttf);
}
@font-face {
  font-family: "Raleway-extrabold";
  src: url(../fonts/Raleway-ExtraBold.ttf);
}
@font-face {
  font-family: "Raleway-semibold";
  src: url(../fonts/Raleway-SemiBold.ttf);
}
@font-face {
  font-family: "Raleway-black";
  src: url(../fonts/Raleway-Black.ttf);
}

html {
  scroll-behavior: smooth;
}

/* colors  */

:root {
  --primary: #eebf00;
  --secondary: #232b38;
  --ternary: #6c6c6c;
  --danger: #fe4545;
  --pure: #fefefe;
  --light: #f0f0f0;
  --heaven: #ffffff;
  --footer: #2d333f;
}

/* CSS Reset  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "Raleway-regular";
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

  /* @media (max-width:576px){
      .container{
          min-width:576px;
      }
  }
  
  
  @media (max-width: 768px) {
      .container {
        min-width: 768px;
      }
    }
    
    @media (min-width: 1087px) {
      .container {
        max-width: 1200px;
      }
    }
    
    @media (min-width: 1200px) {
      .container {
        max-width: 1240px;
      }
    } */
    /* @media (max-width: 1640px) {
      section#about p {
        display: block;
      }
    } */
/* ------------------------------------------------------------------------------------  */
.main-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.nav-background {
  width: 100%;
  height: 100vh;
  background: var(--pure);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 1;
}

.nav-trigger {
  position: absolute;
  top: 2rem;
  left: -1rem;
  z-index: 1;
  padding: 1rem;
  display: none;
}

.nav-trigger svg {
  transform: rotate(90deg) scaleX(-1);
  width: 40px;
  height: 40px;
}

.site-content-wrapper {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: var(--heaven);
  z-index: 2;
  transition: all 0.3s ease;
}

.site-content-wrapper.scaled {
  transform: scale(0.9) translateX(90%);
  border-radius: 3px;
  box-shadow: 0 3px 10px 0 var(--secondary);
}

.site-content {
  width: 100%;
  height: 100vh;
  overflow-x: auto;
}

header.topbar {
  background: var(--secondary);
  color: var(--pure);
  font-family: "Raleway-semibold";
  padding: 0.75rem 0;
}

header.topbar .auth > div a {
  color: var(--pure);
  text-decoration: none;
}
header.topbar .icons a {
  margin-right: 0.6rem;
}
header.topbar .auth .divider {
  padding: 0 1rem;
}
header.topbar .auth div img {
  margin-right: 0.35rem;
}

/* Utility Class  ----------------------------------------------------------------------------------------------------------*/
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.justify-centre {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
hr {
  color: var(--ternary);
}

/* Utility Class ^^^^------------------------------------------------------------------------------------------------------- */

/* -------  Top-Bar  ----------------------------------------------------------------------------------------------------------  */

header.topbar {
  background: var(--secondary);
  color: var(--pure);
  font-family: "Raleway-semibold";
  padding: 0.75rem 0;
}

header.topbar .auth > div a {
  color: var(--pure);
  text-decoration: none;
}
header.topbar .icons a {
  margin-right: 0.6rem;
}
header.topbar .auth .divider {
  padding: 0 1rem;
}
header.topbar .auth div img {
  margin-right: 0.35rem;
}

/* ------ School Logo ------------------------------------------------------------------------------------------ */

nav .top {
  padding: 1rem 0;
}

nav .top .branding h1 {
  font-family: "Raleway-medium";
  letter-spacing: 0.055rem;
  font-size: 1.75rem;
}

nav .top .branding h2 {
  font-family: "Raleway-medium";
  letter-spacing: 0.055rem;
  font-size: 1.25rem;
}

nav .top .contact h4 {
  font-family: "Raleway-black";
  margin-bottom: 0.25rem;
}
nav .top .contact h5 {
  font-family: "Raleway-medium";
  letter-spacing: 0.055rem;
  font-size: 0.75rem;
  color: var(--ternary);
}
nav .top .email h4 {
  font-family: "Raleway-black";
  margin-bottom: 0.25rem;
}
nav .top .email h5 {
  font-family: "Raleway-medium";
  letter-spacing: 0.055rem;
  font-size: 0.75rem;
  color: var(--ternary);
  cursor: pointer;
}

nav .top .timing h4 {
  font-family: "Raleway-black";
  margin-bottom: 0.25rem;
}
nav .top .timing h5 {
  font-family: "Raleway-medium";
  letter-spacing: 0.055rem;
  font-size: 0.75rem;
  color: var(--ternary);
}

nav .top .branding img {
  height: 135px;
  width: 100px;
  /* margin-left: 44px; */
  color: black;
  margin-top: -30px;
}

nav .top .branding div {
  margin-top: 84px;
  margin-right: 10px;
  margin-left: -85px;
  font-family: "Raleway-Bold";
}

nav .top .contact img,
nav .top .email img,
nav .top .timing img {
  margin-right: 1rem;
}

/*------  Navbar  --------------------------------------------------------------------------------------------------------*/

nav .navbar a {
  text-decoration: none;
  color: var(--secondary);
  font-family: "Raleway-SemiBold";
  font-size: 1rem;
  padding: 1rem 3.5rem;
  transition: all 0.3s ease;
}

nav .navbar a.active {
  background: var(--primary);
  color: var(--pure);
}

nav .navbar a:hover {
  background: var(--primary);
  color: var(--pure);
}

.magic-shadow {
  position: relative;
  background-color: var(--heaven);
}

.magic-shadow:after {
  content: "";
  display: block;
  width: 100%;
  height: 66px;
  background-image: url(../icons/shadow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -22px;
  z-index: -1;
}

/* .magic-shadow::before{
      position: fixed;
  } */

/*-----  Dropdown  --------------------------------------------------------------------------------------------------------*/

/* The Dropdown Container  */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown Button  */
.dropdown .dropbtn {
  color: var(--secondary);
  font-family: "Raleway-SemiBold";
  font-size: 1rem;
  padding: 1rem 3.5rem;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  background-color: inherit;
  margin: 0;
}

/* Yellow background to the Dropdown menu to hover  */
nav .navbar a:hover,
.dropdown:hover .dropbtn {
  background: var(--primary);
  color: var(--pure);
}

/* Dropdown Content  */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the School(Navbar)  */
.dropdown-content a {
  float: none;
  color: var(--pure);
  padding: 1rem 3.5rem;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a Yellow background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: var(--primary);
  color: var(--pure);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/*-----------  Horizontal Marque  ------------------------------------------------------------------------------------------------------*/

nav .moving {
  text-decoration: none;
  /* background: var(--pure); */
  color: var(--danger);
  font-family: "Raleway-SemiBold";
  font-size: 1rem;
  padding: 5px 0;
}

nav .moving span {
  padding: 0 20px;
}

/* --------  "Home"-Section  ---------------------------------------------------------------------------------------------- */

#home {
  width: 100%;
  height: 330px;
  color: white;
  font-size: 2.5rem;
  /* text-align: center; */
  padding: 4rem;
  /* background-color: rgb(36 29 31 / 22%); */
}

#home .container1 {
  display: flex;
}
main {
  height: 330px;
  width: 100% !important;
  margin: -4rem auto;
  margin-left: -64px;
  /* background-color: aqua; */
}

/* Slideshow container */
main .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
main .mySlides {
  display: none;
}

main .mySlides img {
  width: 100% !important;
  height: 330px;
}

/* Fading animation */
main .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 3.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Vertical Moving Marquee  */

aside {
  background-color: var(--ternary);
  background-image: url(/img/Acmt-logo.png);
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: 100%;
  justify-content: center;
  text-align: center;
  width: 50%;
  height: 330px;
  margin-top: -64px;
  margin-right: -64px;
}

aside h2 {
  font-family: "Raleway-extrabold";
  font-size: 2rem;
  color: var(--secondary);
}

aside marquee {
  height: 275px;
  width: 278px;
  font-family: "Raleway-Bold";
  font-size: 1.2rem;
  color: rgb(3 21 86);
  text-decoration: none;
}

aside marquee a {
  text-decoration: none;
  color: #04034b;
}

aside marquee a li {
  line-height-step: 30px;
  background: #eebf00;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
}

aside marquee a li:hover{
  background-color: #fff;
  transition: 0.4s;
}

/*------  About Us Section  ------------------------------------------------------------------------------------------------*/

section#about {
  height: auto;
  background-color: rgba(36, 29, 31, 0.103);
  /* background-image: url(/img/img3.JPG); */
  /* background-position: 0% 0%; */
  /* background-repeat: no-repeat; */
  overflow: hidden;
  padding-bottom: 1rem;
}

section#about img {
  width: 321px;
  margin-top: 36px;
  border-radius: 10px;
}

section#about h1 {
  font-family: "Raleway-bold";
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.3rem;
  margin-top: 1rem;
  text-align: center;
  padding: 15px;
  line-height: 38px;
}

section#about p {
  text-align: center;
  margin-left: 1rem;
  margin-top: 3rem;
  line-height: 23px;
}

/* Teacher Speech  */

section.teacher {
  /* background-color: burlywood; */
  position: relative;
  z-index: 0;
  margin-top: 0;
  margin-bottom: 0;
}

section.teacher h1 {
  font-family: "Raleway-bold";
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.3rem;
  margin-top: 1rem;
  text-align: center;
  padding: 15px;
}

section.teacher .article-wrapper {
  display: flex;
  margin: 1rem;
}

.teacher .article-wrapper .card {
  width: 30%;
  float: left;
  margin: 13px 19px;
  padding: 7px;
  border-radius: 25px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}

.teacher .article-wrapper .card {
  width: 99%;
  border-radius: 35px;
  margin-bottom: 3px;
}

.teacher .article-wrapper .card img {
  width: 99%;
  border-radius: 35px;
  margin-bottom: 3px;
}

.teacher .article-wrapper .card h4 {
  margin-bottom: 10px;
  color: var(--danger);
}

.teacher .article-wrapper .card p {
  font-size: 15px;
  line-height: 28px;
  height: 90px;
  overflow: hidden;
}

.teacher .article-wrapper .card a {
  display: inline-block;
  color: #fff;
  background-color: #2196f3;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 15px;
  padding: 5px 6px;
  margin-left: 0.5rem;
}

.teacher .article-wrapper .card a:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.teacher .article-wrapper .card.showContent p {
  height: auto;
}

.teacher .article-wrapper .card.showContent a {
  background-color: red;
}

/*---------------  Contact-Us Section  -------------------------------------------------------------------------------------------------*/

section#contact-us {
  float: left;
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fefefeed;
  width: 100%;
}

section#contact-us .contact-info-wrapper {
  padding: 4rem 0;
  flex: 1;
  height: 24rem;
  width: 61rem;
}
section#contact-us .contact-info-wrapper h1 {
  /* margin-left: 214px; */
  text-align: center;
  margin-top: -50px;
  font-size: 2.5rem;
  font-family: "Raleway-Bold";
}
section#contact-us .map {
  flex: 1;
}

section#contact-us .contact-info {
  display: flex;
  justify-content: center;
}

section#contact-us .contact-info > div > div {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 22px;
}

section#contact-us .contact-info > div > div img {
  margin-right: 1rem;
}

section#contact-us .contact-info > div > div > div {
  display: flex;
  flex-direction: column;
}

section#contact-us .contact-info > div > div > div span:first-child {
  font-family: "raleway-bold";
  margin-bottom: 0.25rem;
}

/* --------------  Footer -----------------------------------------------------------------------------------------------  */

footer {
  background-color: var(--footer);
  padding: 4rem 0;
  /* height: 1rem; */
}
footer .container {
  display: flex;
  color: var(--pure);
}

footer .box {
  flex: 1;
  margin-right: 2rem;
  text-align: center;
}

footer .instagram-api img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .instagram-api .post-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .instagram-api .post-wrap > div {
  width: calc(1 / 3 * 100% - (1 - 1 / 3) * 10px);
  margin-bottom: 10px;
}

footer .box ul {
  list-style-type: none;
  text-align: center;
}

footer .box ul li a {
  color: var(--pure);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .box ul li a:hover {
  color: var(--primary);
}

footer .box h3 {
  border-bottom: 1px solid var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
  /* margin: 1rem 0; */
}

footer .box p {
  font-size: 15px;
  line-height: 28px;
  height: 250px;
  overflow: hidden;
}

footer .box a {
  display: inline-block;
  color: var(--primary);
  /* background-color: #2196f3; */
  text-decoration: none;
  border-radius: 10px;
  margin-top: 5px;
  padding: 5px 6px;
  /* margin-left: 0.5rem */
}

footer .box a:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

footer .box.showContent p {
  height: auto;
}

footer .box.showContent a {
  background-color: var(--footer);
}

footer .box ul li {
  margin-bottom: 1rem;
}

footer .box:nth-child(3) > div {
  display: flex;
  justify-content: center;
}

footer .box:nth-child(3) {
  text-align: left;
}

footer .box:nth-child(3) h3 {
  text-align: center;
}

footer .box:nth-child(3) > div img {
  margin-right: 1rem;
}
footer .box:nth-child(3) ul li {
  margin-bottom: 1.5rem;
}

footer.copyright {
  padding: 1rem 0;
  background-color: var(--secondary);
  color: var(--pure);
  text-align: center;
  font-size: 1rem;
}

footer.copyright a {
  color: var(--primary);
  text-decoration: none;
}

/* .nav-background .mobile-logo {
  padding: 1rem;
} */

.nav-background .mobile-nav {
  /* padding: 1rem; */
  padding-left: 1rem;
}

.nav-background .mobile-nav ul {
  list-style-type: none;
}

.nav-background .mobile-nav ul li {
  margin-bottom: 1rem;
}

.nav-background .mobile-nav ul li a {
  text-decoration: none;
  color: var(--secondary);
  font-family: "Raleway-medium";
}

.nav-background .mobile-nav ul li a:hover {
  color: var(--primary);
}

.nav-background .contact,
.nav-background .email,
.nav-background .time {
  padding: 1rem;
  padding-right: 1rem;
}

.nav-background .contact img,
.nav-background .email img,
.nav-background .time img {
  margin-right: 1rem;
  width: 2rem;
  height: 2rem;
}

.nav-background .contact h5,
.nav-background .email h5,
.nav-background .time h5 {
  font-family: "Raleway-bold";
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.nav-background .contact h6,
.nav-background .email h6,
.nav-background .time h6 {
  font-size: 0.75rem;
}

/* .nav-background .cart {
  margin-bottom: 2rem;
} */

.nav-background .cart a {
  color: var(--secondary);
  text-decoration: none;
  font-family: "Raleway-bold";
}

.nav-background .cart img {
  margin-right: 0.75rem;
  width: 20px;
  height: 20px;
}

/* --  Gallery  -------------------------------------------------------------------------------------------------------------  */

.gallery {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.gallery h2 {
  /* text-align: center; */
  font-size: 2.5rem;
  font-family: "Raleway-bold";
}

/* .gallery .images{
    margin: 16px 182px;
  } */
.images img {
  transition: 1s;
  padding: 15px;
  width: 51vh;
  height: 51vh;
}

.images img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */





/* --------- Media Query ---------------------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 2068px) {
  main {
    width: fit-content;
  }
}

@media (max-width: 1087px) {
  .nav-background img {
    width: 6rem;
  }

  .nav-trigger {
    display: block;
  }
  .navbar {
    display: none;
  }

  .topbar {
    justify-content: space-between;
  }

  .top .container {
    display: flex;
    flex-direction: column;
    /* text-align: center; */
    width: max-content;
  }

  .branding {
    text-align: center;
    padding: 5px 5px;
    width: max-content;
    margin-left: 48px;
  }

  .branding span {
    margin-right: 9px;
  }

  .doc {
    width: max-content;
  }
}

@media (max-width: 1024px) {
  .container {
    min-width: fit-content;
  }

  aside {
    background-size: 165%;
  }

  aside marquee {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  footer.copyright div {
    width: auto;
  }

  .about-school-wrap {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: auto;
  }
  section#about img {
    /* width: 98vw; */
    margin-left: -0.65rem;
  }
  section#about p {
    display: flex;
    margin-left: 1rem;
    text-align: center;
    justify-content: center;
  }

  section.teacher .article-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: -1rem;
    /* margin: 6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center; */
  }
}

/* --------------------------------------------------------------------------------------------------------------------------  */
@media (max-width: 900px) {
  #contact-us {
    display: flex;
    flex-direction: column;
    width: 100vw;
  }

  .contact-info-wrapper h1 {
    width: 100vw;
  }

  section#contact-us .contact-info {
    width: 100vw;
  }

  .map {
    height: 30rem;
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
@media (max-width: 680px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem !important;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 49% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 38rem;
    margin-left: -8px;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ============================================================================================= */
@media (max-width: 670px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 42rem !important;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 48% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 38rem;
    margin-left: -14px;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ====================================================================================================== */
@media (max-width: 660px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 42rem !important;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 38rem;
    margin-left: -21px;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* =================================================================================================== */
@media (max-width: 650px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 100vw !important;
  }
  .container1 aside {
    display: block;
    width: 56rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 46% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 37rem;
    margin-left: -1.8rem;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
@media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  /* .container1 main {
    width: 43rem;
  } */
  .container1 aside {
    display: block;
    width: 56rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 37rem;
    margin-left: -2.2rem;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
@media (max-width: 630px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .branding {
    margin-left: -1rem;
  }

  .doc .contact,
  .doc .email {
    margin-left: 1rem;
    margin-bottom: 3rem;
  }

  .doc .timing {
    margin-top: 4rem;
    margin-left: -19rem;
  }

  /* .container1 main {
    width: 43rem;
  } */
  .container1 aside {
    display: block;
    width: 56rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 44% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 37rem;
    margin-left: -2.5rem;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
@media (max-width: 620px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }
  /* 
  .container1 main {
    width: 43rem;
  } */
  .container1 aside {
    display: block;
    width: 56rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 43% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 37rem;
    margin-left: -3.1rem;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
@media (max-width: 610px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  /* .container1 main {
    width: 43rem;
  } */
  .container1 aside {
    display: block;
    width: 56rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 41% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 37rem;
    margin-left: -4.1rem;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
@media (max-width: 600px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }
  /* 
  .container1 main {
    width: 43rem;
  } */
  .container1 aside {
    display: block;
    width: 51rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee {
    text-align: center;
    width: 100vw;
    margin: 0 1rem;
  }

  aside marquee ul {
    list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }



  footer .container{
    display: flex;
    flex-direction: column;
  }

}
/* ======================================================================================================== */
@media (max-width: 528px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 47rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
@media (max-width: 502px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 46rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
@media (max-width: 485px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 45rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
@media (max-width: 475px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 44rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
@media (max-width: 465px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 44rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
@media (max-width: 455px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 42rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
@media (max-width: 445px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 41rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
@media (max-width: 435px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 40rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 47% 48%;
    background-repeat: no-repeat;
    background-size: 76%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 100vw;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
/* @media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 40rem;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}
/* ======================================================================================================== */
/* @media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 40rem;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
}  */
/* ======================================================================================================== */
/* @media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 40rem;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
} */
/* ======================================================================================================== */
/* @media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 40rem;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
} */
/* ======================================================================================================== */
/* @media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 40rem;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
} */
/* ======================================================================================================== */
/* @media (max-width: 640px) {
  .container1 {
    display: flex;
    flex-direction: column;
  }

  .container1 main {
    width: 43rem;
  }
  .container1 aside {
    display: block;
    width: 57rem;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }

  aside marquee{
      text-align: center;
      width: 40rem;
  }

  aside marquee ul{
      list-style-type: none;
  }

  #about {
    margin-top: 21rem;
  }
} */

@media (max-width: 426px){
  .container1 aside {
    display: block;
    width: 158.7vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 415px){
  .container1 aside {
    display: block;
    width: 160vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 412px){
  .container1 aside {
    display: block;
    width: 160.5vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 376px){
  .container1 aside {
    display: block;
    width: 166vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 366px){
  .container1 aside {
    display: block;
    width: 168vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 356px){
  .container1 aside {
    display: block;
    width: 170vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 346px){
  .container1 aside {
    display: block;
    width: 172vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 336px){
  .container1 aside {
    display: block;
    width: 174vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 326px){
  .container1 aside {
    display: block;
    width: 176vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 316px){
  .container1 aside {
    display: block;
    width: 178vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 310px){
  .container1 aside {
    display: block;
    width: 178vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 80%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
/* @media (max-width: 316px){
  .container1 aside {
    display: block;
    width: 178vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 316px){
  .container1 aside {
    display: block;
    width: 178vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

}
@media (max-width: 316px){
  .container1 aside {
    display: block;
    width: 178vw;
    height: 21rem;
    margin-top: 4rem;
    margin-left: -11rem;
    background-position: 45% 43%;
    background-repeat: no-repeat;
    background-size: 61%;
    justify-content: center;
    text-align: center;
  }
  aside marquee{
    text-align: center;
    width: 100vw;
}
aside marquee ul{
  list-style-type: none;
}

} */


/* -------------------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 530px) {
  .topbar {
    display: none;
  }

  .nav-trigger {
    position: absolute;
    top: 0rem;
    left: -1rem;
    z-index: 1;
    padding: 1rem;
  }

  .container1 main {
    width: 100vw;
  }

  #about {
    width: 100vw;
  }

  .teacher {
    width: 100vw;
  }
}

@media (max-width: 495px) {
  .topbar {
    display: block;
    height: 3rem;
  }

  .topbar .container {
    display: none;
  }

  .nav-trigger svg {
    margin-top: -1rem;
    color: var(--heaven);
  }

  nav {
    width: 100vw;
  }
}

@media (max-width: 440px) {
  nav .top .branding img {
    height: 135px;
    margin-top: -30px;
  }
  /* nav .top .branding div {
    margin-right: 1px;
    margin-top: 84px;
    margin-left: -93px;
    font-family: "Raleway-Bold";
  } */

  nav .top .branding.school_name{
    margin-left: -26px;
  }

  nav .top .branding h1 {
    font-family: "Raleway-medium";
    letter-spacing: 0.045rem;
    font-size: 1.5rem;
  }
  nav .top .branding h2 {
    font-family: "Raleway-medium";
    letter-spacing: 0.045rem;
    font-size: 1.1rem;
  }

  nav .top .branding{
    width: 100vw;
  }

  .doc{
    display: flex;
    flex-direction: column;
    /* text-align: center; */
    justify-content: center;
  }

  .doc .contact, .doc .email, .doc .timing{
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.doc .contact{
  margin-top: 1rem;
}
.doc .timing {
  margin-top: 0rem;
}
}
