@import "./utilities.css";

/* Variables */
:root {
  --primary-color: #a92329;
  --secondary-color: #f39423;
  --color-white: #fff;
  --menu-font-color: #4b5966;
  --global-fonts: "Poppins", serif;
  --border: #ebe6e7;
  --app-green: #248641;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* General */
body {
  font-family: var(--global-fonts);
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
p {
  padding: 0;
  margin: 0;
}

::placeholder {
  color: inherit;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-bg: transparent;
}

.link-text {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 200ms ease-in-out;

  &:hover {
    color: var(--secondary-color);
  }
}

.text-green {
  color: var(--app-green);
}

.btn {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 100px;
  color: #fff;
}
.bg-app-primary {
  background-color: var(--primary-color);
}

.btn.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-primary.section-link-btn {
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
}

.btn.btn-primary:hover {
  background-color: #c3353b;
  border-color: #c3353b;
}

.btn.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn.btn-secondary:hover {
  background-color: #faa949;
  border-color: #faa949;
}

.dropdown-toggle.white-icon::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: middle;
  content: "";
  width: 12px;
  height: 7px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M7.6204 5.57823L11.0404 2.10013C11.2004 1.94022 11.2804 1.76032 11.2804 1.56043C11.2804 1.36054 11.2004 1.19063 11.0404 1.05071C10.8804 0.910782 10.7004 0.84082 10.5004 0.84082C10.3004 0.84082 10.1204 0.920777 9.9604 1.08069L6.5404 4.49882C6.3804 4.65874 6.2004 4.73869 6.0004 4.73869C5.8004 4.73869 5.6204 4.65874 5.4604 4.49882L2.0404 1.08069C1.8804 0.920777 1.7004 0.84082 1.5004 0.84082C1.3004 0.84082 1.1304 0.910782 0.990404 1.05071C0.850404 1.19063 0.770404 1.36054 0.750404 1.56043C0.730404 1.76032 0.800404 1.94022 0.960404 2.10013L4.4404 5.57823C4.8404 5.97802 5.3604 6.17791 6.0004 6.17791C6.6404 6.17791 7.1804 5.95803 7.6204 5.51827V5.57823Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 12px;
  height: 7px;
  content: "";
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M7.72001 5.57823L11.14 2.10013C11.3 1.94022 11.38 1.76032 11.38 1.56043C11.38 1.36054 11.3 1.19063 11.14 1.05071C10.98 0.910782 10.8 0.84082 10.6 0.84082C10.4 0.84082 10.22 0.920777 10.06 1.08069L6.64001 4.49882C6.48001 4.65874 6.30001 4.73869 6.10001 4.73869C5.90001 4.73869 5.72001 4.65874 5.56001 4.49882L2.14001 1.08069C1.98001 0.920777 1.80001 0.84082 1.60001 0.84082C1.40001 0.84082 1.23001 0.910782 1.09001 1.05071C0.950013 1.19063 0.870013 1.36054 0.850013 1.56043C0.830013 1.76032 0.900013 1.94022 1.06001 2.10013L4.54001 5.57823C4.94001 5.97802 5.46001 6.17791 6.10001 6.17791C6.74001 6.17791 7.28001 5.95803 7.72001 5.51827V5.57823Z" fill="%234B5966"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  border: 0;
}

/* Hero Section */
.hero-section {
  background-image: url("../media/banner.webp");
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: calc(100vh - 114px);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.container-3xl {
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 15px;
}

.banner-inner {
  position: relative;
  z-index: revert;
  top: -60px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  & .banner-title {
    font-size: 50px;
    line-height: 1;
    color: #fff;
    text-align: center;
    letter-spacing: -2px;
    font-weight: 800;
  }

  & .banner-short {
    color: #fff;
    font-size: 24px;
    text-align: center;
  }

  @media (min-width: 768px) {
    & .banner-title {
      font-size: 84px;
    }

    & .banner-short {
      font-size: 31px;
    }
  }
}

.banner-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  & .bottom-title {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 16px;
    text-align: center;
  }

  & .bottom-tab-wrap {
    width: 100%;
    background-color: #e40c2c1a;
    backdrop-filter: blur(150px);
    height: 70px;

    & .bottom-tab {
      display: flex;
      align-items: center;
      justify-content: start;
      height: 100%;

      & a {
        color: #fff;
        padding: 0 2rem;
        text-wrap: nowrap;

        &:not(:last-child) {
          border-right: 1px solid var(--border);
        }
      }

      @media (min-width: 1166px) {
        justify-content: center;
      }
    }
  }

  @media (min-width: 768px) {
    & .bottom-title {
      font-size: 31px;
    }
  }
}

/* Header */
.ise-header .topbar {
  background-color: var(--primary-color);
  padding: 9px 0;
}

.ise-header .topbar .top-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.ise-header .topbar .top-contact-info li a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
}

