:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Yantramanav', sans-serif;
  --theme-color: #116E63;
  --theme-color2: #0B3D2E;
  --theme-color-3: #438974;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0px 14px 22px -9px #bbcbd8;
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #116E63;
  --footer-text-color: #F5FAFF;
}


.nav-sec {
  background: linear-gradient(to right, #A0E7A0, #116E63);
  overflow: visible;
  top: 0;
}

.header-sticky{
  position: sticky;
  top: -100px;
  transition: top 0.5s ease;
  z-index: 1000;
}

.header-sticky.sticky-visible {
  top: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  margin: 0px;
  padding: 0px;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #A0E7A0, #116E63);
  color: white;
  font-family: Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.nav-item {
  display: flex;
  flex-direction: column;
  /* This stacks icon above text */
  /* align-items: center; */
  cursor: pointer;
  /* padding-top: 10px;
    padding-bottom: 10px; */
    padding-right: 5px;
    padding-left: 5px;
}


.navitem {
  display: flex;
  flex-direction: column;
  /* This stacks icon above text */
  align-items: center;
  cursor: pointer;
  padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px;
}

.navbar-brand img {
  height: 75px;
  width: auto;
}

.offcanvas-menu .navbar-brand img {
  /* height: 65px; */
  width: 200px;
}

.navbar__logo a {
  text-decoration: none !important;
}


.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

.collapse .navbar-nav .nav-item a:hover {
  color: var(--theme-color2) !important;


}

/* .dropdown:hover .dropdown-menu{
  display: block;
} */

/* .dropdown:hover .dropdown-menu .show {
  display: block;
} */




.hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1051;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile off-canvas menu */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  width: 250px;
  background-color: #0B3D2E;
  padding-top: 10px;
  transition: left 0.3s ease;
  z-index: 1050;
}

.offcanvas-menu.show {
  left: 0;
}


/* .offcanvas-menu ul a{
  display: none ;
} */

.offcanvas-menu .ulshow a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}

.offcanvas-menu a:hover {
  background-color: #064f39;
}

/* Show hamburger only on small screens */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }


  .navbar-nav {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .offcanvas-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu{
  display: block;
  }
}

@media (max-width:480px) {
  .navbar-brand img {
    height: 60px;
  }
}

@media (max-width: 450px) {
  .navbar-brand img {
    /* height: 65px !important; */
    height: auto;
    width: 150px;
  }

}


/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
}

#slideshow {
  transition: opacity 1s ease-in-out;
}

