:root {
  --theme-primary: #2661ac;
  --theme-primary-light: #e6f1ff;
  --theme-primary-dark: #032551;
  --theme-warning: #f39633;
  --theme-danger: #eb1d27;
  --theme-green: #34a345;
  --font-family: "Poppins", sans-serif;
  --theme-gray: rgb(248, 248, 248);
  --theme-primary-accent: #f6faff;
  --theme-dark: #0a0a0a;
  --step--2: clamp(0.6076rem, 0.5964rem + 0.0563vw, 0.64rem);
  --step--1: clamp(0.7292rem, 0.7045rem + 0.1232vw, 0.8rem);
  --step-0: clamp(0.875rem, 0.8315rem + 0.2174vw, 1rem);
  --step-1: clamp(1.05rem, 0.9804rem + 0.3478vw, 1.25rem);
  --step-2: clamp(1.26rem, 1.1548rem + 0.5261vw, 1.5625rem);
  --step-3: clamp(1.512rem, 1.3586rem + 0.7672vw, 1.9531rem);
  --step-4: clamp(1.8144rem, 1.5963rem + 1.0904vw, 2.4414rem);
  --step-5: clamp(2.1773rem, 1.8731rem + 1.5208vw, 3.0518rem);
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
.slideInDown {
  animation: slideInDown 0.5s;
}
body,
html {
  font-size: var(--step-0);
  color: var(--theme-dark);
  line-height: 1.6em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  font-family: var(--font-family);
  scroll-behavior: smooth;
}
.fs-14 {
  font-size: 0.9rem;
}
.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.border-theme-primary {
  border-color: var(--theme-primary) !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
.h1,
h1 {
  font-size: var(--step-5);
}
.h2,
h2 {
  font-size: var(--step-4);
}
.h3,
h3 {
  font-size: var(--step-3);
}
.h4,
h4 {
  font-size: var(--step-2);
}
.h5,
h5 {
  font-size: var(--step-1);
}
.h6,
h6 {
  font-size: var(--step-0);
}
.small,
small {
  font-size: var(--step--1);
}
.smallest {
  font-size: var(--step--2);
}
.bg-theme-primary-accent {
  background-color: var(--theme-primary-accent) !important;
}
.bg-theme-primary-light {
  background-color: var(--theme-primary-light) !important;
}
.bg-theme-primary {
  background-color: var(--theme-primary) !important;
}
.bg-theme-primary-dark {
  background-color: var(--theme-primary-dark) !important;
}
.bg-theme-warning {
  background-color: var(--theme-warning) !important;
}
.text-theme-primary {
  color: var(--theme-primary) !important;
}
@media (min-width: 768px) {
  .text-md-justify {
    text-align: justify;
  }
}
.border-4 {
  border: 4px solid;
}
.border-theme-warning {
  border-color: var(--theme-warning) !important;
}
.text-theme-primary-dark {
  color: var(--theme-primary-dark) !important;
}
.text-theme-warning {
  color: var(--theme-warning) !important;
}

.btn-theme-primary {
  background-color: var(--theme-primary);
  color: #ffffffe8;
  border-color: var(--theme-primary);
  border-radius: var(--bs-border-radius-sm);
  transition: all 0.3s ease-in-out;
}
.btn-theme-primary:hover,
.btn-theme-primary:active {
  background-color: var(--theme-warning) !important;
  color: #fff !important;
  border-color: var(--theme-warning) !important;
}
.btn-theme-warning {
  background-color: #f29633;
  color: #ffffffe8;
  border-color: #f29633;
  border-radius: var(--bs-border-radius-sm);
  transition: all 0.3s ease-in-out;
}
.btn-theme-warning:hover,
.btn-theme-warning:active {
  background-color: var(--theme-warning) !important;
  color: #fff !important;
  border-color: var(--theme-warning) !important;
}
.apply-btn {
  position: relative;
  display: inline-flex;
  gap: 0.4em;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.2em 0.5em;
}
.apply-btn ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  font-weight: normal;
  left: 0;
  width: max-content;
  background-color: #fff;
  border-radius: var(--bs-border-radius-sm);
  overflow: hidden;
  box-shadow: var(--bs-box-shadow-sm);
  animation: slideUp 0.5s;
  display: none;
}
.apply-btn:hover ul {
  display: block;
}
.apply-btn .arrow-icon {
  transition: all 0.4s;
}
.apply-btn:hover .arrow-icon {
  transform: rotate(-180deg);
}
.apply-btn ul a {
  display: block;
  padding: 0.5em 1em;
  text-align: left;
  font-size: 0.9em;
  font-weight: 400;
  color: var(--bs-body-color);
  transition: all 0.3s ease-in-out;
}
.apply-btn ul a:hover {
  color: var(--theme-primary);
  background-color: #fff;
}
.apply-btn ul li:not(:last-child) {
  border-bottom: 1px solid var(--bs-border-color);
}
.btn-know {
  color: var(--theme-primary);
  font-weight: 500;
  transition: all 0.3s;
}
.btn-know:hover {
  color: var(--theme-warning);
}
.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}
.lh-13 {
  line-height: 1.3;
}
.border-head {
  border-bottom: 3px solid var(--theme-warning);
  padding-bottom: 0.25em;
}

