/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --school-font: "Plus Jakarta Sans", sans-serif;
  --school-heading-font: "Marcellus", serif;
  --school-special-font: "Whisper", cursive;
  --school-text: #212121;
  --school-text-rgb: 131, 135, 144;
  --school-text-dark: #ffffff;
  --school-text-dark-rgb: 119, 130, 160;
  --school-text-gray: #7f7f7f;
  --school-text-gray-rgb: 137, 134, 141;
  --school-base: #6d4283;
  --school-base-rgb: 199, 149, 74;
  --school-primary: #220032;
  --school-primary-rgb: 25, 34, 58;
  --school-gray: #f1fcf9;
  --school-gray-rgb: 241, 252, 249;
  --school-gray2: #ededed;
  --school-gray2-rgb: 237, 237, 237;
  --school-white: #fff;
  --school-white-rgb: 255, 255, 255;
  --school-black: #0e0b06;
  --school-black-rgb: 14, 11, 6;
  --school-black2: #405f58;
  --school-black2-rgb: 64, 95, 88;
  --school-black3: #000;
  --school-black3-rgb: 0, 0, 0;
  --school-border-color: #d9d9d9;
  --school-border-color-rgb: 217, 217, 217;
  --school-letter-space: 0.1em;
  --school-letter-space-xl: 0.2em;
  --school-pink:#fdf0f0;
  --translate: translate(-50%, -50%);
 	--transition: all 0.4s ease;
}


EAC3FD
/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
  color: var(--school-text);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--school-base);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--school-heading-font, "Marcellus", serif);
  color: var(--school-primary);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--school-base);
}

