@charset "UTF-8";
body {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  color: #3b3b3b !important;
  background-color: #f8f9fa !important;
  line-height: 1.6 !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: rgb(75, 75, 75) !important;
  overflow-x: hidden !important;
}

h1, h2, h3 {
  color: #143750 !important;
  font-weight: 600 !important;
}

h4, h5, h6 {
  color: #6D9C3F !important;
  font-weight: 600 !important;
}

.button {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #3a7ae4, #2e9e4a);
}
.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.button[disabled] {
  background: #cccccc;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 400px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
.unique-color-dark {
  background-color: #6D9C3F !important;
}

.footer1 {
  padding-top: 60px;
}

.footer2 .textt {
  font-size: 22px;
  font-weight: 500;
}
.footer2 ul {
  margin: 0;
  padding: 0;
}
.footer2 .first1 li {
  align-items: center;
  display: inline;
  font-size: 25px;
  align-self: center;
  padding: 20px;
}
.footer2 .first1 li:hover i:hover {
  text-shadow: 0px 0px 10px #fff;
}
.footer2 .second2 a {
  color: #fff;
  text-decoration: none;
}
.footer2 .second2 a:hover {
  color: rgb(205, 185, 185);
  padding: 10px;
}
.footer2 .second2 ul li {
  padding-bottom: 10px;
}

.therd3 a {
  color: #fff;
  text-decoration: none;
}
.therd3 a:hover {
  color: rgb(205, 185, 185);
  padding: 10px;
}
.therd3 ul li {
  padding-bottom: 10px;
}

#main-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
#main-page-loader img {
  width: 100px;
  height: auto;
}

#main-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.owl-carousel {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(-100%);
  animation: fadeRight 1s ease-in-out forwards;
  animation-delay: 0s;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-left {
  opacity: 0;
  transform: translateX(100%);
  animation: fadeLeft 1s ease-in-out forwards;
  animation-delay: 0s;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-bottom {
  opacity: 0;
  transform: translateY(-100%);
  animation: fadeBottom 1s ease-in-out forwards;
  animation-delay: 0s;
}

@keyframes fadeBottom {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-top {
  opacity: 0;
  transform: translateY(100%);
  animation: fadeTop 1s ease-in-out forwards;
  animation-delay: 0s;
}

@keyframes fadeTop {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lms-animation-box {
  position: relative;
  display: block;
  overflow: hidden;
}
.lms-animation-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.041);
  z-index: 2;
  pointer-events: none;
}
.lms-animation-box img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.zoom-animation {
  animation: zoomInOut 20s linear infinite;
  transform-origin: left center;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.lms-animation-box-main-right::before {
  background: rgba(0, 0, 0, 0.297);
}
.lms-animation-box-main-right .zoom-animation {
  animation: zoomInOut1 18s linear infinite;
  transform-origin: right center;
}
@keyframes zoomInOut1 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.zoom-animation-large {
  animation: zoomInOut2 58s linear infinite;
  transform-origin: center;
}

@keyframes zoomInOut2 {
  0%, 100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes bg-spin {
  0% {
    --border-angle: 0turn;
  }
  100% {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.unique-card {
  border-radius: 10px;
  --border-size: 2px;
  --border-angle: 0turn;
  background-image: conic-gradient(from var(--border-angle), #fff, #fff 50%, #fff), conic-gradient(from var(--border-angle), transparent 20%, #22587B, #9D2285, #58A9E1, #F4B42F, #ED403E, #6C9B3E, #6C9B3E, #5a8532);
  background-size: calc(100% - var(--border-size) * 1) calc(100% - var(--border-size) * 1), cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: bg-spin 3s linear infinite;
}
.unique-card:hover {
  animation-play-state: paused;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 200px;
}
.logo #logo-img {
  z-index: 2;
  position: relative;
  background-color: #F6FCFB;
}
.logo #logo-text {
  position: absolute;
  top: 50%;
  left: 47px;
  transform: translateY(-50%);
  z-index: 1;
  white-space: nowrap;
  opacity: 0;
}
.logo #logo-text span {
  color: #6D9C3F;
  font-weight: 600;
  padding-left: 5px;
}
.logo #logo-text.animate-logo-text {
  animation: slideInLeftToRight 1.5s ease-out forwards, slideAnimation 0.4s forwards;
}

@keyframes slideInLeftToRight {
  0% {
    transform: translateX(-150%) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) translateY(-50%);
    opacity: 1;
  }
}
.logo {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 200px;
}
.logo #logo-img {
  z-index: 2;
  position: relative;
  background-color: #F6FCFB;
}
.logo .logo-text2 {
  position: absolute;
  top: 50%;
  left: 47px;
  transform: translateY(-50%);
  z-index: 1;
  white-space: nowrap;
  animation: slideInLeftToRight 1.5s ease-out forwards;
  animation-delay: 0s;
}
.logo .logo-text span {
  color: #6D9C3F;
  font-weight: 600;
  padding-left: 5px;
}

