body {
  font-family: 'Comfortaa', sans-serif;
  /* color: #444444; */
  color: #000;
}

.curriculam .section-title h2,
.card-header h6,
.admissionDesc h3,
.experience h3,
.FAQ-sec .section-title h2,
.accordion-button,
.contact {
  font-family: 'Montserrat', sans-serif !important;
}

a {
  color: #80117b;
  text-decoration: none;
}

i {
  font-size: 18px;
}

a:hover {
  color: #f15b25;
  text-decoration: none;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
} */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e52429;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e52429;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e52429;
  border-top-color: #e2e5fe;
  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
--------------------------------------------------------------*/
#header {
  /* background: #f6f7ff; */
  background: #fff;
  border-bottom: 2px solid #eceefe;
  transition: all 0.5s;
  z-index: 997;
  padding: 2px 0;
}

.fixed-top {
  position: sticky !important;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2d405f;
}

.gitamlogo img {
  width: 157px;
}

.swechalogo img {
  width: 100px;
}

/* #header .logo img {
  max-height: 59px;
} */

.mobile-img {
  display: none
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  color: #2d405f;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f15b25;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #e2e5fe;
  padding: 9px 25px;
  margin-left: 30px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  color: #94b33d;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #94b33d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #94b33d;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2d405f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .scrollTop {
    position: sticky;
    bottom: 0px;
    top: 95% !important;
    height: 40px;
    border-radius: 0px;
    width: 100%;
    left: 0px;
    transform: rotate(0deg) !important;
    transition: all 0.4s ease-in-out 0s;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 41, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.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;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2d405f;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f15b25;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #94b33d;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/* ####### */


.card-header {
  background: none;
  border: none;

}

.card-header h6 {
  font-weight: 600;
}

p {
  font-size: 14px;
}



.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 13px;
}

.admissionDesc h3 {
  color: #80117B;
  font-weight: 600;
  font-size: 35px;
}

.btn-primary,
.btn-primary:hover {
  background: #F15B25;
  border: 1px solid #F15B25;
  color: #fff;
  font-size: 14px;
}

.btn-success,
.btn-success:hover {
  background-color: #922A8E;
  border: 1px solid #922A8E;
}

/* ###### */
.cardBox {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 16%);
  padding: 15px;
  min-height: 375px;
  margin-bottom: 20px;
}

.cardbox {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 16%);
  padding: 30px;
}

.cardbox h6 {
  width: 50%;
  line-height: 30px;
}

.cardBox .cardTitle {
  color: #f15b25;
  text-align: center;
  margin: 20px 0 40px 0;
  font-weight: 600;
}

.cardBox p {
  text-align: justify;
  line-height: 25px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
 
  background: white;
  border-bottom: 2px solid white;
  text-align: center;
}

.hightlight {
  color: #ffc107 !important;
}

#hero .container {
  padding-top: 70px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 60%;
  color: #2d405f;
}

#hero h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #2d405f;
}

#hero .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin-top: 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #94b33d;
}

#hero .btn-get-started:hover {
  background: #195953;
}

#hero .hero-img {
  max-width: 60%;
  margin-top: 40px;
} */

@media (max-width: 992px) {
  #hero h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #hero .hero-img {
    max-width: 90%;
  }
}

/* @media (max-height: 768px) {
  #hero {
    height: auto;
  }
} */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f8fb;
}

.section-title {
  text-align: center;
  /* padding-bottom: 30px;*/
}

.section-title h2 {
  font-size: 27px;
  /* font-weight: bold; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  /* color: #013e4c; */
  color: #f15b25;
}



.sec-title-left {
  /* color: #013e4c; */
  color: #081c52;
  font-weight: 600;
}

.section-title p {
  margin-bottom: 0;
}

/* ####### Gallery ####### */
/* .slick-slider {
  cursor: pointer;
}

.slick-carousel {
  width: 100%;
  margin: 0px auto;
}

.slick-slide {
  margin: 10px;
}

.slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}


.slick-next::before,
.slick-prev::before {
  color: #f15b25;

}

.slick-prev {
  z-index: 1;
  left: -50px;
}

.slick-prev i,
.slick-next i {
  font-size: 50px;
  color: red;
}

.slick-prev,
.slick-next {
  width: 155px;
  height: 130px;
  top: 30%;
  right: -30px;
} */

/* #######  */

.accordion-item {
  margin-bottom: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
  border-radius: 15px !important;
}

.accordion-button {
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
}

.text-purple {
  color: #922A8E !important;
}

.text-green {
  color: green !important;
}

