/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 1380px;
  padding-left: 28px;
  padding-right: 28px;
}

.container-fluid {
  padding-left: 28px;
  padding-right: 28px;
}

@media (max-width: 767px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #465254;
}

p, .paragraph {
  font-weight: 400;
  color: #465254;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #182426;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .25s ease;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(15, 93, 70, 0.12);
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #0f5d46, #16755a);
  color: #fff;
}

.btn-primary::before {
  background: #d8b36a;
}

.btn-primary:active {
  background: #0f5d46 !important;
  color: #0f5d46;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #0f5d46;
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #16755a;
  border-color: #16755a;
}

.btn-secondary {
  background: #fff;
  color: #0f5d46;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #0f5d46;
}

.btn-secondary:active {
  background: #ffbc3b;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #0f5d46;
  color: #0f5d46;
  background: transparent;
}

.btn-primary-outline::before {
  background: #d8b36a;
}

.btn-primary-outline:hover {
  background: #0f5d46;
  color: #fff;
}

.btn-primary-outline:active {
  background: #0f5d46;
  color: #fff;
}

body {
  background-color: #f4f6f1;
  overflow-x: hidden;
  background-image: radial-gradient(circle at top left, rgba(216, 179, 106, 0.12), transparent 28%), linear-gradient(180deg, #f9fbf6 0%, #f2f5ef 100%);
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #2e8a6c;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #ffbc3b;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

/* System palette override */
:root {
  --cis-white: #ffffff;
  --cis-black: #000000;
  --cis-gold: gold;
  --cis-green: #066105;
}

body {
  background-color: var(--cis-white);
  color: var(--cis-black);
}

p,
.paragraph,
.text-color,
.text-dark,
.text-muted,
.text-lighten,
a.text-color {
  color: var(--cis-black) !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--cis-black);
}

.bg-primary,
.btn-primary,
.newsletter-block {
  background: var(--cis-green) !important;
}

.top-header {
  background: var(--cis-green) !important;
}

.btn-primary,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.text-white {
  color: var(--cis-white) !important;
}

.btn-primary::before,
.btn-secondary,
.btn-primary-outline::before {
  background: var(--cis-white) !important;
}

.btn-secondary,
.btn-primary-outline,
.text-primary,
a,
a:hover,
.top-header a:hover,
.navigation .navbar-nav .nav-item .nav-link:hover {
  color: var(--cis-green) !important;
}

.top-header .col-lg-5 > a,
.top-header .col-lg-5 > a strong,
.top-header .col-lg-7 .text-color,
.top-header .col-lg-7 .text-uppercase.text-color {
  color: var(--cis-white) !important;
}

.top-header .col-lg-5 > a,
.top-header .col-lg-5 > a strong,
.top-header .col-lg-7 .text-color,
.top-header .col-lg-7 .text-uppercase.text-color {
  text-transform: lowercase;
}

.top-header .col-lg-5 > a:hover,
.top-header .col-lg-5 > a:hover strong,
.top-header .col-lg-7 .text-color:hover,
.top-header .col-lg-7 .text-uppercase.text-color:hover {
  color: #ffbc3b !important;
}

.btn-secondary::before,
.btn-primary-outline:hover,
.btn-primary-outline:active {
  background: var(--cis-green) !important;
}

.btn-primary-outline,
.btn-secondary,
.border-primary {
  border-color: var(--cis-green) !important;
}

::selection,
::-moz-selection {
  background: var(--cis-gold);
  color: var(--cis-black);
}

.badge-primary,
.bg-secondary {
  background: var(--cis-black) !important;
  color: var(--cis-white) !important;
}

.footer a:hover,
.custom-breadcrumb .text-primary {
  color: var(--cis-gold) !important;
}

.navigation {
  background: var(--cis-white) !important;
  background-image: none !important;
}

.navigation > .container {
  max-width: 100%;
  padding-left: 0;
}

.navigation .navbar-brand {
  margin-left: 0;
  margin-right: 20px;
}

.navigation .navbar-brand.brand-dual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}