/* Navigation buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .slideshow-container {
    height: 300px;
  }

  .nav-button {
    font-size: 18px;
    padding: 10px;
  }

  .site-title {
    font-size: 30px !important;
  }
}


.admissionImg {
  background: url(../assets/images/applyImg.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
  height: 100%;
}

.philosophy {
  width: 100%;
  display: flex;
  justify-content: center;
  background: url(../assets/images/bg_philosophy.jpg);
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: cover;
  padding: 40px 0px 40px;
  background-attachment: fixed;
  text-align: center;
  color: white;
}

.philosophyIcon {
  vertical-align: middle;
}

.philosophyHead {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.philosophyHead h2 {
  margin-bottom: 50px;
}

.philosophyRow {
  margin-bottom: 50px;
}


.philosophy_list {
  margin-top: 30px;
}

.philosophy_list li {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}

.bg_philosophy ul li img {
  transition: all 0.3s ease-in-out;

}

.bg_philosophy ul li img:hover {
  transform: scale(1.1);
  transition: all .5s ease-in-out;
}


.philosophy_list p {
  margin: 5px 0px 0px;
  padding: 0px;
  font-size: 18px;
  color: white;
}

.block-shape1-1 {
  position: absolute;
  top: -20px;
  left: -80px;
  z-index: -1;
  animation: itupdown 0.8s infinite alternate;
  filter: brightness(2) invert(0);
}

.block-shape1-6 {
  position: absolute;
  top: 40px;
  right: -400px;
  animation: rotate2 4s linear infinite;
  display: block;
}

.block-shape1-4 {
  position: absolute;
  top: 140px;
  right: 120px;
  animation: rotate2 4s linear infinite;
  display: block;
}

.block-shape1-7 {
  position: absolute;
  bottom: -90px;
  right: 650px;
  animation: itswing 1s forwards infinite alternate;
  transform-origin: bottom left;
}


@keyframes itswing {
  0% {
    transform: rotate(6deg);
  }

  100% {
    transform: rotate(-6deg);
  }
}

@keyframes itupdown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.arrowImg {
  position: absolute;
  left: 600px;
  width: 200px;
  height: 80px;
  bottom: 115px;
}


@media(max-width:1300px) {
  .block-shape1-6 {
    display: none;
  }
}


@media (max-width:1200px) {
  .arrowImg {
    display: none;
  }

  .block-shape1-4 {
    display: none !important;
  }

  .block-shape1-7 {
    display: none !important;
  }



}

.about-area {
  margin-top: 0px;
  position: relative;

}

.about-left {
  margin-right: 20px;
}

.about-img {
  display: flex;
  gap: 30px;
  position: relative;
}

.about-img .img-1 {
  border-radius: 80px 80px 0 80px;
}

.about-img .img-2 {
  border-radius: 50%;
  border: 2px dashed var(--theme-color2);
  padding: 8px;
}

.about-img .img-3 {
  border-radius: 0 80px 80px 80px;
}

.about-experience {
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--theme-color2);
  padding: 15px 20px 15px 15px;
  color: var(--color-white);
  border-radius: 50px 50px 50px 0;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.about-experience-icon {
  color: var(--theme-color);
  font-size: 65px;
  width: 90px;
  height: 90px;
  line-height: 70px;
  text-align: center;
  margin: auto;
  background: var(--color-white);
  border-radius: 50px;
  margin-bottom: 5px;
}

.about-experience-icon img {
  width: 50px;
}

.about-right {
  position: relative;
  display: block;
}

.about-content {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.about-item {
  position: relative;
  display: flex;
  gap: 12px;
}

.about-item-icon {
  width: 50px;
  height: 50px;
  line-height: 58px;
  text-align: center;
  margin-bottom: 12px;
  background: var(--theme-color2);
  border-radius: 50px;
  font-size: 45px;
  color: var(--theme-color);
  box-shadow: -5px 5px 0 var(--theme-color-light);
}

.about-item-icon img {
  margin-top: -22px;
  width: 30px;
  filter: brightness(0) invert(1);
}

.about-item-content {
  flex: 1;
}

.about-item-content h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.about-quote {
  position: relative;
  color: var(--color-dark);
  padding: 20px 22px;
  background: var(--theme-color-light);
  border-radius: 20px;
}

.about-quote i {
  position: absolute;
  font-size: 45px;
  color: var(--theme-color);
  right: 15px;
  bottom: -15px;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-phone .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: -5px 5px 0 var(--theme-color-light);
}

.about-phone .number {
  line-height: 1;
}

.about-phone .number span {
  color: var(--theme-color2);
  font-weight: 500;
}

.about-phone .number h6 {
  font-size: 20px;
  margin-top: 8px;
}

.about-phone .number h6 a {
  color: var(--theme-color);
}

.events {
  position: relative;
}

.block-shape2-5 {
  position: absolute;
  top: 60px;
  left: -140px;
  animation: rotate2 4s linear infinite;
}

.block-shape2-4 {
  position: absolute;
  bottom: -500px;
  right: -350px;
  animation: rotate2 4s linear infinite;
}

@media(max-width:999px) {
  .block-shape2-5 {
    display: none;
  }
}

@media(max-width: 1300px) {
  .block-shape2-4 {
    display: none;
  }
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 35px;
  color: var(--color-dark);
  margin-top: 10px;
  margin-bottom: 0px;
  position: relative;
}

.site-title span {
  color: var(--theme-color-3);
}

.theme-btn {
  text-decoration: none;
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;

}


.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 30px;
  }
}

@media all and (max-width: 767px) {
  .about-item {
    margin-top: 10px;
  }
}


.-area {
  position: relative;
  z-index: 1;
}

.fa-negative {
  margin-top: 80px;
  margin-bottom: 100px;
}

.feature-item {
  position: relative;
  padding: 15px 15px;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0px;
  /* box-shadow:5px 5px 0 var(--theme-color-3); */
  border: 2px solid green;

  z-index: 1;
}