.ise-header .topbar .topbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: end;
}

.menubar .brand {
  border-right: 1px solid var(--border);
  padding-right: 15px;
}

.ise-header .topbar .topbar-nav .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.ise-header .topbar .topbar-nav .top-nav-link,
.mobile-menu-wrapper .top-nav-link {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
}

.ise-header .topbar .dropdown-menu {
  border-radius: 8px;
  border: 0;
  background-color: var(--primary-color);
  box-shadow: 0 0 25px hsl(0deg 0% 0% / 10%);
  margin-top: 8px !important;
}

.ise-header .topbar .dropdown-menu li a {
  color: var(--color-white);
  font-size: 13px;
}

.ise-header .topbar .dropdown-menu li a:hover {
  background-color: var(--secondary-color);
}

/* menubar */
.ise-header .main-menu-wrapper .menubar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  padding: 6px 0;
  align-items: center;
}

.ise-header .main-menu-wrapper .menubar .brand .main-logo {
  height: 62px;
}

.ise-header .main-menu-wrapper .menubar .main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.ise-header .main-menu-wrapper .menubar .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.ise-header .dropdown-menu,
.mobile-menu-wrapper .dropdown-menu {
  /* display: block;
  position: absolute;
  z-index: 555;
  top: calc(100% + 15px);
  left: -12px;
  min-width: 270px;
  white-space: nowrap;
  margin-top: 0;
  margin-left: 0;
  border-radius: 5px;
  padding: 5px 0;
  text-align: left;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in; */
  border-top: 3px solid #a92329;
}

.ise-header .dropdown-menu.show,
.mobile-menu-wrapper .dropdown-menu.show {
  z-index: 1000;
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.ise-header .dropdown-menu li a,
.mobile-menu-wrapper .dropdown-menu li a {
  color: var(--menu-font-color);
  font-size: 16px;
  padding: 8px 20px;
}

.ise-header .dropdown-menu li a:hover,
.mobile-menu-wrapper .dropdown-menu li a:hover {
  color: var(--primary-color);
}

.ise-header .nav-links {
  color: var(--menu-font-color);
  font-size: 16px;
  font-weight: 500;
}

.main-menu-wrapper {
  position: relative;
  z-index: 50;
}

.ise-header .main-menu-wrapper .menubar .nav-links:hover {
  color: var(--primary-color);
}

.ise-header .main-menu-wrapper .menubar .main-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ise-header .main-menu-wrapper .main-menu-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.ise-header .main-menu-wrapper .main-menu-buttons .menu-user-btn {
  height: 42px;
  width: 42px;
  text-align: center;
  border: 1px solid #e2e4ec;
  line-height: 1;
}

.ise-header .main-menu-wrapper .main-menu-buttons .menu-user-btn::after {
  display: none;
}

.ise-header .main-menu-wrapper #openMenu {
  display: none;
  height: 42px;
  width: 42px;
  text-align: center;
  border: 1px solid #e2e4ec;
  border-radius: 100px;
  cursor: pointer;
  line-height: 39px;
}

.ise-header .main-menu-wrapper #openMenu svg {
  height: 20px;
}