@keyframes slideInLeftToRight {
  0% {
    transform: translateX(-150%) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) translateY(-50%);
    opacity: 1;
  }
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes floatLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes floatScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes floatTilt {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-3px);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.why-box:nth-child(1) svg {
  animation: floatUpDown 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0s;
}

.why-box:nth-child(2) svg {
  animation: floatLeftRight 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.4s;
}

.why-box:nth-child(3) svg {
  animation: floatRotate 9.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.8s;
  transform-origin: 50% 70%;
}

.why-box:nth-child(4) svg {
  animation: floatScale 8.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.2s;
}

.why-box:nth-child(5) svg {
  animation: floatTilt 9.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.6s;
  transform-origin: 50% 50%;
}

.why-box:nth-child(6) svg {
  animation: floatBounce 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 2s;
}

.why-box svg:hover {
  animation-play-state: paused;
  animation-name: rotate360;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform-origin: center;
}

.animated-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.animated-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 20%;
  background: linear-gradient(90deg, #6d9c3f, #a6c84b);
  border-radius: 1px;
  box-shadow: -6px 0 6px rgba(109, 156, 63, 0.4), -12px 0 10px rgba(109, 156, 63, 0.2), -18px 0 14px rgba(109, 156, 63, 0.1);
  animation: snakeFastTrail 5s ease-in-out infinite;
}
.animated-title .highlight {
  color: #6d9c3f;
}