@media(max-width: 1200px) {
  .feature-item {
    border: none;
    box-shadow: 5px 5px 0 var(--theme-color-3);
  }
}

.feature-ifeaturetem .count {
  position: absolute;
  right: 30px;
  top: 0px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.feature-icon {
  width: 90px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 60px;
  background: var(--theme-color);
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
  margin-top: -60px;
  margin-left: -40px;
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon img {
  border-radius: 80%;
  width: 60px;
}

.feature-content {
  flex: 1;
  max-height: 305px;
}

.feature-content h4 {
  color: var(--color-dark);
  font-size: 22px;
  font-weight: 600;
}

.feature-list {
  height: 250px;
  margin: 12px;
  overflow: vertical auto;
}

.feature-content ul {
  color: var(--color-dark);
}

.feature-content li {
  font-size: 15px;
}

.feature-area .img {
  position: absolute;
  top: 180px;
  left: 100px;
  animation: itupdown 0.8s infinite alternate;
}

@media (max-width: 1199px) and (min-width: 990px) {
  .feature-item {
    padding: 10px 5px;
    border-radius: 30px;
  }

  .feature-content ul {
    padding-left: 10px;
    font-size: 10px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-icon {
    margin-top: -40px;
    margin-left: 0;
  }
}




@media all and (max-width: 1200px) {
  .fa-negative {
    margin-top: 150px;
    margin-left: 20px;
  }

  .feature-item.active::before {
    transform: scale(1);
  }
}




.discoverbtn {

  border-radius: 3px;
  position: absolute;
  top: 88%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 10px 25px;
  background-color: #346633;
  color: white;
  display: inline-block;
  text-align: center;

  font-size: 15px;

  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.discoverbtn:hover {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;

  background-color: rgb(1, 12, 58);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}





.course-area {
  /* padding-top: 80px; */
  background-color: #a7d2d9;
  position: relative;
  z-index: 1;
}

.course-item {
  position: relative;
  background: var(--color-white);
  padding: 20px;
  border-radius: 50px 50px 50px 0;
  margin-bottom: 25px;
  box-shadow: 2px 2px 5px #ccc;
}

.flip-card {
  background-color: transparent;
  /* width: 200px; */
  height: 200px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Flip the card on hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  /* height: 100%; */
  height: 180px;
  backface-visibility: hidden;
  /* hide back face when facing front */
  border-radius: 10px;
  overflow: hidden;
}


.flip-card-back {
  background-color: #129679;
  color: white;
  transform: rotateY(180deg);
  /* back side is flipped */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  padding: 20px;
}

.course-tag {
  position: absolute;
  right: -15px;
  top: 15px;
  background: var(--theme-color2);
  color: var(--color-white);
  border-radius: 40px 40px 40px 0;
  padding: 2px 10px;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: var(--box-shadow2);
  z-index: 1;
}

.course-img1 {
  position: relative;
}

.course-img1 img {
  height: 300px;
  width: 100%;
  border-radius: 40px 40px 40px 0;
  margin-bottom: 30px;
}

.course-img1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 40px 40px 40px 0;

  transition: var(--transition);
}

.course-item:hover .course-img1::before {
  opacity: 0.5;
  visibility: visible;
}

.course-img1 a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  color: var(--color-white);
  background: var(--theme-color2);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}

.course-item:hover .course-img1 a {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.course-item:hover .course-img1 a:hover {
  background: var(--color-white);
  color: var(--theme-color2);
}

.course-img {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 180px;
}

.course-color-1 {
  background-color: rgb(138, 172, 19);

}

.course-color-2 {
  background-color: rgb(230, 154, 14);
}

.course-color-3 {
  background-color: rgb(255, 102, 0);
}

.course-color-4 {
  background-color: rgb(14, 115, 230);
}



.course-img img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 30px;
}


.course-title1 {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: var(--theme-color2);
}

.course-title {
  font-size: 25px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: var(--theme-color2);
  padding: 0 25px;
}



.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 80px 80px 80px 0;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(3, 2, 7, .2);
  border-radius: 80px 80px 80px 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-img {
  position: relative;
  /* box-shadow: 0px 14px 22px -9px #000000;; */
}

.video-img img {
  width: 100%;
  border-radius: 40px 40px 40px 0;
  /* margin-bottom: 30px; */
}

.video-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 40px 40px 40px 0;
  transition: var(--transition);
}

.course-item:hover .video-img::before {
  opacity: 0.5;
  visibility: visible;
}

.video-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  color: var(--color-white);
  background: var(--theme-color2);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}