.page-wrapper {
  position: relative;
  width: 100%;
  min-width: 300px;
  z-index: 9;
  margin: 0 auto;
}
.text-black {
  color: #000 !important;
}
.text-shadow {
  text-shadow: 0 0 #000;
}
a {
  text-decoration: none;
}
body.mobile-menu-visible .page-wrapper {
  z-index: 999999;
}
.auto-container {
  position: static;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}
.main-header li,
.main-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.scroll-to-top {
  position: fixed;
  right: 10px;
  bottom: 90px;
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  transition: 0.3s;
}
.scroll-to-top:hover {
  color: #fff;
  background: var(--theme-primary-dark);
  border-color: var(--theme-warning);
}
.gal-card {
  position: relative;
  box-shadow: 0 3px 6px #0000000f;
  border: 1px solid #70707040;
}
.gal-card:hover .gal-content {
  bottom: 100%;
  transform: translateY(100%);
}
.gal-content {
  background: #0b7c2d;
  padding: 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  transition: 1s;
}
.gal-content .act-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.gal-img {
  height: 250px;
  width: 100%;
}
.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes scrollDown {
  0% {
    transform: translate3d(0, -70px, 0);
  }
  50% {
    animation-timing-function: ease-in-out;
    transform: translate3d(0, 0, 0);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate3d(0, 65px, 0);
  }
}

.mobile-menu,
.sticky-header {
  position: fixed;
  visibility: hidden;
  top: 0;
}
.main-header .logo {
  width: min(315px, 70%);
}
.sticky-header {
  opacity: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: -1;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}
.fixed-header .sticky-header {
  opacity: 1;
  z-index: 99901;
  visibility: visible;
}