@keyframes snakeFastTrail {
  0% {
    transform: translateX(0%);
    opacity: 0.3;
  }
  5% {
    opacity: 1;
  }
  25% {
    transform: translateX(400%);
    opacity: 1;
  }
  30% {
    transform: translateX(400%);
    opacity: 0;
  }
  100% {
    transform: translateX(400%);
    opacity: 0;
  }
}
@media (min-width: 320px) {
  .custom-navbar .navbar-toggler-icon {
    background-color: transparent !important;
  }
  .bsd-main-page {
    height: 44vh !important;
  }
  .bsd-main-page .bsd-main-page-container {
    height: 44vh !important;
  }
  .bsd-main-page .content {
    width: 60% !important;
  }
  .w-sm-100 {
    width: 100%;
  }
  .school-setup-sub-heading {
    padding: 12px 0px !important;
  }
  .school-setup-sub-heading .school-setup-sub-heading-list-main {
    padding-left: 0px;
  }
}
@media (min-width: 576px) {
  .custom-navbar .navbar-toggler-icon {
    background-color: transparent !important;
  }
  .bsd-main-page .content {
    width: 50% !important;
  }
}
@media (min-width: 768px) {
  .request-demo {
    background: unset !important;
  }
  .d-md-block {
    display: block !important;
  }
  .custom-navbar .navbar-toggler-icon {
    background-color: transparent !important;
  }
  .bsd-main-page {
    height: 80vh !important;
  }
  .bsd-main-page .bsd-main-page-container {
    height: 80vh !important;
  }
  .bsd-main-page .content {
    width: 40% !important;
  }
  .school-setup-sub-heading {
    padding: 12px 12px !important;
  }
  .school-setup-sub-heading .school-setup-sub-heading-list-main {
    padding-left: 25px;
  }
}
@media (min-width: 992px) {
  .lms-animation-box-main-left {
    padding-right: 80px;
  }
  .lms-animation-box-main-left .lms-animation-box {
    border-radius: 7px 40px 7px 40px;
    border-bottom: 4px solid rgba(142, 142, 142, 0.3411764706);
    border-left: 4px solid rgba(142, 142, 142, 0.3411764706);
  }
  .lms-animation-box-main-right {
    padding-left: 80px;
  }
  .lms-animation-box-main-right .lms-animation-box {
    border-radius: 8px 8px 8px 8px !important;
    border: 8px solid #eaeaea;
  }
  .banner-left {
    padding-right: 80px;
  }
  .banner-center {
    padding-right: 40px;
    padding-left: 40px;
  }
  .banner-right {
    padding-left: 80px;
  }
  .banner-content-box {
    text-align: center;
  }
  #navbarNav ul li a {
    display: flex;
    align-items: center;
  }
  .bsd-main-page .content {
    width: 23% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

.banner {
  background-image: url("/assets/img/banner.png");
  background-size: 110% 110%;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-box {
  background-image: url("/assets/img/footer-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 350px 0 0 0;
  line-height: 1.3;
}
.footer-box p,
.footer-box a,
.footer-box h5 {
  color: #fff !important;
}
.footer-box img {
  max-height: 70px;
  background-color: whitesmoke;
  padding: 8px;
  border-radius: 10%;
  text-align: center;
  margin: auto;
}
.footer-box ul {
  padding-left: 20px;
}

.custom-navbar {
  background: linear-gradient(to right, #F0F9F7, #ffffff);
  border-bottom: 2px solid #e1e1e1;
  transition: all 0.3s ease-in-out;
}
.custom-navbar .navbar-toggler {
  border-color: #ccc;
}
.custom-navbar .navbar-nav .nav-link {
  color: #6D9C3F;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 25px;
}
.custom-navbar .navbar-nav .nav-link:hover {
  background-color: rgba(151, 201, 102, 0.2823529412);
}
.custom-navbar .navbar-brand {
  color: #6D9C3F;
}
.custom-navbar .navbar-brand img {
  max-height: 50px;
}
.custom-navbar .navbar-toggler-icon {
  background-color: #6D9C3F;
}
.custom-navbar .nav-item.active .nav-link {
  color: #fff;
  background-color: #6D9C3F;
}

.navbar {
  transition: all 0.8s ease-in-out;
}

.fixed-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.8s ease-in-out;
  z-index: 999;
}

.fixed-nav.show {
  transform: translateY(0);
  opacity: 1;
}

.fade-in {
  transform: translateY(-10px);
}

.fade-in.show {
  transform: translateY(0);
}

.request-demo {
  background: #6D9C3F !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px !important;
  font-weight: bold;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.request-demo:hover {
  color: #f4f4f4 !important;
}
.request-demo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: left 0.5s ease-in-out;
}
.request-demo:hover::before {
  left: 100%;
}

.banner-box:hover .banner-content-box {
  transform: scale(1.05);
  transition: 0.3s;
}
.banner-box img {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.banner-box .banner-content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(222, 222, 222, 0.5137254902);
  padding: 5px 10px;
  line-height: 1.2;
  margin-top: 7px;
  border-radius: 20px;
  min-height: 45px;
  transition: 0.3s;
}
.banner-box p {
  margin: 0;
  padding: 0;
}

.main-features {
  padding: calc(var(--bs-gutter-x) * 0.5) calc(var(--bs-gutter-x) * 1);
  background-color: transparent;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.148), inset 0 0 35px rgba(0, 0, 0, 0);
  border-radius: 20px;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: calc(var(--bs-gutter-x) * 1);
  padding-bottom: calc(var(--bs-gutter-x) * 1);
}
.main-features .features {
  max-height: 430px;
  overflow: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #e4e4e4 #f1f1f1;
  -ms-overflow-style: none;
}
.main-features .features::-webkit-scrollbar {
  width: 6px;
}
.main-features .features::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.main-features .features::-webkit-scrollbar-thumb {
  background: #b7b7b7;
  border-radius: 10px;
}
.main-features .features::-webkit-scrollbar-thumb:hover {
  background: #b7b7b7;
}
.main-features .features img {
  margin: calc(var(--bs-gutter-x) * 0.5) 0;
  border-radius: 10% !important;
  box-shadow: 0 0 13px rgba(109, 109, 109, 0.101), inset 0 0 35px rgba(0, 0, 0, 0);
}

.about-us,
.terms-and-conditions,
.privacy-policy {
  margin-top: 18px;
  margin-bottom: 28px;
  background-color: rgba(225, 225, 225, 0.7764705882);
  padding: 28px 39px;
  border-radius: 26px;
}
.about-us ul li,
.terms-and-conditions ul li,
.privacy-policy ul li {
  list-style: disc;
}

.manage-your-school {
  background-color: #F3FAEA;
  border: 1px solid #6D9C3F;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-align: center;
  padding: 15px 0;
  margin: 8px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.manage-your-school:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(93, 176, 117, 0.3);
  background-color: #e8f6d4;
}
.manage-your-school:hover i {
  color: #418fde;
}
.manage-your-school:hover p {
  color: #4f772d;
}
.manage-your-school p {
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease;
}
.manage-your-school i {
  margin: 0;
  padding: 0;
  font-size: 29px;
  color: #5EACEC;
  transition: all 0.3s ease;
}

.feature-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 20px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}
.feature-card:hover .for-outline {
  border: 0.5px solid #6D9C3F;
}
.feature-card .for-outline {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto 20px;
  padding: 3px;
  border-radius: 50%;
}
.feature-card .icon-container {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .icon-container i {
  color: white;
  font-size: 24px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.bsd-main-page {
  background: url("/assets/img/bsd-bg.png") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  height: 80vh;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.226);
}
.bsd-main-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.656);
  z-index: 1;
}
.bsd-main-page .content {
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  width: 23%;
  background: linear-gradient(135deg, #6D9C3F, #A7D57C);
  z-index: 2;
  border-radius: 0px 40px 40px 0px;
}
.bsd-main-page h3 {
  color: #fff !important;
  font-size: 20px;
}
.bsd-main-page .item {
  padding: 0px 25px;
}
.bsd-main-page .bsd-main-page-container {
  height: 80vh;
}
.bsd-main-page .owl-nav {
  display: none;
}
.bsd-main-page .owl-dots {
  display: none;
}
.bsd-main-page .item-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden !important;
}
.bsd-main-page .item-box img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.bsd-main-page .item-box .hover-content {
  text-align: center;
  border-radius: 0px 0px 15px 15px !important;
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  transition: bottom 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 12px;
}
.bsd-main-page .item-box .hover-content p {
  margin: 0;
}
.bsd-main-page .item-box:hover .hover-content {
  bottom: 0;
}
.bsd-main-page .text {
  font-weight: bold;
  text-transform: uppercase;
}

