@import "./variables.css";

/* Main */
#main {
  width: 100%;
  /* height: 100vh; */
  min-height: 100vh;
  display: flex;
  position: relative;
}

/* Sidebar */
.sidebar {
  width: 17rem;
  height: 100%;
  background: var(--light);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: 0.5s ease all;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 2;
  position: fixed;
  left: -30rem;
  opacity: 0;
}
.sidebar.active {
  left: 0rem;
  opacity: 1;
}
.sidebar .logo {
  width: 200px;
  margin: auto;
}
.sidebar nav {
  margin-top: 70px;
}
.sidebar nav li {
  margin-bottom: 20px;
  margin-left: 20px;
}
.sidebar nav li a {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  transition: 0.5s ease all;
}
.sidebar nav li.active a {
  color: var(--dark);
  border-left: 5px solid var(--primary-alt) !important;
  padding-left: 10px;
}
.sidebar nav li a:hover {
  color: var(--dark);
  border-left: 5px solid var(--primary);
  padding-left: 10px;
}
.sidebar .social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  gap: 10px;
}
.sidebar .social a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease all;
}
.sidebar .social a:nth-child(1) {
  background: var(--primary);
  color: var(--light);
}
.sidebar .social a:nth-child(2) {
  background: var(--primary-alt);
  color: var(--light);
}
.sidebar .social a:nth-child(3) {
  background: var(--secondary);
  color: var(--light);
}
.sidebar .social a:nth-child(4) {
  background: var(--secondary-alt);
  color: var(--light);
}
.sidebar .social a:hover {
  transform: translateY(-5px);
}

/* Content */
.content {
  width: calc(100% - 17rem);
  height: 100vh;
  position: relative;
  left: 17rem;
  transition: 0.5s ease all;
  /* scroll-snap-type: y mandatory; */
  overflow-y: scroll;
  overflow-x: hidden;
}
.content.active {
  width: 100%;
  left: 0;
}
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* scroll-snap-align: start; */
}
.hero .carousel,
.hero .carousel .carousel-inner,
.hero .carousel .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}
.hero .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomImg 15s;
}
@keyframes zoomImg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.hero .carousel .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #0007, #0002, #0009);
  z-index: 2;
  display: none;
}
.hero .carousel .carousel-caption {
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 40%;
  text-align: left;
  z-index: 5;
  background: #ed2d6669;
  backdrop-filter: blur(1px);
  padding: 30px;
}
.hero .carousel .carousel-caption h5 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--light);
  font-family: var(--sans-serif-alt);
}
.hero .carousel .carousel-caption p {
  font-size: 20px;
  color: var(--light);
}
.hero .carousel .carousel-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
}
.hero .carousel .carousel-controls button:nth-child(1) {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  font-size: 20px;
  opacity: 1;
}
.hero .carousel .carousel-controls button:nth-child(2) {
  width: 50px;
  height: 50px;
  background: var(--primary-alt);
  color: var(--light);
  font-size: 20px;
  opacity: 1;
}

/* Top Nav */
.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, var(--dark), transparent);
}
.top-nav span {
  margin-left: 30px;
}
.top-nav span i {
  width: 35px;
  height: 35px;
  background: var(--primary-alt);
  color: var(--light);
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  margin-right: 5px;
}
.top-nav span b {
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
}
.top-nav .sidebar-toggle {
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--dark);
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  outline: 0;
  border: 0;
  font-size: 20px;
}

/* About Section */
.about::after {
  content: "";
  background: linear-gradient(
    to top right,
    var(--primary-alt),
    var(--secondary)
  );
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.about .container-fluid {
  position: relative;
  z-index: 2;
}
.about .text h6 {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondary-alt);
  text-transform: uppercase;
}
.about .image,
.about .image img {
  position: relative;
}
.about .tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  background: var(--light);
  padding: 10px;
  gap: 15px;
  box-shadow: var(--shadow);
  border-radius: 10px;
}
.about .tag b {
  font-size: 50px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  color: var(--secondary-alt);
}
.about .tag span {
  font-size: 18px;
  font-weight: 600;
}
.about .tag span i {
  display: block;
}
.about ul li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-right: 20px;
  color: var(--primary-alt);
  font-size: 16px;
}
.about ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-alt);
  line-height: 30px;
}