.mobile-menu {
  right: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 999999;
}
.mobile-menu .mCSB_scrollTools {
  right: -6px;
}
.mobile-menu .mCSB_inside > .mCSB_container {
  margin-right: 5px;
}
.mobile-menu .navbar-collapse {
  display: block !important;
}
.mobile-menu .nav-logo {
  position: relative;
  padding: 10px 25px;
  text-align: left;
  margin: 0;
  background: #fff;
}
.mobile-menu  ul ul {
  padding-left: .8em;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: 0.9s;
  -moz-transition: 0.9s;
  -webkit-transition: 0.9s;
  -ms-transition: 0.9s;
  -o-transition: 0.9s;
  background-color: #000;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.3;
  visibility: visible;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-menu .menu-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--theme-primary-dark);
  padding: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-menu .close-btn {
  position: absolute;
  right: 5px;
  top: 10px;
  line-height: 10px;
  width: 24px;
  text-align: center;
  font-size: 20px;
  color: var(--theme-primary-dark);
  cursor: pointer;
  z-index: 10;
  font-weight: 400;
  -webkit-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu .navigation li:not(:first-child) {
  border-top: 1px solid #0000004d;
}

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 7px 25px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mobile-menu .navigation li a img {
  filter: invert(1) brightness(100);
  max-width: 18px;
}
.mobile-menu .navigation li ul li > a {
  font-size: 13px;
  margin-left: 20px;
  text-transform: capitalize;
}
.mobile-menu .navigation li ul li:before {
  position: absolute;
  left: 22px;
  font-family: FontAwesome;
  font-weight: 800;
  content: "\f178";
  top: 11px;
  line-height: 15px;
  color: #fff;
}
.mobile-menu .navigation li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mobile-menu .navigation li.current > a:before {
  height: 100%;
}
.mobile-menu .navigation > .current > a {
  border-radius: unset !important;
}
.mobile-menu .current:not(.dropdown) > a{
  background: var(--theme-warning) !important;
  color: white !important;
  border-radius: var(--bs-border-radius-sm);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 0.2em;
  width: 32px;
  height: 32px;
  text-align: center;
  transform: rotate(90deg);
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.mobile-menu .social-links {
  position: relative;
  text-align: center;
  padding: 30px 25px;
}
.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px;
}
.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 5px 10px;
}

.scroll-to-top {
  color: var(--theme-primary-dark);
  background: #fff;
  border: 2px dashed var(--theme-primary-dark);
}
.page-title {
  position: relative;
  padding: 45px 0;
  text-align: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center !important;
  border-top: 1px solid var(--gold-color);
  background: var(--theme-primary)
    url(https://resources.edunexttechnologies.com/web-data/page-title-bg.png)
    no-repeat center;
}
.page-title h1 {
  font-size: 24px;
  color: #fff;
  line-height: 42px;
  margin-bottom: 0;
  font-weight: 500;
}
@media only screen and (min-width: 992px) {
  #newmodal .modal-dialog {
    max-width: 580px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-menu .navigation {
    max-height: 70vh;
    overflow: auto;
  }
}
#enquirymodal,
#newmodal {
  z-index: 9999;
  background: rgb(0 0 0 / 74%);
}
#enquirymodal .modal-header {
  background: var(--blue-color);
  padding: 0.2rem 1rem;
  border-bottom: none;
}
#enquirymodal .modal-content {
  border-radius: 10px;
}
#enquirymodal .close,
.modal .close {
  position: absolute;
  font-size: 18px;
  background: #343f64;
  opacity: 1;
  color: #fff;
  text-shadow: none;
  display: inline-block;
  padding: 0 4px 8px 8px;
  border-radius: 0 0 0 42px;
  cursor: pointer;
  z-index: 22;
}
#enquirymodal h4 {
  color: #fff;
  font-size: 20px;
}
#enquirymodal .close {
  top: 16px;
  right: 16px;
}
.modal .close {
  top: 0;
  right: 0;
}
#newmodal .modal-dialog .modal-dialog-centered {
  width: 100%;
}
.whats-img {
  bottom: 45px;
  right: 10px;
  width: 40px;
  position: fixed;
  z-index: 22;
}
.owl-next,
.owl-prev {
  position: absolute;
  top: 50%;
  width: 40px !important;
  height: 40px !important;
}
.owl-prev {
  left: 10% !important;
  border: 1px solid #fff !important;
  border-radius: 130px;
}
.owl-next {
  right: 10% !important;
  border: 1px solid #fff !important;
  border-radius: 130px;
}
/* menu style  */

.navigation {
  display: none;
  font-weight: 500;
  /* justify-content: space-between; */
}

@media screen and (min-width: 768px) {
  .navigation {
    display: flex;
    gap: 0.4rem;
  }
}

