:root {
  --primary-color: #004540;
  --Secondary-color: #FFE175;
  --theme-color: #85BF18;
  --shade-color: #99EF68;
  --title-color: #15161C;
  --body-color: #212529;
  --gray-color: #383838;
  --warning-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --light-color: #f5f5f5;
  --dark-color: #15161C;
  --white-color: #fff;
  --black-color: #000;
  --hr-color: #000;
  --Merriweather-font: "Merriweather", serif;
  --Lato-sans-font:  "Lato", sans-serif;
 	--Bilbo-Swash: "Bilbo Swash Caps", cursive;
  --icon-font: "FontAwesome";
  --body-fz: 16px;
}

/* 01 Default CSS */
html, body {
  scroll-behavior: smooth !important;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: var(--Secondary-color);
}

body {
  color: var(--body-color);
  font-size: var(--body-fz);
  font-family: var(--Lato-sans-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 24px;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: var(--title-color);
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--Merriweather-font);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: var(--hr-color);
}

ol {
  list-style: decimal;
}
li{
  list-style: none;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: var(--gray-color);
  cursor: pointer;
  font-size: var(--body-fz);
  font-weight: 400;
}

*::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: var(--theme-color);
  background: var(--theme-color);
}
.btn-theme:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: var(--gray-color);
}

.bg-white {
  background: #fff;
}

.bg-cream {
  background: #f8f7f0;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: var(--theme-color);
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: var(--gray-color);
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: var(--theme-color);
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.common-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .common-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 14px;
  }
}
.common-subtitle.style-color-white {
  color: var(--white-color);
}
.common-subtitle.style-color-2 {
  color: var(--Secondary-color);
}
.common-subtitle.style-color-3 {
  color: var(--primary-color);
}
.common-subtitle.m-b-0 {
  margin-bottom: 0;
}

.common-title {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .common-title {
    margin-bottom: 20px;
  }
}
.common-title h2 {
  font-weight: 600;
  font-size: 38px;
  line-height: 42px;
  color: var(--primary-color);
  margin-bottom: 0 !important;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .common-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .common-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .common-title h2 {
    font-size: 22px;
    line-height: 30px;
  }
  p{
    font-size: 14px;
  }
}
.common-title.style-color-white h2 {
  color: var(--white-color);
}
.common-title.style-color-light h2 {
  color: var(--light-color);
}
.common-title.style-color-2 h2 {
  color: var(--Secondary-color);
}
.common-title.style-color-3 h2 {
  color: var(--primary-color);
}
.common-title.m-b-0 {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1392px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}
.description{
    margin-top: 20px;
}
/*====================================================================
    Components
====================================================================*/
/* 02 Preloader CSS */
.dark #preloader {
  background-color: #ffffff;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  z-index: 999999;
}

.preloader {
  width: 200px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader img {
  width: 100%;
}


/* 03 Button CSS */
.e-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--albert-sans-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--primary-color);
  padding: 16px 25px;
  /* background: var(--Secondary-color); */
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
.e-primary-btn:before {
  content: "";
  position: absolute;
  left: -110%;
  top: 50%;
  width: 200%;
  height: 200%;
  /* background: var(--primary-color); */
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 200px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.has-icon {
  padding: 5px 5px 5px 25px;
  gap: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn.has-icon {
    gap: 10px;
  }
}
.e-primary-btn .icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 1399px) {
  .e-primary-btn .icon-wrap {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
.e-primary-btn .icon-wrap .icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 15px;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
.e-primary-btn .icon-wrap .icon i {
  flex: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.is-hover-white:before {
  background: var(--white-color);
}
.e-primary-btn.is-hover-white:hover {
  color: var(--primary-color);
}
.e-primary-btn.is-hover-white:hover .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
/* .e-primary-btn:hover {
  color: var(--Secondary-color);
} */
.e-primary-btn:hover:before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.e-primary-btn:hover .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
.e-primary-btn:hover .icon-wrap .icon i {
  transform: translateX(100%);
}
.e-primary-btn.has-small .icon-wrap {
  width: 34px;
  height: 34px;
}
@media (max-width: 991px) {
  .e-primary-btn.has-small .icon-wrap {
    width: 40px;
    height: 40px;
  }
}

/* 04 Header Css */
.logo-wrap img {
  width: 100%;
  max-width: 124px;
}

.logo-wrap-2 {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 0;
  padding: 20px 52px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
    line-height: 1.1;
}

.school-name {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
}

.school-name-second {
    font-weight: 600;
    font-size: 16px;
    color: var(--Secondary-color); 
    letter-spacing: 0.5px;
        text-transform: uppercase;
}

.tagline {
    font-size: 11px;
    color: #dddddd;
    letter-spacing: 0.5px;
    display: block;
}

@media (max-width: 1399px) {
  .logo-wrap-2 {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-wrap-2 {
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .logo-wrap-2 {
    padding: 15px 20px;
  }
}
.logo-wrap-2 img {
  max-width: 165px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .logo-wrap-2 img {
    max-width: 125px;
  }
}

.header-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom {
    padding: 10px 0;
  }
}

/* Sticky Header */

/* ================================
   STICKY GLASS EFFECT
================================ */
.header-bottom-2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation-name: fadeInDown;
    animation-duration: .8s;
    animation-fill-mode: both;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.1);
    -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
    padding: 4px 0;
    z-index: 999;
}

/* Logo shrink */
.header-bottom-2.sticky .logo-wrap img {
    width: 100%;
    max-width: 80px;
}

/* Logo text color change */
.header-bottom-2.sticky .logo-text h5,
.header-bottom-2.sticky .logo-text h6,
.header-bottom-2.sticky .logo-text .tagline {
    color: var(--white-color);
}

/* Nav text color change */
.header-bottom-2.sticky .main-menu-3 ul li a {
    color: var(--white-color);
}

/* Header info color change */
.header-bottom-2.sticky .header-info-content span,
.header-bottom-2.sticky .header-info-content p a {
    color: var(--white-color);
}

.header-bottom-2.sticky .main-menu-3 {
    padding: 3px;
    background: none;
    backdrop-filter:  none;
    border: none;
    border-radius: 30px;
}
.header-bottom-2.sticky .main-menu-3 ul .has-dropdown .sub-menu li a:hover {
    color: #383838;
    background: var(--Secondary-color);
}
.header-bottom-2.sticky .main-menu-3 ul .has-dropdown .sub-menu li a{
    display: block;
    color: #383838;
    font-size: 14px;
    border-radius: 0;
    background: none;
    padding: 5px 20px;
}
.header-bottom-2.sticky .main-menu-3 ul li:hover a {
  color: var(--Secondary-color);
}
/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-bottom-2 {
  padding-left: 85px;
  padding-right: 85px;
  /* padding-top: 12px;
  padding-bottom: 12px; */
  /* position: absolute; */
  top: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-bottom-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bottom-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}

.header-bottom-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom-layout-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left {
    gap: 10px;
  }
}

.header-left-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-2 {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-2 {
    gap: 10px;
  }
}

.header-left-4 {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-4 {
    gap: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-4 {
    gap: 10px;
  }
}

.header-left-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 34%;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-3 {
    width: 34%;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .header-left-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 62%;
    gap: 20px;
}
}
@media (min-width: 300px) and (max-width: 576px) {
  .header-left-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 74%;
    gap: 20px;
}
}