/* Why Choose Us */
.why-choose {
  background: url("../images/why-choose-us.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  height: auto;
}
.why-choose p {
  color: var(--light-alt);
  font-weight: 600;
}
.why-choose .card {
  height: 100%;
}
.why-choose .card .icon {
  font-size: 40px;
  color: var(--light-alt);
}
.why-choose .card .text {
  width: 100%;
  text-align: center;
  margin: 15px 10px;
}
.why-choose .card .text h5 {
  font-size: 23px;
  font-weight: 700;
  color: var(--dark);
}
.why-choose .owl-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.why-choose .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50px !important;
  background: var(--secondary-alt) !important;
  color: var(--light) !important;
  font-size: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose .owl-nav button span {
  line-height: 40px;
  font-size: 35px;
  margin-top: -5px;
  display: inline-block;
}

/* Chairmain's Desk */
.chairman-desk {
  min-height: auto;
  height: auto;
  background: var(--light-alt);
}
.chairman-desk::after {
  content: "";
  background: var(--primary-alt);
  opacity: 0.5;
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
}
.chairman-desk .container-fluid {
  position: relative;
  z-index: 3;
}
.chairman-desk .card .image {
  width: 100%;
  height: 100%;
}
.chairman-desk .card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.chairman-desk .card h6 {
  font-size: 25px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  color: var(--dark-alt);
  margin-bottom: 15px;
}
.chairman-desk .card p {
  font-size: 16px;
  font-weight: 500;
}

/* Gallery */
.gallery .box {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.gallery .box .item {
  min-height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border-radius: 5px;
  overflow: hidden;
}
.gallery .box .item:nth-child(1) {
  grid-row: 1 / span 2;
}
.gallery .box .item:nth-child(4) {
  grid-row: 1 / span 1;
  grid-column: 3;
}
.gallery .box .item a {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 80%;
  height: 50px;
  background: var(--primary-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  font-size: 25px;
  font-weight: 600;
  font-family: var(--sans-serif-alt);
  transition: 0.5s ease all;
  border-radius: 5px;
}
.gallery .box .item:hover a {
  background: var(--secondary-alt);
}
.gallery .box .item img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
  position: relative;
  z-index: 1;
}
.gallery .box .item:hover img {
  transform: scale(1.1);
}

/* Admission Section */
.admission {
  min-height: auto;
  height: auto;
}
.admission h5 {
  font-size: 30px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  text-transform: uppercase;
  line-height: 130%;
}
.admission p {
  font-size: 18px;
  font-weight: 500;
}

/* Footer */
/* .footer-bottom {
  scroll-snap-align: end;
} */
.footer-bottom p {
  color: var(--light-alt);
  font-size: 16px;
  font-weight: 600;
}
.footer-bottom p a {
  color: var(--primary-alt);
}

footer.section {
  min-height: auto;
  height: auto;
  /* scroll-snap-align: end; */
}
footer .info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
footer .text h1 {
  font-size: 25px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  color: var(--light);
}
footer .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--light);
  margin-left: 0;
  margin-top: 30px;
  opacity: 0.7;
}
footer .info .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-alt);
  color: var(--light);
  text-align: center;
  line-height: 70px;
  font-size: 25px;
  margin-right: 15px;
}
footer .info .text {
  width: calc(100% - 85px);
}
footer .info .text h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--light);
  opacity: 0.7;
  margin-bottom: 5px;
}
footer .info .text h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--light);
  word-wrap: anywhere;
}
footer h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--light-alt);
  opacity: 0.7;
  margin-bottom: 30px;
}
footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  text-shadow: var(--shadow);
  font-size: 20px;
}
footer .social a.fb {
  background: #3b5998;
  color: var(--light);
}
footer .social a.ig {
  background: #8a3ab9;
  color: var(--light);
}
footer .social a.tw {
  background: #1da1f2;
  color: var(--light);
}
footer .social a.yt {
  background: #ff0000;
  color: var(--light);
}
footer .links a {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--light);
  display: block;
}
footer .row.gx-0 .col-lg-4:nth-child(2) {
  border-left: 1px solid #fff3;
  border-right: 1px solid #fff3;
}
footer p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  margin-left: 50px;
}
footer p span:nth-child(1) {
  color: var(--primary);
  font-weight: 500;
}
footer p span:nth-child(2) {
  color: var(--light);
  font-weight: 400;
}