.course-item:hover .video-img a {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.course-item:hover .video-img a:hover {
  background: var(--color-white);
  color: var(--theme-color2);
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 350px;
  z-index: 100;
}

.video-wrapper img {
  border-radius: 12px;
}

@media only screen and (max-width:767px) {
  .Apply .container {
    flex-direction: column-reverse !important;
  }
  .applyImg img{
    display: none !important;
  }
}




.nav-tabs .nav-link {
  border: 1px solid #ecd429 !important;
    border-radius: 0px 0px 0 0 !important;
    background-color: #ffe73c !important;
  color: black;
  border: 1px solid #ccc;
  margin-right: 5px;
  padding: 16px 32px;
font-size: 1.4rem;

}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link.active:hover {
  /* background-color: green !important; */
  background-color: #77ae0a !important;
  border: 1px solid #5e9500 !important;
  color: white !important;
}




body {
  background-color: #f1f6ff;
}

#news-slider {
  margin-top: 80px;
}

.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
  padding: 10px;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: 10px;
  background-image: url(../assets/images/sliderImg1.jpeg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.post-slide .post-img img {
  width: 100%;
  /* height: auto; */
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: var(--theme-color2);
  transition: all 0.3s ease 0s;
  position: absolute;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-p {
  overflow-y: auto;
  margin: 10px;
  height: 110px;

}

.post-slide .img2 {
  background-image: url(../assets/images/sliderImg2.jpeg);
}

.post-slide .img3 {
  background-image: url(../assets/images/sliderImg3.jpg);
}

.post-slide .img4 {
  background-image: url(../assets/images/sliderImg4.jpg);
}

.post-slide .img5 {
  background-image: url(../assets/images/sliderImg5.png);
}
.post-slide .img6 {
  background-image: url(../assets/images/sliderImg6.png);
}
.post-slide .img7 {
  background-image: url(../assets/images/sliderImg7.png);
}
.post-slide .img8 {
  background-image: url(../assets/images/sliderImg8.jpg);
}
.post-slide .img9 {
  background-image: url(../assets/images/sliderImg9.jpg);
}
.post-slide .img10 {
  background-image: url(../assets/images/sliderImg10.jpg);
}
.post-slide .img11 {
  background-image: url(../assets/images/sliderImg11.png);
}
.post-slide .img12 {
  background-image: url(../assets/images/sliderImg12.jpg);
}
.post-slide .img13 {
  background-image: url(../assets/images/sliderImg13.jpg);
}
.post-slide .img14 {
  background-image: url(../assets/images/sliderImg14.jpg);
}
.post-slide .img15 {
  background-image: url(../assets/images/sliderImg15.jpg);
}

.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 20px;
  border-radius: 15px;
}

.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: var(--theme-color2);
}