.header-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 16px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-middle {
    padding: 10px 12px;
  }
}
.header-middle .header-info-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-right {
    gap: 10px;
  }
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  display: inline-block;
}
.main-menu ul li:hover a {
  background: rgba(0, 69, 64, 0.1);
}
.main-menu ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--primary-color);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
  content: "\f068";
}
.main-menu ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--Secondary-color);
}

.main-menu-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-2 ul li {
  display: inline-block;
}
.main-menu-2 ul li:hover a {
  color: var(--Secondary-color);
  background: rgba(217, 217, 217, 0.16);
}
.main-menu-2 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-2 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-2 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-2 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-2 ul .has-dropdown > a:after {
  content: "\f0d7";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
}
.main-menu-2 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-2 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-2 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-2 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--Secondary-color);
}

.main-menu-3 {
  padding: 3px;
background: rgba(212, 212, 212, .1);
    backdrop-filter: blur(17.5px);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 30px;
}
.main-menu-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-3 ul li {
  display: inline-flex;
  align-items: center;
}
.main-menu-3 ul li:hover a {
  color: var(--Secondary-color);
}
.main-menu-3 ul li:first-child:before {
  width: 0;
  margin: 0;
}
.main-menu-3 ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin-right: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.main-menu-3 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-3 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-3 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-3 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-3 ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 400;
  font-size: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-3 ul .has-dropdown:hover > a:after {
  transform: rotate(140deg);
  content: "+";
  font-family: var(--icon-font);
  -webkit-transform: rotate(140deg);
  -moz-transform: rotate(140deg);
  -ms-transform: rotate(140deg);
  -o-transform: rotate(140deg);
}
.main-menu-3 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-3 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 0px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;

}
.main-menu-3 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-3 ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu-3 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 14px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-3 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--Secondary-color);
}

.header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info {
    gap: 5px;
  }
}
.header-info .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info .header-info-icon-2 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(0, 69, 64, 0.1);
  border: 1.5px solid rgba(0, 69, 64, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(56, 56, 56, 0.8);
}
.header-info .header-info-content p {
  font-family: var(--Merriweather-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--primary-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-content p {
    font-size: 16px;
  }
}
.header-info .header-info-content p a {
  color: var(--primary-color);
}
.header-info .header-info-content p a:hover {
  color: var(--theme-color);
}

.header-info-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 {
    gap: 10px;
  }
}
.header-info-2 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
background: rgba(212, 212, 212, .1);
    backdrop-filter: blur(17.5px);
    border: 1px solid hsla(0, 0%, 100%, .1);
  color: #f8f7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-2 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-2 .header-info-content p {
  font-family: var(--Lato-sans-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-2 .header-info-content p a {
  color: var(--white-color);
}
.header-info-2 .header-info-content p a:hover {
  color: var(--Secondary-color);
}

.header-info-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 {
    gap: 10px;
  }
}
.header-info-3 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--Secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-3 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-3 .header-info-content p {
  font-family: var(--Merriweather-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-3 .header-info-content p a {
  color: var(--white-color);
}
.header-info-3 .header-info-content p a:hover {
  color: var(--Secondary-color);
}

.header-bar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar {
    width: 45px;
    height: 45px;
  }
}
.header-bar .bar {
  background: var(--primary-color);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar .bar {
    width: 18px;
  }
}
.header-bar .bar-1 {
  margin-top: -6px;
}
.header-bar .bar-3 {
  margin-top: 6px;
}
.header-bar.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.header-bar.active .bar {
  background: var(--white-color);
}
.header-bar.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar.active .bar-2 {
  left: 200%;
}
.header-bar.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 {
    width: 45px;
    height: 45px;
  }
}
.header-bar-2 .bar {
  background: var(--white-color);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 .bar {
    width: 18px;
  }
}
.header-bar-2 .bar-1 {
  margin-top: -6px;
}
.header-bar-2 .bar-3 {
  margin-top: 6px;
}
.header-bar-2.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.header-bar-2.active .bar {
  background: var(--white-color);
}
.header-bar-2.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-2.active .bar-2 {
  left: 200%;
}
.header-bar-2.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-3 {
  width: 81px;
  height: 81px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 0 16px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (max-width: 767px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
.header-bar-3 .bar {
  background: var(--white-color);
  width: 22px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 .bar {
    width: 18px;
  }
}
.header-bar-3 .bar-1 {
  margin-top: -6px;
}
.header-bar-3 .bar-3 {
  margin-top: 6px;
}
.header-bar-3.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.header-bar-3.active .bar {
  background: var(--white-color);
}
.header-bar-3.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-3.active .bar-2 {
  left: 200%;
}
.header-bar-3.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-divider-bar {
  width: 30px;
  height: 1.6px;
  opacity: 0.15;
  border: 1px solid #004540;
  transform: rotate(90deg);
}

.header-section {
  position: relative;
  z-index: 99;
}

.header-section-1 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.header-section-3 {
  position: relative;
  z-index: 10;
}
.header-section-3 .e-primary-btn {
  background: var(--primary-color);
  border: none;
  color: var(--Secondary-color);
}
.header-section-3 .e-primary-btn:before {
  background: var(--Secondary-color);
}
.header-section-3 .e-primary-btn .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
.header-section-3 .e-primary-btn:hover {
  color: var(--primary-color);
}
.header-section-3 .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--Secondary-color);
}

.header-section-4 .e-primary-btn .icon-wrap {
  color: var(--Secondary-color);
}
.header-section-4 .e-primary-btn:hover .icon-wrap {
  color: var(--primary-color);
}