.navigation .navbar-brand.brand-dual .brand-main-logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-height: 78px;
  width: auto;
}

.navigation .navbar-brand.brand-dual .brand-ib-logo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 12px;
  max-height: 64px;
  width: auto;
}

.navigation .navbar-nav {
  background: var(--cis-white) !important;
  padding-left: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navigation .nav-item {
  margin: 0 6px !important;
}

.navigation .nav-item::before {
  background: var(--cis-gold);
}

.navigation .navbar-light .navbar-nav .nav-link {
  color: var(--cis-black) !important;
  letter-spacing: 0.4px;
}

.navigation .navbar-light .navbar-nav .nav-link:hover,
.navigation .navbar-light .navbar-nav .active > .nav-link,
.navigation .navbar-light .navbar-nav .nav-link.active,
.navigation .navbar-light .navbar-nav .nav-link.show,
.navigation .navbar-light .navbar-nav .show > .nav-link {
  color: var(--cis-green) !important;
}

.navigation .navbar-expand-lg .navbar-nav .nav-link {
  padding: 44px 4px;
  white-space: nowrap;
  font-size: 13px;
}

@media (min-width: 992px) {
  .navigation .navbar {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navigation .navbar-brand {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
    margin-right: auto;
  }

  .navigation .navbar-collapse {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 148px;
  }

  .navigation .navbar-brand.brand-dual {
    position: static;
  }

  .navigation .navbar-brand.brand-dual .brand-main-logo {
    position: relative;
  }

  .navigation .navbar-brand.brand-dual .brand-ib-logo {
    position: absolute;
    top: 50%;
    right: 0;
    width: 96px;
    max-width: 96px;
    height: auto;
    margin-left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 991px) {
  .navigation .navbar-nav {
    padding-left: 0;
  }

  .navigation .nav-item {
    margin: 0 10px !important;
  }

  .navigation .navbar-expand-lg .navbar-nav .nav-link {
    padding: 18px 12px;
  }
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  background: #066105 !important;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header a,
.top-header a strong {
  color: #ffffff !important;
  text-transform: lowercase;
}

.top-header a:hover,
.top-header a:hover strong {
  color: #ffbc3b !important;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37;
  }
}

.navigation {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #ffbc3b 30%);
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #1a1a37;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 250px 0 290px;
}

.hero-section.overlay::before {
  display: none;
}

.hero-video-section {
  background: #182426;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 38, 0.5);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.welcome-message-section {
  position: relative;
}

.welcome-message-shell {
  max-width: 1440px;
  padding-left: 48px;
  padding-right: 48px;
}

.welcome-kicker {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: #0f5d46;
}

.welcome-image-wrap {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(24, 36, 38, 0.14);
  background: linear-gradient(180deg, #f4f6f1 0%, #eaf0e6 100%);
}

.welcome-image-wrap img {
  display: block;
}

.welcome-signoff {
  color: #465254;
}

.leadership-section {
  background: linear-gradient(180deg, #f9fbf7 0%, #eef3ea 100%);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.leadership-grid-item {
  min-width: 0;
}

.leadership-grid.slick-slider {
  display: block;
  margin: 0 -12px;
}

.leadership-grid.slick-slider .slick-list {
  padding: 10px 0 28px;
}

.leadership-grid.slick-slider .slick-track {
  display: flex;
}

.leadership-grid.slick-slider .slick-slide {
  height: inherit;
}

.leadership-grid.slick-slider .slick-slide > div {
  height: 100%;
}

.leadership-grid.slick-slider .leadership-grid-item {
  display: block;
  padding: 0 12px;
}

.leadership-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(24, 36, 38, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leadership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(24, 36, 38, 0.14);
}

.leadership-card-image {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
}

.leadership-card-body {
  padding: 28px 22px 24px;
  text-align: center;
}

.leadership-card-role {
  margin-bottom: 10px;
  color: var(--cis-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-card-name {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.3;
}

.leadership-grid .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.leadership-grid .slick-dots li {
  margin: 0;
}

.leadership-grid .slick-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  font-size: 0;
  background: rgba(15, 93, 70, 0.2);
  transition: transform .2s ease, background-color .2s ease;
}

.leadership-grid .slick-dots .slick-active button {
  background: var(--cis-primary);
  transform: scale(1.12);
}

@media (max-width: 1199px) {
  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .welcome-message-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid.slick-slider {
    margin: 0 -8px;
  }

  .leadership-grid.slick-slider .leadership-grid-item {
    padding: 0 8px;
  }

  .leadership-card-image {
    height: 220px;
  }

  .leadership-card-name {
    font-size: 21px;
  }
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

.homepage-learning-section {
  padding-top: 70px;
}

.learning-showcase {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(15, 93, 70, 0.14);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 242, 0.98));
  box-shadow: 0 28px 60px rgba(17, 33, 24, 0.08);
}

.learning-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbc3b, #d8b36a);
}

.learning-showcase-header {
  margin-bottom: 34px;
}

.learning-showcase-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 93, 70, 0.12), rgba(216, 179, 106, 0.45), rgba(15, 93, 70, 0.12));
}

.learning-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr) minmax(0, 1fr);
  grid-template-areas: "world center support" "boarding center admissions";
  gap: 24px;
  align-items: stretch;
}