/* Banner */
.banner {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  /* scroll-snap-align: start; */
}
.banner .box {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000047;
}
.banner .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.banner .box .container-fluid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.banner .box .text .heading {
  font-size: 35px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  color: var(--light-alt);
  text-transform: uppercase;
}
.banner .breadcrumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background: #ffefe4;
  box-shadow: var(--shadow);
  border: 3px solid var(--primary-alt);
}
.banner .breadcrumb .breadcrumb-item:first-child a {
  color: var(--light);
  background: var(--primary-alt);
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  display: inline-block;
  border-radius: 10px;
}
.banner .breadcrumb .breadcrumb-item a {
  color: var(--primary-alt);
  font-weight: 600;
}
.banner .breadcrumb .breadcrumb-item.active {
  color: var(--dark);
  font-weight: 600;
}

/* About Points */
.about-points .card {
  border: 3px solid var(--primary) !important;
  background: var(--light);
  text-align: center;
  height: 100%;
}
.about-points .card .icon {
  width: 100px;
  height: 100px;
  background: #ffefe4;
  border: 2px solid #0001;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.about-points .card img {
  width: 70px;
}
.about-points .card h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-alt);
  margin-top: 20px;
  text-transform: capitalize;
}

/* About Alt */
.about-alt::after {
  content: "";
  background: var(--primary-alt);
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.3;
}
.about-alt .container-fluid {
  position: relative;
  z-index: 2;
}
.about-alt .text h6 {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondary-alt);
  text-transform: uppercase;
}
.about-alt .text h1 {
  font-size: 35px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  color: var(--dark);
  text-transform: capitalize;
}
.about-alt .image,
.about-alt .image img {
  position: relative;
}
.about-alt .accordion-item {
  margin-top: 5px;
  border: 0;
}
.about-alt .accordion-button {
  border: 0;
  outline: 0;
  box-shadow: none !important;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--sans-serif-alt);
  color: var(--secondary-alt);
  text-transform: capitalize;
}
.about-alt .accordion-button:not(.collapsed) {
  background: var(--primary-alt);
  color: var(--light);
}

/* Contact */
.contact .card .form label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-alt);
  margin-bottom: 5px;
}
.contact .card .form label span {
  color: var(--secondary);
}
.contact .card .form input,
.contact .card .form textarea {
  border: 1px solid #0003;
  border-radius: 5px;
  outline: none;
  padding: 10px !important;
  background: var(--light);
  transition: 0.5s ease all;
}
.contact .card .form .form-control:focus {
  border: 1px solid var(--primary-alt);
  box-shadow: 0 0 0 0.25rem #f5863421;
}
.contact .card .map {
  width: 100%;
  height: 100%;
}
.contact .card .map iframe {
  width: 100%;
  height: 100%;
  padding: 0;
}
.contact .box {
  text-align: center;
}
.contact .box i {
  width: 50px;
  height: 50px;
  background: var(--secondary-alt);
  color: var(--light);
  line-height: 50px;
  font-size: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}
.contact .box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-alt);
}
.contact .box p a {
  color: var(--dark-alt);
}
.contact .item {
  margin-top: 50px;
  padding: 20px 0 0;
  text-align: center;
  border-top: 1px solid #0002;
}
.contact .item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-alt);
}
.contact .item p i {
  width: 30px;
  height: 30px;
  background: var(--secondary);
  color: var(--light);
  line-height: 30px;
  font-size: 20px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin-right: 10px;
}
.contact .item p b {
  color: var(--primary);
}

/* FAQ Section */
/* .faq-section {
  scroll-snap-align: start;
} */
.faq-section .accordion-item {
  margin-top: 15px;
  border: 0;
  box-shadow: var(--shadow);
}
.faq-section .accordion-button {
  border: 0;
  outline: 0;
  box-shadow: none !important;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--sans-serif-alt);
  color: var(--dark-alt);
  text-transform: capitalize;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--primary-alt);
  color: var(--light);
}

/* Anthem Section */
.anthem-section p {
  font-size: 20px;
  font-weight: 600;
}