.header-section-5 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-section-5 .e-primary-btn .icon-wrap {
  color: var(--Secondary-color);
}
.header-section-5 .e-primary-btn:hover .icon-wrap {
  color: var(--primary-color);
}

  /*------------------------------------------
	= OffCanvas Css
	-------------------------------------------*/
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-sidebar .off-canvas-sidebar-close {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  border-radius: 0 0 4px 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover {
  background: var(--error-color);
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-sidebar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

.off-canvas-sidebar-body {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  z-index: 30;
  padding: 24px;
  padding-top: 70px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-sidebar-body {
    max-width: 100%;
  }
}
.off-canvas-sidebar-body.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-sidebar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-sidebar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb:active {
  background: var(--Secondary-color);
}

.off-canvas-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-thumb img {
  width: 100%;
  border-radius: 10px;
}

.off-canvas-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.off-canvas-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.off-canvas-contact-item:hover .icon {
  color: var(--primary-color);
  background: var(--Secondary-color);
}
.off-canvas-contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-contact-item .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--title-color);
  margin-bottom: 4px;
}
.off-canvas-contact-item .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.off-canvas-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 50px;
}
.off-canvas-social-links a:hover {
  color: var(--primary-color);
  background: var(--Secondary-color);
}

.off-canvas-menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-menubar .off-canvas-head {
  padding: 0 0 0 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.off-canvas-menubar .off-canvas-menubar-close {
  padding: 20px 30px 20px 30px;
  border-left: 1px solid #E5E5E5;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close:hover {
  color: var(--white-color);
  background: var(--error-color);
}
.off-canvas-menubar .off-canvas-menubar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-menubar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-menubar-body {
  position: fixed;
  left: -100%;
  top: 0;
  width: 400px;
  background: var(--primary-color);
  z-index: 30;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-menubar-body {
    max-width: 100%;
  }
}
.off-canvas-menubar-body.active {
  left: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-menubar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-menubar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb:active {
  background: var(--Secondary-color);
}

.off-canvas-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  text-align: left;
  padding: 20px 30px 40px;
}
.off-canvas-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.off-canvas-menu ul li {
  display: block;
  border-bottom: 1px solid #fdedf1;
}
.off-canvas-menu ul li:hover > a {
  color: var(--theme-color);
}
.off-canvas-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
  padding-left: 0px;
}
.off-canvas-menu ul .has-dropdown > a:after {
  content: "\f078";
  font-family: var(--icon-font);
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menu ul .has-dropdown.active > a {
  color: var(--Secondary-color);
}
.off-canvas-menu ul .has-dropdown.active > a:after {
  transform: translateY(-50%) rotate(180deg);
}
.off-canvas-menu ul .has-dropdown li {
  padding-left: 20px;
}
.off-canvas-menu ul .has-dropdown li:first-child {
  border-top: 1px solid #fdedf1;
}
.off-canvas-menu ul .has-dropdown li:last-child {
  border-bottom: 0;
}
.off-canvas-menu ul .has-dropdown li a {
  font-size: 14px;
  padding: 10px 0;
}
.off-canvas-menu ul .has-dropdown .sub-menu {
  display: none;
}

.off-canvas-menubar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

  /*------------------------------------------
	= footer
	-------------------------------------------*/
.footer-section {
  background-color: var(--primary-color);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-bottom-layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px 3px 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-layout .top-btn {
  border-radius: 100px;
  gap: 5px;
  padding: 14px;
  color: var(--Secondary-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .top-btn {
    padding: 8px 14px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .top-btn {
    position: absolute;
    padding: 8px 14px;
    bottom: -60px;
  }
}
.footer-bottom-layout .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
}
.footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-layout .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--Secondary-color);
}

.footer-widget .w-title {
  font-family: var(--Merriweather-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .footer-widget .w-title {
    font-size: 20px;
  }
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  display: block;
  margin-bottom: 10px;
}
.footer-widget ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 991px) {
  .footer-widget ul li a {
    font-size: 14px;
  }
}
.footer-widget ul li a:after {
  content: "\f061";
  font-family: var(--icon-font);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-left: 5px;
  line-height: 1;
}
.footer-widget ul li a:hover {
  color: var(--Secondary-color);
}
.footer-widget ul li a:hover:after {
  margin-left: 0;
  opacity: 1;
}

.about-widget .footer-logo {
  margin-bottom: 25px;
}
.about-widget .footer-logo img {
  max-width: 88px;
}
.about-widget .text p {
  color: #fff;
  margin-bottom: 15px;
}
.about-widget .info p {
  color: #fff;
  margin-bottom: 4px;
}

.about-widget .info p span {
  color: var(--Secondary-color);
}
.about-widget .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.about-widget .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}
.about-widget .social-links a:hover {
  color: var(--primary-color);
  background: var(--Secondary-color);
}

.subscribe-form .input-checkbox {
  margin-top: 20px;
}
.subscribe-form .input-checkbox input {
  display: none;
}
.subscribe-form .input-checkbox input:checked + label .check-mark {
  background: var(--Secondary-color);
}
.subscribe-form .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--Secondary-color);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
    gap: 8px;
  }
}
.get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
    width: 40px;
    height: 40px;
  }
}
.get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
  color: var(--Secondary-color);
  font-size: 20px;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
    font-size: 16px;
  }
}
.get-in-touch .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 4px;
}
.get-in-touch .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.adjusted-width {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .adjusted-width {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .adjusted-width {
    width: 41.66666667%;
  }
}
@media (max-width: 767px) {
  .adjusted-width {
    width: 100%;
  }
}


  /*------------------------------------------
	= Top bar (index)
	-------------------------------------------*/
 .hero-slider-social
 {
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 10%;
    z-index: 99;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transform: translateY(50%);
}

 .hero-slider-social .social-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
 .hero-slider-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    color: var(--primary-color);
background: rgba(212, 212, 212, .1);
    backdrop-filter: blur(17.5px);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 30px;
}
.social-links img {
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.15);
  opacity: 0.8;
}

/* Tooltip */
.social-links a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #111;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

/* Tooltip arrow */
.social-links a::before {
  content: "";
  position: absolute;
  bottom: 118%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #111;
  opacity: 0;
  transition: 0.25s ease;
}