.ise-header .topbar-mobile-btns {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ise-header .topbar-mobile-btns .btn {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 400;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
}

.shadowed-effect-1,
.shadowed-effect-2 {
  position: relative;
  z-index: 1;
}

.section-title,
.text-30 {
  font-size: 22px;
}

.shadowed-effect-1::before,
.shadowed-effect-2::before {
  content: attr(data-shadow);
  z-index: -1;
  position: absolute;
  font-size: 30px;
  inset: 0;
  font-weight: 600;
  top: calc(var(--spacing) * -1.5);
  text-wrap: nowrap;
}
.shadowed-effect-1::before {
  color: #f2f2f3;
  left: -10px;
  top: -10px;
}
.shadowed-effect-2::before {
  color: #fff;
  left: -18%;
  top: -10px;
}
.revert.shadowed-effect-2::before {
  color: #f2f2f3;
  left: -18%;
  top: -10px;
}
.revert.shadowed-effect-2.section-title::before {
  color: #f2f2f3;
  left: 0;
  top: -10px;
}

.member-shadow.revert.shadowed-effect-2::before {
  left: 0%;
  font-size: 20px;
  top: -5px;
}

.breadcrumb-wrap {
  background: url("../media/breadcrumb-image.jpg");
  position: relative;
  padding: 25px 0 20px;
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid #f3f3f3;

  & .banner-title-content {
    position: relative;
    z-index: 9;

    & .page-title {
      font-size: 36px;
      font-weight: 700;
      text-shadow: 0 0px 20px #fff;
      color: #0b1a2b;
      margin-top: 0;
      margin-bottom: 0;
      line-height: 1;
    }
  }

  & .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    list-style: none;
    border-radius: 0.25rem;
    padding-left: 0;
    margin-bottom: 0;
  }

  & .breadcrumb-item:not(.active) {
    color: var(--primary-color);
  }
}

/* Our Team */
.our-team-page {
  & .name {
    font-weight: 700;
  }

  & .position {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }

  & .teammate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    & > .name {
      font-size: 1.3rem;
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 4px;
    }
    & > .position {
      font-size: 1rem;
      font-weight: 300;
      margin-bottom: 4px;
    }
    & > .mail {
      color: #17a2b8;
    }
  }
}

.our-team-page .teammate {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.our-team-page .teammate:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/*Image shape design*/
/*.image-shape-design-one,*/
/*.image-shape-design-two {*/
/*    position: relative;*/
/*}*/

/*.image-shape-design-one .shape-image {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0px;*/
/*    bottom: 0;*/
/*    height: 100%;*/
/*    rotate: 180deg;*/
/*}*/

/*.image-shape-design-one .main-image,*/
/*.image-shape-design-two .main-image{*/
/*    border-radius: 50%;*/
/*}*/

/*.image-shape-design-two .shape-image {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0px;*/
/*    bottom: 0;*/
/*    height: 100%;*/
/*}*/

/* Accommodation */
.accommodation-page {
  & .text-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  & .b-a-host-family-content {
    display: flex;
    flex-direction: column;
    gap: 20px;

    & a {
      color: var(--primary-color);
      font-weight: 600;
      transition: color 200ms ease-in-out;

      &:hover {
        color: var(--secondary-color);
      }
    }

    & h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    & h3 {
      margin-bottom: 15px;
    }

    & h5 {
      margin-bottom: 15px;
    }

    & p:not(:last-child) {
      margin-bottom: 10px;
    }
  }
}
.contact-page {
  & .box-contact {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 20px;
  }

  & .icon-container {
    width: 80px;
    height: 80px;
    border-radius: 9999px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #a923291a;
    color: #a92329;
  }

  & .content-container {
    display: flex;
    flex-direction: column;
    gap: 10px;

    & h6 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0;
    }
  }

  & .q-n-a {
    border-radius: 8px;

    display: grid;
    grid-template-columns: 1fr;

    & .qna-content {
      display: flex;
      flex-direction: column;
    }

    & .icon-container {
      width: 40px;
      height: 40px;
    }

    & .qna-content {
      padding: 20px;
    }

    & .qna-content:not(:last-child) {
      border-bottom: 1px solid #f1f1f1;
    }
  }

  & a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 200ms ease-in-out;

    &:hover {
      color: var(--secondary-color);
    }
  }

  @media (min-width: 768px) {
    & .q-n-a {
      grid-template-columns: 1fr 1fr;

      & .qna-content {
        padding: 40px;
      }

      & .qna-content:not(:last-child) {
        border-right: 1px solid #f1f1f1;
      }
    }
  }
}
.terms-conditions-page {
  & a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 200ms ease-in-out;

    &:hover {
      color: var(--secondary-color);
    }
  }

  & h3 {
    font-size: 1.5rem;
  }

  & h4 {
    font-size: 1.1rem;
  }

  & strong {
    font-size: 0.875rem;
  }

  & p {
    line-height: 1.5;
  }

  & p:not(:last-child) {
    margin-bottom: 15px;
  }

  ul,
  ol {
    margin-bottom: 0;
    margin-top: 15px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    & li {
      line-height: 1.5;
    }
  }

  & .table > :not(caption) > * > * {
    padding: 0.75rem;
  }

  & .table th {
    font-weight: 600;
    color: #1c1c1c;
  }
}
.refund-policy-page {
  & ol {
    display: flex;
    flex-direction: column;
    gap: 30px;

    & li {
      line-height: 1.5;

      & p {
        font-weight: 400;
      }

      & p:not(:last-child) {
        margin-bottom: 15px;
      }
    }

    & li.bold {
      font-weight: 600;
    }

    ul {
      list-style: disc;

      & li {
        font-weight: 400;
      }
    }
  }
}
.privacy-cookie-policy-page {
  & a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 200ms ease-in-out;

    &:hover {
      color: var(--secondary-color);
    }
  }

  & h4 {
    font-size: 1.5rem;
  }

  & strong {
    font-size: 0.875rem;
  }

  & p {
    line-height: 1.5;
  }

  & p:not(:last-child) {
    margin-bottom: 15px;
  }

  ul,
  ol {
    margin-bottom: 0;
    margin-top: 15px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    & li {
      line-height: 1.5;
    }
  }
}
.policies-procedures-page {
  & strong {
    font-weight: 500;
  }

  & a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 200ms ease-in-out;

    &:hover {
      color: var(--secondary-color);
    }
  }
}