.background-gray {
  background-color: var(--school-gray, #f1fcf9);
}

.background-black {
  background-color: var(--school-black, #0e0b06);
}

.background-black-2 {
  background-color: var(--school-black2, #405f58);
}

.school-text-dark {
  color: var(--school-text-dark, #7782A0);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.procounsel-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--school-base);
  color: var(--school-white);
  font-size: 16px;
  font-weight: 600;
  transition: 500ms;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.procounsel-btn > i {
  padding: 13px 40px;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.procounsel-btn:hover > i {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.procounsel-btn > span {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  background-color: var(--school-primary);
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
}
.procounsel-btn:hover > span {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.school-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  font-size: 16px;
  font-weight: 600;
  transition: 500ms;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.school-btn > i {
  padding: 13px 40px;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.school-btn:hover > i {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.school-btn > span {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  background-color: var(--school-primary);
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
}
.school-btn:hover > span {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--school-base);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--school-text, #838790);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--school-text, #838790);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--school-black, #0e0b06);
  font-family: var(--school-special-font, "Whisper", cursive);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--school-black, #0e0b06);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--school-base);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--school-black, #0e0b06);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--school-base);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--school-black, #0e0b06);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.post-pagination.text-center {
  justify-content: center;
}
.post-pagination.text-end {
  justify-content: flex-end;
}
.post-pagination--mt0 {
  margin-top: 0px;
}
.post-pagination a {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--school-white, #fff);
  border: 1px solid var(--school-border-color, #d9d9d9);
  align-items: center;
  justify-content: center;
  color: var(--school-primary);
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-size: 20px;
  font-weight: 400;
  border-radius: 50%;
  transition: all 400ms ease;
}
.post-pagination a.active, .post-pagination a:hover {
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  border-color: var(--school-base);
}
.post-pagination .dots {
  color: var(--school-black, #0e0b06);
  font-size: 16px;
  font-weight: 500;
  margin: 0 13px;
}

.blog-list .post-pagination,
.blog-grid-left .post-pagination,
.blog-grid-right .post-pagination {
  justify-content: flex-start;
}

.school-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.school-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.school-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.school-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--school-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--school-white, #fff);
  transition: all 500ms ease;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--school-white, #fff);
  background-color: var(--school-base);
  border-color: var(--school-base);
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 50px;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: var(--school-gray2, #ededed);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  width: 24px;
  height: 24px;
  position: absolute;
  content: "";
  left: -7px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--school-base);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--school-base);
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after, .school-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  transform: scale(1);
}
.school-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.school-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 48px;
    margin-top: -2px;
  }
}
.sec-title__tagline {
  margin: 0;
  color: var(--school-text, #838790);
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sec-title.text-left .sec-title__tagline__border:last-of-type {
  display: none;
}
.sec-title__title {
  margin: 0;
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0%;
}
@media (max-width: 991px) {
  .sec-title__title {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.sec-title__title span {
  color: var(--school-base);
}
.sec-title__title.orange span {
    color: #e39f00 !important;
}
.sec-title__title--white {
  color: var(--school-white, #fff);
}
@media (max-width: 767px) {
  .sec-title__title br {
    display: none;
  }
}

.hammer {
  width: 26px;
  height: 26px;
  fill: var(--school-base);
}

.hammer path:nth-child(1),
.hammer path:nth-child(2) {
  animation: hammerBounce 1s ease-in-out infinite;
  -webkit-animation: hammerBounce 1s ease-in-out infinite;
}

/* .hammer path:nth-child(3),
.hammer path:nth-child(4),
.hammer path:nth-child(5),
.hammer path:nth-child(6) {
  transform-origin: center;
  animation: hammerStrike 1.5s ease-in-out infinite;
  -webkit-animation: hammerStrike 1.5s ease-in-out infinite;
} */

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--school-black, #0e0b06);
  color: var(--school-white, #fff);
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--school-gray, #f1fcf9);
  background-image: none;
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
  color: var(--school-text, #838790);
}
.ui-datepicker-calendar td a {
  border-color: var(--school-border-color, #d9d9d9);
  background-color: var(--school-gray, #f1fcf9);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--school-border-color, #d9d9d9);
  background-color: var(--school-gray, #f1fcf9);
  background-image: none;
  color: var(--school-text, #838790);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--school-white, #fff);
  background-color: var(--school-base);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--school-white, #fff);
  background-color: var(--school-base);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--school-white, #fff);
  color: var(--school-black, #0e0b06);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/* progress bar */
.progress-box + .progress-box {
  margin-top: 28px;
}

.progress-box__title {
  margin-bottom: 7px;
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--school-primary);
}

.progress-box__bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--school-gray2, #ededed);
}

.progress-box__bar__inner {
  position: relative;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: var(--school-base);
  border-radius: inherit;
  transition: all 800ms linear;
}

.progress-box__number {
  position: absolute;
  bottom: calc(100% + 3px);
  right: 0;
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--school-primary);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--school-black, #0e0b06);
  padding: 100px 0;
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--school-black, #0e0b06);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}
.video-one .container {
  position: relative;
  text-align: center;
}
.video-one__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.video-one__btn .video-popup {
  font-size: 24px;
  color: var(--school-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-one__btn .video-popup:hover {
  color: var(--school-base);
}
.video-one__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-one__btn .curved-circle--item {
  width: 145px;
}
.video-one__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--school-white, #fff);
  letter-spacing: 0.4em;
}
.video-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--school-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .video-one__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-one__title {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}
.video-one__link::before {
  background-color: var(--school-base);
}

.video-two {
  position: relative;
  background-color: var(--school-black, #0e0b06);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--school-black, #0e0b06);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--school-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: var(--school-base);
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--school-white, #fff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--school-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: var(--school-base);
}


.blog-four {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .blog-four {
    padding: 80px 0;
  }
}
.blog-four .row {
  --bs-gutter-y: 30px;
}


.blog-card-four {
  position: relative;
}
.blog-card-four__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.blog-card-four__image::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: linear-gradient(180deg, rgba(var(--school-primary-rgb, 25, 34, 58), 0) 13.7%, var(--school-primary) 74.11%);
  width: 100%;
  height: 75%;
}
.blog-card-four__image img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  transition: all 500ms ease;
}
.blog-card-four__image img:nth-child(2) {
  transition: 0.4s;
  transform: translatey(-50%) scaley(2);
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-four__date {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 84px;
  height: 84px;
  background-color: var(--school-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  font-family: var(--school-font);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--school-primary);
  line-height: 20px;
}
.blog-card-four__date span {
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 14px;
  display: block;
}
.blog-card-four__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 30px 27px;
}
.blog-card-four__cate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.blog-card-four__cate a {
  padding: 6px 11px;
  color: var(--school-white, #fff);
  background-color: rgba(var(--school-white-rgb, 255, 255, 255), 20%);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  width: fit-content;
}
.blog-card-four__cate a:hover {
  color: var(--school-base);
  background-color: rgba(var(--school-white-rgb, 255, 255, 255), 100%);
}
.blog-card-four__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--school-white, #fff);
  margin: 0 0 8px;
}
.blog-card-four__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-four__title a:hover {
  background-size: 100% 1px;
}
.blog-card-four__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(var(--school-white-rgb, 255, 255, 255), 20%);
  padding: 15px 0 0;
  margin: 0;
  list-style: none;
}
.blog-card-four__meta li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--school-text-dark, #7782A0);
  line-height: 26px;
}
.blog-card-four__meta li > i {
  font-size: 16px;
  color: var(--school-base);
}
.blog-card-four__meta li a {
  font-size: 16px;
  color: var(--school-base);
}
.blog-card-four__meta li a:hover {
  color: var(--school-white, #fff);
}

.blog-card-four:hover .blog-card-four__image img:nth-child(2) {
  transform: translatey(0) scaley(1);
  opacity: 1;
  filter: blur(0);
}



/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--school-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--school-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--school-base);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--school-primary);
}
.main-footer__top {
  padding-top: 120px;
  padding-bottom: 113px;
}
@media (max-width: 767px) {
  .main-footer__top {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.05;
}
.main-footer .container {
  position: relative;
}
.main-footer__info {
  border-top: 1px solid var(--school-base);
  margin-top: 40px;
}
.main-footer__info__inner {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-footer__info__inner {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
}
.main-footer__info__pin {
  width: 70px;
  height: 76px;
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-footer__info__location {
  font-size: 16px;
  line-height: 26px;
  color: var(--school-text-dark, #7782A0);
  padding-top: 23px;
}
@media (max-width: 768px) {
  .main-footer__info__location {
    padding-left: 0px;
  }
}
.main-footer__info__list {
  margin-bottom: 0;
  padding-top: 23px;
  padding-left: 44px;
}
@media (max-width: 768px) {
  .main-footer__info__list {
    padding-left: 0px;
    padding-top: 0;
  }
}
.main-footer__info__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-footer__info__icon {
  color: var(--school-base);
}
.main-footer__info__text {
  font-size: 16px;
  line-height: 29.41px;
  color: var(--school-text-dark, #7782A0);
  margin-bottom: 0;
}
.main-footer__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer__info__text a:hover {
  background-size: 100% 1px;
}
.main-footer__info__text a:hover {
  color: var(--school-base);
}
.main-footer__info__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  gap: 10px;
  height: 100%;
}
@media (max-width: 991px) {
  .main-footer__info__social {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.main-footer__info__social a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--school-white, #fff);
  font-size: 14px;
  color: var(--school-white, #fff);
  transition: all 500ms ease;
  border-radius: 50%;
}
.main-footer__info__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-footer__info__social a:hover {
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  border-color: var(--school-base);
}
.main-footer__info__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.main-footer__bottom {
  text-align: center;
  position: relative;
  background-color: var(--school-base);
  padding: 16px 0;
}
@media (max-width: 767px) {
  .main-footer__bottom {
    padding: 20px 0;
  }
}
.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
}
.main-footer__copyright {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--school-text-dark, #7782A0);
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.footer-widget__title {
  font-size: 20px;
  font-weight: 400;
  color: var(--school-white, #fff);
  text-transform: capitalize;
  margin: 0 0 18px;
}
.footer-widget__text {
  margin: 0;

  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--school-white, #fff);
}
@media (min-width: 1200px) {
  .footer-widget__text {
    max-width: 300px;
  }
}
.footer-widget__links {
  margin-top: -3px;
  margin-bottom: -13px;
}
.footer-widget__links li {
  font-size: 16px;
  line-height: 30px;
  color: var(--school-text-dark, #7782A0);
  position: relative;
  margin-bottom: 6px;
}
.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__links li a:hover {
  color: var(--school-white, #fff);
}
.footer-widget--post {
  position: relative;
}
.footer-widget--post ul {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}
.footer-widget--post ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
}
.footer-widget--post ul li + li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--school-white-rgb, 255, 255, 255), 0.1);
}
.footer-widget--post__img {
  position: relative;
}
.footer-widget--post__img img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}
.footer-widget--post__content {
  position: relative;
}
.footer-widget--post__date {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--school-text, #838790);
  line-height: 22px;
  margin-bottom: 5px;
}
.footer-widget--post__date i {
  margin-right: 5px;
  display: inline-block;
}
.footer-widget--post__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--school-white, #fff);
  margin: 0;
}
.footer-widget--post__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget--post__title a:hover {
  background-size: 100% 1px;
}
.footer-widget--post__title a:hover {
  color: var(--school-base);
}
.footer-widget--mail {
  padding: 24px 30px 26px;
  background-color: var(--school-base);
  margin-bottom: 0;
}
.footer-widget--mail .footer-widget__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  text-transform: none;
}
.footer-widget__check {
  margin-top: 8px;
}
.footer-widget__check input[type=checkbox] {
  display: none;
}
.footer-widget__check label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: var(--school-white, #fff);
  text-transform: capitalize;
  cursor: pointer;
}
.footer-widget__check label a {
  color: inherit;
  text-decoration: underline;
}
.footer-widget__check label span:before {
  position: absolute;
  top: 6px;
  left: 6px;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--school-white, #fff);
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 66% 66%;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.footer-widget__check input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border: 1px solid rgba(var(--school-white-rgb, 255, 255, 255), 0.5);
}
.footer-widget__check input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.footer-widget__newsletter {
  position: relative;
  width: 100%;
  margin: 24px 0 0;
}
.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 55px;
  background-color: var(--school-white, #fff);
  color: #838790;
  font-size: 12px;
  font-weight: 500;
  padding-left: 21px;
  padding-right: 55px;
  transition: all 500ms ease;
}
.footer-widget__newsletter input[type=text]:focus {
  color: var(--school-text, #838790);
}
.footer-widget__newsletter button[type=submit] {
  background-color: var(--school-primary);
  width: 46px;
  height: 55px;
  border: none;
  outline: none;
  color: var(--school-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0px;
  transition: all 500ms ease;
}
.footer-widget__newsletter button[type=submit] i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footer-widget__newsletter button[type=submit]:hover {
  background-color: var(--school-primary);
  color: var(--school-white, #fff);
}
.footer-widget__newsletter button[type=submit]:hover i {
  animation: iconTranslateX 0.4s forwards;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  border-bottom: 1px solid var(--school-white, #fff);
  padding: 0px;
}
@media (max-width: 1599px) {
  .topbar-one {
    padding: 0 25px;
  }
}
@media (min-width: 768px) {
  .topbar-one {
    display: block;
  }
}
.topbar-one__inner {
  display: flex;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
  padding-bottom: 19px;
  padding-top: 16px;
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 8px;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  gap: 8px;
}
.topbar-one__info__item a {
  color: inherit;
  /* background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease; */
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item a:hover {
  color:  #d6c9dd;
}
.topbar-one__info__item + .topbar-one__info__item {
  margin-left: 40px;
}
.topbar-one__info__icon {
  font-size: 14px;
  position: relative;
  margin-right: 5px;
  color: var(--school-base);
}
.topbar-one__info__icon.fa-envelope {
  top: 2px;
}
.topbar-one__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 991px) {
  .topbar-one__right {
    display: none;
  }
}
.topbar-one__text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.topbar-one__text i{
padding-right: 4px;
}
.topbar-one__text__icon {
  font-size: 14px;
  position: relative;
  margin-right: 5px;
  color: var(--school-base);
  top: 1px;
}
.topbar-one__links {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  margin-left: 30px;
}
@media (max-width: 991px) {
  .topbar-one__links {
    display: none;
  }
}
.topbar-one__links li {
  position: relative;
  font-size: 14px;
}
.topbar-one__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__links li a:hover {
  background-size: 100% 1px;
}
.topbar-one__links li a:hover {
  color: var(--school-base);
}
.topbar-one__links li + li {
  padding-left: 28px;
}
.topbar-one__links li + li::before {
  position: absolute;
  left: 11px;
  content: "/";
  color: currentColor;
  font-size: 12px;
  color: var(--school-text, #838790);
  top: 2px;
}
.topbar-one__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
  line-height: 1em;
}
.topbar-one__social a {
  width: 35px;
  height: 35px;
  background-color: #f0eade;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--school-black2, #405f58);
  transition: all 500ms ease;
}
.topbar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.topbar-one__social a:hover {
  background-color: var(--school-base);
  color: var(--school-black2, #405f58);
}
.topbar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.topbar-one--two {
  border-bottom: 1px solid #d7d3c0;
}
.topbar-one--two .topbar-one__inner {
  padding: 14px 0px;
  padding-left: 50px;
  padding-right: 72px;
}
@media (max-width: 1431px) {
  .topbar-one--two .topbar-one__inner {
    padding: 20px 0;
  }
}
@media (max-width: 1199px) {
  .topbar-one--two {
    display: none;
  }
}
.topbar-one--four {
  background-color: var(--school-primary);
  border: none;
  position: relative;
}
.topbar-one--four .topbar-one__inner {
  padding: 11px 0;
}
.topbar-one--four .topbar-one__info__item,
.topbar-one--four .topbar-one__text {
  color: var(--school-text-dark, #7782A0);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  background-color: transparent;
  padding: 0 95px;
  border-bottom: 1px solid rgba(var(--school-white-rgb), 0.2);
}
@media (max-width: 1599px) {
  .main-header {
    padding: 0 15px;
  }
}
@media (max-width: 1299px) {
  .main-header {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .main-header {
    padding: 0;
  }
}
.main-header__inner {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 0;
  }
}
.main-header__logo {
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: auto;
  margin-right: 100px;
}
@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
  .main-header__logo img {
  width: 250px;
}
}
.main-header__btn .school-btn {
  font-size: 14px;
}
.main-header__btn .school-btn > i {
  padding: 7px 20.5px;
}
.main-header__btn .school-btn > span {
  background-color: var(--school-white, #fff);
}
.main-header__btn .school-btn:hover {
  color: var(--school-black, #0e0b06);
}
.main-header__right {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-left: auto;
}
@media (max-width: 1499px) {
  .main-header__right {
    gap: 30px;
  }
}
@media (max-width: 1299px) {
  .main-header__right {
    gap: 20px;
  }
}
.main-header__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1299px) {
  .main-header__info {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .main-header__info {
    display: none;
  }
}
.main-header__info:hover .main-header__info__icon__zoom {
  animation: iconsZoom 0.25s ease-out;
}
.main-header__info__icon {
  width: 40px;
  height: 40px;
  background-color: var(--school-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--school-white, #fff);
  flex-shrink: 0;
  position: relative;
}
.main-header__info__icon__zoom {
  display: inline-block;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header__info__text {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  color: var(--school-white, #fff);
  display: block;
  margin: 3px 0 0;
}
.main-header__info a {
  color: var(--school-white, #fff);
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__info a:hover {
  background-size: 100% 1px;
}
.main-header__info a:hover {
  color: var(--school-base);
}
.main-header__user, .main-header__cart, .main-header__search {
  font-size: 24px;
  color: var(--school-black, #0e0b06);
  transition: all 500ms ease;
  margin: 0 20px;
  line-height: 1em;
}
@media (max-width: 767px) {
  .main-header__user, .main-header__cart, .main-header__search {
    margin-left: 0;
  }
}
.main-header__user:hover, .main-header__cart:hover, .main-header__search:hover {
  color: var(--school-base);
}
.main-header__user__number, .main-header__cart__number, .main-header__search__number {
  width: 30px;
  height: 30px;
  background-color: var(--school-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--school-black, #0e0b06);
}
.main-header__user {
  margin: 0;
}
.main-header__cart {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-header__nav {
  margin-left: 0;
  margin-right: auto;
}

/*  */
.main-header--four {
  position: relative;
  background-color: var(--school-white, #fff);
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  border: none;
  padding: 0;
  padding-left: 105px;
}
@media (max-width: 1699px) {
  .main-header--four {
    padding-left: 95px;
  }
}
@media (max-width: 1350px) {
  .main-header--four {
    padding-left: 20px;
  }
}
.main-header--four .main-header__inner {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .main-header--four .main-header__inner {
    padding: 0;
  }
}
.main-header--four .main-header__center {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header--four .main-header__center .school-btn {
  font-size: 14px;
  background-color: var(--school-primary);
}
@media (max-width: 767px) {
  .main-header--four .main-header__center .school-btn {
    display: none;
  }
}
.main-header--four .main-header__center .school-btn > i {
  padding: 7px 20.5px;
}
.main-header--four .main-header__center .school-btn > span {
  background-color: var(--school-base);
}
.main-header--four .main-menu .main-menu__list > li {
  padding-top: 29px;
  padding-bottom: 29px;
}
.main-header--four .main-menu .main-menu__list > li > a {
  color: var(--school-text, #838790);
}
.main-header--four .main-header__logo {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  margin: 0;
  margin-right: 110px;
}
@media (max-width: 1699px) {
  .main-header--four .main-header__logo {
    margin-right: 70px;
  }
}
@media (max-width: 767px) {
  .main-header--four .main-header__logo {
    margin: 0;
  }
}
.main-header--four .main-header__logo::after {
  display: none;
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--school-primary);
}
.main-header--four .main-header__right {
  display: flex;
  align-items: center;
  background-color: var(--school-gray2, #ededed);
  gap: 0;
}
.main-header--four .main-header__right__social {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0 94px 0 44px;
}
@media (max-width: 1599px) {
  .main-header--four .main-header__right__social {
    padding: 0 25px 0 20px;
  }
}
.main-header--four .main-header__right__social a {
  color: var(--school-primary);
  font-size: 14px;
}
.main-header--four .main-header__right__social a:hover {
  color: var(--school-base);
}
@media (max-width: 1349px) {
  .main-header--four .main-header__right__social {
    display: none;
  }
}
.main-header--four .main-header__right .main-header__btn {
  display: flex;
  align-items: center;
  padding: 34px 25px 33px 8px;
  border-right: 1px solid var(--school-white, #fff);
}
@media (max-width: 1199px) {
  .main-header--four .main-header__right .main-header__btn {
    padding: 30px 25px 29px;
    border: none;
  }
}
.main-header--four .main-header__right .main-header__btn .main-header__user,
.main-header--four .main-header__right .main-header__btn .main-header__cart,
.main-header--four .main-header__right .main-header__btn .main-header__search {
  font-size: 20px;
}
@media (max-width: 767px) {
  .main-header--four .main-header__right .main-header__btn .main-header__search {
    margin-left: 20px;
  }
}



.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--school-primary);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--school-black-rgb, 14, 11, 6), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--school-white, #fff);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-header--four.sticky-header--cloned .main-menu .main-menu__list > li > a {
  color: var(--school-text);
}

.main-header--three.sticky-header--cloned .main-menu .main-menu__list > li > a {
  color: var(--school-primary);
}

.main-header--four.sticky-header--cloned {
  background-color: var(--school-white, #fff);
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 34px;
  padding-bottom: 35px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 41px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--school-white, #fff);
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
  font-family: var(--school-heading-font, "Marcellus", serif);
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--school-base);
  /* text-shadow: 0 0 0.5px currentColor; */
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--school-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--school-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: -15px !important;
  right: -15px !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  transition: all 300ms linear 0ms;
  transform: perspective(500px) rotateX(-20deg);
  transform-origin: 50% 0%;
  pointer-events: none;
}
.main-menu .main-menu__list li.megamenu:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: perspective(500px) rotateX(0);
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
.main-menu .main-menu__list li ul li:last-child {
  margin-bottom: 0px;
}
.main-menu .main-menu__list li.megamenu ul li {
  margin: 0;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 15px;
  line-height: 26px;
  color: var(--school-text, #838790);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  font-family:"bootstrap-icons";
  content: "\F285";
  color: var(--school-white, #fff);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--school-primary);
  color: var(--school-white, #fff);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

.main-menu-five .main-menu__list > li.current > a,
.main-menu-five .main-menu__list > li:hover > a {
  color: var(--school-primary) !important;
  text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--school-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--school-black, #0e0b06);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--school-base);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-card {
  position: relative;
  transition: all 500ms ease;
  padding: 40px 40px 32px;
  background-color: var(--school-white, #fff);
}
@media (max-width: 1199px) {
  .testimonials-card {
    padding: 40px 30px 32px;
  }
}
.testimonials-card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.testimonials-card__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--school-gray2, #ededed);
}
.testimonials-card__image {
  width: 112px;
  height: 124px;
  overflow: hidden;
  transition: all 500ms ease;
}
.testimonials-card__image img {
  width: 100%;
  height: 100%;
}
.testimonials-card__name {
  margin: 0;
  color: var(--school-primary);
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.testimonials-card__designation {
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 13px;
}
.testimonials-card__content {
  line-height: 30px;
}
.testimonials-card__bottom {
  position: relative;
  margin-left: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--school-white, #fff);
  padding: 8px 20px 8px 0;
  border-radius: 30px 0 0 30px;
}
.testimonials-card__quote {
  width: 40px;
  height: 40px;
  background-color: var(--school-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: transparent;
  font-size: 17px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--school-white, #fff);
  margin-bottom: 15px;
  transition: all 500ms ease;
}
.testimonials-card__rating {
  display: flex;
  align-items: center;
  color: var(--school-primary);
  font-size: 17px;
  letter-spacing: 6px;
  transition: all 500ms ease;
}
.testimonials-card__rating i::before {
  color: inherit;
}
.testimonials-card__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 0;
}
.testimonials-card:hover .testimonials-card__rating {
  color: var(--school-base);
}
.testimonials-card:hover .testimonials-card__quote {
  background-color: var(--school-base);
}



.testimonials-card-two {
  position: relative;
}
@media (min-width: 1200px) {
  .testimonials-card-two {
    margin-left: 15px;
  }
}
@media (max-width: 1199px) {
  .testimonials-card-two {
    margin-top: 50px;
  }
}
.testimonials-card-two__content {
  padding: 10px;
  max-width: 470px;
  transition: all 500ms ease;
  background-color: var(--school-pink, #fdf0f0);
  position: relative;
}
.testimonials-card-two__content::after {
  content: "";
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 60px;
  height: 33px;
  position: absolute;
  right: 105px;
  bottom: -32px;
  background-color: var(--school-white, #fff);
}
.testimonials-card-two__content:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.testimonials-card-two__top {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--school-base);
  padding: 22px 30px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .testimonials-card-two__top {
    padding: 22px 20px;
  }
}
.testimonials-card-two__name {
  margin: 0;
  color: var(--school-white, #fff);
  position: relative;
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
}
.testimonials-card-two__name::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--school-white, #fff);
}
.testimonials-card-two__designation {
  margin: 0;
  position: relative;
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 10px;
  text-transform: capitalize;
  color: var(--school-white, #fff);
  padding-left: 35px;
}
.testimonials-card-two__rating {
  display: flex;
  align-items: center;
  color: var(--school-base);
  font-size: 20px;
  letter-spacing: 6px;
  margin: 0 30px 19px;
}
@media (max-width: 500px) {
  .testimonials-card-two__rating {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.testimonials-card-two__text {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: var(--school-primary);
  margin: 0 30px 20px;
}
@media (max-width: 767px) {
  .testimonials-card-two__text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 500px) {
  .testimonials-card-two__text {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.testimonials-card-two__images {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  padding-top: 18px;
  transition: all 700ms ease;
}
@media (max-width: 767px) {
  .testimonials-card-two__images {
    display: none;
  }
}
.testimonials-card-two__images img:first-child {
  /* width: 390px;
  height: 380px; */
  width: 324px;
  height: 314px;
  border-radius: 50%;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .testimonials-card-two__images img:first-child {
    width: 290px;
    height: 280px;
  }
}
.testimonials-card-two__images img:nth-child(2) {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .testimonials-card-two__images img:nth-child(2) {
    width: 120px;
    height: 120px;
  }
}
.testimonials-card-two__images img:nth-child(3) {
  width: 212px;
  height: 134px;
  position: absolute;
  bottom: 0;
  right: -20px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.testimonials-card-two__images img {
  width: 100%;
  height: 100%;
}


.testimonials-two {
  position: relative;
  padding: 120px 0;

}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0;
  }
}
.testimonials-two .sec-title {
  padding-bottom: 20px;
}
.testimonials-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.testimonials-two__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 42px;
  z-index: 9;
  position: relative;
}
.testimonials-two__carousel-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonials-two__carousel-nav a {
  width: 50px;
  height: 50px;
  background-color: var(--school-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--school-primary);
  font-size: 16px;
}
.testimonials-two__carousel-nav a:hover {
  background-color: var(--school-base);
  color: var(--school-white, #fff);
}
.testimonials-two .active .testimonials-card-two__images img:first-child {
  animation-delay: 0.3s;
  animation-name: fadeInUp;
}
.testimonials-two .active .testimonials-card-two__images img:nth-child(2) {
  animation-delay: 0.4s;
  animation-name: fadeInUp;
}
.testimonials-two .active .testimonials-card-two__images img:nth-child(3) {
  animation-delay: 0.5s;
  animation-name: fadeInUp;
}



/*--------------------------------------------------------------
# button
--------------------------------------------------------------*/
   .info-link {
    color: var(--school-base);
    font-size: 14px;
    line-height: 26px;
    transition: all 0.3s ease-in-out;
    fill: var(--school-base);
    display: flex;
    justify-content: end;
  }
  
  .info-link:hover {
    color: var(--school-primary);
  }
  
   .info-link:hover .btn-arrow svg {
    fill: var(--school-primary);
  }
  
/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes startIconOne {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(0.5) rotate(45deg);
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes treeMove2 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-10deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(0);
    transform: rotate(10deg) translateX(0);
  }
}
@keyframes treeMove3 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-3deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(3deg) translateX(0);
    transform: rotate(3deg) translateX(0);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes videoZoom {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 1;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}
@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}
@keyframes zoomsIn {
  100%, 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes shrinkAnim {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 0 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes shrinkAnim2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 100% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes rollInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes blinkAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shapeMove {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--school-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--school-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--school-white-rgb, 255, 255, 255), 0.2);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(var(--school-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--school-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--school-white-rgb, 255, 255, 255), 0);
  }
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes iconsZoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
@keyframes wobbleTop {
  16.65% {
    transform: skew(-12deg);
  }
  33.3% {
    transform: skew(10deg);
  }
  49.95% {
    transform: skew(-6deg);
  }
  66.6% {
    transform: skew(4deg);
  }
  83.25% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(0);
  }
}
@keyframes hammerStrike {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-15deg);
  }
}
@keyframes hammerBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1px);
  }
}
/* Add transition effect */
.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--school-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--school-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--school-black, #0e0b06);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--school-primary);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--school-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--school-base);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--school-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--school-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--school-white, #fff);
  font-size: 12px;
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--school-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--school-base);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--school-base);
  border: none;
  outline: none;
  color: var(--school-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--school-white, #fff);
  color: var(--school-black, #0e0b06);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--school-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--school-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--school-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--school-base);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--school-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--school-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--school-white, #fff);
  font-size: 15px;
  color: var(--school-text, #838790);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .school-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--school-black, #0e0b06);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 577px;
}
@media (max-width: 1199px) {
  .page-header {
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 100px;
    padding-bottom: 90px;
    min-height: auto;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
}
.page-header__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(274.1deg, rgba(var(--school-primary-rgb, 25, 34, 58), 0.7) 23.26%, rgba(var(--school-base-rgb, 199, 149, 74), 0.7) 99.15%);
}
.page-header__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/shapes/page-header-shape.png);
}
.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header__title {
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 50px;
  line-height: 47px;
  text-align: center;
  color: var(--school-white, #fff);
}
.page-header--details {
  position: relative;
}
.page-header--details .school-breadcrumb li span {
  color: var(--school-white, #fff);
}

.school-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  background-color: var(--school-base);
  width: fit-content;
  margin: 0 auto;
  padding: 7px 19px;
}
.school-breadcrumb li {
  font-size: 14px;
  color: var(--school-white, #fff);
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.school-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: 0;
  margin-left: 7px;
  margin-right: 7px;
}
.school-breadcrumb li span {
  color: inherit;
  display: inline-flex;
}
.school-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.school-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.school-breadcrumb li a:hover {
  color: var(--school-primary);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--school-gray, #f1fcf9);
  margin-top: 120px;
}

.contact-map {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .contact-map {
    padding-bottom: 80px;
  }
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .client-carousel {
    padding-top: 80px;
  }
}
.client-carousel__one {
  position: relative;
  border-top: 1px solid #d8e4e1;
  border-bottom: 1px solid #d8e4e1;
  padding: 51px 0;
}
.client-carousel__one__item {
  position: relative;
  padding-top: 10px;
}
.client-carousel__one__item::after {
  position: absolute;
  right: -30px;
  top: 0;
  width: 1px;
  height: 84px;
  content: "";
  background-color: #d8e4e1;
}
@media (max-width: 1199px) {
  .client-carousel__one__item::after {
    display: none;
  }
}
.client-carousel__one__item img {
  opacity: 0.6;
  transition: all 300ms ease;
  max-width: 100%;
  width: auto !important;
  cursor: pointer;
}
@media (max-width: 575px) {
  .client-carousel__one__item img {
    margin: 0 auto;
  }
}
.client-carousel__one__item:hover img {
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

/* .main-slider-four {
  padding: 0 105px;
  margin-top: 70px;
}
@media (max-width: 1599px) {
  .main-slider-four {
    padding: 0 25px;
  }
}
@media (max-width: 1399px) {
  .main-slider-four {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .main-slider-four {
    padding: 0 0;
  }
}
@media (max-width: 767px) {
  .main-slider-four {
    margin-top: 80px;
  }
} */
.main-slider-four .owl-dots {
  right: 0;
  margin: auto;
  position: absolute;
  left: 0;
  text-align: right;
  bottom: 0;
  max-width: 1280px;
  width: 100%;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
@media (max-width: 1349px) {
  .main-slider-four .owl-dots {
    max-width: 100%;
    margin-right: 20px;
  }
}
.main-slider-four .owl-dots > .owl-dot {
  width: 120px;
  height: 110px;
  border: 10px solid var(--school-white, #fff);
  border-bottom: none;
  overflow: hidden;
  margin: 0 -5px;
}
.main-slider-four .owl-dots > .owl-dot button {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-slider-four__item {
  position: relative;
  height: 650px;
  width: 100%;
  object-fit: cover;
}
.main-slider-four__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  height: 650px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(1.5);
  filter: blur(10px);
  overflow: hidden;
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main-slider-four .container {
  max-width: 1320px;
  position: relative;
}
.main-slider-four__sub__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--school-text, #838790);
  font-family: var(--school-font, "Plus Jakarta Sans", sans-serif);
  text-transform: capitalize;
  margin: -3px 0 15px;
  opacity: 0;
  transition: all 1500ms ease;
  transform: translateX(400px);
}
.main-slider-four__title {
  font-weight: 400;
  font-size: 60px;
  line-height: 74px;
  margin: 0;
  color: var(--school-primary);
  text-transform: capitalize;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
}
.main-slider-four__title span {
  color: var(--school-base);
}
@media (max-width: 1349px) {
  .main-slider-four__title {
    font-size: 70px;
    line-height: 75px;
  }
}
@media (max-width: 1199px) {
  .main-slider-four__title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .main-slider-four__title br {
    display: none;
  }
}
.main-slider-four__content__wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
@media (max-width: 991px) {
  .main-slider-four__content__wrapper {
    display: block;
  }
}
.main-slider-four__content {
  padding: 40px;
  width: 73%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1349px) {
  .main-slider-four__content {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .main-slider-four__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main-slider-four__content {
    padding: 0 25px 30px;
  }
}
.main-slider-four__content::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--school-white, #fff);
  z-index: -1;
  transition: transform 1.95s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translatey(120%);
}
.main-slider-four__contact {
  background-color: var(--school-primary);
  width: 22%;
  top: 0;
  margin-bottom: 0;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(200px);
  transform-origin: bottom;
  transition: all 1500ms ease;
  /* display: flow; */
    margin-top: 20px;
}
@media (max-width: 1349px) {
  .main-slider-four__contact {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .main-slider-four__contact {
    width: 100%;
  }
}
.main-slider-four__contact::after {
  content: "";
  width: 42px;
  height: 32px;
  background-color: var(--school-primary);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  position: absolute;
  left: 0px;
  bottom: -32px;
}
.main-slider-four__contact__call {
  padding: 15px 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid RGBA(var(--school-white-rgb, 255, 255, 255), 23%);
}
.main-slider-four__contact__icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-slider-four__contact__label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  line-height: 23px;
  color: var(--school-text-dark, #7782A0);
  display: block;
  margin-bottom: -5px;
}
.main-slider-four__contact__link {
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--school-white, #fff);

}
.main-slider-four__contact__link:hover {
  background-size: 100% 1px;
}
.main-slider-four__contact__link:hover {
  color: #d6c9dd;
}
.main-slider-four__contact__customers {
  padding: 22px 50px;
      display: flex
;
}
.main-slider-four__customers__avatars {
  display: flex;
  align-items: center;
}
.main-slider-four__customers__avatar {
  width: 37px !important;
  height: 37px;
  border-radius: 50%;
  margin: 0 -5px;
  border: 1px solid var(--school-white, #fff);
}
.main-slider-four__customers__total {
  width: 37px !important;
  height: 37px;
  border-radius: 50%;
  background-color: var(--school-base);
  color: var(--school-white, #fff);
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider-four__customers__text {
  font-family: var(--school-heading-font, "Marcellus", serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--school-base);
  margin-top: 8px;
  margin-bottom: 0;
}
.main-slider-four .active .main-slider-four__bg {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 700ms;
}
.main-slider-four .active .main-slider-four__content::after {
  transform: translatey(0);
  transition-delay: 1400ms;
}
.main-slider-four .active .main-slider-four__sub__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}
.main-slider-four .active .main-slider-four__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1700ms;
}
.main-slider-four .active .main-slider-four__contact {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1900ms;
}





/*--------------------------------------------------------------
# Hero One
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/




.about-five {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background-color: #f5ebf9;
}
@media (max-width: 767px) {
  .about-five {
    padding: 80px 0;
  }
}
.about-five__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.07;
  mix-blend-mode: multiply;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .about-five__bg {
    display: none;
  }
}
.about-five__bg img {
  max-width: 100%;
}
.about-five__content {
  position: relative;
}
.about-five__content .sec-title {
  padding-bottom: 18px;
}


.about-five__text {
  line-height: 30px;
  font-weight: 400;
  margin: 0 0 26px;
}
.about-five__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 36px;
}
.about-five__list__item {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--school-primary);
}
.about-five__list__item i {
  font-size: 16px;
  position: relative;
  top: 1px;
  color: var(--school-base);
}
@media (max-width: 767px) {
  .about-five__list__item {
    width: 100%;
  }
}
.about-five__skill {
  padding: 26px 39px 29px;
  border: 1px solid var(--school-border-color, #d9d9d9);
  margin-bottom: 50px;
      display: flex;
      gap: 50px;
;
}
@media (max-width: 767px) {
  .about-five__skill {
    padding: 25px;
  }
}
.about-five__right {
  position: relative;
  max-width: 570px;
}
@media (max-width: 1199px) {
  .about-five__right {
    margin-top: 50px;
  }
}
.about-five__img-box {
  position: relative;
}
.about-five__img-box img {
  max-width: 100%;
}
.about-five__img-box__two {
  position: relative;
  text-align: right;
  margin-top: -238px;
}
@media (max-width: 767px) {
  .about-five__img-box__two {
    margin: 20px 0 0;
    text-align: left;
  }
}
.about-five__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--school-gray2, #ededed);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .about-five__icon {
    display: none;
  }
}
.about-five__icon i {
  font-size: 57px;
  color: var(--school-base);
}
.about-five__icon i::before {
  color: inherit;
}
.about-five__experience {
  background-color: var(--school-base);
  padding: 41px 29px 50px 34px;
  transform: rotate(-90deg);
  position: absolute;
  left: -30px;
  bottom: 30px;
}
.about-five__experience__count {
  font-weight: 400;
  font-size: 60px;
  line-height: 40px;
  color: var(--school-white, #fff);
  margin: 0 0 19px;
}
.about-five__experience__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
  color: var(--school-white, #fff);
  margin: 0;
}




/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.service-four {
  position: relative;
  padding: 120px 0;
  background-color: var(--school-primary);
}
@media (max-width: 767px) {
  .service-four {
    padding: 80px 0;
  }
}
.service-four__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}
.service-four .school-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  top: -160px;
  right: 0;
}
@media (max-width: 767px) {
  .service-four .school-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: 0;
  }
}
.service-four .school-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  width: 59px;
  height: 59px;
  font-size: 18px;
  border-color: var(--school-base);
}
.service-four .sec-title__tagline {
  color: var(--school-text-dark, #7782A0);
}
.service-four .sec-title__title {
  color: var(--school-white, #fff);
}
.service-four__item {
  position: relative;
  z-index: 2;
  background-color: var(--school-white, #fff);
  transition: all 500ms ease;
}
.service-four__item__image {
  position: relative;
  overflow: hidden;
}
.service-four__item__image::after {
  background: linear-gradient(90deg, rgba(var(--school-base-rgb, 199, 149, 74), 0.05) 0px, rgba(var(--school-base-rgb, 199, 149, 74), 0.05) 77%, rgba(var(--school-base-rgb, 199, 149, 74), 0.25) 92%, rgba(var(--school-base-rgb, 199, 149, 74), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  transition-property: all;
  transition-duration: 0.7s;
  transition-timing-function: ease;
  width: 200%;
}
.service-four__item__image img {
  width: 100%;
  height: auto;
}
.service-four__item:hover .service-four__item__image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.service-four__item__icon {
  width: 126px;
  height: 117px;
  background: var(--school-primary);
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  padding: 22px 22px 0 0;
}
.service-four__item__icon i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  font-size: 54px;
  color: var(--school-primary);
  background: var(--school-gray2, #ededed);
}
.service-four__item:hover .service-four__item__icon i {
  background-color: var(--school-base);
  color: var(--school-white, #fff);
}
.service-four__item__content {
  position: relative;
  padding: 31px 30px 40px;
}
.service-four__item__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--school-primary);
  margin: 0 0 6px;
}
.service-four__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-four__item__title a:hover {
  background-size: 100% 1px;
}
.service-four__item__title a:hover {
  color: var(--school-base);
}
.service-four__item__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 22px;
}
.service-four__item .school-btn {
  background-color: transparent;
  border: 1px solid var(--school-border-color, #d9d9d9);
  font-size: 14px;
  color: var(--school-primary);
  font-weight: 500;
}
.service-four__item .school-btn > i {
  padding: 6px 21px;
}
.service-four__item .school-btn > span {
  background-color: var(--school-base);
}
.service-four__item .school-btn:hover {
  color: var(--school-white, #fff);
  border-color: var(--school-base);
}

.work-process-four .sec-title__title{
color: var(--school-white, #fff) !important;
}

.work-process-four .sec-title__tagline{
  color: var(--school-white, #fff);
}
.work-process-four__icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}



/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/


.work-process-four {
  padding: 120px 0;
  counter-reset: count;
  position: relative;
  background-color: var(--school-primary);
}
@media (max-width: 767px) {
  .work-process-four {
    padding: 80px 0;
  }
}
.work-process-four .sec-title {
  padding-bottom: 120px;
}
.work-process-four .row {
  --bs-gutter-y: 30px;
}
.work-process-four__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1px;
  counter-increment: count;
  position: relative;
}
.work-process-four__item--two {
  position: relative;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .work-process-four__item--two {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}
.work-process-four__item--two .work-process-four__item__icon {
  margin-bottom: 0;
  margin-top: 25px;
}
.work-process-four__item--two .work-process-four__item__icon::before {
  transform: scaleX(-1);
  right: auto;
  left: -5px;
  bottom: auto;
  top: 3px;
}
.work-process-four__item--two .work-process-four__item__count {
  top: auto;
  bottom: -17px;
}
.work-process-four__item--two .work-process-four__item__arrow {
  transform: translateY(-50%) rotate(-70deg);
  display: inline-block;
  top: 59%;
  right: -49px;
}
.work-process-four__item--four {
  position: relative;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .work-process-four__item--four {
    margin-top: 0px;
  }
}
.work-process-four__item--four .work-process-four__item__icon {
  margin-bottom: 0;
  margin-top: 25px;
}
.work-process-four__item--four .work-process-four__item__icon::before {
  transform: scaleX(-1);
  right: auto;
  left: -5px;
  bottom: auto;
  top: 3px;
}
.work-process-four__item--four .work-process-four__item__count {
  top: auto;
  bottom: -17px;
}
.work-process-four__item--four .work-process-four__item__arrow {
  display: none;
}
.work-process-four__item__icon {
  position: relative;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  background-color: var(--school-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 26px;
  color: var(--school-primary);
  transition: all 500ms ease;
}
.work-process-four__item__icon i {
  position: relative;
  z-index: 2;
}
/* .work-process-four__item__icon::after {
  content: "";
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background-color: var(--school-white, #fff);
  border: 1px solid var(--school-gray2, #ededed);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
.work-process-four__item__icon::before {
  content: "";
  width: 90px;
  height: 180px;
  background-color: var(--school-gray2, #ededed);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 90 181"><path d="M-1.55412e-05 -1.91928e-05C11.819 -1.97094e-05 23.5222 2.34083 34.4415 6.88888C45.3608 11.4369 55.2823 18.1031 63.6396 26.5068C71.9969 34.9105 78.6262 44.8872 83.1491 55.8671C87.6721 66.8471 90 78.6154 90 90.5C90 102.385 87.6721 114.153 83.1491 125.133C78.6262 136.113 71.9969 146.089 63.6396 154.493C55.2823 162.897 45.3608 169.563 34.4415 174.111C23.5222 178.659 11.819 181 -1.52588e-05 181L-1.15853e-05 90.5L-1.55412e-05 -1.91928e-05Z" fill="currentcolor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 90 181"><path d="M-1.55412e-05 -1.91928e-05C11.819 -1.97094e-05 23.5222 2.34083 34.4415 6.88888C45.3608 11.4369 55.2823 18.1031 63.6396 26.5068C71.9969 34.9105 78.6262 44.8872 83.1491 55.8671C87.6721 66.8471 90 78.6154 90 90.5C90 102.385 87.6721 114.153 83.1491 125.133C78.6262 136.113 71.9969 146.089 63.6396 154.493C55.2823 162.897 45.3608 169.563 34.4415 174.111C23.5222 178.659 11.819 181 -1.52588e-05 181L-1.15853e-05 90.5L-1.55412e-05 -1.91928e-05Z" fill="currentcolor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  right: -5px;
  bottom: 3px;
  z-index: -1;
  transition: all 500ms ease;
}
.work-process-four__item__icon-bottom::before {
  content: "";
  width: 90px;
  height: 180px;
  background-color: var(--school-gray2, #ededed);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 90 181" fill="none"><path d="M90 181C78.181 181 66.4778 178.659 55.5585 174.111C44.6392 169.563 34.7177 162.897 26.3604 154.493C18.0031 146.089 11.3738 136.113 6.85087 125.133C2.32793 114.153 1.97342e-05 102.385 1.92147e-05 90.5C1.86952e-05 78.6154 2.32794 66.8471 6.85086 55.8672C11.3738 44.8872 18.0031 34.9105 26.3604 26.5068C34.7177 18.1031 44.6392 11.437 55.5585 6.88891C66.4778 2.34085 78.181 3.41166e-06 90 3.93402e-06L90 90.5L90 181Z" fill="currentColor"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 90 181" fill="none"><path d="M90 181C78.181 181 66.4778 178.659 55.5585 174.111C44.6392 169.563 34.7177 162.897 26.3604 154.493C18.0031 146.089 11.3738 136.113 6.85087 125.133C2.32793 114.153 1.97342e-05 102.385 1.92147e-05 90.5C1.86952e-05 78.6154 2.32794 66.8471 6.85086 55.8672C11.3738 44.8872 18.0031 34.9105 26.3604 26.5068C34.7177 18.1031 44.6392 11.437 55.5585 6.88891C66.4778 2.34085 78.181 3.41166e-06 90 3.93402e-06L90 90.5L90 181Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  left: -5px;
  bottom: -17px;
  z-index: -1;
  transition: all 500ms ease;
}
.work-process-four__item:hover .work-process-four__item__icon {
  color: var(--school-base);
}
.work-process-four__item:hover .work-process-four__item__icon::before {
  background-color: var(--school-base);
}
.work-process-four__item:hover .work-process-four__item__icon-bottom::before {
  background-color: var(--school-base);
}
.work-process-four__item__count {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--school-gray2, #ededed);
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--school-font);
  font-weight: 400;
  font-size: 17.6px;
  text-align: center;
  z-index: 2;
  transition: all 500ms ease;
}
.work-process-four__item__count::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}
.work-process-four__item:hover .work-process-four__item__count {
  background-color: var(--school-base);
  color: var(--school-white, #fff);
}
.work-process-four__item__title {
  font-weight:500;
  font-size: 20px;
  text-align: center;
  color: #e39f00;
  text-transform: capitalize;
  margin: 0 0 8px;
}
.work-process-four__item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin: 0;
  color: var(--school-white);
}
.work-process-four__item__arrow {
  position: absolute;
  top: 49%;
  right: -35px;
  transform: translateY(-50%);
  color: var(--school-primary);
  font-size: 35px;
}
@media (max-width: 991px) {
  .work-process-four__item__arrow {
    display: none !important;
  }
}
 /*=============================
* APPLICATION
==============================*/
 .application{
	background-size: 20px 20px;
  }
  .app-store-btns {
	/* display: flex; */
	width: 100%;
  }
  .app-store-btns a {
	font-family: var(--school-heading-font);
	gap: 5px;
	margin-bottom: 10px;
	font-size: var(--text-body);
	flex-grow: 1;
	flex-basis: 0;
	text-decoration: none;
	color: var(--school-text);
	background: var(--school-white);
	background-repeat: no-repeat;
	padding: 6px 12px 6px 48px;
	min-height: 40px;
	font-weight: 400;
	background-position: 16px;
	display: inline-flex;
	align-items: center;
}

  .app-store-btns a.apple {
	background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/625px-Apple_logo_black.svg.png");
	background-size: 21px 25px;
  }
  .app-store-btns a.google {
	background-image: url("https://psycatgames.com/images/supporting/google-play.svg");
	background-size: 22px 25px;
  }
  .app-store-btns a:hover {
   background-color: var( --school-base);
   color: var(--school-gray);
  }


/*---------------------------------------------
    :: About Top
-----------------------------------------------*/

.breadcrumbs {
  position: relative;
  background: var(--school-primary);
  padding: 60px 0;
}

.breadcrumbs::before {
  content: '';
  position: absolute;
  /* background-image: url(/images/banner.jpg); */
  background-color: var(--school-primary);
  background-repeat: no-repeat;
  background-position: top right;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.breadcrumbs-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcrumbs-box h1 {
  font-size: 32px;
  letter-spacing: -0.05em;
  color: #e39f00 ;
}

.breadcrumbs-box ol {
  display: inline-flex;
  margin-bottom: 0;
  justify-content: center;
  border: 1px solid var(--school-white);
  border-radius: 100px;
  padding: 6px 20px;
}

.breadcrumbs-box ol li.breadcrumb-item {
  color:  var(--school-white);
  text-transform: capitalize;
    font-weight: 400;
}

.breadcrumbs-box ol li.breadcrumb-item a {
  color: inherit;
}

.breadcrumbs-box ol .breadcrumb-item+.breadcrumb-item::before {
  color: #e39f00;
}
/*---------------------------------------------
    :: inner section
-----------------------------------------------*/
.our-school-content{
  margin-top: 80px;
  margin-bottom: 80px;
}

.categories-view1 .row {
  row-gap: 16px;
}

/* Card */
.categories-view1-wrap {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 22px 22px 22px 100px;
  border-radius: 0px;
  position: relative;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

/* Hover effect */
.categories-view1-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Icon */
.categories-view1 i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #e39f00;
  width: 70px;
  height: 70px;
  border-radius: 0 100% 100% 0;
  text-align: center;
  line-height: 70px;
  background-color: #ffffff;
  border: 1px solid #eee;
  border-left: none;
  transition: all 0.4s ease;
}

.categories-view1-wrap:hover i {
  color: #ffffff;
  background-color: var(--school-primary);
}

/* Title */
.categories-view1 a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--school-base);
}

/* Subtitle */
.categories-view1 small {
  font-size: 14px;
  color: #666;
}

/* Background number */
.categories-view1 span {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 80px;
  font-weight: 600;
  color: #000;
  opacity: 0.05;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .categories-view1-wrap {
    padding: 25px 25px 25px 90px;
  }

  .categories-view1 a {
    font-size: 18px;
  }

  .categories-view1 span {
    font-size: 60px;
  }
}

/*---------------------------------------------
    :: message
-----------------------------------------------*/
 .msg-sign {
  color: var(--school-text);
  font-weight: 400;
  font-size: 34px;
  font-family: var(--school-special-font);
  margin-bottom: 0;
}
.quote-line{
  color: var(--school-primary);
  font-weight: 400;
  font-size: 24px;
  font-family: var(--school-special-font);
  line-height: normal;
}

/*---------------------------------------------
    :: news and events
-----------------------------------------------*/

.main_news {
	padding: 30px;
	position: relative;
	text-align: left;
	border: 1px solid #e9e2ed;
	transition: var(--transition);
	width: 100%;
	margin-bottom: 20px;
	overflow: auto;
}


.main_news:hover {
	border-color: none;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
}

.news-subhead h6 {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5rem;
	margin-bottom: 10px;
}

.wrappedimg {
	float: left;
	margin: 0 15px 0 0;
}

.main_img img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	background-size: cover;
	max-width: 400px;
	min-width: 400px;
}

.main_news h2 {
	-webkit-column-span: all;
	margin-bottom: 20px;
	margin-top: 10px;
	font-weight: 800;
	color: var(--black-color);
	font-size: 28px;
}

.main_news::-webkit-scrollbar {
	background: white;
	width: 10px;
}

.main_news::-webkit-scrollbar-thumb {
	background: var(--main-color);
}

.date {
	position: relative;
	top: 0;
	background-color: var(--school-base);
  color: var(--school-white);
	left: 0;
	padding: 10px;
	display: flex;
	width: 200px;
	align-items: center;
	justify-content: center;
}

.date h6 {
	color: var(--main-color);
	align-items: center;
	text-align: center;
	font-family: 'Proxima Nova Condensed', sans-serif;
	font-size: 14px;
	font-weight: 100 !important;
  line-height: normal;
  margin-bottom: 0;
}

.date i {
	color: var(--main-color);
	align-items: center;
	text-align: center;
	padding-right: 8px;
}

.rts-blog.v_5 .single-blog {
	border: 1px solid #e2e9ed;
	transition: var(--transition);
	overflow: hidden;
	padding: 30px;
}

.rts-blog.v_5 .single-blog:not(:last-child) {
	margin-bottom: 50px;
}

.rts-blog.v_5 .single-blog:hover {
	border-color: var(--white-color);
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
}

.rts-blog.v_5 .single-blog__content {
	display: flex;
	gap: 20px;
	flex-direction: column;
	align-items: center;
}

.rts-blog.v_5 .single-blog__content .blog__thumb {
	height: max-content;
	position: relative;
	width: 100%;
}

.rts-blog.v_5 .single-blog__content .blog__thumb img {
	object-fit: cover;
	max-height: 450px;
	min-height: 450px;
	width: 100%;
}

.rts-blog.v_5 .single-blog__content .blog__meta {
	padding: 30px 0 20px 0;
}

.rts-blog.v_5 .single-blog__content .blog__meta--da {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	font-family: var(--font-primary);
}

@media screen and (max-width: 768px) {
	.rts-blog.v_5 .single-blog__content .blog__meta--da {
		gap: 10px;
	}
}

.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-date,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-author,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-cat {
	display: flex;
	gap: 8px;
}

.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-date span i,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-author span i,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-cat span i {
	color: var(--main-color);
}

.rts-blog.v_5 .single-blog__content .blog__meta .blog__title {
	margin-bottom: 20px;
}

.rts-blog.v_5 .single-blog__content .blog__meta .blog__title a {
	color: var(--main-color);
	line-height: 34px;
	transition: var(--transition);
}

.rts-blog.v_5 .single-blog__content .blog__meta .blog__title a:hover {
	color: var(--rt-primary-2);
}

.rts-blog.v_5 .single-blog__content .blog__meta .excerpt {
	margin-bottom: 45px;
}

.rts-blog.v_5 .single-blog__content .blog-place {
	display: flex;
	gap: 8px;
}

.rts-blog.v_5 .single-blog__content .blog-place span i {
	color: var(--rt-primary-1);
}

.rts-blog-list .single-post {
	overflow: hidden;
	background: var(--rt-white);
	box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
	margin-bottom: 60px;
}

.rts-blog-list .single-post a {
	display: inline-block;
}

.rts-blog-list .single-post a img {
	width: 100%;
	object-fit: cover;
}

.rts-blog-list .single-post__meta {
	padding: 40px 50px 50px 50px;
}

.rts-blog-list .single-post__meta .author__date__cat {
	margin-bottom: 30px;
	display: flex;
	gap: 30px;
	color: #74787C;
	line-height: 100%;
	flex-wrap: wrap;
}

.rts-blog-list .single-post__meta .author__date__cat a {
	color: #74787C;
	transition: var(--transition);
	text-transform: capitalize;
}

.rts-blog-list .single-post__meta .author__date__cat a:hover {
	color: var(--rt-primary);
}

.rts-blog-list .single-post__meta .author__date__cat i {
	color: var(--rt-secondary);
	margin-right: 10px;
}

.rts-blog-list .single-post__meta .title {
	font-size: 34px;
	color: var(--rt-secondary);
	line-height: var(--lh-h3);
	transition: var(--transition);
	width: 95%;
	position: relative;
	margin-bottom: 25px;
}

@media screen and (max-width: 576px) {
	.rts-blog-list .single-post__meta .title {
		width: 100%;
	}
}

.rts-blog-list .single-post__meta .title:hover {
	color: var(--rt-primary);
}

.rts-blog-list .single-post__meta .excerpt {
	font-family: var(--font-secondary);
	margin-bottom: 40px;
	line-height: 26px;
}

.rts-blog-list .single-post__meta .readmore__btn {
	max-width: 180px;
	text-align: center;
}

/*---------------------------------------------
    :: gallery
-----------------------------------------------*/

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;

}

.polaroid {
  background-color: var(--school-white);
  padding: 16px 16px 16px 16px;
  border-radius: 2px;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.035),
    0 0.625rem 1.25rem rgba(0, 0, 0, 0.035);
  margin: 0.625rem;
  width: 250px;
  transition: transform 0.3s ease-in-out;
}

.polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.111), 0 1rem 2rem rgba(0, 0, 0, 0.111);
}

.polaroid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}


.polaroid p{
  text-align: center;
  font-family: var( --school-heading-font);
  font-size: 16px;
  color: var(--school-text);
  line-height: normal;
  margin-top: 20px;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .polaroid {
    width: calc(33.33% - 2.5rem);
  }
} /* 40px */
@media (max-width: 900px) {
  .polaroid {
    width: calc(50% - 2.5rem);
  }
} /* 40px */
@media (max-width: 600px) {
  .polaroid {
    width: calc(100% - 2.5rem);
  }
}
.youtube_video_gallery iframe {
    width: 100%;
    height: auto;
}


  /*------------------------------------------
	= inner contact
	-------------------------------------------*/
  input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
	color: var(--school-text);
	width: 100%;
	height: 52px;
	border: 1px solid var(--school-base);
	padding: 0 15px;
	font-family: var(--school-font);
  font-size: 14px;
}

.contact__two-contact-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  margin-bottom: 24px;
  background-color: var(--school-pink);
}

@media (max-width: 1399px) {
	.contact__two-single-info {
		width: 100%;
		margin-right: 15px;
		margin-bottom: 15px;
	}
}

.contact__two-single-info {
  border-radius: 50px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  padding: 16px;
  min-height: 92px;

}

.contact__two-single-info-icon {
  background-color: var(--school-primary);
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__two-single-info-icon img{
  filter: invert(1);
  -webkit-filter: invert(1);
}
.contact__two-single-info-content h6 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 4px;
	color: var(--school-base);
	font-family: var(--school-heading-font);
}

.contact__two-single-info-content span {
	color: var(--school-text);
	display: block;
	font-size: 14px;
	text-transform: none;
	font-family: var(--school-font);
}
.location-map {
  height: 451px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
}
