/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.gyanjyotiBody {
  font-family: 'Poppins';
  color: #444444;
}

.gyanjyotiBody a {
  color: #5fcf80;
  text-decoration: none;
}

.gyanjyotiBody .bg{
  background: #f1eee4;
}

.gyanjyotiBody p{
  font-size: 16px;
}

.gyanjyotiBody a:hover {
  color: #86db9f;
  text-decoration: none;
}

.gyanjyotiBody .paddingSection{
  padding-top: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: #2e2e2e;
  font-weight: 700!important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.gyanjyotiBody .back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #262261;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.gyanjyotiBody .back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.gyanjyotiBody .back-to-top:hover {
  background: #7ed899;
  color: #fff;
}

.gyanjyotiBody .back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.gyanjyotiBody #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

.gyanjyotiBody #preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5fcf80;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.gyanjyotiBody #header {
  background: #262261;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  /* box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08); */
}

.gyanjyotiBody #header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.gyanjyotiBody #header .logo a {
  color: #5fcf80;
}

.gyanjyotiBody #header .logo img {
  max-height: 70px;
}

/**
* Get Startet Button 
*/
.gyanjyotiBody .get-started-btn {
  margin-left: 22px;
  background: #5fcf80;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.gyanjyotiBody .get-started-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .gyanjyotiBody .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.gyanjyotiBody .navbar {
  padding: 0;
}

.gyanjyotiBody .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.gyanjyotiBody .navbar li {
  position: relative;
}

.gyanjyotiBody .navbar a,
.gyanjyotiBody .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.gyanjyotiBody .navbar a i,
.gyanjyotiBody .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.gyanjyotiBody .navbar a:hover,
.gyanjyotiBody .navbar .active,
.gyanjyotiBody .navbar .active:focus,
.gyanjyotiBody .navbar li:hover>a {
  color: #ec1e25;
}

.gyanjyotiBody .navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.gyanjyotiBody .navbar .dropdown ul li {
  min-width: 200px;
}

.gyanjyotiBody .navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.gyanjyotiBody .navbar .dropdown ul a i {
  font-size: 12px;
}

.gyanjyotiBody .navbar .dropdown ul a:hover,
.gyanjyotiBody .navbar .dropdown ul .active:hover,
.gyanjyotiBody .navbar .dropdown ul li:hover>a {
  color: #5fcf80;
}

.gyanjyotiBody .navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.gyanjyotiBody .navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.gyanjyotiBody .navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .gyanjyotiBody .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .gyanjyotiBody .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.gyanjyotiBody .mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-right: 10px;
}

.gyanjyotiBody .mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .gyanjyotiBody .mobile-nav-toggle {
    display: block;
  }

  .gyanjyotiBody .navbar ul {
    display: none;
  }
}

.gyanjyotiBody .navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.gyanjyotiBody .navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.gyanjyotiBody .navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.gyanjyotiBody .navbar-mobile a,
.gyanjyotiBody .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

.gyanjyotiBody .navbar-mobile a:hover,
.gyanjyotiBody .navbar-mobile .active,
.gyanjyotiBody .navbar-mobile li:hover>a {
  color: #262261;
}

.gyanjyotiBody .navbar-mobile .getstarted,
.gyanjyotiBody .navbar-mobile .getstarted:focus {
  margin: 15px;
}

.gyanjyotiBody .navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.gyanjyotiBody .navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.gyanjyotiBody .navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.gyanjyotiBody .navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.gyanjyotiBody .navbar-mobile .dropdown ul a:hover,
.gyanjyotiBody .navbar-mobile .dropdown ul .active:hover,
.gyanjyotiBody .navbar-mobile .dropdown ul li:hover>a {
  color: #5fcf80;
}

.gyanjyotiBody .navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.gyanjyotiBody #hero {
  width: 100%;
  height: 100vh;
  background: url("/assets/img/School\ Building\ copy.jpg") top center;
  background-size: cover;
  position: relative;
}

.gyanjyotiBody #hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.gyanjyotiBody #hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  .gyanjyotiBody #hero .container {
    padding-top: 62px;
  }
}

.gyanjyotiBody #hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.gyanjyotiBody #hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 24px;
}

.gyanjyotiBody #hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

.gyanjyotiBody #hero .btn-get-started:hover {
  background: #ed1c24;
  border: 2px solid #ed1c24;
}

@media (min-width: 1024px) {
  .gyanjyotiBody #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .gyanjyotiBody #hero {
    height: 100vh;
  }

  .gyanjyotiBody #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .gyanjyotiBody #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.gyanjyotiBody section {
  padding: 60px 0;
  overflow: hidden;
}

.gyanjyotiBody .section-bg {
  background-color: #f6f7f6;
}

.gyanjyotiBody .section-title {
  padding-bottom: 40px;
}

.gyanjyotiBody .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.gyanjyotiBody .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 4px 10px;
}