.english-programmes {
  background-color: #f4f4f4;

  & .section-tab-wrap {
    & .bottom-tab {
      display: flex;
      align-items: center;
      justify-content: start;
      height: 100%;
      flex-wrap: nowrap;

      & .nav-item {
        & .nav-link {
          color: #fff;
          padding: 0.5rem 0.85rem;
          display: inline-block;
          font-weight: 500;
          text-wrap: nowrap;
          border-radius: 9999px;
          transition: background-color 250ms ease-in-out;

          &:hover,
          &.active {
            background-color: var(--secondary-color);
          }
        }
      }

      @media (min-width: 1166px) {
        justify-content: center;
      }
    }
  }

  & .title {
    text-align: center;
    font-weight: 500;
    font-size: 1.25rem;
    margin-top: 1rem;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  & .shape {
    position: absolute;
    left: -178px;
    bottom: -50px;
    z-index: -1;
  }

  & .line {
    width: 100%;
    flex-grow: 1;
    height: 2px;
    background-color: #464646;
  }

  & .cefr,
  & .download {
    font-weight: 500;
  }

  & .download:hover {
    color: var(--primary-color);
  }

  & .programme-bottom {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  @media (min-width: 909px) {
    & .programme-bottom {
      align-items: center;
      flex-direction: row;
    }

    & .line {
      width: unset;
    }

    & .cefr,
    & .download {
      font-weight: 600;
    }
  }
}

.program-card {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px 10px;
  border-radius: 12px;
  background: #f4f4f4;
  transition: background 300ms ease-in-out;

  & .course-link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  & .tags {
    width: 100%;
    position: absolute;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;

    & .tag {
      color: #000;
      background-color: #fff;
      padding: 0.25rem 0.75rem;
      box-shadow: 0 0 10px 2px rgb(0 0 0 / 30%);
    }
  }

  &:hover {
    background: linear-gradient(to bottom, #f4f4f4 0%, #ffffff 100%);
  }

  &:hover .title {
    color: var(--primary-color);
  }
}

.testi-card-wrap {
  & .testi-card {
    cursor: pointer;
    gap: calc(var(--spacing) * 2);
    box-shadow: 0 0 18px 3px rgb(0 0 0 / 10%);

    & .image {
      border-radius: 12px;
      width: 149px;
      padding: 10px;

      & .stu-img {
        width: 100%;
        height: 100%;
      }
    }

    & .image .overlay {
      opacity: 0;
      transition: all 300ms ease-in-out;
    }

    &:hover .image .overlay {
      opacity: 1;
    }

    & .speech-n-country {
      gap: 1rem;
      padding: 1rem;
    }

    @media (min-width: 992px) {
      gap: calc(var(--spacing) * 6);

      & .speech-n-country {
        gap: 3rem;
        padding: 1.5rem;
      }
    }

    @media (min-width: 1366px) {
      & .text-speech {
        font-weight: 600;
        font-size: 22px;
      }

      & .image {
        width: 300px;
        padding: 0;
      }
    }
  }
}

.view-more-btn:hover {
  color: var(--primary-color);
}

.social-activity {
  & p {
    line-height: 1.5;
  }

  & .activity-video {
    cursor: pointer;
  }

  & .activity-video .overlay {
    opacity: 0;
    transition: all 300ms ease-in-out;
  }

  & .activity-video:hover .overlay {
    opacity: 1;
  }

  @media (min-width: 768px) {
    & p {
      line-height: 2.2;
    }
  }
}

.news-n-event-section {
  & .badge-link {
    background-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;

    &:hover {
      background-color: #c3353b;
      border-color: #c3353b;
    }
  }

  & .date {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  & .important {
    background-image: url("../media/news-event/important.png");
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;

    & .content {
      padding: 20px 30px;
      width: 100%;
      height: 158px;
      background-color: rgb(0 0 0 / 50%);
      z-index: 1;

      display: flex;
      align-items: flex-start;
      flex-direction: column;
      justify-content: space-between;
      gap: 15px;

      & .badge-link {
        color: #fff;
        margin-top: -45px;
      }
      & .title {
        font-weight: 600;
        color: #fff;
        font-size: 22px;
        line-height: 1;
      }

      & .date {
        color: #fff;
      }
    }

    @media (min-width: 909px) {
      & .title {
        font-size: 25px;
      }
    }
  }

  & .event {
    height: 474px;
    border-radius: 12px;
    transition: all 300ms ease-in-out;

    & .badge-link {
      padding: 10px 20px;
      color: #fff;
      border-radius: 15px;
      margin-top: -42px;
    }

    & .image-box {
      width: 100%;
      border-radius: 12px;
      height: 316px;
      overflow: hidden;

      & img {
        width: 100%;
        scale: 1;
      }
    }

    & .content {
      padding: 20px;

      height: 158px;
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      justify-content: space-between;
      gap: 15px;

      & a {
        font-size: 17px;
        font-weight: 600;
      }
    }

    &:hover .content .title {
      color: var(--primary-color);
    }
  }
}

#videoModal {
  & .modal-content {
    background-color: transparent;
    border: 0;

    & .modal-close {
      position: absolute;
      top: -10px;
      right: 18px;
      cursor: pointer;
      z-index: 1;

      & .close {
        display: inline-block;
        color: #fff;
        background-color: var(--primary-color);
        height: 25px;
        width: 25px;
        text-align: center;
        border-radius: 9999px;
        font-size: 1.2rem;
      }
    }
  }
}

.member {
  height: 134px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* ############################################ */
.landing-page-banner {
  display: grid;
  grid-template-columns: 40% 60%;
}

.landing-page-banner .video-section iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  flex-grow: 1;
}

.banner-separator-information {
  padding: 50px 0;
}

.banner-separator-information .item a {
  background: #10c45c;
  display: block;
  text-align: center;
  padding: 18px;
  color: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease;
  transform: translateY(0);
}

.banner-separator-information .item a:hover {
  transform: translateY(-10px);
}

.banner-separator-information .item.test a {
  background: #1ec1d9;
}

.banner-separator-information .item.price a {
  background: #eab830;
}

.banner-separator-information .item.promotion a {
  background: #d94da6;
}

.banner-separator-information .item a img {
  height: 20px;
}

.banner-separator-information .item a h4 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

/*#############Single Course ############## */
/**/
.single-program {
  position: relative;
  padding: 30px 0 60px;
}

.single-program .bg-blur-effect {
  position: absolute;
  display: flex;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.single-program .bg-blur-effect span {
  width: 24rem;
  height: 24rem;
  filter: blur(64px);
  mix-blend-mode: multiply;
  border-radius: 9999px;
  opacity: 0.1;
  display: block;
}

.single-program .program-content-area {
  position: relative;
}

.single-program .featured-image {
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
  margin-bottom: 20px;
}

.single-program .program-content-box {
  padding: 30px;
  border: 1px solid #f4eefb;
  border-radius: 20px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-program .program-content-box .program-title {
  font-size: 30px;
  color: #464a53;
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.single-program .program-content-box .program-title.no-border {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.single-program .program-content-box .additional-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: end;
}

.single-program .program-content-box .additional-links a {
  color: #a92329;
}

.single-program .program-content-box .additional-links a:hover {
  color: #4b5966;
}

.single-program .program-content-box .program-subtitle {
  font-size: 22px;
  color: #464a53;
  border-bottom: 1px solid #efefef;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.single-program .program-content-box .accordion-item {
  border-radius: 6px;
  border: 1px solid #efefef;
  background-color: transparent;
  --bs-accordion-bg: transparent;
  margin-bottom: 10px;
  overflow: hidden;
}

.single-program .program-content-box .accordion-item .accordion-header {
  border: 0;
}

.single-program
  .program-content-box
  .accordion-item
  .accordion-header
  .accordion-button {
  border-radius: 0;
  color: #464a53;
  font-size: 20px;
  padding: 17px;
  font-weight: 400;
}

.single-program
  .program-content-box
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background-color: transparent;
  font-weight: 700;
}

.single-program
  .program-content-box
  .accordion-item
  .accordion-header
  .accordion-button:focus {
  box-shadow: none;
}

.single-program .program-content-box .accordion-item .accordion-body ul {
  padding-left: 20px;
}

.single-program .program-shoft-info {
  position: sticky;
  top: 125px;
  border-radius: 20px;
  border: 1px solid #efefef;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
}

.single-program .program-shoft-info .short-info {
  margin-bottom: 0 !important;
}

.single-program .program-shoft-info .short-info .price-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 20px 10px;
  border-bottom: 1px solid #efefef;
  gap: 10px;
}

.single-program .program-shoft-info .short-info .price-wrap .price {
  color: #464a53;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  border-top: 1px solid #efefef;
  padding-top: 10px;
  margin-top: 10px;
}

.single-program
  .program-shoft-info
  .short-info
  .price-wrap
  .price:nth-child(1) {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.single-program
  .program-shoft-info
  .short-info
  .price-wrap
  .price
  .price-sub-text {
  display: block;
  font-size: 14px;
}

.single-program
  .program-shoft-info
  .short-info
  .price-wrap
  .price
  .module-name {
  font-size: 12px;
  font-weight: 400;
}

.single-program .program-shoft-info .short-info .price-grid .enroll-btn a {
  color: var(--primary-color);
  font-size: 14px;
}

.single-program
  .program-shoft-info
  .short-info
  .price-grid
  .enroll-btn
  a:hover {
  color: #607086;
}

.single-program .program-shoft-info .short-info .course-info {
  padding: 15px 26px;
  background: #f9f9f9;
}

.single-program .program-shoft-info .short-info .course-info .course-info-wrap {
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.single-program
  .program-shoft-info
  .short-info
  .course-info
  .course-info-wrap:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.single-program .program-shoft-info .short-info .course-info .course-info-grid {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.single-program
  .program-shoft-info
  .short-info
  .course-info
  .course-info-grid:nth-child(1) {
  margin-top: 0;
}

.single-program
  .program-shoft-info
  .short-info
  .course-info
  .course-info-grid
  svg {
  height: 20px;
  width: 20px;
}

.single-program
  .program-shoft-info
  .short-info
  .course-info
  .course-info-grid
  svg
  path {
  fill: var(--primary-color);
}

.single-program
  .program-shoft-info
  .short-info
  .course-info
  .course-info-grid
  h5 {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
  color: #464a53;
}

.single-program .program-shoft-info .short-info .course-info p {
  line-height: 1.3;
  font-size: 14px;
  color: #464a53;
}

.single-program .program-shoft-info .short-info .course-price-wrap {
  padding: 20px;
  border-bottom: 1px solid #efefef;
}

.single-program
  .program-shoft-info
  .short-info
  .course-price-wrap
  .course-price-grid
  .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
}

.single-program
  .program-shoft-info
  .short-info
  .course-price-wrap
  .course-price-grid
  .btn
  .fa {
  font-size: 14px;
  font-weight: 600;
}

.single-program .program-shoft-info .other-fees {
  padding: 20px;
  border-top: 1px solid #f5f5f5;
  display: grid;
  grid-template-columns: 1fr;
}

.single-program .program-shoft-info .other-fees p {
  font-size: 14px;
  color: #464a53;
  line-height: 1.3;
  border-top: 1px solid #efefef;
  padding-top: 10px;
  margin-top: 10px;
}

.single-program .program-shoft-info .other-fees p:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.single-program .program-shoft-info .get-qualified {
  text-align: center;
  margin: 10px 0 0;
}

.single-program .program-shoft-info .get-qualified img {
  height: 94px;
}

.single-program .program-shoft-info .extra-buttons .extra-button-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.single-program .program-shoft-info .extra-buttons .extra-button-grid .btn {
  background: transparent;
  font-size: 16px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}

.single-program .program-shoft-info .extra-buttons .extra-button-grid .btn .fa {
  font-size: 22px;
  padding-right: 10px;
}

.single-program
  .program-shoft-info
  .extra-buttons
  .extra-button-grid
  .btn-handbook {
  color: #dc3545;
}

.single-program
  .program-shoft-info
  .extra-buttons
  .extra-button-grid
  .btn:hover {
  color: #607086;
}

/*############################################## */

/* ############################################ */

.footer-top {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
  justify-content: center;

  & ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

    & li a {
      display: flex;
      align-items: start;

      &:not(.start) {
        align-items: center;
      }
    }
  }

  @media (min-width: 768px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  @media (min-width: 992px) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-middle {
  position: relative;

  & .social-follow {
    z-index: 10;
    margin-right: 0;

    & .list a {
      &:not(:last-child) {
        margin-right: 1rem;
      }
    }

    & .list a img {
      height: 30px;
    }
  }

  & .subscription {
    width: 100%;
    z-index: 10;
    padding-inline: 0;

    & .input-wrap {
      display: flex;
      align-items: center;
      width: 100%;
      background-color: rgb(255 255 255 / 14%);
      height: 60px;

      & .input {
        background-color: transparent;
        width: 100%;
        font-size: 15px;
        outline: none;
        color: #fff;
        border: none;
      }

      & button {
        background-color: transparent;
        border: none;
        outline: none;
      }
    }
  }

  @media (min-width: 909px) {
    &::before {
      content: "";
      position: absolute;
      height: 2px;
      width: 200%;
      background-color: #fff;
      top: 70%;
      left: -50%;
      z-index: 1;
    }

    & .social-follow {
      margin-right: 80px;

      & .list a {
        &:not(:last-child) {
          margin-right: 2rem;
        }
      }

      & .list a img {
        height: 40px;
      }
    }

    & .subscription {
      width: 500px;
      padding-inline: 2rem;
    }
  }
}

footer ul a {
  transition: color 200ms ease-in-out;

  &:hover {
    color: var(--secondary-color);
  }
}

/* Mobile Menu */
.mobile-only {
  display: none;
}

.mobile-menu-wrapper {
  transition: 0.4s ease 0.1s;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 50%);
  transition: all 500ms ease-in-out;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu-wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-wrapper .mobile-menu-content {
  background-color: #2b2828;
  height: 100vh;
  overflow: auto;
  width: 450px;
  position: relative;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-menu-top-grid {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #343333;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-menu-top-grid .btn {
  font-weight: 400;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-menu-top-grid .menu-user-btn {
  padding: 0;
}

.mobile-menu-wrapper
  .mobile-menu-content
  .mobile-menu-top-grid
  .menu-user-btn::after {
  display: none;
}

.mobile-menu-wrapper .mobile-menu-content #closeMenu {
  text-align: center;
  background-color: #5e5e5e;
  height: 23px;
  width: 23px;
  line-height: 21px;
  border-radius: 23px;
  float: right;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 6px;
}

.mobile-menu-wrapper .mobile-menu-content #closeMenu svg {
  height: 12px;
  fill: #fff;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-navs-wrap {
  padding: 20px;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-item {
  border-bottom: 1px solid #3b3a3a;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-header,
.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-link {
  background-color: transparent;
  padding: 15px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  border-radius: 10px;
  background-color: #494949;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-content .menu-link {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 25px;
  display: block;
  text-wrap: balance;
  text-indent: -12px;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-content .menu-link.parent {
  font-weight: 600;
  font-size: 16px;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-content .submenu-box {
  background-color: rgb(255 255 255 / 4%);
  padding: 10px;
  padding-left: 20px;
  border-radius: 10px;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-content .submenu-box:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-menu-wrapper .mobile-menu-content .mobile-nav .menu-content .menu-link.bb:not(:last-child) {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}


.mobile-menu-wrapper .mobile-menu-content .mobile-nav .active + .menu-content {
  max-height: auto;
  padding: 10px;
}

.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-contact-info {
  margin: 0;
  list-style: none;
  /* background-color: #363434; */
  padding: 15px;
  position: sticky;
  top: 100%;
  bottom: 0;
  display: flex;
  gap: 35px;
  justify-content: center;
}

.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-contact-info li {
  padding: 8px 0;
  text-align: center;
}

.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-contact-info a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
}

.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-contact-info a span {
  display: block;
  margin-top: 4px;
}

.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-nav {
  margin: 0;
  padding: 15px 20px;
  list-style: none;
  background-color: #464646;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
.mobile-menu-wrapper .mobile-menu-content .topbar-mobile-nav a.dropdown-item {
  color: #000;
}

.mobile-menu-wrapper .mobile-menu-content .mobile-nav {
  padding: 15px 20px;
  background-color: #464646;
  border-radius: 15px;
}

.dropdown-toggle.mobile-menu {
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 13px;
}

.dropdown-toggle .__mobile-menu {
  background-color: #fff;
}

.main-menu-wrapper.is-sticky {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
}

.testimonial-swiper-wrap {
  padding-inline: 70px;
}

/*Menu rewrite code*/
.ace-responsive-menu {
  background: transparent;
}

.ace-responsive-menu > li {
  margin-right: 30px;
}

.ace-responsive-menu > li:last-child {
  margin-right: 0;
}

.ace-responsive-menu > li > a {
  color: var(--menu-font-color);
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
}

.ace-responsive-menu > li > a:hover,
.ace-responsive-menu > li > a:focus {
  background: transparent;
  color: var(--primary-color);
}

.ace-responsive-menu li .sub-menu {
  background: #fff;
  border-radius: 3px;
  padding: 5px 0 5px;
  text-align: left;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
}

.ace-responsive-menu li ul.sub-menu > li {
  width: auto;
}

.ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
  left: 100%;
}

.ace-responsive-menu li .sub-menu li a {
  color: var(--menu-font-color);
  font-size: 16px !important;
  padding: 12px 22px !important;
  border-left: 3px solid transparent;
  white-space: nowrap;
}

.ace-responsive-menu li .sub-menu li a:hover {
  color: var(--primary-color);
  background: linear-gradient(
    90deg,
    rgb(245, 245, 245) 0%,
    rgb(255, 255, 255) 50%,
    rgb(245, 245, 245) 100%
  );
  border-color: var(--primary-color);
}

/* .english-programmes.isolate #programme-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
} */

@media (min-width: 910px) {
  .shadowed-effect-1::before,
  .shadowed-effect-2::before {
    font-size: 36px;
  }
  .shadowed-effect-2::before {
    left: -10%;
  }
  .member-shadow.revert.shadowed-effect-2::before,
  .revert.shadowed-effect-2::before {
    left: -8%;
    font-size: 36px;
  }

  .section-title,
  .text-30 {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .banner-separator-information .item a {
    padding: 50px 25px;
  }
  .banner-separator-information .item a img {
    height: 42px;
  }
  .banner-separator-information .item a h4 {
    margin-top: 20px;
    font-size: 18px;
  }
}

/* Media Query */

@media only screen and (max-width: 1500px) {
  .ace-responsive-menu > li {
    margin-right: 20px;
  }
  .ace-responsive-menu > li > a {
    font-size: 14px;
  }
  .ace-responsive-menu > li > a > .arrow:before {
    margin-left: 5px;
  }

  .ise-header .main-menu-buttons .btn {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1440px) {
  .ise-header .main-menu-wrapper .menubar .nav-links {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1352px) {
  .ise-header .main-menu-wrapper .menubar .nav-links {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1310px) {
  .ise-header .main-menu-wrapper .menubar {
    grid-template-columns: auto 1fr;
  }

  .ise-header .main-menu-wrapper .menubar .ise-menuBar {
    display: none;
  }

  .ise-header .main-menu-wrapper #openMenu {
    display: inline-block;
  }
}

@media only screen and (max-width: 910px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .testimonial-swiper-wrap {
    padding-inline: 0;
  }

  .ise-header .topbar-mobile-btns {
    display: flex;
  }

  .ise-header .topbar .top-contact-info.mobile {
    gap: 5px;
  }
}

@media only screen and (max-width: 720px) {
  .btn.mobile {
    font-size: 11px;
    padding: 10px;
  }

  .mobile-menu-wrapper .mobile-menu-content {
    width: 100%;
  }
}