/* Why Us Section */
.why-us-section .border-text {
  padding: 30px;
  background: var(--light);
  border-left: 7px solid var(--secondary-alt);
  box-shadow: var(--shadow);
}
.why-us-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-us-section .grid .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  background: var(--light);
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: 50px;
}
.why-us-section .grid .item img {
  width: 100px;
}
.why-us-section .grid .item h5 {
  font-size: 18px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  text-transform: uppercase;
  color: var(--secondary);
}
.why-us-section .grid-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-us-section .grid-alt .item {
  background: var(--light);
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: 10px;
  text-align: center;
}
.why-us-section .grid-alt .item img {
  width: 100px;
}
.why-us-section .grid-alt .item h5 {
  font-size: 18px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  text-transform: uppercase;
  color: var(--secondary);
  margin: 15px 0;
}
.why-us-section .item-alt {
  background: var(--light);
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: 10px;
  text-align: center;
}
.why-us-section .item-alt img {
  width: 100px;
}
.why-us-section .item-alt h5 {
  font-size: 18px;
  font-weight: 900;
  font-family: var(--sans-serif-alt);
  text-transform: uppercase;
  color: var(--secondary);
  margin: 15px 0;
}

/* Admission Process */
.admission-section .pointer ol {
  display: block;
  flex: 1;
}
.admission-section .form label {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-alt);
  margin-bottom: 10px;
}
.admission-section .form label span {
  color: var(--secondary);
}
.admission-section .form input,
.admission-section .form textarea,
.admission-section .form select {
  border: 1px solid #0003;
  border-radius: 5px;
  outline: none;
  padding: 10px !important;
  background: var(--light);
  transition: 0.5s ease all;
}
.admission-section .form .form-control:focus,
.admission-section .form .form-select:focus {
  border: 1px solid var(--primary-alt);
  box-shadow: 0 0 0 0.25rem #f5863421;
}
.admission-section .form .checkbox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 15px;
  row-gap: 10px;
  width: 100%;
}
.admission-section .form .checkbox.check-2 {
  grid-template-columns: repeat(2, 1fr);
}
.admission-section .form .checkbox .form-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
  outline: none;
  height: auto;
  position: relative;
}
.admission-section .form .checkbox .form-check-input {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  margin: 0 !important;
  z-index: 2;
}
.admission-section .form .checkbox .form-check label {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #0004;
  font-weight: 500;
  color: var(--dark-alt);
  padding: 13px 17px 15px 50px;
  cursor: pointer;
  width: 100%;
  position: relative;
  margin: 0 !important;
  transition: 0.5s ease all;
  z-index: 1;
}
.admission-section .form .checkbox .form-check-input:hover ~ label {
  border-color: var(--dark);
}
.admission-section .form .checkbox .form-check-input:checked ~ label {
  border-color: var(--primary-alt);
  color: var(--dark);
}
.admission-section .form .checkbox .form-check-input:checked {
  border-color: var(--primary-alt);
  background-color: var(--primary-alt);
}
.admission-section .form .checkbox .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem #f5863421;
}

/* Gallery Page */
.gallery-section .item {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border-radius: 5px;
  overflow: hidden;
}
.gallery-section .item a {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 80%;
  height: 50px;
  background: var(--primary-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  font-size: 25px;
  font-weight: 600;
  font-family: var(--sans-serif-alt);
  transition: 0.5s ease all;
  border-radius: 5px;
}
.gallery-section .item:hover a {
  background: var(--secondary-alt);
}
.gallery-section .item img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
  position: relative;
  z-index: 1;
}
.gallery-section .item:hover img {
  transform: scale(1.1);
}

/* Gallery Inner */
.gallery-inner {
  align-items: flex-start;
}
.gallery-inner .item {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: block;
  border: 5px solid var(--light);
  box-shadow: var(--shadow);
}
.gallery-inner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease all;
}
.gallery-inner .item:hover img {
  transform: scale(1.1);
}

/* Twak */
.tawk-button-circle {
  background-color: var(--primary-alt) !important;
  color: var(--light) !important;
}

/* Enquiry Modal */
#admissionEnquiryModal .modal-content {
  border: 5px solid var(--primary-alt);
}
#admissionEnquiryModal .modal-body .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  color: var(--primary);
  opacity: 1;
  transition: 0.5s ease all;
  border-radius: 0;
  font-size: 25px;
}
#admissionEnquiryModal .modal-body img {
  width: 150px;
  margin: auto;
}

/* Download Brochure */
.download-brochure {
  position: fixed;
  top: 50%;
  right: 5px;
  z-index: 3;
  writing-mode: vertical-rl;
  background: var(--primary-alt);
  padding: 15px;
  color: var(--light);
  transition: 0.5s ease all;
  transform: rotate(180deg) translateY(50%);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow);
}
.download-brochure:hover {
  color: var(--light);
  background: var(--primary);
}