.navigation ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navigation .dropdown {
  position: relative;
  padding-right: 10px;
}
.navbar {
  font-size: .9rem;;
}
.navbar .navigation ul a {
  color: var(--bs-dark-text-emphasis);
  padding: 0.4em 1em;
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
  }
  to {
    transform: none;
  }
}
.navbar .navigation .dropdown ul {
  position: absolute;
  text-wrap: auto;
  font-weight: 400;
  width: 230px;
  line-height: 1.6;
  left: 0;
  background-color: white;
  border: 1px solid var(--bs-light);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
  transition: all 0.3s;
  animation: slideUp 0.6s ease alternate;
}

.navbar .navigation .dropdown:hover > ul {
  display: block;
}
.navigation .home-icon img {
  width: 1.2em;
}
.navbar .navigation .dropdown ul .dropdown ul {
  left: 100%;
  margin: 0;
  top: 0;
}

.navbar .dropdown::after {
  content: "\f078";
  position: absolute;
  right: 0;
  top: 55%;
  translate: 0 -50%;
  font-size: 0.7em;
  font-weight: bold;
  font-family: "FontAwesome";
}
.navbar .dropdown .dropdown::after {
  top: 50%;
  font-family: "FontAwesome";
  content: "\f054";
  right: 5px;
}
.navbar .dropdown-btn {
  display: none;
}

.navigation li a {
  color: inherit;
  text-decoration: none;
  display: block;
  font-size: .9rem;
  padding: 0.3em 0.5em;
  transition: all 0.3s;
}

.nav-outer .navigation li a:hover {
  color: var(--theme-primary);
}
.mobile-menu .navigation li a:hover {
  color: var(--theme-warning);
}

.mobile-menu-toggler {
  background-color: var(--bs-light);
  border: 1px solid var(--bs-border-color);
}