.footer1 a {
  color: #fff !important;
}
.footer1 p {
  margin: 0;
}
.footer1 .follow-us i {
  border: 1px solid #FFFFF9;
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s;
}
.footer1 .follow-us i:hover {
  background-color: #FFFFF9;
  color: #6D9C3F;
}
.footer1 ul.list-unstyled li {
  position: relative;
}
.footer1 ul.list-unstyled li a {
  transition: 0.3s;
  display: inline-block;
  padding-right: 0;
  transition: padding-right 0.3s;
}
.footer1 ul.list-unstyled li a::after {
  content: "-";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer1 ul.list-unstyled li a:hover {
  padding-left: 12px;
  transition: 0.3s;
  color: #dedede !important;
}
.footer1 ul.list-unstyled li a:hover::after {
  opacity: 1;
}

.slick.marquee .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.slick.marquee img {
  max-height: 80px;
  width: auto;
}

.slick-track {
  display: flex;
  align-items: center;
}

.slick-slide {
  outline: none;
}

.slick-list {
  overflow: hidden;
}

.main-features-sm img {
  border-radius: 2px;
}

.nav-sub-menu {
  position: relative;
}
.nav-sub-menu .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-sub-menu .nav-link .icon-switch {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  overflow: hidden;
}
.nav-sub-menu .nav-link .icon-switch i {
  position: absolute;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease;
}
.nav-sub-menu .nav-link .icon-switch .icon-default {
  transform: translateY(0);
}
.nav-sub-menu .nav-link .icon-switch .icon-hover {
  transform: translateY(-100%);
}
.nav-sub-menu .dropdown-menu {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-radius: 8px;
  text-align: center;
  pointer-events: none;
}
.nav-sub-menu .dropdown-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: background 0.3s, padding-left 0.3s;
}
.nav-sub-menu .dropdown-menu li a:first-child {
  border-top: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
}
.nav-sub-menu .dropdown-menu li a:last-child {
  border-radius: 0 0 8px 8px;
}
.nav-sub-menu .dropdown-menu li a:hover {
  background: #f0f0f0;
  font-weight: bold;
}
.nav-sub-menu:hover .dropdown-menu {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.nav-sub-menu:hover .icon-switch .icon-default {
  transform: translateY(100%);
}
.nav-sub-menu:hover .icon-switch .icon-hover {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .nav-sub-menu .dropdown-menu {
    position: static;
    transform: scaleY(1) !important;
    opacity: 1 !important;
    box-shadow: none;
    background: transparent;
    pointer-events: auto;
    width: 100%;
  }
  .nav-sub-menu .dropdown-menu li a {
    background: #f9f9f9;
    border: 1px solid #ddd;
    margin: 5px 0;
    border-radius: 5px;
    padding: 10px 15px;
    text-align: left;
  }
}

.nav-sub-menu:hover > .dropdown-menu {
  display: block !important;
  margin-top: 1px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 999;
}

@media (max-width: 1200px) {
  .nav-sub-menu:hover > .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* //for bsd css */
.featuresss {
  padding: 70px 0px 25 0px;
}

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 160px 0px 44px 0px;
  position: relative;
  overflow: hidden;
}

.box-main {
  height: 100%;
  border: 1px solid #E5E4EC;
  border-radius: 10px;
  margin: 0px 30px;
  box-shadow: 0 0 8px 7px rgba(64, 64, 64, 0.045);
}

.box5 {
  text-align: center;
  line-height: 20px !important;
  padding: 0px 15px 15px 15px;
}

.box5 p {
  line-height: 20px;
  color: rgb(75, 75, 75) !important;
}

.box5 img {
  width: 100%;
  margin: 12px 0px 0px 0px;
  border-radius: 8px !important;
  overflow: hidden;
}

.sub-headding {
  font-weight: 500;
  line-height: 18px;
}

.headding {
  color: #245980 !important;
  font-weight: 600;
}

.teach-student {
  padding: 10px 0px 23px 0px;
  text-align: center;
}

.teach-student p {
  line-height: 19px;
}

.box-teach-student {
  padding: 15px;
}

/* //foe slick slider css */
.slick-track {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
}

.slick-list {
  padding: 0 !important;
  overflow: visible !important;
}

.slick-slide {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-slide .inner {
  margin: 0 15px;
}

.marquee_rtl,
.marquee {
  transform: scale(0.8, 0.8);
  margin-top: 0px;
}

.hide {
  display: none !important;
}

.contact-us {
  margin-top: 75px !important;
}

.full-width-container {
  overflow: hidden;
}

.sec-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: transparent;
}

.sec-title h2 {
  font-size: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--blue);
}

