body {
  font-family: 'Inter Regular';
  /* font-family: "Forma DJR Display Regular" !important; */

}


:root {
  --background-color: #007367;
  --background-color-rgb: 255, 255, 255;
}

/* a {
  color: var(--background-color);
  text-decoration: none;
} */

a {
  color: #007367;
  text-decoration: underline;
  /* Ensure it's visibly a link */
  font-weight: 600;
  /* Optional: makes it bolder */
}

a:hover,
a:focus {
  color: #004f49;
  /* Darker shade for better hover contrast */
  text-decoration: none;
  /* Optional: visual change on hover */
}

/* a:hover {
  color: #6c7afa;
  text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

.scroll-container {
  background-color: var(--background-color);
  padding: 8px 0;
  color: #fff;
}

.social-links a {
  color: #fff !important;
  margin-right: 6px;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #007367;
  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: #159388;
  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 #94b33d;
  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;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
}

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

.gitamlogo img {
  width: 157px;
}

#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 30px;
  /* font-size: 14px; */
  /* font-weight: 600; */
  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: var(--background-color);
}

.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: 3px 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: var(--background-color);
}

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

  .section-title.mblHeading {
    display: block !important;
  }

  .section-title.desktopHeading {
    display: none !important;
  }

}

.section-title.desktopHeading {
  display: block;
}

.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: var(--background-color);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.bannerTitle {
  position: absolute;
  z-index: 99;
  top: -40px;

  background-color: var(--background-color);
  padding: 15px;
  color: #fff;
}

.bannerTitle h5 {
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 0;
}

#hero {
  padding-top: 125px;
  position: relative;
}

@media only screen and (max-width: 700px) {
  .bannerTitle {
    top: -12px;
    padding: 7px;
  }

  .bannerTitle h5 {
    font-size: 11px;
    line-height: 18px;
  }

  #hero {
    padding-top: 75px;
  }
}




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

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

.sec-bg-black {
  background-color: #f4e4c9;
  color: #000;
  position: relative;
}

/* .sec-bg-black p {
  font-size: 16px;
} */

.imgPosition {
  margin-top: -270px;
}

.pb-200 {
  padding-bottom: 200px;
}



.section-title {
  font-size: 35px;
  margin-bottom: 35px;
  /* padding-bottom: 20px; */
  color: var(--background-color);
  font-family: "Forma DJR Display Regular" !important;
  letter-spacing: 1.3px;
}

.sub-title {
  font-weight: 200;
  font-size: 32px;
  margin-bottom: 20px;
}


hr {
  margin: 20px 0;
  border-top: 1px solid #77b9b3;
}

li {
  margin-bottom: 10px;
}


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

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #007467;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#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;
  color: #2d405f;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #4e6fa4;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}







.carousel-control-next,
.carousel-control-prev {
  bottom: 0;
  top: inherit;
  width: 45px;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-image: none;

}

.carousel-control-next-icon i,
.carousel-control-prev-icon i {
  color: var(--background-color);
  font-size: 35px;
}

.carousel-control-next {
  left: 43px;
  background-color: #fff;
}

.carousel-control-prev-icon i {
  color: #fff !important;
}

.carousel-control-prev {
  background-color: var(--background-color);

}



.carousel-indicators {
  display: none;
}

.img_height {
  margin-top: 50px;
}

.register_button {
  position: fixed;
  right: 55px;
  top: 35%;
  z-index: 9999;
  text-align: center;
  line-height: initial;
  width: auto;
  color: #fff;
  background-color: #2B981F;
  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: 992px) {

  .gitamlogo img {
    width: 100px;
  }


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



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

.h-230 {
  height: 230px;
}

.section-title.mblHeading {
  display: none;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  /* .carousel-inner {
    margin-top: 22px;
  } */

  section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 25px;
    padding-bottom: 0px;

    margin-top: 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: #2B981F;
    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;
  }

  /* #footer .py-4 {
    padding-top: 0rem !important;
  } */

  .tabsContainer .nav.nav-tabs {
    width: 100% !important;
  }

  .tabsContainer .nav-tabs .nav-link {
    margin-bottom: 5px;
  }

  .h-230 {
    height: auto;
  }

  .bannerTitle {
    display: none;
  }

  #venue {
    scroll-margin-top: 150px;
  }

  /* .applyNowBtn p {
    display: inherit !important;
  } */
  .applyNowBtn {
    background: #fff !important;
    color: #000 !important;
    padding: 5px;
    margin-top: 5px !important;
  }

  .scroll-container p {
    display: block !important;
    font-size: 13px;
    font-weight: 600;
  }

  .social-links a {
    font-size: 20px;
  }
}