.learning-feature-card-world {
  grid-area: world;
}

.learning-feature-card-support {
  grid-area: support;
}

.learning-feature-card-boarding {
  grid-area: boarding;
}

.learning-feature-card-admissions {
  grid-area: admissions;
}

.learning-feature-center {
  grid-area: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.learning-feature-center-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  padding: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 56px rgba(15, 93, 70, 0.16);
}

.learning-feature-center-frame img {
  width: 100%;
  height: 100%;
  min-height: 488px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.learning-feature-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 28px;
  border: 1px solid rgba(15, 93, 70, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(17, 33, 24, 0.06);
}

.learning-feature-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.learning-feature-card p {
  margin-bottom: 0;
}

.learning-feature-thumb {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 22px;
  box-shadow: 0 14px 30px rgba(15, 93, 70, 0.14);
}

@media (max-width: 1199px) {
  .learning-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "center center" "world support" "boarding admissions";
  }

  .learning-feature-center-frame,
  .learning-feature-center-frame img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .homepage-learning-section {
    padding-top: 40px;
  }

  .learning-showcase {
    padding: 28px 20px;
  }

  .learning-showcase::before {
    left: 20px;
    right: 20px;
  }

  .learning-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "center" "world" "support" "boarding" "admissions";
  }

  .learning-feature-center-frame,
  .learning-feature-center-frame img {
    min-height: 300px;
  }

  .learning-feature-card {
    padding: 24px;
  }

  .learning-feature-card h3 {
    font-size: 21px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
.index-page .section-sm .card,
.index-page .section.pt-0 .card {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.index-page .section-sm .card .card-body,
.index-page .section.pt-0 .card .card-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

.index-page .section-sm .card .btn,
.index-page .section.pt-0 .card .btn {
  margin-top: auto;
}

.homepage-curriculum-section .curriculum-card {
  height: 100%;
}

.homepage-curriculum-section .curriculum-card-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.homepage-curriculum-section .curriculum-card-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.homepage-curriculum-section .curriculum-card .card-title {
  min-height: 48px;
  margin-bottom: 0.9rem;
}

.homepage-curriculum-section .curriculum-card .card-text {
  min-height: 116px;
  margin-bottom: 1.5rem !important;
}

@media (max-width: 991px) {
  .homepage-curriculum-section .curriculum-card-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .homepage-curriculum-section .curriculum-card .card-title,
  .homepage-curriculum-section .curriculum-card .card-text {
    min-height: 0;
  }
}

.homepage-news-section .news-card {
  height: 100%;
}

.homepage-news-section .news-card-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.homepage-news-section .news-card-body {
  min-height: 150px;
  padding: 1.5rem;
}

.homepage-news-section .news-card .card-title {
  min-height: 58px;
  margin-bottom: 0;
}

.homepage-news-section .news-card .card-body p {
  min-height: 32px;
  margin-bottom: 0.85rem;
}

@media (max-width: 991px) {
  .homepage-news-section .news-card-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .homepage-news-section .news-card-body,
  .homepage-news-section .news-card .card-title,
  .homepage-news-section .news-card .card-body p {
    min-height: 0;
  }
}

.courses-page .courses-grid-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.courses-page .courses-grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.courses-page .courses-grid-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.75rem 1.5rem 1.5rem;
}

.courses-page .courses-grid-card .card-title {
  min-height: 48px;
  margin-bottom: 0.9rem;
}

.courses-page .courses-grid-card .card-text {
  min-height: 116px;
  margin-bottom: 1.5rem !important;
}

.courses-page .courses-grid-card .btn {
  margin-top: auto;
}

@media (max-width: 991px) {
  .courses-page .courses-grid-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .courses-page .courses-grid-card .card-title,
  .courses-page .courses-grid-card .card-text {
    min-height: 0;
  }
}

.events-page {
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.12), transparent 22%),
    linear-gradient(180deg, #f8fbf6 0%, #ffffff 24%, #f7f9f4 100%);
}