.social-links a:hover::after,
.social-links a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header-section-2{
      width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.top-bar {
  background: var(--primary-color);
  padding-top: 0px;
  padding-bottom: 0px;
}

.top-bar-content {
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.top-bar-content .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .top-bar-content .text-wrap {
    align-items: flex-start;
  }
}

.top-btn {
  padding: 7px 10px;
  border-radius: 6px;
}

.top-btn-2 {
  background: #85BF18;
  color: var(--white-color);
}

  /*------------------------------------------
	= slider (index)
	-------------------------------------------*/
.hero-slide-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 508px;
  padding-bottom: 120px;
  overflow: hidden;
  height: 600px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 {
    padding-top: 280px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 {
    padding-top: 280px;
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 {
    padding-top: 308px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 {
    padding-top: 208px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.hero-slide-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: -1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
.hero-slide-2 .s-shape-2 {
  position: absolute;
  left: 13%;
  top: 30%;
  z-index: -1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
    top: 35%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
.hero-slide-2 .blur-circle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 100%;
  background: rgba(0, 69, 64, 0.02);
  border-radius: 50%;
  z-index: -2;
  backdrop-filter: blur(8px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 .blur-circle {
    width: 76%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .blur-circle {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .blur-circle {
    width: 0;
  }
}
.hero-slide-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Adjust 0.6 for darker/lighter */
    z-index: -1;
}

.hero-content-2 {
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content-2 .title {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title {
    max-width: 480px;
  }
}
.hero-content-2 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 68px;
  line-height: 74px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title h1 {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title h1 {
    font-size: 58px;
    line-height: 66px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-2 .title h1 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}
.hero-content-2 .title span {
  color: var(--Secondary-color);
}
.hero-content-2 .join-us {
  display: flex;
  justify-content: center;
}
.hero-content-2 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: var(--white-color);
}
.hero-content-2 .join-us .e-primary-btn:before {
  background: var(--Secondary-color);
}
.hero-content-2 .join-us .e-primary-btn .icon-wrap {
  background: var(--Secondary-color);
  color: var(--primary-color);
}
.hero-content-2 .join-us .e-primary-btn:hover {
  border: 1.5px solid var(--Secondary-color);
  color: var(--primary-color);
}
.hero-content-2 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--white-color);
}

.hero-slider-active-2 {
  position: relative;
  z-index: 1;
}
.hero-slider-active-2 .hero-slider-pagination-2 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #868681;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #F8F7F0;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFE175;
}

  /*------------------------------------------
	= about section (index)
	-------------------------------------------*/
.why-us-section.style-2 {
  margin-bottom: -155px;
}
.why-us-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  right: -26%;
  bottom: -40%;
}
.why-us-section {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
    overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section {
    background-size: contain;
  }
}
.why-us-section .left {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section .left {
    width: 76%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section .left {
    width: 96%;
  }
}

@media (min-width: 1400px) {
  .why-us-content {
    padding-left: 20px;
  }
}
.why-us-content .text {
  margin-bottom: 20px;
}

.school {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .school {
    flex-direction: column;
    align-items: start;
    margin-bottom: 30px;
    gap: 15px;
  }
}
 .school-head{
  font-weight: 600;
  margin-bottom: 14px;
}
.school .school-left,
.school .school-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.school .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-us-section-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: 1;
  pointer-events: none;
  animation: floatButterfly 6s ease-in-out infinite;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .why-us-section-2 .s-shape-1 {
    left: 84%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .s-shape-1 {
   left: 84%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .s-shape-1 {
    right: 7%;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .s-shape-1 {
      left: 43%;
      top: 64%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .s-shape-1 img {
    width: 14%;
    left: 43%;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .s-shape-1 img {
    width: 14%;
  }
}

.why-us-section-2 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.why-us-section-2 .c-shape-1 {
  position: absolute;
  right: -30%;
  bottom: -50%;
  z-index: -1;
}
.why-us-section-2 .why-us-section-2-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 722px;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .why-us-section-2 .why-us-section-2-bg {
    border-radius: 0 0 50px 50px;
  }
}
@media (max-width: 767px) {
  .why-us-section-2 .why-us-section-2-bg {
    display: none;
  }
}
.why-us-section-2 .why-us-section-2-bg .left-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}
.why-us-section-2 .why-us-section-2-bg .left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-section-2 .why-us-section-2-bg .right-img {
  width: 100%;
  max-width: 654px;
  height: 100%;
}
.why-us-section-2 .why-us-section-2-bg .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Full width container */
.video-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

  /*------------------------------------------
	= admission section
	-------------------------------------------*/
.admission-section .admission-card {
    position: relative;
    border-radius: 16px;
    padding: 40px 30px;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    color: #fff;
}

/* Dark overlay for text visibility */
.admission-section .admission-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.795), rgba(0,0,0,0.2));
    z-index: 1;
}

/* Content above overlay */
.admission-section .admission-card .content {
    position: relative;
    z-index: 1;
}
.admission-section .admission-card .content h5{
    color: var(--white-color);
}
/* Hover effect */
.admission-section .admission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Typography */
.admission-section .admission-card .school-name {
    font-size: 13px;
    opacity: 0.85;
}

.admission-section .admission-card h5 {
    font-weight: 600;
    margin: 8px 0;
}

.admission-section .admission-card p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .admission-section .admission-card {
        min-height: 220px;
        padding: 30px 20px;
    }
}

  /*------------------------------------------
	= academics section
	-------------------------------------------*/

.academics-section{
     position: relative;
   padding:  20px 0 20px  0;
    overflow: hidden;
    z-index: 1;
}
.academics-section .bg-shape{
    position: absolute;
    z-index: 1;
}

.academics-section .shape-left{
    left: 2%;
    top: 20%;
    transform: translateY(-50%);
    max-width: 180px;
    width: 80px;
        animation: floatButterfly 6s ease-in-out infinite;
}

.academics-section .shape-right{
    right: 2%;
    top: 40%;
    max-width: 200px;
    width: 80px;
        animation: floatButterfly 6s ease-in-out infinite;
}
/* Floating animation */
@keyframes floatButterfly {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.academics-section .academics-content{
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
}


.academics-section .academics-content .main-title{
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.academics-section .academics-content .description{
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px){
    .academics-section .academics-content .main-title{
        font-size: 32px;
    }
    .academics-section .shape-left{
        width: 60px;
    }
    .academics-section .shape-right{
        width: 60px;
    }
}

@media (max-width: 576px){
    .academics-section{
        padding: 80px 0;
    }
    .academics-section .academics-content .main-title{
        font-size: 26px;
    }
    .academics-section .shape-left{
        left: 34px;
        width: 40px;
        opacity: 0.8;
    }
    .academics-section .shape-right{
        right: 24px;
        width: 40px;
        opacity: 0.8;
    }
}

.announcement-bar {
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

.announcement-label {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.announcement-marquee {
  flex: 1;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 15px;
color: var(--white-color);
}

.marquee-item i {
  color: var(--Secondary-color);
  font-size: 16px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* messages */
#testimonialFadeSlider {
    position: relative;
}

/* Base Arrow Style */
.custom-arrow {
    position: absolute;
    bottom: 320px;
    width: auto;
    height: auto;
    background: none;
    border: none;
    opacity: 1;
    color:var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Desktop Position */
.carousel-control-prev.custom-arrow {
    right: 60px;
    left: auto;
}

.carousel-control-next.custom-arrow {
    right: 20px;
}
.carousel-control-prev.custom-arrow i,
.carousel-control-next.custom-arrow i{
  background-color: #f2f5f5;
      padding: 9px 17px;
      text-align: center;
      display: flex;
      justify-content: center;
      border-radius: 34px;
}


/* Hover Effect */
.custom-arrow:hover {
    color: var(--Secondary-color);
    transform: translateY(-3px);
}

/* Tablet Adjust */
@media (max-width: 992px) {
    .custom-arrow {
        top: 15px;
        font-size: 18px;
    }

    .carousel-control-prev.custom-arrow {
        right: 50px;
    }

    .carousel-control-next.custom-arrow {
        right: 15px;
    }
}

/* Mobile Layout */
@media (max-width: 576px) {

    .custom-arrow {
        position: static;
        font-size: 22px;
        margin: 10px 15px;
    }

    /* Center arrows below card */
    #testimonialFadeSlider .carousel-control-prev,
    #testimonialFadeSlider .carousel-control-next {
        display: inline-block;
    }

    #testimonialFadeSlider {
        text-align: center;
    }
}


  /*------------------------------------------
	= youtube section
	-------------------------------------------*/
.admission-section {
    position: relative;
    overflow: visible; /* important */
}

/* Butterfly Base */
.butterfly {
    position: absolute;
    width: 80px;
    z-index: 1;
    pointer-events: none;
    animation: floatButterfly 6s ease-in-out infinite;
}

/* Positioning */
.butterfly-1 {
    top: 40px;
    right: 28%;
}

.butterfly-2 {
    bottom: 40px;
    left: 20%;
    animation-delay: 2s;
}

/* Floating animation */
@keyframes floatButterfly {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .butterfly {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .butterfly {
        width: 45px;
        opacity: 0.7;
    }
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 300px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Tablet */
@media (max-width: 992px) {
    .showcase-title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .youtube-showcase {
        text-align: center;
    }

    .showcase-title {
        font-size: 28px;
    }

    .video-wrapper {
        padding-top: 60%;
    }
}
/* Make section relative */
.youtube-showcase {
    position: relative;
    overflow: hidden;
}

/* Base butterfly style */
.butterfly {
    position: absolute;
    width: 80px;
    pointer-events: none;
    animation: floatButterfly 6s ease-in-out infinite;
}

/* First butterfly (top middle-right) */
.butterfly-1 {
    top: 40px;
    right: 35%;
}

/* Second butterfly (bottom left area) */
.butterfly-2 {
    bottom: 40px;
    left: 30%;
    animation-delay: 2s;
}

/* Floating animation */
@keyframes floatButterfly {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Tablet */
@media (max-width: 992px) {
    .butterfly {
        width: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .butterfly {
        width: 45px;
        opacity: 0.7;
    }

    .butterfly-1 {
        right: 10%;
        top: 20px;
    }

    .butterfly-2 {
        left: 10%;
        bottom: 20px;
    }
}

  /*------------------------------------------
	= newsletter
	-------------------------------------------*/

.newsletter {
	max-height: 280px;
  min-height: 280px;
	display: flex;
	gap: 20px;
	align-items: center;
  background: #f8f7f0;
  border-radius: 10px;
  border-color: transparent;
	padding:  16px ;
}


.newsletter_link {
    overflow: hidden;
    min-height: 250px;
    min-width: 250px;
	border-radius:5px ;
	-webkit-border-radius:5px ;
	-moz-border-radius:5px ;
	-ms-border-radius:5px ;
	-o-border-radius:5px ;
}

.newsletter_link img {
	width: 100%;
	transform: scale(1);
	transition: var(--transition);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    background-size: cover;
    width: 100%;
}
.newsletter_link img:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.newsletter_item_meta{
  text-align: start;
}
.newsletter_item_meta .newsletter_date {
    padding: 6px 15px;
    background: var(--primary-color);
    border-radius: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 100%;
    color: #ffffff;
	font-family: var(--Lato-sans-font);
  font-weight: 400;
}

.newsletter_title {
    margin-bottom: 10px;
        text-align: start;
}
.newsletter_content{
  text-align: start;
      font-size: 14px;
      line-height: 22px;
}

.newsletter_title a {
    color: var(--color-heading);
    transition: var(--transition);
    line-height: 24px;
    text-align: start;
}

@media screen and (max-width: 1200px) {
    .newsletter {
        flex-direction: column;
        padding: 24px;
        align-items: flex-start;
}
.newsletter {
	max-height: 440px;
  min-height: 280px;
}

}
@media screen and (max-width: 1200px) {
    .newsletter_link img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
    }
}

@media screen and (max-width: 1200px) {
    .newsletter_link {
        width: 100%;
        width: 100%;
        min-height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .newsletter {
        padding: 25px;
    }
}
 .newsletter_readmore {
	padding: 16px 12px 16px 0px;
	position: relative
  }


.read-more {
	position: relative;
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color:var(--primary-color);
  }

 .read-more i {
	margin-left: 5px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
  }

 .read-more:hover i {
	opacity: 0;
	margin-left: 10px;
  }
.swiper-button-next, .swiper-button-prev {
  color: var(--primary-color); /* your preferred color */
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-next::after, 
.swiper-button-prev::after{
  display: none;
}
.swiper-button-next 
{ right: 10px; }
.swiper-button-prev 
{ left: 10px; }
.swiper-button-next i, 
.swiper-button-prev i{
    background-color: #f2f5f5;
    padding: 9px 17px;
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 34px;
}
  /*------------------------------------------
	= side button
	-------------------------------------------*/

#fixedRgt {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    bottom: 20%;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    width: 53px;
    box-shadow: 0px 5px 5px rgba(0,0,0,.3)
}

@media(max-width: 1779px) {
    #fixedRgt {
        width:36px
    }
}

@media(max-width: 1551px) {
    #fixedRgt {
        bottom:15%
    }
}

@media(max-width: 1199px) {
    #fixedRgt {
        width:40px
    }
}

@media(max-width: 991px) {
    #fixedRgt {
        width:100%;
        bottom: 0;
        box-shadow: 0px 5px 12px rgba(0,0,0,.3)
    }
}

@media(max-width: 991px) {
    #fixedRgt li {
        flex:1 0 auto;
        list-style: none;
    }
}

#fixedRgt li a {
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fcac21;
    color: #fff;
    height: 44px;
    width: 4%;
    font-size: 20px;
    font-weight: 500

}

@media(max-width: 1779px) {
    #fixedRgt li a {
        height:36px;
        width: 36px;
        font-size: 14px
    }
}

@media(max-width: 1199px) {
    #fixedRgt li a {
        height:40px;
        width: 40px;
        font-size: 16px
    }
}

@media(max-width: 991px) {
    #fixedRgt li a {
        width:100%;
        height: 100%;
        font-size: 14px
    }
}

#fixedRgt li a img {
    max-height: 16px;
    max-width: 16px;
    transition: all .4s ease-in-out
}