.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

.post-slide .read-more {
  padding: 7px 20px;
  /* float: right; */
  margin-left: 80px;
  font-size: 12px;
  background: var(--theme-color2);
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px var(--theme-color2);
  border-radius: 25px;
  text-transform: uppercase;
}

.post-slide .read-more:hover {
  background: var(--theme-color2);
  text-decoration: none;
  color: #fff;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: var(--theme-color2);
  position: absolute;
  top: -10%;
  right: 60px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: var(--theme-color2);
  position: absolute;
  top: -10%;
  right: 10px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #fff;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}





.holiday_table ul li {

	width:50%;
	float:left;

}
.holiday_table td {

	padding:7px 7px 7px 12px;

}

.holiday_table .blue {

	background-color:#28b3ff;

	color:#ffffff;

	font-weight:700;

}

.holiday_table .gray {

	background-color:#e7e7e7;

}




.highlight {
  width: 100%;
  background: url(../assets/images/bg_philosophy.jpg);
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: cover;
  padding: 40px 0px 40px;
  background-attachment: fixed;
  text-align: center;
  color: white;
}


.wpsm_count-icon {
  display: block;
  margin-top: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin: 0 auto;
}



.wpsm_count-icon i {
  font-size: 44px;
  color: #fce63d;
}



.wpsm_number {
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Arial';
  letter-spacing: 2px;
  margin-top: 20px;
  line-height: 1.3em;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.wpsm_count-title {
  font-size: 22px;
  font-weight: bolder;
  font-family: 'Arial';
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  line-height: 1.3em;
}




.image-zoom-effect {
  display: flex;
  flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
  transform: scale(0.95);
}

.image-zoom-effect img {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-zoom-effect:hover img {
  transform: scale(1.1);
}

.cards-section {
  position: relative;
}

.capImg {
  position: absolute;
  top: -150px;
  left: 70px;
  width: 180px;
  height: 180px;
}


@media only screen and (max-width:1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}






@media all and (max-width: 768px) {
  .video-wrapper {
    height: 250px;
  }

  .capImg {
    display: none !important;
  }

  .about-bottom {
    gap: 10px
  }
}


.course-i {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 180px;
}







.flaticon-quote:before {
  content: "\f153";
}

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
}

.sec-title_title {
  position: relative;
  font-weight: 600;
  display: inline-block;
  color: green;
  font-size: 16px;
  text-transform: uppercase;
}

.sec-title_heading {
  font-weight: 700;
  color: rgb(16, 26, 77);
  margin-top: 2px;
}

.sec-title_text {
  line-height: 28px;
  font-size: 17px;
  color: rgb(102, 102, 102);
  margin-top: 15px;
}


.sec-title.light .sec-title_text {
  opacity: 0.90;
  color: white;
}

.sec-title.light .sec-title_heading {
  color: white;
}

.sec-title.centered {
  text-align: center !important;
}


.btn-style-two {
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 3px;
  padding: 12px 18px;
  display: inline-block;
  letter-spacing: 1px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  background-color: var(--theme-color2);
}

.btn-style-two::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  left: -50px;
  top: 100%;
  content: "";
  right: -50px;
  bottom: -50px;

  border-radius: 50%;
  background-color: rgb(1, 12, 58);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.btn-style-two:hover::before {
  top: -20px;
}

.btn-style-two .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-two .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}








.footer-area {
  width: 100%;
  padding-top: 80px;
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
}

@media(max-width:767px){
  .footer-area{
    padding-top: 20px !important;
  }
  .footer-logo img{
    width: 70%  !important;
  }
}

.footer-shape{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  /* height: 80px; */
  width: 100%;
  margin-bottom: 25px;
}

.copyright {
  /* justify-content: center;
  align-content: center; */
  position: relative;
}

.copyright .copyright-wrapper{
  padding: 25px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: rgb(212, 212, 54);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: rgb(212, 212, 54);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: rgb(212, 212, 54);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding-left: 0px;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
  text-decoration: none;
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--color-white);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: rgb(212, 212, 54);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px 10px 10px 0;
  background: var(--color-white);
  color: var(--theme-color2);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: rgb(212, 212, 54);
  color: var(--color-white);
}