.events-intro-section {
  padding-top: 72px;
}

.events-kicker {
  display: inline-block;
  letter-spacing: 0.14em;
  color: var(--cis-primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.events-intro-panel,
.events-featured-story,
.events-cta-banner {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 227, 216, 0.95);
  border-radius: 32px;
  box-shadow: var(--cis-shadow);
}

.events-intro-panel {
  padding: 38px 40px;
}

.events-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.events-intro-stat {
  background: linear-gradient(180deg, #f5fbf7, #eef4eb);
  border-radius: 20px;
  padding: 18px 12px;
  text-align: center;
}

.events-intro-stat span {
  display: block;
  font-family: "futura-bold";
  font-size: 30px;
  color: var(--cis-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.events-intro-stat small {
  display: block;
  color: var(--cis-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.events-featured-story {
  overflow: hidden;
}

.events-featured-media,
.events-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.events-featured-media img {
  min-height: 100%;
  object-fit: cover;
}

.events-featured-body {
  padding: 42px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 93, 70, 0.1);
  color: var(--cis-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.events-meta,
.events-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: #5f7067;
  font-size: 13px;
}

.events-meta {
  margin-bottom: 18px;
}

.events-meta span,
.events-story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.events-featured-title {
  font-size: 42px;
  margin-bottom: 18px;
}

.events-featured-actions {
  margin-top: 10px;
}

.events-filter-pillset {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.events-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--cis-border);
  color: var(--cis-text);
  font-size: 13px;
  font-weight: 600;
}

.events-filter-pill.active {
  background: var(--cis-primary);
  border-color: var(--cis-primary);
  color: #fff;
}

.events-story-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 227, 216, 0.95);
  border-radius: 28px !important;
  overflow: hidden;
  box-shadow: var(--cis-shadow);
}

.events-story-card .card-img {
  overflow: hidden;
}

.events-story-image {
  width: 100%;
  height: 255px;
  object-fit: cover;
  transition: transform .45s ease;
}

.events-story-card:hover .events-story-image {
  transform: scale(1.04);
}

.events-story-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.events-story-meta {
  min-height: 44px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
  font-weight: 700;
}

.events-story-card .card-title {
  min-height: 58px;
  margin-bottom: 14px;
}

.events-story-excerpt {
  min-height: 112px;
  margin-bottom: 18px;
}

.events-story-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cis-primary);
  font-weight: 700;
}

.events-story-link:hover {
  color: var(--cis-primary-strong);
}

.events-page .card-date {
  top: 18px;
  left: 18px;
  background: rgba(15, 93, 70, 0.92);
  border-radius: 18px;
  padding: 12px 14px;
  line-height: 1.1;
  box-shadow: 0 10px 30px rgba(15, 93, 70, 0.22);
}

.events-page .card-date span {
  font-size: 30px;
}

.events-cta-banner {
  padding: 38px 40px;
  background:
    linear-gradient(135deg, rgba(15, 93, 70, 0.96), rgba(22, 117, 90, 0.92)),
    linear-gradient(180deg, #ffffff, #f5f8f4);
  color: #fff;
}

.events-cta-banner h3,
.events-cta-banner p,
.events-cta-banner .events-kicker {
  color: #fff;
}

.events-cta-banner .events-kicker {
  opacity: 0.82;
}

.events-cta-banner .btn-outline-primary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.events-cta-banner .btn-outline-primary:hover {
  background: #fff;
  color: var(--cis-primary);
}

@media (max-width: 1199px) {
  .events-featured-title {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .events-intro-panel,
  .events-featured-body,
  .events-cta-banner {
    padding: 30px 24px;
  }

  .events-filter-pillset {
    justify-content: flex-start;
  }

  .events-story-image {
    height: 235px;
  }

  .events-featured-media img {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .events-intro-stats {
    grid-template-columns: 1fr;
  }

  .events-featured-title {
    font-size: 28px;
  }

  .events-story-meta,
  .events-story-card .card-title,
  .events-story-excerpt {
    min-height: 0;
  }

  .events-story-image,
  .events-featured-media img {
    height: auto;
    min-height: 0;
  }

  .events-page .card-date {
    top: 14px;
    left: 14px;
  }
}

/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.visit-booking-intro {
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

.visit-booking-form .form-control,
.visit-request-form .form-control {
  border-radius: 14px;
}

.newsletter-block .visit-booking-form .form-control {
  height: 58px;
}

.visit-booking-form textarea.form-control,
.visit-request-form textarea.form-control {
  height: auto;
  min-height: 120px;
  padding-top: 16px;
  resize: vertical;
}

.visit-booking-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.visit-booking-note {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  max-width: 460px;
}

.visit-booking-form .btn {
  min-width: 220px;
}

.visit-request-form .btn {
  width: 100%;
}

.visit-booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .visit-booking-form .btn {
    width: 100%;
  }
}

.bg-footer {
  background-color: #f2f2f2;
}

.logo-footer {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.logo-footer a {
  display: inline-flex;
  align-items: center;
}

.footer-school-logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.footer-ib-logo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
  max-height: 64px;
  width: auto;
}

@media (min-width: 992px) {
  .footer .row > .col-lg-4.col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 48px !important;
  }
}

@media (max-width: 767px) {
  .logo-footer {
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 12px;
  }

  .footer-ib-logo {
    margin-left: 12px;
  }
}

.footer {
  border-color: #494a43 !important;
  padding-top: 200px;
}

.footer h4 {
  color: #066105 !important;
  font-weight: 700;
}

.footer-contact-block {
  width: 100%;
  margin-top: 12px;
}

.footer-contact-list {
  max-width: 420px;
  margin: 0 auto;
}

.footer-contact-list li:last-child {
  margin-bottom: 0 !important;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #ffbc3b;
}

.filter-controls li:hover {
  color: #ffbc3b;
}

/* Modern polish overrides */
:root {
  --cis-primary: #0f5d46;
  --cis-primary-strong: #0b4a38;
  --cis-accent: #d8b36a;
  --cis-ink: #182426;
  --cis-text: #465254;
  --cis-surface: #ffffff;
  --cis-surface-soft: #f6f8f2;
  --cis-border: rgba(217, 227, 216, 0.9);
  --cis-shadow: 0 18px 45px rgba(13, 34, 24, 0.08);
  --cis-shadow-strong: 0 24px 60px rgba(13, 34, 24, 0.14);
}

body {
  color: var(--cis-text);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--cis-ink);
  letter-spacing: -0.02em;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  margin-bottom: 26px;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cis-primary), var(--cis-accent));
}