@media(max-width: 1779px) {
    #fixedRgt li a img {
        max-height:16px;
        max-width: 16px
    }
}

#fixedRgt li a:hover {
    color: #fff;
    background: #e69b1b
}

#fixedRgt li.addmission-btn a {
    height: 204px;
    writing-mode: vertical-rl;
    white-space: nowrap
}

@media(max-width: 1779px) {
    #fixedRgt li.addmission-btn a {
        height:170px
    }
}

@media(max-width: 1199px) {
    #fixedRgt li.addmission-btn a {
        height:140px
    }
}

@media(max-width: 991px) {
    #fixedRgt li.addmission-btn a {
        writing-mode:unset;
        height: 100%
    }
}

#fixedRgt li.call a {
    background: #0b5c40
}

#fixedRgt li.call a:hover {
    background: #07402c
}

#fixedRgt li.mail a {
    background: #096
}

#fixedRgt li.mail a:hover {
    background: #00714b
}

#fixedRgt li.whatsapp a {
    background: #4caf50
}

#fixedRgt li.whatsapp a:hover {
    background: #439546
}

#fixedRgt li.map a {
    background: #fff
}

#fixedRgt li.map a:hover {
    background: #f1f1f1
}

  /*------------------------------------------
	= gallery-section (index)
	-------------------------------------------*/