.sec-title p {
  font-size: 18px;
  line-height: 28px;
}

.testimonial-area {
  background: var(--blue);
  position: relative;
  z-index: 2;
}

.testimonial-area .owl-carousel {
  overflow: hidden;
  padding: 0 20px;
  margin: 0px -40px;
  padding-right: 40px;
}

.testimonial-area .owl-stage-outer {
  padding: 30px 50px;
  margin-left: -34px;
  width: calc(100% + 100px);
}

.single-testimonial {
  border: 3px solid #F2F1F5;
  text-align: center;
  border-radius: 45px;
  position: relative;
  z-index: 2;
}

.single-testimonial p {
  font-size: 13px;
  line-height: 24px;
  padding: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 2;
}

.single-testimonial::before {
  content: "";
  position: absolute;
  left: -35px;
  top: -35px;
  background: url(assets/images/quote.png) no-repeat var(--blue);
  background-size: 60%;
  width: 126px;
  height: 100px;
  transform: rotate(180deg);
  background-position: 34px 15px;
}

.single-testimonial::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -34px;
  background: url(assets/images/quote.png) no-repeat var(--blue);
  background-size: 60%;
  width: 126px;
  height: 100px;
  background-position: 34px 19px;
}

.round {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.round-1::before {
  content: "";
  position: absolute;
  left: 88px;
  top: -7px;
  width: 50px;
  height: 4px;
  background: rgba(255, 116, 116, 0.8862745098);
  border-radius: 30px;
}

.round-1::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 62px;
  width: 7px;
  height: 50px;
  background: transparent;
  border-radius: 30px;
}

.round-2::before {
  content: "";
  position: absolute;
  right: 87px;
  bottom: -7px;
  width: 50px;
  height: 7px;
  background: transparent;
  border-radius: 30px;
  z-index: 1;
}

.round-2::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 62px;
  width: 4px;
  height: 50px;
  background: rgba(255, 116, 116, 0.8862745098);
  border-radius: 30px;
  z-index: 1;
}

.client-video {
  padding-right: 15px;
}

.client-info {
  position: relative;
  z-index: 3;
}

.client-info a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  font-size: 22px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-bottom: 50px;
}

.client-info h6 {
  color: #000;
  font-weight: 500;
  font-size: 18px;
}

.client-info span {
  display: inline-block;
  font-size: 12px;
}

.sec-title.white-title h2 {
  color: #fff;
}