.top-header {
  background: linear-gradient(90deg, var(--cis-primary-strong), var(--cis-primary)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.top-header a,
.top-header a strong {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 11px;
}

.navigation {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cis-border);
}

.navbar-brand img {
  max-height: 78px;
}

@media (max-width: 767px) {
  .navigation .navbar-brand.brand-dual .brand-main-logo {
    max-height: 58px;
  }

  .navigation .navbar-brand.brand-dual .brand-ib-logo {
    max-height: 36px;
  }
}

.navbar-nav {
  background: transparent;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 38px 8px;
  font-size: 12px;
  letter-spacing: .08em;
}

.nav-item {
  margin: 0 8px;
}

.nav-item::before {
  left: 8px;
  right: 8px;
  bottom: 24px;
  width: auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cis-primary), var(--cis-accent));
  transform: scaleX(0);
  transform-origin: left;
}

.nav-item:hover::before,
.nav-item.active::before {
  transform: scaleX(1);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--cis-ink);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--cis-primary);
}

.sticky {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--cis-shadow-strong);
}

.navbar .dropdown-menu {
  top: 90px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--cis-border);
  box-shadow: var(--cis-shadow-strong);
}

.navbar .dropdown-item {
  border-radius: 12px;
  padding: 10px 14px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  background: rgba(15, 93, 70, 0.08);
  color: var(--cis-primary);
}