.gyanjyotiBody .section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.gyanjyotiBody .about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.gyanjyotiBody .about .content ul {
  list-style: none;
  padding: 0;
}

.gyanjyotiBody .about .content ul li {
  padding-bottom: 10px;
}

.gyanjyotiBody .about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5fcf80;
}

.gyanjyotiBody .about .content .learn-more-btn {
  background: #5fcf80;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.gyanjyotiBody .about .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .gyanjyotiBody .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.gyanjyotiBody .counts {
  padding: 30px 0;
}

.gyanjyotiBody .counts .counters span {
  font-size: 48px;
  display: block;
  color: #262261;
  font-weight: 700;
}

.gyanjyotiBody .counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #37423b;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.gyanjyotiBody .why-us .content {
  padding: 30px;
  background: #262261;
  border-radius: 4px;
  color: #fff;
}

.gyanjyotiBody .why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.gyanjyotiBody .why-us .content p {
  margin-bottom: 30px;
}

.gyanjyotiBody .why-us .more-btn {
  display: inline-block;
  /* background: rgba(255, 255, 255, 0.2); */
  padding: 6px 0;
  color: #262261;
  transition: all ease-in-out 0.4s;
  border-bottom: 1px solid #1c0df1;
}

.gyanjyotiBody .why-us .more-btn i {
  font-size: 14px;
}

.gyanjyotiBody .why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  border: 1px solid #1c0eeb;
}

.gyanjyotiBody .why-us .icon-boxes .icon-box i {
  font-size: 32px;
  padding: 18px;
  color: #262261;
  margin-bottom: 30px;
  background: #ecf9f0;
  border-radius: 50px;
}

.gyanjyotiBody .why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.gyanjyotiBody .why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.gyanjyotiBody .contact {
  padding-top: 5px;
}

.gyanjyotiBody .contact .info {
  width: 100%;
  background: #fff;
}

.gyanjyotiBody .contact .info i {
  font-size: 20px;
  color: #262261;
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.gyanjyotiBody .contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}

.gyanjyotiBody .contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}

.gyanjyotiBody .contact .info .email,
.gyanjyotiBody .contact .info .phone {
  margin-top: 40px;
}

.gyanjyotiBody .contact .info .email:hover i,
.gyanjyotiBody .contact .info .address:hover i,
.gyanjyotiBody .contact .info .phone:hover i {
  background: #262261;
  color: #fff;
}

.gyanjyotiBody .contact .php-email-form {
  width: 100%;
  background: #fff;
}

.gyanjyotiBody .contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.gyanjyotiBody .contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.gyanjyotiBody .contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.gyanjyotiBody .contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #262261;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.gyanjyotiBody .contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.gyanjyotiBody .contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #262261;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.gyanjyotiBody .contact .php-email-form input,
.gyanjyotiBody .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.gyanjyotiBody .contact .php-email-form input:focus,
.gyanjyotiBody .contact .php-email-form textarea:focus {
  border-color: #1809ec;
}

.gyanjyotiBody .contact .php-email-form input {
  height: 44px;
}

.gyanjyotiBody .contact .php-email-form textarea {
  padding: 10px 12px;
}

.gyanjyotiBody .contact .php-email-form button[type=submit] {
  background: #262261;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.gyanjyotiBody .contact .php-email-form button[type=submit]:hover {
  background: #262261;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.gyanjyotiBody #footer {
  color: #fff;
  font-size: 14px;
  background: #1d1b38;
}

.gyanjyotiBody #footer .footer-top {
  padding: 60px 0 0px 0;
  background: #1d1b38;
}

.gyanjyotiBody #footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

.gyanjyotiBody #footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

.gyanjyotiBody #footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

.gyanjyotiBody #footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.gyanjyotiBody #footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.gyanjyotiBody #footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gyanjyotiBody #footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cdcaf9;
  font-size: 18px;
  line-height: 1;
}

.gyanjyotiBody #footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.gyanjyotiBody #footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.gyanjyotiBody #footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.gyanjyotiBody #footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #cdcaf9;
}

.gyanjyotiBody #footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

.gyanjyotiBody #footer .credits a {
  color: #eb1e24;
  transition: 0.3s;
}

.gyanjyotiBody #footer .credits a:hover {
  color: #cdcaf9;
}

.gyanjyotiBody #footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #cdcaf9;
  color: #262261;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.gyanjyotiBody #footer .social-links a:hover {
  background: #262261;
  color: #fff;
  text-decoration: none;
}

.gyanjyotiBody #footer p{
  font-size: 14px;
}

.gyanjyotiBody .card{
  height: 450px;
  border: none;
  box-shadow: 0 0 6px aliceblue;
}

.gyanjyotiBody .card-title{
  color: red;
  font-weight: 700;
}

.gyanjyotiBody .card-text{
  font-size: 14px;
  text-align: justify;
}

.gyanjyotiBody li::marker{
  color: #d30000;
}