.owl-dots button {
  background: #FE3F40 !important;
  width: 10px;
  height: 10px;
  border-radius: 26px;
  margin: 0 5px;
  transition: 0.3s;
}

.owl-dots {
  text-align: center;
}

.owl-dots button.active {
  width: 30px;
}

.verfiied-by {
  padding: 43px 0px 0px 0px;
}

/* responsive */
/* Extra Small devices (phones) */
@media (max-width: 575.98px) {
  .single-testimonial {
    min-height: 50px;
    border: 3px solid #F2F1F5;
    text-align: justify;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    height: 80% !important;
    padding: 0px 10px;
    text-align: left;
    width: 100%;
  }
  .main-banner {
    padding: 180px 0px 10px 0px;
  }
  .featuresss {
    padding: 20px 0px;
  }
  .box-main {
    height: 100%;
    border: 1px solid #E5E4EC;
    border-radius: 10px;
    margin: 0px 30px;
  }
  .mainn-boxx {
    margin: 15px 0px;
  }
}
/* Small devices (tablets) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .single-testimonial {
    min-height: 500px;
    border: 3px solid #F2F1F5;
    text-align: center;
    border-radius: 45px;
    position: relative;
    z-index: 2;
    height: 100% !important;
  }
  .main-banner {
    padding: 190px 0px 10px 0px;
  }
  .featuresss {
    padding: 20px 0px;
  }
  .box-main {
    height: 100%;
    border: 1px solid #E5E4EC;
    border-radius: 10px;
    margin: 0px 30px;
  }
  .mainn-boxx {
    margin: 15px 0px;
  }
}
.client-video img {
  display: block;
  /* width: 92%; */
  width: 37px;
  height: 37px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.youtube-video {
  padding: 14px 0px 0px 0px;
}

.class-discription {
  padding: 20px 0px 14px 0px;
}

.sub-headding2 {
  font-size: 19px;
  font-weight: 600;
  color: #555555;
  padding-top: 15px;
}

.class-discription p {
  line-height: 1.5 !important;
  padding-top: 4px;
}

.class-discription-box {
  padding-bottom: 50px;
  padding-top: 15px;
  padding: 15px 35px 8px 35px;
}