.btn {
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cis-primary), #16755a);
  box-shadow: 0 16px 30px rgba(15, 93, 70, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, #16755a, var(--cis-primary));
  transform: translateY(-2px);
}

.btn-secondary,
.btn-primary-outline,
.btn-outline-primary {
  border-radius: 999px;
}

.btn-outline-primary {
  color: var(--cis-primary);
  border: 1px solid var(--cis-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--cis-primary);
  color: #fff;
}

.card,
.bg-white,
.feature-blocks,
.modal-content {
  border-radius: 20px;
  border: 1px solid var(--cis-border);
  box-shadow: var(--cis-shadow);
}

.card,
.feature-blocks,
.bg-white {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 242, 0.96));
}

.card-img-top,
.card img,
.img-fluid.w-100.mb-4 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.hover-shadow {
  overflow: hidden;
}

.hover-shadow:hover {
  transform: translateY(-6px);
  box-shadow: var(--cis-shadow-strong);
}

.feature-blocks {
  margin-top: -110px;
  padding-top: 90px;
  border-top-left-radius: 32px;
}

.feature-icon,
.text-primary,
a,
a:hover {
  color: var(--cis-primary) !important;
}

.feature-image {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 22px;
  display: inline-block;
  box-shadow: 0 14px 30px rgba(15, 93, 70, 0.16);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.highlight-badge {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 28px;
  display: inline-block;
  box-shadow: 0 16px 34px rgba(15, 93, 70, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.92);
}

.logo-footer {
  gap: 16px;
  flex-wrap: nowrap !important;
}

.footer-school-logo {
  width: 160px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.footer-ib-logo {
  width: 160px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

@media (max-width: 575px) {
  .logo-footer {
    gap: 12px;
  }

  .footer-school-logo {
    width: 132px;
    height: 68px;
    padding: 8px 10px;
  }

  .footer-ib-logo {
    width: 132px;
    height: 68px;
    padding: 8px 10px;
  }
}

.bg-primary {
  background: linear-gradient(135deg, var(--cis-primary-strong), var(--cis-primary)) !important;
}

.bg-gray {
  background: linear-gradient(180deg, #f9fbf7 0%, #eef3eb 100%);
}

.page-title-section {
  position: relative;
  overflow: hidden;
}

.page-title-section .container {
  position: relative;
  z-index: 1;
}

.page-title-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.35), transparent 65%);
}

.page-title-section .custom-breadcrumb .h2,
.page-title-section .custom-breadcrumb a,
.page-title-section p {
  color: #fff !important;
}

.content-page section .container p,
.content-page .bg-gray p,
.content-page .card-body p {
  text-align: justify;
}

.form-control {
  border-radius: 14px;
  border: 1px solid var(--cis-border);
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--cis-primary);
  box-shadow: 0 0 0 4px rgba(15, 93, 70, 0.08);
}