/* internal page left menu style  */
#leftSideMenu {
  list-style: none;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.875rem;
}
#leftSideMenu li {
  display: block;
  cursor: pointer;
  position: relative;
}
#leftSideMenu li.leftMenuBtn {
  padding-right: 1rem;
}
#leftSideMenu li a {
  display: block;
}
#leftSideMenu li > a {
  padding: 0.25em 0.5em;
  border-radius: 4px;
  transition: all 0.3s;
}
#leftSideMenu li:hover > a {
  color: var(--theme-dark);
}
#leftSideMenu > li.leftMenuBtn::after {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 0.9em;
  font-weight: 600;
  position: absolute;
  right: 0;
  top: 0.4em;
  transition: all 0.3s;
}
#leftSideMenu > li.leftMenuBtnActive::after {
  transform: rotate(90deg);
}
#leftSideMenu li:hover::after {
  color: inherit;
}
#leftSideMenu .active-leftPage {
  background-color: var(--theme-primary);
  color: #fff !important;
}
#leftSideMenu li:not(:last-child) {
  border-bottom: 1px solid var(--bs-border-color);
}
#leftSideMenu .leftMenu-drop {
  display: block;
  padding-left: 1em;
  font-size: 0.9em;
}
.container-sec {
  max-width: min(90%, 1400px);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: auto;
}
.co-sec .content .row > div:first-child {
  background: var(--theme-primary-light);
}
.co-sec .content .row > div:last-child {
  background: var(--theme-primary-accent);
}
.owl-dots {
  text-align: center;
  margin-top: .8rem;
}
.owl-dots button {
  width: 8px;
  height: 8px;
  border-radius: var(--bs-border-radius-pill);
  margin-right: 2px;
  background: var(--theme-primary-light) !important;
}
.owl-dots button.active {
  background: var(--theme-warning) !important;
  width: 12px;
}
@media (min-width: 768px) {
  .co-sec .content {
    background: #e6f1ff;
    background: linear-gradient(
      90deg,
      var(--theme-primary-light) 50%,
      var(--theme-primary-accent) 50%
    );
  }
}
.prog-sec {
  background: #e6f1ff;
  background: linear-gradient(180deg, var(--theme-primary-light) 70%, white 0%);
}
.pf-card-pic {
  width: 90px !important;
  aspect-ratio: 1;
  padding: 0.5rem;
  margin-top: -45px;
}
.img-invert {
  filter: brightness(0) invert(1);
}
.pf-slider .owl-stage-outer {
  padding-top: 47px;
  padding-bottom: 1rem;
}
.pf-slider .owl-stage {
  display: flex;
}
.slider-360 .item {
  background: url(https://resources.edunexttechnologies.com/web-data/tcn/images/360-card-bg.png)
    no-repeat center;
  background-size: cover;
}
.slider-360 .logo-icon {
  width: 30px !important;
  /* margin: auto; */
}
.gm-profile {
  width: 120px;
}
.social-slider .s-frame {
  position: relative;
  box-shadow: var(--bs-box-shadow-sm);
}
.social-slider .s-frame .icon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--theme-primary-dark);
  color: white;
  display: inline-block;
  padding: 1rem;
}
.social-slider .s-frame,
.social-slider .s-frame img {
  aspect-ratio: 1;
  object-fit: cover;
  overflow: hidden;
}
.fw-icon {
  width: 2rem;
}
.flex-1 {
  flex: 1;
}
footer a {
  color: rgba(255, 255, 255, 0.856);
  transition: all 0.4s;
}
footer a:hover {
  color: var(--theme-warning);
}
.mobile-nav-toggler {
  background: var(--theme-primary);
  color: white;
  aspect-ratio: 1;
  display: flex;
  border-radius: var(--bs-border-radius-sm);
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.mobile-nav-toggler:hover,
.mobile-nav-toggler:active {
  background: var(--theme-primary-dark) !important;
  color: white !important;
}
.slider-360 .owl-stage {
  display: flex;
}
.slider-360 .owl-stage .item {
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .slider-360 .owl-stage .item::after {
    content: "\f101";
    font-family: FontAwesome;
    position: absolute;
    display: flex;
    color: var(--theme-dark);
    justify-content: center;
    align-items: center;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    z-index: 9;
  }
}
.og-sec .og-card { 
  padding: .5rem 1rem;
  transition: all 0.3s;
}
.og-sec .og-card:hover {
  background: white;
  box-shadow: var(--bs-box-shadow-sm);
  /* transform: translateY(-5px); */
  border-radius: var(--bs-border-radius);
}
.f-enquiry {
  position: fixed;
    top: 50%;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: translate(-33px, 0%) rotate(90deg);
    padding: .25rem .5rem;
    background-color: var(--theme-warning);
    color: white;
    font-size: .9rem;
    z-index: 2;
    transform-origin: right bottom;
    transition: all .3s;
}
.f-enquiry:hover, .f-enquiry:active {
  background: var(--bs-light) !important;
  border-color: white !important;
  color: var(--theme-warning) !important;
}
@keyframes slideLeft {
  from {
    top: 12%;
  }
  to {
    top: 0;
  }
}
.f-enquiry .en-dropdown {
  list-style: none;
  margin: 0;
  position: absolute;
  top: 0%;
  left: -50%;
  width: max-content;
  background: var(--theme-warning);
  padding: 0;
  transform: rotate(-90deg) translateY(-55%);
  transform-origin: center right;
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: var(--bs-border-radius-sm);
  overflow: hidden;
  z-index: 1;
  display: none;
  animation: slideLeft 0.5s ease;
}
.f-enquiry span {
  cursor: pointer;
}
@media (max-width: 576px) {
  .f-enquiry {
    padding: .2rem .5rem;
    transform: translate(-29px, 0%) rotate(90deg);
  }
}
.f-enquiry .en-dropdown button {
  padding: .25rem .5rem;
  border: 0;
  width: 100%;
  border-radius: 0;
  display: block;
  background-color: var(--theme-primary);
  color: white;
}
.f-enquiry .en-dropdown button:hover {
  background-color: var(--theme-warning);
  color: white;
}
.f-enquiry .en-dropdown li:not(:last-child) {
  border-bottom: 1px solid var(--bs-border-color);
}
.f-enquiry:hover .en-dropdown {
  display: block;
}
@media (min-width: 992px) {
  .video-banner {
    height: calc(100vh - 80px);
    width: 100%;
    object-fit: fill;
  }
}