.footer-contact li {
  padding-left: 0px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px 10px 10px 0;
  background: rgb(201, 201, 2);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}



@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
  .owl-item {
    width: 350px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 1000px) {
  .course-title {
    font-size: 18px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before{
    width: 40%;
  }
  /* .about-right{
    margin-top: 180px;
  } */
  .course-img1 img {
    height: 200px;
  }
  .course-img {
    height: 180px;
    width: 100%;
  }
  .course-title {
      font-size: 22px;
      text-align: center;
  }
  .course-title1{
    font-size: 18px;
  }
  .feature-content li {
    font-size: 18px;
  }
  .text-start {
    margin-left: 10px;
  }
  .about-experience-icon
  {
    width: 70px;
    height: 70px;
  }
  .about-experience-icon img{
    margin-top: -31px;
  }
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: white;
    background-color: var(--theme-color2);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.fa-arrow-up-from-arc:before{
  content: "\e4b4";
}

@media (min-width: 767px) and (max-width:1199px){
  .scroll-top.active{
    bottom: 100px;
  }
}





.calendar {
  width: 320px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
}

.header {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.weekdays, .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.weekdays div {
  font-weight: bold;
  padding: 10px 0;
  color: #333;
}

.days div {
  padding: 10px 0;
  margin: 2px;
  border-radius: 50%;
  transition: 0.3s;
}

.days div:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.today {
  background-color: #4caf50;
  color: white;
}





/* Our Campus */



.page-title-heading{
  font-size: 45px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.12;
    order: 1;
    color: #62ffe8;
    margin-bottom: 10px;
}

.rr-section-title-1{
  font-size: clamp(2.75rem, 2.75rem + 1.1458vw, 4.125rem);
    /* font-family: "Gabriela", times, serif; */
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.12;
    order: 1;
    color: var(--theme-color2);
}


.rr-section-title-2{
  font-family: "Roboto", sans-serif;
  background: rgb(255,255,255,0.5);
  padding: 6px;
    font-size: 22px; 
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: 0px;
    line-height: 1;
    color: black;
    margin-top: 5px;
    max-width: max-content;
}

.rr-section-title-2 h4{
  margin-bottom: 0px !important;
}

.rr-section-title {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    margin-bottom: 0;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--theme-color2);
}

.AboutCampus {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    padding: 30px;
    
}

.AboutCampus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/image2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Adjust the blur level as needed */
    z-index: 0;
}

.AboutCampus .about-area {
    position: relative;
    z-index: 1;
}




.pictureSegment {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.pictureSegment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/image18.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Adjust the blur level as needed */
    z-index: 0;
}

.pictureSegment .about-area {
    position: relative;
    z-index: 1;
}


.jigyasa-img{
  position: relative;
}

.jigyasa-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    border-radius: 40px 40px 40px 0;
    transition: var(--transition);
}

.jigyasa-img img {
    height: 300px;
    width: 100%;
    border-radius: 40px 40px 40px 0;
    margin-bottom: 30px;
}