.contact-sec {
  display: flex;
  justify-content: space-around;
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


/*.about {
  background: #94b33d;
  background-size: cover;
   padding: 60px 0; 
  position: relative;
  color: #fff;
}*/

.about .content {
  padding: 30px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
  text-align: center;
}

.border-right {
  border-right: 2px solid #000;
  padding: 0 20px;
}

.experience h3 {
  font-style: italic;
  line-height: 45px;
  font-weight: 600;


}

.curriculam .section-title h2 {
  font-weight: 600;
  font-size: 23px;
}







@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/* .register_button {
  position: fixed;
  right: 55px;
  top: 35%;
  z-index: 9999;
  text-align: center;
  line-height: initial;
  width: auto;
  color: #fff;
  background-color: #e52429;
  font-size: 1.125rem;
  padding: 0 1.5625rem;
  height: 56px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  border-radius: 0px;
  transform: rotate(-90deg);
  transform-origin: right top;

}

.register_button:hover {
  color: white;
} */

@media only screen and (max-width: 460px) {
  .w-180 {
    width: 90% !important;
    margin: 0 0 20px 0;
  }

  .experience .exper-images {
    flex-direction: column;
  }
}


@media only screen and (max-width: 992px) {

  .admissionDesc {
    margin-bottom: 20px;
  }

  /* .w-180 {
    width: 120px !important;
  } */



  .img_height img {
    height: 300px;
  }


  .gitamlogo img {
    width: 100px;
  }

  .about .content {
    padding: 30px 15px;
  }

  .p-5 {
    padding: 1rem !important;
  }

  .mobile-img {
    display: block;
  }

  .dsk-img {
    display: none !important;
  }

  #header .logo img {
    max-height: 36px;
  }

  .contact-sec {
    display: flex;
    justify-content: center !important;
    color: #fff;
    flex-direction: column;
  }



}


@media (max-width: 768px) {


  .about .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .register_button {
    position: fixed;
    left: 0%;
    right: 0;
    bottom: 0;
    top: 93%;
    z-index: 9999;
    text-align: center;
    line-height: initial;
    width: 100%;
    color: #fff;
    background-color: #e52429;
    font-size: 1.125rem;
    padding: 0 1.5625rem;
    height: 56px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    transform: rotate(0deg);
    transform-origin: right top;
    text-transform: uppercase;
  }

  .back-to-top {
    bottom: 52px;
  }

  .FAQ-sec {
    padding: 140px 0 180px 0 !important;
  }

  .contact {
    margin-top: -20% !important;
  }

  .cardbox {
    flex-direction: column !important;

  }

  .cardbox h6 {
    width: 100% !important;
  }

  .admissionDesc h3 {
    font-size: 25px !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .cardBox {
    min-height: 445px !important;
  }

  .contact {
    margin-top: -15% !important;
  }
}

@media (min-width: 992px) and (max-width:1399px) {
  .cardBox {
    min-height: 495px !important;
  }

  .FAQ-sec {
    padding: 140px 0 180px 0 !important;
  }

  .contact {
    margin-top: -11% !important;
  }
}

.schedule .nav-tabs {
  text-align: center;
  margin: auto;

  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

#schedule .nav-tabs a.active {
  background-color: #013e4c;
  color: #fff;
}

#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #159388;
  color: #fff;
  padding: 10px 100px;
}

#schedule .tab-pane {
  transition: ease-in-out .2s;
}

#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #013e4c;
}

.w-180 {
  width: 180px;
  margin-right: 35px;
}

.experience .exper-images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brochureBtn {
  margin-left: 20px !important;
  color: #fff !important;
  padding: 8px !important;
}

body #wrapper .sa-thanks .content {
  padding: 100px 0px;
  text-align: center;
}

body #wrapper .sa-thanks .content .sw-logo {
  width: 250px;
}

body #wrapper .sa-thanks .content .sw-logo {
  width: 250px;
}

body #wrapper .sa-thanks .content h4 {
  color: #912A8E;
  font-weight: 500;
}

body #wrapper .sa-thanks .content .call {
  margin-top: 30px;
  border-top: 2px dashed #ddd;
  border-bottom: 2px dashed #ddd;
  padding: 20px 60px;
  margin-bottom: 20px;
  display: inline-block;
}

body #wrapper .sa-thanks .content .call h6 {
  color: #121212;
  font-size: 20px;
  font-weight: 600;
}

body #wrapper .sa-thanks .content .call a {
  color: #121212;
}

body #wrapper .sa-thanks .content .call a img {
  margin-right: 5px;
}

body #wrapper .sa-thanks .content h6 {
  color: #121212;
  font-size: 20px;
  font-weight: 500;
}

body #wrapper .sa-thanks .content .social-media {
  display: block !important;
}

body #wrapper .sa-thanks .content .social-media ul li {
  display: inline-block;
}

.scrollTop {
  position: fixed;
  right: -87px;
  top: 50%;
  z-index: 9999;
  transition: all 0.4s ease-in-out 0s;
  transform: rotate(-90deg);
  border-radius: 0px;
}
.phone label, #Download_brochure label{
  margin-top: 10px;
  color: #6c757d;
}
#Download_brochure .form-floating > .form-select {
  padding-top: 11px;
  color: #6c757d;
}