.scroll-container p {
  display: none;
}

.sub-box {
  background-color: #E5F0EF;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.container-fluid {
  width: 95%;
}

@media screen and (max-width: 767px) {
  .pb-200 {
    padding-bottom: 150px;
  }

  .imgPosition {
    margin-top: -160px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .imgPosition {
    margin-top: -200px;
  }
}

@media (min-width:992px) and (max-width: 1199px) {
  .imgPosition {
    margin-top: -360px;
  }
}

@media screen and (max-width: 1199px) {
  .instructions .col-xl-1 {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  hr {
    margin: 20px 0;
  }
}

@media (min-width: 1700px) {
  body {
    font-size: 16px;
  }
}

/*  */
.tabsContainer .tabsFill .nav-tabs .nav-item.show .nav-link,
.tabsContainer .tabsFill .nav-tabs .nav-link.active {
  border: 1px solid var(--background-color);
  color: #fff;
  background-color: var(--background-color);
}

.tabsContainer .nav-tabs .nav-link {
  border-radius: 20px;
  color: #495057;
  padding: 6px 20px;
  margin-right: 5px;
  background: #fff;
}

.tabsContainer .nav-item {
  margin-bottom: 0;
}

.tabsContainer .nav.nav-tabs {
  justify-content: center;
  border: 1px solid #b1dbd7;
  width: 570px;
  margin: auto;
  padding: 5px;
  border-radius: 25px;
  background: #e5f0ef;
  margin-bottom: -24px;
  position: relative;
  flex-wrap: wrap;
}



.tabsContainer .nav-tabs .nav-link:focus,
.tabsContainer .nav-tabs .nav-link:hover {
  border: 1px solid var(--background-color);
}

.tabsContainer .tab-content {
  border: 1px solid #b1dbd7;
  padding: 40px 20px 20px 20px;
  border-radius: 20px;
  /* background: #F7F7F7; */
  background-color: #fff;
}

b,
strong {
  font-weight: 600;

}

.modal-content {
  border-radius: 0px;
}

.modal-body h6 {
  line-height: 1.5;
  color: #007367;
  text-align: justify;
}

.btn-primary,
.btn-primary:hover {
  background: #007367;
  border: 1px solid #007367;
  margin-bottom: 23px;
  font-size: 20px;
  font-weight: 600;
  padding: 6px 15px;
}

section#instructions {
  padding: 33px 0px;
}

@media only screen and (max-width: 767px) {
  /* .btn-primary {
    margin-bottom: 7px !important;
  } */
}

.modal .btn-close {
  background: #007367;
  border-radius: 100px;
  position: absolute;
  opacity: 1;
  right: -3px;
  top: -1px;
  width: 19px;
  height: 19px;
  color: #fff;
  box-shadow: var();
}

.modal .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(0 115 103 / 28%);
  opacity: 1;
}

.modal .btn-close svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  position: absolute;
  top: 5px;
  left: 6px;
}

.modal-header {
  background: #ebf7f5;
  padding: 10px 14px;
  border: none;
}

.modal-body p {
  margin-bottom: 10px;
}

.applyNowBtn p {
  /* display: flex;
  align-items: baseline;
  justify-content: center; */
  font-weight: 600;
  margin-bottom: 0;
  line-height: 30px;
}

.applyNowBtn {
  background: #007367;
  color: #fff;
  padding: 5px;
  margin-top: 0;
}

.applyNowBtn .btn-primary {
  font-size: 14px;
  border: 1px solid #eaeaea;
}