.blink-button {
    background-color: #ff1703;
    color: #fff;
    padding: 4px 13px;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: blinker 3s linear infinite;
    font-weight: 700 !important;
}

@keyframes blinker {
    0% {
        background-color: #ff1703;
        /* Original color */
        color: #fff;
    }

    50% {
        background-color: #ffe922;
        /* Blinking color */
        color: #fff;
    }

    100% {
        background-color: #ff1703;
        /* Back to original color */
        color: #fff;
    }
}

.blink-button:hover {
    background-color: #e01602;
    /* Slightly darker shade on hover */
}

/* Outer Notice Board Styling */
.notice-board {
    width: 100%;
    /* max-width: 320px; */
    border: 3px solid #66bc46;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #66bc46, #ff5733);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.notice-title {
    background: #66bc46;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}

.events-info h2 {
    font-size: 30px;
    margin: 25px 0;
    text-align: center;
    text-decoration: underline;
}

.events-info h3 {
    font-size: 26px;
    margin: 30px 0;
    text-align: center;
}

.events-info h4 {
    text-align: center;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.events-info h5 {
    text-align: center;
    font-size: 20px;
}

.events-info p {
    font-size: 25px;
    margin: 20px 0;
}

.details-info h3 {
    margin: 26px 0;
    text-align: center;
    font-size: 30px;
}

.notice-container .img-box6 {
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 30px;
}
.social-pages a {
    margin-left: 16px;
    font-weight: 400;
    color: #fff;
  }
  .social-pages a:hover {
    color: #08e7f5;
  }
  
  .sticky-icon  {
      z-index:99;
      position:fixed;
      top:20%;
      right:0%;
      width:220px;
      display:flex;
      flex-direction:column;}  
  .sticky-icon a  {
      transform:translate(160px,0px);
      border-radius:50px 0px 0px 50px;
      text-align:left;
      margin:2px;
      text-decoration:none;
      text-transform:uppercase;
      padding:10px;
      font-size:18px;
      font-family:'Oswald', sans-serif;
      transition:all 0.8s;}
  .sticky-icon a:hover  {
      color:#FFF;
      transform:translate(0px,0px);}	
  .sticky-icon a:hover i  {
      transform:rotate(360deg);}
  /*.search_icon a:hover i  {
      transform:rotate(360deg);}*/
  .Facebook  {
      background-color:#2C80D3;
      color:#FFF;}
      
  .Youtube  {
      background-color:#fa0910;
      color:#FFF;}
      
  .whatsaap  {
      background-color:#049715;
      color:#FFF;}
      
  .Instagram  {
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    }
      
  .Google  {
      background-color:#d34836;
      color:#FFF;}						
  .sticky-icon a i {
      background-color:#FFF;
      height:40px;
      width:40px;
      color:#000;
      text-align:center;
      line-height:40px;
      border-radius:50%;
      margin-right:20px;
      transition:all 0.5s;}
  .sticky-icon a i.fa-facebook-f  {
      background-color:#FFF;
      color:#2C80D3;}
      
  .sticky-icon a i.fa-google-plus-g  {
      background-color:#FFF;
      color:#d34836;}
      
  .sticky-icon a i.fa-instagram  {
      background-color:#FFF;
      color:#FD1D1D;
    }
      
  .sticky-icon a i.fa-youtube  {
      background-color:#FFF;
      color:#fa0910;}
      
  .sticky-icon a i.fa-twitter  {
      background-color:#FFF;
      color:#53c5ff;}
.details-info h4 {
    margin: 20px 0;
    text-align: center;
    font-size: 25px;
}

.notice-container {
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 30px;
}

.slider-area-video video {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: #fff;
}

.notice-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollLoop 12s linear infinite;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgb(17 127 102 / 10%);
    border-radius: 5px;
    margin: 4px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    box-shadow: 0px 2px 4px rgb(17 127 102 / 10%);
    transition: transform 0.3s;
    cursor: pointer;
}

.notice-item:hover {
    transform: scale(1.05);
    background: rgb(17 127 102 / 10%);
}

.notice-item i {
    color: #66bc46;
    font-size: 16px;
}

/* Keyframe Animation for Scrolling */
@keyframes scrollLoop {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-80%);
    }

    /* Adjust to match notice height */
}

.header-button {
    display: flex;
    align-items: center;
}

.header-call {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.icon-btn {
    font-size: 20px;
    color: #555;
    margin-right: 10px;
    /* Space between icon and text */
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 17px;

}

.contact-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.contact-info {
    font-size: 15px;
    color: #555;
}

/* Style for Latest Events Heading */
.section-title {
    font-size: 30px;
    /* Adjust the font size */
    font-weight: bold;
    color: #333;
    /* Set the text color */
    margin-bottom: 30px;
    /* Space below the heading */
    text-align: center;
    /* Center-align the title */
    position: relative;
}

/* Add an underline or decoration to the title if needed */
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* Width of the underline */
    height: 3px;
    /* Thickness of the underline */
    background-color: #ffca2b;
    /* Color of the underline */
}
.swingimage {
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
}

@-webkit-keyframes swinging{
    0%{-webkit-transform: rotate(10deg);}
    50%{-webkit-transform: rotate(-5deg)}
    100%{-webkit-transform: rotate(10deg);}
  }
  
  @keyframes swinging{
    0%{transform: rotate(10deg);}
    50%{transform: rotate(-5deg)}
    100%{transform: rotate(10deg);}
  }
  .swingimage{
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
  }
.kids-learn-02 {
    width: 225px;
    position: absolute;
    right: 180px;
    top: 85px;
    z-index: 2;
}
.single-review-item .review-info {
    position: relative;
    margin-top: 30px;
    display: flex;
}

.single-review-item .review-info img {
    display: inline-block;
    height: 208px;
    width: 208px;
    border-radius: 5px;
    left: 0;
    top: 0
}
.single-review-item {
    background-color: #084298;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    margin-bottom: 65px;
    transition: .6s;
    border: 8px solid #084298;
    text-align: center;
}
.single-review-item p {
    font-size: 36px;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    line-height: 54px;
    max-width: 100%;
    color: #fff;
}
.single-review-item .review-info h3 {
    font-size: 33px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
    transition: .6s;
    word-spacing: 3px;
    letter-spacing: 1.5px;
    -webkit-text-fill-color: #38b809;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #38b809;
}

.single-review-item .review-info span {
    font-size: 25px;
    color: #252525;
    transition: .6s
}

.single-review-item:hover {
    background-color: #38b809
}

.single-review-item:hover .icon i {
    background-color: #38b809;
    color: #fff
}

.single-review-item:hover p {
    color: #fff;
    transition: .6s
}

.single-review-item:hover .review-info h3 {
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
}
.admission-info {
    padding: 50px;
}
.admission-info p {
    margin-bottom: 0;
}
.admission-info h6 {
    font-size: 26px;
}
.mark-info {
    width: 260px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
}
.header-links {
    display: flex;
    align-items: center;
}
.icons-group .icon-bar {
    position: fixed;
    top: 30%;
    z-index: 9;
    right: 0;
}
  
.icons-group .icon-bar a {
    display: block;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  .icons-group .icons-group .icon-bar a:hover {
    background-color: #000;
  }
  
  .icons-group .facebook {
    background: #1877F2;
    color: white;
  }
  
  .icons-group .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .icons-group .google {
    background: #ee2a7b;
    color: white;
  }
  .icons-group .whatsapp {
    background: green;
    color: white;
  }
  .icons-group .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .icons-group .youtube {
    background: #bb0000;
    color: white;
  }
  
  .icons-group .content {
    margin-left: 75px;
    font-size: 30px;
  }
/* @media (max-width: 1199px){
.notice{
padding-top: 20px;
}
} */

:root {
    --body-bg: #ffffff;
    --theme-color: #ff4500;
    --theme-color2: #353795;
    --title-color: #000000;
    --body-color: #444444;
    --vs-theme-color2: #490D59;
    --smoke-color: #F0F6FA;
    --light-color: #f8f9fa;
    --black-color: #000000;
    --white-color: #ffffff;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #E0E0E0;
}

.team-one {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .team-one {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0 20px;
  }
}
@media (min-width: 992px) {
  .team-one__carousel .owl-nav {
    display: none;
  }
}
.team-one--home {
  padding-bottom: 178px;
}
@media (max-width: 991px) {
  .team-one--home {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .team-one--home {
    padding-bottom: 20px;
  }
}

.team-card {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .team-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card {
    padding: 0 20px;
  }
}
.team-card:hover .team-card__image__bg {
  background-color: var(--hiredots-primary, #0b2f81);
}
.team-card__image {
  position: relative;
  display: inline-block;
  margin-bottom: 47px;
}
.team-card__image img {
  position: relative;
  max-width: 100%;
  border-radius: 50%;
}
.team-card__image__bg {
  position: absolute;
  top: -25px;
  bottom: -25px;
  left: -25px;
  right: -25px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--hiredots-gray, #f0f3f9);
  transition: 0.3s;
}
.team-card__image__bg::before {
  content: "";
  position: absolute;
  top: -25px;
  bottom: 50%;
  left: -25px;
  right: -25px;
  display: inline-block;
  border-radius: 50% 50% 0 0;
  background-color: var(--hiredots-white, #fff);
}
.team-card__hover {
  position: absolute;
  top: 0;
  left: 0;
}
.team-card__social {
  color: var(--hiredots-base, #00008b );
  background-color: var(--hiredots-white, #fff);
  position: relative;
  cursor: pointer;
  transition: all 500ms ease;
  box-shadow: 0px 10px 30px 0px rgba(12, 13, 12, 0.1);
  border-radius: 50%;
}
.team-card__social:hover {
  background-color: var(--hiredots-base, #00008b );
}
.team-card__social:hover > i {
  color: var(--hiredots-white, #fff);
}
.team-card__social > i {
  width: 50px;
  height: 50px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--hiredots-black, #0b182a);
  transition: all 500ms ease;
}
.team-card__social__list {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  text-align: center;
  transform: scale(0, 1);
  background-color: var(--hiredots-white, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 50px;
  padding: 15px;
  opacity: 0;
  border-radius: 30px;
  transition: 500ms ease;
  transform-origin: top bottom;
  box-shadow: 0px 10px 30px 0px rgba(12, 13, 12, 0.1);
}
.team-card__social__list a {
  color: var(--hiredots-black, #0b182a);
  font-size: 14px;
  transition: all 500ms ease;
}
.team-card__social__list a + a {
  margin-top: 10px;
}
.team-card__social__list a:hover {
  color: var(--hiredots-base, #00008b );
}
.team-card__social:hover .team-card__social__list {
  opacity: 1;
  transform: scale(1, 1);
}
.team-card__content {
  position: relative;
}
.team-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--hiredots-black, #0b182a);
  text-transform: capitalize;
  margin-bottom: 13px;
  letter-spacing: -0.96px;
}
@media (min-width: 768px) {
  .team-card__title {
    font-size: 24px;
  }
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__title a:hover {
  color: var(--hiredots-base, #00008b );
}
.team-card__designation {
  line-height: 1em;
  margin: 0;
  font-size: 16px;
}

.team-details {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .team-details {
    padding: 80px 0 0;
  }
}
.team-details__inner {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--hiredots-white, #fff);
  position: relative;
  z-index: 1;
  padding: 30px;
}
@media (min-width: 992px) {
  .team-details__inner {
    padding: 0;
  }
}
.team-details__image {
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .team-details__image {
    margin-bottom: 30px;
  }
}
.team-details__image img {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .team-details__content {
    padding-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-details__content {
    padding-right: 10px;
  }
}
.team-details__icon {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background-color: var(--hiredots-base, #00008b );
  border: 20px solid var(--hiredots-white, #fff);
  width: 220px;
  padding: 30px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) {
  .team-details__icon {
    left: -96px;
  }
}
.team-details__icon i {
  font-size: 60px;
  color: var(--hiredots-white, #fff);
}
.team-details__icon__text {
  margin: 0;
  font-size: 18px;
  color: var(--hiredots-white, #fff);
  text-transform: uppercase;
  max-width: 104px;
  font-weight: bold;
  margin-bottom: -5px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .team-details__icon__text {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .team-details__icon__text {
    font-size: 24px;
  }
}
.team-details__tagline {
  font-size: 30px;
  color: var(--hiredots-base, #00008b );
  font-weight: 800;
  letter-spacing: var(--hiredots-letter-space-sm, -0.04em);
}
@media (min-width: 768px) {
  .team-details__tagline {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .team-details__tagline {
    font-size: 40px;
  }
}
.team-details__title {
  margin: 0;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  margin-top: -7px;
  margin-bottom: 26px;
  letter-spacing: var(--hiredots-letter-space-sm, -0.04em);
}
@media (min-width: 768px) {
  .team-details__title {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .team-details__title {
    font-size: 40px;
  }
}
.team-details__designation {
  margin: 0;
  font-size: 16px;
  margin-bottom: 20px;
}
.team-details__text {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .team-details__text br {
    display: none;
  }
}
.team-details__highlight {
  margin: 0;
  letter-spacing: -0.96px;
  font-size: 24px;
  line-height: 30px;
  margin-top: 27px;
  margin-bottom: 33px;
}
.team-details__list {
  margin-bottom: 0;
}
.team-details__list li {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 29px;
  color: var(--hiredots-text, #696e76);
  margin-bottom: 7px;
}
@media (min-width: 576px) {
  .team-details__list li {
    width: 50%;
    float: left;
  }
}
.team-details__list li > i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--hiredots-base, #00008b );
}
.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}
.team-details__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--hiredots-gray, #f0f3f9);
  font-size: 14px;
  color: var(--hiredots-black, #0b182a);
  transition: all 500ms ease;
  border-radius: 50%;
}
.team-details__social a:hover {
  background-color: var(--hiredots-base, #00008b );
  color: var(--hiredots-white, #fff);
}

.team-skills-one {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .team-skills-one {
    padding: 60px 0;
  }
}
.team-skills-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  color: var(--hiredots-black, #0b182a);
  line-height: 1.2em;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.team-skills-one__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  max-width: 500px;
  width: 100%;
}
.team-skills-one__progress + .team-skills-one__progress {
  margin-top: 17px;
}
.team-skills-one__progress__title {
  text-transform: uppercase;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.team-skills-one__progress__bar {
  width: 100%;
  height: 17px;
  border: 1px solid var(--hiredots-border-color, #cbd2da);
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
.team-skills-one__progress__inner {
  position: absolute;
  height: calc(100% - 6px);
  left: 4px;
  top: 3px;
  background-color: var(--hiredots-base, #00008b );
  transition: all 700ms linear;
  width: 0px;
}
.team-skills-one__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-size: 14px;
  font-weight: 400;
}

.team-form-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .team-form-one {
    padding: 80px 0;
  }
}
.team-form-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}
.team-form-one .container {
  position: relative;
  max-width: 800px;
}
.team-form-one .form-one .bootstrap-select > .dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
  background-color: var(--hiredots-gray, #f0f3f9);
}
.team-form-one .form-one textarea {
  height: 188px;
}

.team-history-one__title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: var(--hiredots-letter-space-sm, -0.04em);
}
@media (min-width: 768px) {
  .team-history-one__title {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .team-history-one__title {
    font-size: 46px;
  }
}
.team-history-one__date {
  color: var(--hiredots-base, #00008b );
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 3px;
  display: inline-block;
  letter-spacing: var(--hiredots-letter-space, 0.1em);
}
.team-history-one__progress {
  position: relative;
  padding-top: 35px;
}
.team-history-one__progress__title {
  color: var(--hiredots-black, #0b182a);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: var(--hiredots-letter-space-sm, -0.04em);
  margin-bottom: 8px;
}
.team-history-one__text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: justify;
}
.about-info .about_img_6 {
  background: #fff;
  padding: 10px;
  box-shadow: #28bca9 5px 5px, #4bebd6 10px 10px, #9cf5e9 15px 15px, #a2f9ee 20px 20px, #c7fef7 25px 25px;
}
.about-info .about_img_66 {
  background: #28bca9;
  padding: 10px;
  box-shadow: #28bca9 5px 5px, #4bebd6 10px 10px, #9cf5e9 15px 15px, #a2f9ee 20px 20px, #c7fef7 25px 25px;
}
.video-image #video {
  border: 1px solid #fff;
    padding: 5px;
    background: #fff;
    /* box-shadow: blue 0px 0px 0px 2px inset, rgb(255, 255, 255) 10px -10px 0px -3px, rgb(31, 193, 27) 10px -10px, rgb(255, 255, 255) 20px -20px 0px -3px, rgb(255, 217, 19) 20px -20px, rgb(255, 255, 255) 30px -30px 0px -3px, rgb(255, 156, 85) 30px -30px, rgb(255, 255, 255) 40px -40px 0px -3px, rgb(255, 85, 85) 40px -40px; */
}

.video-image-content {
    margin-left: 40px;
}
/*------------------- 4.15. Category  -------------------*/
.category-style1 {
  position: relative;
  z-index: 1;
  padding: 30px 25px 30px 25px;
  border-radius: 30px;
  margin-bottom: 45px;
}
.category-style1 .category-bg3,
.category-style1 .category-bg2,
.category-style1 .category-bg1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 30px;
  opacity: 1;
  visibility: visible;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-box-shadow: 0 10px 4px rgba(120, 51, 138, 0.3);
  box-shadow: 0 10px 4px rgba(120, 51, 138, 0.3);
}
.category-style1 .category-bg1 {
  background-color: #f7f9fc;
  border: 1px solid #f2f2f2;
  z-index: -1;
}
.category-style1 .category-bg2 {
  background-color: var(--theme-color2);
  -webkit-transform: scale(0.9) translateY(-10px);
  transform: scale(0.9) translateY(-10px);
  z-index: -2;
}
.category-style1 .category-bg3 {
  background-color: var(--theme-color);
  -webkit-transform: scale(0.7) translateY(-10px);
  transform: scale(0.7) translateY(-10px);
  z-index: -3;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.category-style1:hover .category-bg1 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.category-style1:hover .category-bg2 {
  -webkit-transform: scale(1.001) translateY(0);
  transform: scale(1.001) translateY(0);
}
.category-style1:hover .category-bg3 {
  -webkit-transform: scale(0.9) translateY(-10px);
  transform: scale(0.9) translateY(-10px);
}
.category-style1 .category-grade {
  width: 90px;
  height: 90px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 14px;
  margin-bottom: 22px;
  -webkit-box-shadow: inset 5px 0 0 1px rgba(0, 0, 0, 0.18);
          box-shadow: inset 5px 0 0 1px rgba(0, 0, 0, 0.18);
}
.category-style1 .grade-name {
  display: block;
  margin-top: 0px;
  font-size: 40px;
}
.category-style1 .category-name {
  margin: 0 0 10px 0;
}
.category-style1 .category-label {
  margin-bottom: 15px;
  font-weight: 500;
  font-family: var(--title-font);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.category-style1 .category-label:last-child {
 margin-bottom: 0;
}
.category-style1:hover .category-label,
.category-style1:hover .category-name a {
  color: var(--white-color);
}

.category-style2 {
  position: relative;
  margin-bottom: 30px;
}
.category-style2 .category-img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
}
.category-style2 .category-img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
}
.category-style2 .category-title {
  margin-bottom: 5px;
  margin-top: -0.2em;
}
.category-style2 .category-content {
  background-color: var(--white-color);
  border: 2px solid var(--theme-color2);
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 270px;
  max-width: 100%;
  border-radius: 9999px;
  padding: 23px 48px 25px 48px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.category-style2 .category-text {
  margin: 0;
  font-weight: 500;
  color: var(--title-color);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}
.category-style2:hover .category-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.category-style2:hover .category-content {
  border-color: var(--theme-color);
}

.about_img_7 {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    padding: 10px;
}

.vs-comments-wrap .vs-post-comment {
    padding: 30px;
    margin: 30px 0 30px 0;
    position: relative;
    background-color: #28bca9;
    background-image: url(../images/background/widget-bg-1-1.png);
    border-radius: 30px;
    background-position: bottom;
    background-size: cover;
    text-align: center;
}
.vs-comments-wrap .vs-post-comment  h3 {
    color: #fff;
}
.vs-comments-wrap .vs-post-comment  h2 {
    color: #fff;
    margin-bottom: 25px;
}

.hero-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 40px;
    background: #d21a26;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    z-index: 3;
}
.hero-shape-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 60px;
    background: #d21a26;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    opacity: .5;
    z-index: 3;
}
.hero-shape-3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 60px;
    background: #d21a26;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 3;
}
.hero-shape-4 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
    height: 80px;
    background: #d21a26;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    opacity: .5;
    z-index: 3;
}
.hero-shape-5 {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 40px;
    background: #d21a26;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 3;
}
.hero-shape-6 {
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
    height: 60px;
    background: #d21a26;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: .5;
    z-index: 3;
}

.img-box2 {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.transform-banner img {
    animation: border-transform 20s linear infinite alternate forwards;
    border-radius: 100%;
}
img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: auto;
}
.vs-circle {
    width: var(--circle-size, 315px);
    height: var(--circle-size, 315px);
    border: var(--circle-border-size, 60px) solid var(--circle-border-color, var(--theme-color2));
    border-radius: var(--circle-radius, 50%);
}
.img-box2 .vs-circle {
    position: absolute;
    right: -10%;
    top: 3%;
    z-index: -1;
}
.jump-reverse-img, .jump-img, .jump-reverse, .jump {
    animation: jumpping var(--duration, 6s) infinite linear;
}


.position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

[data-overlay] {
    position: relative
}

[data-overlay] [class^=col-],[data-overlay] [class*=col-] {
    z-index: 1
}

[data-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

[data-overlay=theme]:before {
    background-color: var(--theme-color)
}

[data-overlay=title]:before {
    background-color: var(--title-color)
}

[data-overlay=white]:before {
    background-color: var(--white-color)
}

[data-overlay=black]:before {
    background-color: var(--black-color)
}

[data-opacity="1"]:before {
    opacity: 0.1
}

[data-opacity="2"]:before {
    opacity: 0.2
}

[data-opacity="3"]:before {
    opacity: 0.3
}

[data-opacity="4"]:before {
    opacity: 0.4
}

[data-opacity="5"]:before {
    opacity: 0.5
}

[data-opacity="6"]:before {
    opacity: 0.6
}

[data-opacity="7"]:before {
    opacity: 0.7
}

[data-opacity="8"]:before {
    opacity: 0.8
}

[data-opacity="9"]:before {
    opacity: 0.9
}

[data-opacity="10"]:before {
    opacity: 1
}

.transform-banner img {
    animation: border-transform 20s linear infinite alternate forwards;
    border-radius: 100%
}

.jump-reverse-img,.jump-img,.jump-reverse,.jump {
    animation: jumpping var(--duration, 6s) infinite linear
}

.jump-reverse-img,.jump-img {
    --duration: 5s
}

.jump-reverse-img,.jump-reverse {
    --jump-y: -20px
}

.rotate-reverse-img,.rotate-img,.rotate-reverse,.rotate {
    animation: rotate var(--duration, 12s) infinite linear
}

.rotate-reverse-img,.rotate-img {
    --duration: 40s
}

.rotate-reverse {
    --rotate-angle: -360deg
}

.fadeInUp {
    animation-name: fadeInUp
}

.wow-animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.fadein {
    --animation-name: fadein-custom
}

.slideinup {
    --animation-name: slideinup
}

.slideindown {
    --animation-name: slideindown
}

.slideinleft {
    --animation-name: slideinleft
}

.slideinright {
    --animation-name: slideinright
}

.animated {
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-name: var(--animation-name)
}

.ripple-animation,.play-btn:after,.play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: .4
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(var(--rotate-angle, 360deg))
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes fadein-custom {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes jumpping {
    0%,100% {
        transform: translate3d(0, 0, 0)
    }

    40% {
        transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0))
    }
}

@keyframes border-transform {
    0%,100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}

.class-bar {
    background-color: #fff;
    padding: 20px;
    margin: 22px 0 30px 0;
    border-radius: 25px 76px 25px 25px;
}
.class-bar .info-style1 {
    margin: 0;
}
.class-bar .info-title {
    font-family: var(--body-font);
    color: var(--vs-theme-color2);
    font-weight: 700;
}
.class-bar .info-text {
    font-weight: 400;
    font-family: var(--body-font);
    margin: 0;
}

.listing-btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    padding: 19px 40px 20px 40px;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-transform: capitalize;
    border-radius: 9999px;
    line-height: 1;
    transition: all ease .4s;
    z-index: 2
}

@media(max-width: 767px) {
    .listing-btn {
        padding:16px 30px
    }
}

.listing-btn:after,.listing-btn:before {
    content: "";
    position: absolute;
    top: var(--border-size, 3px);
    bottom: var(--border-size, 3px);
    left: var(--border-size, 3px);
    width: calc(50% - var(--border-size, 3px));
    background-color: var(--vs-theme-color2);
    z-index: -1;
    transform: scaleY(0.4);
    transform-origin: 100% 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease .4s;
    border-radius: 9999px 0 0 9999px
}

.listing-btn:after {
    left: auto;
    right: var(--border-size, 3px);
    transform-origin: 100% 100%;
    border-radius: 0 9999px 9999px 0
}

.listing-btn.style2 {
    background-color: var(--theme-color2);
    color: var(--title-color)
}

.listing-btn.style2:hover {
    background-color: var(--white-color);
    color: var(--white-color)
}

.listing-btn.style3 {
    background-color: var(--white-color);
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    --border-size: 1px
}

.listing-btn:hover {
    color: var(--white-color);
    background-color: var(--theme-color)
}

.listing-btn:hover:after,.listing-btn:hover:before {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible
}
.media-style3 .media-icon img {
    width: 100px;
}

.info-style1 {
  margin-bottom: 25px
}

.info-style1 .info-text,.info-style1 .info-title {
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 600;
  margin: 0 0 15px 0;
  line-height: 1
}

.info-style1 .info-title {
  color: var(--theme-color)
}

.info-style2 {
  padding: 30px 20px;
  border: 3px solid var(--theme-color2);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: all ease .4s
}

.info-style2 .info-icon {
  width: var(--icon-size, 90px);
  height: var(--icon-size, 90px);
  line-height: var(--icon-size, 90px);
  background-color: #ff4500;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 27px;
  transition: all ease .4s
}

.info-style2 .info-icon img {
  filter: none;
  transition: all ease .4s;
  width: 35px;
  filter: invert(1);
}

.info-style2 .info-title {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px
}

.info-style2 .info-text {
  font-size: 18px;
  margin: 0 0 -0.3em 0;
  text-align: center !important;
}
.info-style2 .info-text a {
  color: #fff;
  line-height: 35px;
}
.info-style2:hover {
  border-color: var(--theme-color)
}

.info-style2:hover .info-icon {
  background-color: var(--theme-color)
}

.info-style2:hover .info-icon img {
  filter: brightness(0) invert(1);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.info-style2:hover .info-icon i {
  color: #fff;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
.info-style2 .info-icon i {
  font-size: 40px;
  line-height: 90px;
  color: #fff;
}
select, .form-control, .form-select, textarea, input {
  height: 55px;
  padding: 0 45px 0 30px;
  border: 1px solid #e0e0e0;
  color: var(--body-color);
  background-color: #ffffff;
  border-radius: 16px;
  font-size: 16px;
  width: 100%;
}

.form-style1 .form-group {
  position: relative;
  margin: 0 auto;
  max-width: 880px
}

.form-style1 input {
  height: 70px;
  border-color: #d8d8d8;
  border-radius: 9999px;
  padding-left: 50px
}

.form-style1 .listing-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%)
}

.form-style2 .form-title {
  color: var(--white-color);
  margin: -0.2em 0 18px 0
}

.form-style2 .form-group {
  display: flex;
  margin: 0
}

.form-style2 input {
  border: 2px solid var(--white-color);
  color: var(--white-color);
  background-color: rgba(0,0,0,0);
  height: 60px;
  border-radius: 9999px;
  margin-right: 10px;
  flex: 1
}

.form-style2 input::-moz-placeholder {
  color: var(--white-color)
}

.form-style2 input::placeholder {
  color: var(--white-color)
}

.form-style3 {
  border: 3px solid var(--vs-theme-color2);
  padding: 30px 30px 3px 30px;
  margin-bottom: 30px;
  background-color: var(--white-color);
  border-radius: 30px
}

.form-style3 .form-group {
  margin-bottom: 27px
}

.form-style3 input {
  border: 1px solid rgba(153,153,153,.5);
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 10px
}

.form-style3 input[type=checkbox]~label {
  font-weight: 500;
  margin: 0
}

.form-style3 input[type=checkbox]~label:before {
  background-color: #d9d9d9;
  border: none
}

.form-style3 input[type=checkbox]:checked~label:before {
  background-color: var(--theme-color)
}

.form-style3 label {
  font-weight: 400
}

.form-style3 .required {
  font-size: 14px;
  color: var(--error-color)
}

.form-style3.layout2 {
  padding: 0;
  border: none
}

@media(max-width: 767px) {
  .form-style1 .form-group {
      text-align:center
  }

  .form-style1 input {
      margin-bottom: 20px;
      height: 50px;
      padding-left: 30px;
      font-size: 14px
  }

  .form-style1 .listing-btn {
      position: relative;
      top: 0;
      transform: none
  }

  .form-style2 .form-group {
      display: block
  }

  .form-style2 .listing-btn {
      margin-top: 10px
  }

  .form-style2 input {
      height: 50px
  }

  .form-style3 {
      padding: 30px 15px 3px 15px
  }
}
.map-style1 {
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
}
.error {
  color: #ff1200;
  margin: 5px 0 0;
}
.call-action {
  font-size: 25px;
  color: #00008b;
}
.bg-smoke {
  background-color: var(--smoke-color) !important;
}
.mega-hover img {
  transition: all 2s ease;
  transform: scale(1.001);
}
.mega-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255, 255, 255, .6);
}
.mega-hover:after, .mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: rotate(5deg);
}
.mega-hover:before {
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255, 255, 255, .3);
}

.img-box6 .img-1 {
  margin-left: 60px;
}
.img-box6 .img-2, .img-box6 .img-1 {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid var(--white-color);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .25);
}
.img-box6 .img-2 {
  margin: -52px 0 0 -36px;
  margin-left: 36px;
  transform: rotate(18.31deg);
}
.service-detail .inner-box ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 24px;
    color: #ff8a00;
    font-weight: 300;
    content: "\f05d";
    font-family: var(--icon-font);
}
.service-detail .inner-box ul li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #252525;
    padding-left: 40px;
    margin-bottom: 20px;
}
.service-detail .inner-box ul {
    position: relative;
    margin-bottom: 25px;
}
.admission-info .service-detail .inner-box ul {
    padding: 20px;
    visibility: visible;
    -webkit-transform-origin: top center;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    padding: 25px;
    border-radius: 6px;
}