.gallery-section {
  padding: 60px 0;
  text-align: center;
    position: relative;
  overflow: hidden;
}

.gallery-section .gallery-description {
position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
}
.gallery-section .gallery-description .main-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.gallery-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  flex-wrap: nowrap;
}

.gallery-item {
  width: 240px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    display: block;
    max-width: 240px;
    min-height: 240px;
    object-fit: cover;
}

/* Random tilt effect */
.gallery-item:nth-child(1) { transform: rotate(-10deg); }
.gallery-item:nth-child(2) { transform: rotate(-4deg); }
.gallery-item:nth-child(3) { transform: rotate(6deg); }
.gallery-item:nth-child(4) { transform: rotate(10deg); }
.gallery-item:nth-child(5) { transform: rotate(4deg); }

.gallery-item:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 1;
}


@media (max-width: 767px) {

  .gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item {
    width: 100%;
    transform: none !important;
  }

  .gallery-title {
    font-size: 28px;
  }

}

  /*------------------------------------------
	= butterfly
	-------------------------------------------*/

.butterfly {
  position: absolute;
  width: 70px;
  opacity: 0.25;
  pointer-events: none;
  animation: butterflyFloat 6s ease-in-out infinite;
}

/* Butterfly 3 */
.butterfly-3 {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

/* Butterfly 4 */
.butterfly-4 {
  bottom: 18%;
  right: 8%;
  animation-delay: 2s;
}

/* Floating animation */
@keyframes butterflyFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile adjustment */
@media (max-width: 767px) {
  .butterfly {
    width: 45px;
    opacity: 0.15;
  }
}

  /*------------------------------------------
	= application
	-------------------------------------------*/
 .application{
	background-size: 20px 20px;
  }
  .app-store-btns {
	/* display: flex; */
	width: 100%;
  }
  .app-store-btns a {
	font-family: var(--Lato-sans-font);
	gap: 5px;
	margin-bottom: 10px;
	font-size: var(--body-fz);
	flex-grow: 1;
	flex-basis: 0;
	text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
	background-repeat: no-repeat;
	padding: 6px 28px 6px 42px;
	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: 16px 18px;
  }
  .app-store-btns a.google {
	background-image: url("https://psycatgames.com/images/supporting/google-play.svg");
	background-size: 16px 18px;
  }
  .app-store-btns a:hover {
   background-color: var(--Secondary-color);
   color: var(--body-color);
  }


  /*------------------------------------------
	= Leadership Messages
	-------------------------------------------*/
.testimonial-card-2 {
  background-color: var(--white-color);
  padding: 10px;
  border: 2px solid var(--white-color);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-2 {
    gap: 20px;
    flex-direction: column;
  }
}
.testimonial-card-2:hover {
  border: 2px solid var(--Secondary-color);
}
.testimonial-card-2 .thumb {
  border-radius: 12px;
  position: relative;
  z-index: 1;
  flex: none;
}
@media (max-width: 767px) {
  .testimonial-card-2 .thumb {
    width: 100%;
  }
}
.testimonial-card-2 .thumb img {
  width: 100%;
  border-radius: 12px;
  max-width: 260px;
}
.testimonial-card-2 .thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.testimonial-card-2 .thumb .video-play-btn:hover {
  color: var(--primary-color);
  background: var(--Secondary-color);
  border-color: var(--Secondary-color);
}
.testimonial-card-2 .card-content h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.testimonial-card-2 .card-content .review {
  color: var(--light-color);
  margin-bottom: 80px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-2 .card-content .review {
    margin-bottom: 20px;
  }
}
.testimonial-card-2 .card-content .review p {
  color: var(--gray-color);
}
.testimonial-card-2 .card-content .author-details h5 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
.testimonial-card-2 .card-content .author-details h5 span {
  font-weight: 400;
  font-size: 14px;
}
.testimonial-card-2 .card-content .author-details h6 {
  font-size: 16px;
  font-weight: 200;
  color: var(--body-color);
  margin-bottom: 0;
}
.testimonial-card-2 .quote-icon {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: -1;
}

.testimonial-section-2 {
  background-color: #f8f7f0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.testimonial-section-2 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1700px) {
  .testimonial-section-2 .shape-1 {
    width: 80%;
  }
}
.testimonial-section-2 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 2%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .testimonial-section-2 .shape-2 {
    width: 14%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section-2 .shape-2 {
    width: 16%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section-2 .shape-2 {
    width: 20%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-section-2 .shape-2 {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .testimonial-section-2 .shape-2 {
    width: 30%;
  }
}

.testimonial-section-2 .e-primary-btn:hover .icon-wrap {
  background: var(--primary-color);
  color: var(--Secondary-color);
}

  /*------------------------------------------
	= breadcrumb
	-------------------------------------------*/
.page-header{
	position: relative;
	background-image: url('/images/breadcrumb.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 56px;
	overflow: hidden;
}

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
  background:  var(--primary-color);
	z-index: 0;
}

.page-header-box{
	position: relative;
  text-align: center;
	z-index: 0;
}

.breadcrumb-wrapper {
      background: #ffffff;
      border-bottom: 1px solid #e9ecef;
  }

  .breadcrumb-custom {
      margin-bottom: 0;
      background: transparent;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
  }

  .breadcrumb-custom .breadcrumb-item a {
      color: #868c92;
      text-decoration: none;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .breadcrumb-custom .breadcrumb-item a:hover {
      color: var(--primary-color);
  }

  .breadcrumb-custom .breadcrumb-item.active {
      color: var(--body-color);
  }

  .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
      content: "›";
      color: #adb5bd;
  }

  .breadcrumb-icon {
      font-size: 12px;
  }

  /*------------------------------------------
	= message
	-------------------------------------------*/

.message-head {
	text-align: start;
}

/* .message-content {
	margin-left: 120px;
} */

.message-head h6 {
	font-weight: 300;
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	color: var(--color-heading);
	font-family: var(--font-primary);
}

.message-head h3 {
	margin-bottom: 15px;
	color: var(--primary-color);
}

.message-image {
	position: relative;
}

.message-image .qoute {
	position: absolute;
	top: 80px;
	left: -28px;
}

.message-school h6,
.message-school p {
	margin-bottom: 5px;

}
.message-school h6{
  font-family: var(--Bilbo-Swash);
  font-size: 26px;
  color: var(--primary-color);
}
@media (min-width: 579px) and (max-width: 767px) {
    .message-content {
        margin-left: 0;
    }
    .message-image .qoute {
      display: none;
      }
}
@media (min-width: 300px) and (max-width: 578px) {
    .message-content {
        margin-left: 0;
    }
    .message-image .qoute {
      display: none;
      }
}


  /*------------------------------------------
	= border bottom
	-------------------------------------------*/

.bottom_block {
    display: flex;
    flex-wrap: wrap;
    gap: 82px;
    padding: 80px 0;
    background: repeating-linear-gradient(to right, #0B5C40 0, #0B5C40 1px, transparent 1px, transparent 18px) bottom/100% 8px no-repeat
}

.bottom_block:last-child {
    padding-bottom: 0;
    background: none
}

.bottom_block:nth-child(odd) {
    flex-direction: row-reverse
}

@media(max-width: 1779px) {
    .bottom_block {
        gap:60px;
        padding:0
    }
}

@media(max-width: 1551px) {
    .bottom_block {
        padding: 0 
    }
}

@media(min-width: 1200px)and (max-width: 1551px) {
    .bottom_block {
        background:repeating-linear-gradient(to right, #0B5C40 0, #0B5C40 1px, transparent 1px, transparent 15px) bottom/200% 8px no-repeat;
    }
}

@media(max-width: 1199px) {
    .bottom_block {
        gap:30px;
        padding: 0;
        background: repeating-linear-gradient(to right, #0B5C40 0, #0B5C40 1px, transparent 1px, transparent 10px) bottom/100% 5px no-repeat
    }
}

@media(max-width: 991px) {
    .bottom_block {
        gap:30px;
        padding: 0
    }
}
.message-one{
    position: relative;
    overflow: visible; /* important */
}
@media (max-width: 576px) {
  .message-content,
  .message-image {
    padding-bottom: 28px;
  }
}

  /*------------------------------------------
	= latest news
	-------------------------------------------*/

.blog-card-4 {
  background-color: #f8f7f0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card-4:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.blog-card-4:hover .content .content-bottom .read-more-btn {
  border: 2px solid var(--Secondary-color);
}
.blog-card-4:hover .content .content-bottom .read-more-btn::before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-4 .thumb {
  position: relative;
}

.blog-card-4 .thumb > img {
  width: 100%;
  border-radius: 10px 10px 0 0;
    display: block;
  overflow: hidden;
}
.blog-card-4 .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-card-4 .thumb .category {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.blog-card-4 .thumb .category a:hover {
  color: var(--primary-color);
  background: var(--white-color);
}
.blog-card-4 .content {
  padding: 24px 102px 26px 30px;
}
.blog-card-4 .content .blog-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.blog-card-4 .content .blog-info p {
  font-family: var(--albert-sans-font);
  color: var(--body-color);
  margin-bottom: 0;
}
.blog-card-4 .content .blog-info .publisher-info,
.blog-card-4 .content .blog-info .date,
.blog-card-4 .content .blog-info .comment,
.blog-card-4 .content .blog-info .view {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-4 .content .blog-info .publisher-info img,
.blog-card-4 .content .blog-info .date img,
.blog-card-4 .content .blog-info .comment img,
.blog-card-4 .content .blog-info .view img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.blog-card-4 .content .title h3 {
  margin-bottom: 12px;
}

.blog-card-4 .content .read-more-btn {
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.blog-card-4 .content .read-more-btn:hover {
  color: var(--white-color);
}

.detail-thumb-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 24px;
}
.detail-thumb-wrap img {
  border-radius: 10px;
}

.blog-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.blog-tags .tag-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-tags .tag-wrap p {
  font-family: var(--Lato-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.blog-tags .tag-wrap .tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-tags .tag-wrap .tags button {
  font-family: var(--Lato-sans-font);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: var(--body-color);
  padding: 7px 12px;
  background: #f8f7f0;
  border: 1px solid var(--white-color);
  box-shadow: 0px 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-tags .tag-wrap .tags button:hover {
  background: var(--primary-color);
  color: var(--Secondary-color);
  border-color: var(--primary-color);
}
.blog-tags .socials {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.blog-tags .socials .social-links {
  display: flex;
  gap: 10px;
  transition: all 0.3s;
}
.blog-tags .socials .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #f8f7f0;
  color: var(--body-color);
}
.blog-tags .socials .social-links a:hover {
  background: var(--primary-color);
  color: var(--Secondary-color);
}

  /*------------------------------------------
	= download
	-------------------------------------------*/
.pdf-card {
    background: #f8f7f0;
    border-radius: 10px;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.pdf-icon {
    width: 50px;
    height: 50px;
}

.btn-download {
    background-color: #4CAF50;
    color: #fff;
    border-radius: 30px;
    padding: 7px 25px;
}

.btn-download:hover {
    background-color: #1c531e;
    color: #fff;
}

.btn-preview {
    background-color: #efeddd;
    border-radius: 30px;
    padding: 7px 25px;
}

.btn-preview:hover {
    background-color: #aaa891;
    color: #fff;
}
@media (max-width: 576px) {
    .pdf-icon {
        width: 55px;
        height: 55px;
    }
}

  /*------------------------------------------
	= contact
	-------------------------------------------*/

  .info-card{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    height:100%;
}

.info-item{
    padding:25px 0;
    border-bottom:1px solid #e5e5e5;
}

.info-item:last-child{
    border-bottom:none;
}

.icon-circle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--Secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--primary-color);
}

.contact-form-card{
    background:var(--primary-color);
    color:var(--white-color);
    border-radius:20px;
    padding:38px;
    height:100%;
}

.contact-form-card h2{
    font-weight:600;
}

.form-control{
    background:transparent;
    border:1px solid rgba(255,255,255,0.4);
    color:#ffffff;
    border-radius:10px;
    padding:12px 15px;
}

.form-control::placeholder{
    color:rgba(255,255,255,0.7);
}

.form-control:focus{
    background:transparent;
    color:#fff;
    box-shadow:none;
    border-color:#ffffff;
}

textarea.form-control{
    min-height:130px;
    resize:none;
}

.btn-submit{
    background:#e5e5e5;
    border:none;
    padding:10px 40px;
    border-radius:6px;
    font-weight:500;
}

.btn-submit:hover{
    background:#d4d4d4;
}

@media (max-width:991px){
    .contact-form-card,
    .info-card{
        padding:30px;
    }
}

  /*------------------------------------------
	= video-banner
	-------------------------------------------*/
.video-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* Center Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s ease;
    z-index: 2;
}

/* Hover effect */
.video-play-btn:hover {
    background: var(--Secondary-color);
    color: #ffffff;
}

/* Pulse animation */
.video-play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(233, 233, 233, 0.315);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}



  /*------------------------------------------
	= faq-accordion 
	-------------------------------------------*/

.faq-accordion .accordion-item {
  border: 0;
  margin-bottom: 20px;
  background-color: #f8f7f0;
  padding-bottom: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button {
  border: 0;
  box-shadow: none;
  padding: 22px 20px 12px 35px;
  border-radius: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--primary-color);
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    padding: 16px 16px 8px 28px;
  }
}
@media (max-width: 767px) {
  .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 16px 16px 8px 28px;
  }
}
.faq-accordion .accordion-item .accordion-header .accordion-button .accordion-title {
  color: var(--body-color);
  margin-right: 5px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  margin-left: auto;
  background-color: #f8f7f0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus,
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
  position: absolute;
  background-color: var(--body-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-plus {
  width: 12px;
  height: 2px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button .icon .icon-minus {
  width: 2px;
  height: 12px;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-plus {
  opacity: 1;
}
.faq-accordion .accordion-item .accordion-header .accordion-button.collapsed .icon .icon-minus {
  opacity: 1;
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
  background-color: var(--primary-color);
  transform: rotate(180deg);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-plus {
  opacity: 1;
  background-color: var(--white-color);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon .icon-minus {
  opacity: 0;
  background-color: var(--white-color);
}
.faq-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 0 75px 12px 35px;
}

  /*------------------------------------------
	= news
	-------------------------------------------*/
.details-content .thumb-wrap {
  border-radius: 10px;
}
.details-content .thumb-wrap img {
  border-radius: 10px;
}

.details-layout-wrap {
  display: flex;
  gap: 60px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .details-layout-wrap {
    flex-direction: column;
  }
}
.details-layout-wrap .details-content {
  flex: 1;
  width: 100%;
  max-width: 922px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .details-layout-wrap .details-content {
    max-width: 100%;
  }
}

  /*------------------------------------------
	= open gallery
	-------------------------------------------*/
.open_gallery_item {
    transition: transform 0.4s cubic-bezier(.4,0,.2,1),
                box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.open_gallery_img_wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background: #000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.open_gallery_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 
        transform 0.7s cubic-bezier(.4,0,.2,1),
        filter 0.6s ease;
    filter: grayscale(100%);
}

.open_gallery_item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.open_gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.05)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.open_gallery_item:hover .open_gallery_overlay {
    opacity: 1;
}

.cursor_light {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.open_gallery_img_wrapper:hover .cursor_light {
    opacity: 1;
}

.open_gallery_title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.open_gallery_date {
    font-size: 12px;
    color: #8c8c8c;
}
@media (max-width: 576px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 991px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 1200px) {
.open_gallery_item{
  margin-bottom: 14px;
}
}
@media (max-width: 1600px) {
.open_gallery_item{
  margin-bottom: 24px;
}
}

/* Responsive */
@media (min-width: 300px) and (max-width: 575.98px) {
  h3 {
    font-size: 24px;
    line-height: 30px;
}
  .testimonial-card-2 .thumb img {
    max-width: 100%;
  }

  .why-us-content {
    margin-top: 20px;
  }

  .hero-slider-social {
    bottom: 20%;
  }

  .academics-section {
    padding: 0;
  }

  .logo-wrap img {
    width: 100%;
    max-width: 82px;
  }

  .off-canvas-menubar .off-canvas-logo img {
    width: 100%;
    max-width: 82px;
  }

  .school-name {
    font-size: 15px;
  }

  .school-name-second {
    font-size: 14px;
  }

  .tagline {
    font-size: 10px;
  }

  .gallery-section .gallery-description .main-title {
    font-size: 22px;
    line-height: 30px;
  }

  .academics-section .academics-content .main-title {
    font-size: 22px;
    line-height: 30px;
  }

  .testimonial-card-2 .card-content .author-details h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .testimonial-card-2 .card-content h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .blog-card-4 .content {
    padding: 24px 24px 24px 24px;
}
}


/* Small only (576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .testimonial-card-2 .thumb img {
    max-width: 100%;
    }
    .why-us-content{
      margin-top: 20px;
    }
    .hero-slider-social {
    bottom: 20%;
}
.gallery-section .gallery-description .main-title {
            font-size: 22px;
        line-height: 30px;
}
    .academics-section .academics-content .main-title {
        font-size: 22px;
        line-height: 30px;
    }
}

/* Medium only (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-us-content{
      margin-top: 20px;
    }
    .why-us-section-2{
      margin-bottom: 40px;
    }
    .academics-section .academics-content .main-title {
        font-size: 28px;
        line-height: 36px;
    }
    .gallery-section .gallery-description .main-title {
         font-size: 28px;
        line-height: 36px;
}
}

/* Large only (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .why-us-content{
      margin-top: 24px;
    }
        .academics-section .academics-content .main-title {
        font-size: 30px;
        line-height: 38px;
    }
    .gallery-section .gallery-description .main-title {
         font-size: 30px;
        line-height: 38px;
}
}



/*# sourceMappingURL=main.css.map */