/* Responsive */
@media (max-width: 1280px) {
  .hero .carousel .carousel-caption h5 {
    font-size: 35px;
  }
  .hero .carousel .carousel-caption p {
    font-size: 18px;
  }
  .why-choose .card .text p {
    font-size: 16px;
  }
  .content {
    width: 100%;
    left: 0;
  }
  .content.active {
    width: calc(100% - 17rem);
    left: 17rem;
  }
  .sidebar {
    left: 0;
    opacity: 1;
  }
  .sidebar.active {
    left: -17rem;
    opacity: 0;
  }
  .section {
    min-height: auto;
  }
  .why-choose .card .card-body {
    display: block;
  }
  .why-choose .card .card-body .icon {
    margin: auto;
    text-align: center;
  }
  .why-choose .card .text {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  .why-choose .card .text h5 {
    font-size: 20px;
  }
  .why-choose .card .text p {
    font-size: 14px;
  }
  .gallery .box .item a {
    font-size: 18px;
  }
  .admission p {
    font-size: 16px;
  }
  footer .info .text h6 {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .content.active {
    width: 100%;
    left: 17rem;
  }
  .about .text {
    padding: 30px;
  }
  .about .image {
    width: 60%;
    margin: auto;
  }
  .gallery .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .gallery .box .item {
    width: calc(50% - 10px);
    height: 250px !important;
  }
  .admission .text-md-left {
    text-align: left !important;
    margin-top: 20px;
  }
  .footer-bottom p {
    text-align: center !important;
    margin: 10px 0;
  }
  footer .p-5 {
    padding: 0 !important;
  }
  footer .row.gx-0 .col-lg-4:nth-child(2) {
    border: 0;
  }
  footer hr {
    display: none;
  }
  .admission-section .form .checkbox {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .info {
    margin-bottom: 30px;
  }
  footer h4 {
    margin: 30px 0 20px;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
  .section {
    padding: 50px 0;
  }
  .banner .box .text .heading {
    font-size: 20px;
  }
  .banner .breadcrumb {
    padding: 5px;
  }
  .top-nav {
    position: relative;
    background: var(--dark);
    display: block;
  }
  .top-nav span {
    display: none;
    margin: 10px 0;
    align-items: center;
    justify-content: flex-start;
  }
  .banner {
    height: auto;
  }
  .hero {
    height: auto;
  }
  .hero .carousel {
    height: 350px;
  }
  .hero .carousel .carousel-caption {
    padding: 10px;
    width: 80%;
    left: 10%;
    text-align: center;
  }
  .hero .carousel .carousel-caption h5 {
    font-size: 20px;
  }
  .hero .carousel .carousel-caption p {
    font-size: 16px;
  }
  .hero .carousel .carousel-controls {
    width: 70px;
    height: 35px;
  }
  .hero .carousel .carousel-controls button {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }
  .sidebar .logo {
    width: 150px;
  }
  .sidebar nav li a {
    font-size: 16px;
  }
  .about .text h6 {
    font-size: 18px;
  }
  .heading,
  .admission h5 {
    font-size: 22px;
  }
  .about::after,
  .about-alt::after {
    width: 100%;
    background: var(--light);
  }
  .about .text {
    padding: 0;
  }
  .about .image {
    width: 100%;
  }
  .about .tag b {
    font-size: 30px;
  }
  .about .tag span {
    font-size: 14px;
  }
  .faq-section .accordion-button {
    font-size: 16px;
    font-weight: 500;
  }
  .gallery-section .item a,
  .gallery .item a {
    font-size: 18px;
  }
  .gallery .box .item {
    width: 100%;
  }
  .contact .form {
    padding: 15px !important;
  }
  .contact .card .map {
    height: 350px;
  }
  footer .text {
    margin: 0 0 30px 0;
  }
  .admission-section .form .checkbox {
    grid-template-columns: repeat(2, 1fr);
  }
  .admission-section .form .checkbox.check-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 550px) {
  .why-us-section .grid,
  .why-us-section .grid-alt {
    display: block;
  }
  .why-us-section .grid .item,
  .why-us-section .grid-alt .item {
    margin-bottom: 15px;
  }
  .admission-section .form .checkbox {
    grid-template-columns: repeat(1, 1fr);
  }
}