@media (max-width: 767px) {
  .verfiied-by .headding {
    font-size: 1.2rem;
  }
  .slick-slide {
    padding: 5px;
  }
  .slick-slide .inner {
    padding: 5px;
  }
  .slick-slide img {
    max-height: 60px;
  }
}
.career-image img {
  border-radius: 100px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

.teach-bar {
  padding: 10px 0 39px;
}

.teach-student {
  padding: 10px 0 23px !important;
  text-align: center !important;
}

.elementor-section {
  margin-bottom: 20px;
}
.elementor-section p {
  line-height: 1.5;
  text-align: justify;
  word-spacing: -0.5px;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.elementor-section h5 {
  margin-bottom: 8px;
  text-align: left !important;
}

.tabs {
  display: flex;
}
.tabs p {
  font-weight: 600;
  font-size: 18px !important;
}

.elementor-widget-tabs .elementor-tab-desktop-title {
  position: relative;
  font-weight: 700;
  line-height: 1;
  border: solid transparent;
}

.tab,
.tab2 {
  padding: 5px !important;
  cursor: pointer;
  color: #fff;
  background-color: #fff;
  transition: background-color 0.3s;
}
.tab.active,
.tab2.active {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

.tab2 {
  margin-top: 20px !important;
}

.content {
  margin-top: 10px;
  padding: 30px;
  background-color: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}
.content p {
  margin-bottom: 10px;
  font-size: 12pt;
  line-height: 1.2;
  text-align: justify;
  word-spacing: -0.5px;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.content h4 {
  font-size: 20px !important;
  text-align: center;
}

.image-container {
  text-align: center;
}
.image-container img {
  max-width: 90%;
  height: auto;
  display: inline-block;
}

.course-list {
  padding: 50px;
  text-align: left;
}
.course-list ul {
  margin-top: 10px;
  font-size: 12pt !important;
}
.course-list .list1,
.course-list .list2 {
  margin-top: 20px;
}

.course-table {
  padding: 50px;
}

.codePacks-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.codePacks-list .codePack {
  border: 1px solid #ddd;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.codePacks-list .codePack p {
  text-align: center;
}
.codePacks-list .codePack .codePack-title {
  font-size: 20px;
  text-align: center;
}
.codePacks-list .codePack .codePack-description,
.codePacks-list .codePack .codePack-time,
.codePacks-list .codePack .codePack-prerequisite {
  text-align: center;
  font-size: 1em;
  margin-top: 8px !important;
  line-height: 1.2;
}
.codePacks-list .codePack .codePack-details {
  list-style: none;
  padding: 0;
  text-align: left;
}
.codePacks-list .codePack .codePack-details li {
  list-style-type: disc !important;
  font-size: 12pt !important;
}
.codePacks-list .codePack .codePack-note {
  text-align: center;
  color: #fff;
}

.techConnected-img {
  text-align: center;
}
.techConnected-img img {
  height: 70%;
  max-width: 70%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.class-description-image img {
  border-radius: 8px;
}

.class-discription-box p {
  text-align: justify;
  word-spacing: -0.5px;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.camp-container {
  max-width: 100%;
  height: auto;
}

.camp-button p {
  background-color: #03A4ED;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 10px;
  letter-spacing: 0.25px;
  display: inline-block;
  margin-bottom: 20px !important;
  cursor: pointer !important;
  transition: all 1s ease-in-out;
}
.camp-button p:hover {
  transition: 0.6s;
  box-shadow: inset 300px 0 0 0 #ED595C;
}

.discover-more-camps {
  display: none;
}

.single-testimonial {
  margin-left: 30px !important;
}

@media (max-width: 768px) {
  .tabs {
    display: block !important;
  }
  .tab {
    margin: 10px !important;
  }
  .content p {
    font-size: 14px !important;
  }
  .image-container {
    text-align: center;
  }
  .image-container img {
    max-width: 100%;
    height: auto;
  }
  .content h4 {
    font-size: 18px !important;
  }
}
@media (min-width: 1400px) {
  .codePack-details {
    margin-left: 135px !important;
  }
  .tab2 {
    display: none;
  }
  .client-info {
    padding-bottom: 0 !important;
  }
  .image-container img {
    max-width: 80% !important;
  }
  .tabs {
    margin-top: 30px !important;
  }
}
@media (min-width: 1200px) {
  .codePack-details {
    margin-left: 110px !important;
  }
  .tab2 {
    display: none;
  }
  .client-info {
    padding-bottom: 15px !important;
  }
  .tabs {
    margin-top: 30px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .codePack-details {
    margin-left: 80px !important;
  }
  .tab2 {
    display: none;
  }
  .client-info {
    padding-bottom: 15px !important;
  }
}
@media (min-width: 767.98px) and (max-width: 991.98px) {
  .container {
    max-width: 100% !important;
  }
  .right-image img {
    width: 60% !important;
  }
  .featuresss,
  .box-main,
  .box5 {
    padding: 0 !important;
    margin: 0 !important;
  }
  .box5 img {
    width: 60% !important;
  }
  .tab2 {
    display: none;
  }
  .codePack-details {
    margin-left: 80px !important;
  }
  .tabs p {
    font-weight: 400;
    font-size: 16px !important;
  }
  .class-discription-box {
    padding: 5px !important;
    margin: 10px !important;
    width: 100% !important;
    height: 100% !important;
  }
  .client-info {
    padding-bottom: 15px !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 100% !important;
  }
  .right-image img {
    width: 60% !important;
  }
  .featuresss,
  .box-main,
  .box5 {
    padding: 0 !important;
    margin: 0 !important;
  }
}
.coding-plan img {
  height: 80px;
}
.coding-plan ul li {
  list-style: disc;
}
.coding-plan .build {
  border: 6px solid #FA595D;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}
.coding-plan .build:hover {
  border: 6px solid #6D9C3F;
}
.coding-plan .academy {
  border: 6px solid #FCCB00;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}
.coding-plan .academy:hover {
  border: 6px solid #6D9C3F;
}
.coding-plan .hight-school {
  border: 6px solid #FCAC17;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}
.coding-plan .hight-school:hover {
  border: 6px solid #6D9C3F;
}
.coding-plan .img-container {
  margin-bottom: 12px;
}

.list-style-type-lms li {
  list-style: disc !important;
}

/* Feature box style */
/* Feature Box Styling */
.feature-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.feature-box i {
  font-size: 40px;
  color: #6D9C3F;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.feature-box p {
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  filter: brightness(1.1);
}
.feature-box:hover i {
  color: #143750;
}
.feature-box:hover p {
  color: #555;
}

.feature-box-smarter {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.027);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  border: 1px solid transparent;
  transition: 0.3s;
  height: 100% !important;
  /* Hover Effects */
}
.feature-box-smarter i {
  font-size: 40px;
  color: #6D9C3F;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.feature-box-smarter p {
  font-size: 16px;
  color: #555;
  transition: color 0.3s ease;
}
.feature-box-smarter h5 {
  color: #143750 !important;
}
.feature-box-smarter:hover {
  border: 1px solid #6D9C3F;
  transition: 0.3s;
}

.school-setup {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  overflow: hidden;
}
.school-setup p {
  margin: 0;
  padding: 0;
}
.school-setup:hover .show-arrow {
  display: block;
}
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(-2px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(2px);
    opacity: 1;
  }
}
.school-setup .show-arrow {
  position: absolute;
  bottom: 9px;
  right: 12px;
  z-index: 9;
  display: none;
}
.school-setup .show-arrow .show-arrow-con {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #fff;
  position: relative;
}
.school-setup .show-arrow .show-arrow-con i {
  font-size: 8px;
  margin: 0;
  padding: 5px;
  position: relative;
  color: #143750;
  animation: arrowBounce 1.5s ease-in-out infinite;
}
.school-setup .school-setup:hover .show-arrow {
  display: block;
}
.school-setup .school-setup-sub-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 216, 216, 0.8980392157);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 15px !important;
  text-align: start;
}
.school-setup .school-setup-sub-heading::-webkit-scrollbar {
  display: none;
}
.school-setup .school-setup-sub-heading .school-setup-sub-heading-list-main {
  line-height: 1.1;
  list-style: disc !important;
  font-size: 15px;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(178, 178, 178, 0.35), 0 9px 32px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(178, 178, 178, 0.18), 0 18px 48px rgba(0, 0, 0, 0.12), 0 2px 0 #fff, 0 1px 0 #eaeaea;
  transition: text-shadow 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.school-setup .school-setup-sub-heading .school-setup-sub-heading-list-main li {
  list-style: none;
}
.school-setup .school-setup-sub-heading .school-setup-sub-heading-list-sub {
  text-shadow: none;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-left: 10px !important;
}
.school-setup .school-setup-sub-heading .school-setup-sub-heading-list-sub li {
  list-style: none !important;
  line-height: 1.4;
  font-size: 14px;
  position: relative;
  padding-left: 1.2em;
  text-transform: capitalize;
}
.school-setup .school-setup-sub-heading .school-setup-sub-heading-list-sub li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: rgba(110, 156, 63, 0.899);
  font-size: 14px;
  line-height: 1;
  animation: star-rotate 20.2s linear infinite;
  transform-origin: 50% 50%;
  display: inline-block;
}
.school-setup:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  filter: brightness(1.1);
  border: 1px solid rgba(110, 156, 63, 0.368627451);
  transition: 0.3s;
}
.school-setup:hover i {
  color: #143750;
}
.school-setup:hover p {
  color: #555;
}
.school-setup:hover .school-setup-sub-heading {
  transform: translateY(0);
  opacity: 1;
}
.school-setup i {
  font-size: 40px;
  color: rgb(109, 156, 63);
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.school-setup p {
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}

.contact-details-main a {
  color: #4b4b4b !important;
}
.contact-details-main .bg-contact-icon {
  background-color: #6D9C3F;
  border-radius: 5px;
  box-shadow: 0 0 5px 2px rgba(4, 4, 4, 0.153);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.contact-details-main .contact-details-container h5 {
  color: #2A5E80 !important;
  font-size: 19px !important;
}
.contact-details-main:hover .bg-contact-icon {
  transform: scale(1.1);
  border: 1px solid white !important;
}

.req-demo .contact-details-main a {
  color: #4b4b4b !important;
}
.req-demo .contact-details-main .bg-contact-icon {
  background-color: #67933b;
  border-radius: 5px;
  box-shadow: 0 0 5px 2px rgba(4, 4, 4, 0.153);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
  border: 1px solid white !important;
}
.req-demo .contact-details-main .contact-details-container h5 {
  color: #2A5E80 !important;
  font-size: 19px !important;
}
.req-demo .contact-details-main:hover .bg-contact-icon {
  transform: scale(1.18);
  border: 1px solid #e9e9e9 !important;
  background-color: #638c3a;
}

.page-header {
  background: linear-gradient(to right, #8cc63f 0%, #1e5a7c 90%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}/*# sourceMappingURL=style.css.map */