.card-date {
  background: linear-gradient(135deg, var(--cis-primary-strong), var(--cis-primary));
  border-bottom-right-radius: 18px;
}

.teacher-info {
  border-top-left-radius: 18px;
}

.bg-footer {
  background: linear-gradient(180deg, #10211c 0%, #183229 100%);
}

.footer {
  border-color: transparent !important;
  position: relative;
  overflow: hidden;
}

.footer h4 {
  color: var(--cis-accent) !important;
  margin-bottom: 1.75rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.footer::before,
.footer::after {
  content: none;
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.32;
}

.footer::before {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(247, 205, 70, 0.22) 0%, rgba(247, 205, 70, 0) 72%);
}

.footer::after {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(27, 146, 113, 0.22) 0%, rgba(27, 146, 113, 0) 72%);
}

.footer .container,
.copyright .container {
  position: relative;
  z-index: 1;
}

.footer .row {
  row-gap: 24px;
  justify-content: center;
  text-align: center;
}

.footer .row > div[class*="col-"] {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 24px;
  backdrop-filter: none;
  box-shadow: none;
}

.footer .row > .col-lg-4.col-sm-8 {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}

.footer .logo-footer {
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .footer .row > .col-lg-4.col-sm-8 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer ul.list-unstyled {
  margin-bottom: 0;
}

.footer ul.list-unstyled li {
  margin-bottom: 0.85rem !important;
}

.footer ul.list-unstyled li:last-child {
  margin-bottom: 0 !important;
}

.footer .text-color,
.footer a.text-color,
.copyright p {
  color: rgba(245, 248, 243, 0.82) !important;
}

.footer a.text-color {
  transition: color .2s ease;
}

.footer a.text-color:hover {
  color: #ffffff !important;
}

.footer .row > .col-lg-4.col-sm-8 .list-unstyled li:first-child {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
}

.copyright {
  background: #0d1b17;
  border-top: 0;
}

.copyright .list-inline {
  margin-bottom: 0;
}

.copyright .list-inline-item a {
  width: 42px;
  height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.copyright .list-inline-item a:hover {
  transform: translateY(-2px);
  background: rgba(247, 205, 70, 0.14);
  border-color: rgba(247, 205, 70, 0.28);
}

.copyright .ti-facebook,
.copyright .ti-twitter-alt,
.copyright .ti-instagram,
.copyright .ti-linkedin {
  color: var(--cis-accent) !important;
}

@media (max-width: 991px) {
  .footer .row > div[class*="col-"] {
    padding: 0 18px;
  }
}

@media (max-width: 575px) {
  .footer .row > div[class*="col-"] {
    padding: 0 12px;
  }

  .copyright .list-inline {
    margin-top: 14px;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cis-primary), #16755a);
  color: #fff;
  box-shadow: 0 18px 36px rgba(15, 93, 70, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .25s ease;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 22px 44px rgba(15, 93, 70, 0.34);
  color: #fff;
}

.back-to-top:focus {
  outline: none;
}

.article-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-share-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cis-border);
  box-shadow: 0 10px 24px rgba(13, 34, 24, 0.08);
  color: var(--cis-ink) !important;
  font-weight: 600;
}

.article-share-link:hover {
  color: var(--cis-primary) !important;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 16px 12px;
  }

  .nav-item::before {
    bottom: 8px;
  }

  .feature-blocks {
    margin-top: 0;
    border-top-left-radius: 20px;
  }
}

@media (max-width: 575px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

/*# sourceMappingURL=maps/style.css.map */