@media (max-width:767px){
  .page-title-heading{
    font-size: 30px !important; 
  }
  .rr-section-title-2 h4{
    font-size: 15px !important;
  }
  .rr-section-title{
    font-size: 20px !important;
  }

  .lakshyaContent {
    padding: 0px !important;
  }

  .lakshya-img {
    width: 200px  !important;
    
  }
  .lakshya-text{
    padding-top: 30px  !important;
  }
  
  .rr-about-title-box h3{
    font-size: 17px;
  }
  .rr-about-title-box h4{
    font-size: 15px;
  }
  .rr-about-title-box p{
    padding: 10px;
  }
  .reach-1{
    margin-top: 20px;
  }

  .reach-2{
    margin-top: 20px;
  }

  .reach-3{
    margin-top: 20px;
  }


}







/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Raleway-Black;
  src: url('../fonts/raleway/Raleway-Black.ttf'); 
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url('../fonts/raleway/Raleway-SemiBold.ttf'); 
}

@font-face {
  font-family: Raleway-Bold;
  src: url('../fonts/raleway/Raleway-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}



/*---------------------------------------------*/


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}



/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.wrap-contact100 {
  max-width: 960px;
  background: #fff;
  border-radius: 2px;
  padding: 66px 115px 59px 115px;
  position: relative;
}


/*==================================================================
[ Form ]*/

.contact100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact100-form-title {
  display: block;
  width: 100%;
  font-family: Raleway-Black;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 32px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: transparent;
  margin-bottom: 35px;
}

.rs1-wrap-input100 {
  width: calc((100% - 30px) / 2);
}

.label-input100 {
  font-family: Raleway-SemiBold;
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

.input100 {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border-radius: 2px;

  font-family: Raleway-SemiBold;
  font-size: 20px;
  color: #686868;
  line-height: 1.2;
  padding: 0 28px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  margin-top: 10px;
}


/*---------------------------------------------*/
input.input100 {
  height: 62px;
}


textarea.input100 {
  min-height: 162px;
  padding-top: 19px;
  padding-bottom: 13px;
}

.input100:focus {
  background: #e6e6e6;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5px;
}

.wrap-contact100-form-btn {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #df2351;
  background:  linear-gradient(to right, #A0E7A0, #116E63);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  height: 62px;

  font-family: Raleway-Bold;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .wrap-contact100 {
    padding: 66px 80px 59px 80px;
  }
}

@media (max-width: 768px) {
  .rs1-wrap-input100 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 66px 15px 59px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 34px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 10px;
  pointer-events: none;

  font-family: Raleway-SemiBold;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 34px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
[ Contact more ]*/

.contact100-more {
  display: block;
  max-width: 960px;
  font-family: Raleway-SemiBold;
  font-size: 20px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding: 40px 0 10px 0;
}



.contact-one{
	position: relative;
	padding: 110px 0px 80px;
}

.contact-one_info-column{
	position: relative;
	margin-bottom: 30px;
}

.contact-one_info-outer{
	position: relative;
}

.contact-one_info-list{
	position: relative;
}

.contact-one_info-list li{
	position: relative;
	min-height: 80px;
	color:black;
	font-size: 16px;
	padding-top: 10px;
	margin-bottom: 20px;
	padding-left: 100px;
}

.contact-one_info-list li .icon{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 40px;
	color: white;
	background-color: var(--theme-color2);
	font-family: "flaticon_monic-flat";
}

.contact-one_info-list li strong{
	position: relative;
	display: block;
	font-weight: 700;
	color: grey;
	font-size: 18px;
	margin-top:10px;
}




 .gallery {
  display: flex;
  gap: 15px;
}

.card {
  width: 100%;
  cursor: pointer;
  text-align: center;
  border: 1px solid black;
}

.card img {
  border-radius: 6px;
  width: 100%;
}

.card-img{
  height: 200px;
}



.registerarea__section__title{
  text-align: center; 
  padding-top: 100px;
}

@media (max-width:767px){
  .registerarea__section__title{
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .house1{
    margin-bottom: 0px !important;
  }
}


.sectionClass{
  margin-top: 30px;
  margin-bottom: 30px;
}

.house1{
  margin-bottom: 50px;
}




