﻿@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html, body {
  width: 100%;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden; }

ul, ol {
  list-style: none; }

a, img {
  text-decoration: none;
  outline: none; }

/* media Queries */
header {
  width: 100%;
  position: relative;
  z-index: 9999; }
  header .topnav {
    width: 100%;
    background-color: #2d2f55;
    padding: 1rem 6vw; }
    @media (max-width: 768px) {
      header .topnav {
        padding: .75rem 6vw; } }
    header .topnav .topnav_inner {
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem; }
      header .topnav .topnav_inner ul {
        width: auto;
        display: inline-flex;
        align-items: center;
        flex-flow: row wrap;
        gap: 1.5rem; }
        @media (max-width: 768px) {
          header .topnav .topnav_inner ul {
            width: 100%;
            gap: .5rem;
            justify-content: center; } }
        header .topnav .topnav_inner ul li {
          width: auto;
          display: inline-flex;
          align-items: center;
          gap: .5rem; }
          header .topnav .topnav_inner ul li span {
            display: block;
            width: 1.25rem; }
            header .topnav .topnav_inner ul li span img {
              display: block;
              width: 100%; }
          header .topnav .topnav_inner ul li b {
            display: inline-block;
            width: auto;
            text-align: left;
            font: 400 0.875rem "Figtree", serif;
            color: #fff; }
      header .topnav .topnav_inner dl {
        width: auto;
        display: inline-flex;
        align-items: center;
        gap: 1.5rem; }
        @media (max-width: 768px) {
          header .topnav .topnav_inner dl {
            display: none; } }
        header .topnav .topnav_inner dl dt {
          width: auto; }
          header .topnav .topnav_inner dl dt a {
            display: inline-block;
            width: auto;
            text-align: left;
            font: 400 0.875rem "Figtree", serif;
            color: #fff; }
            header .topnav .topnav_inner dl dt a:hover {
              color: #D6861D; }
  header .header {
    width: 100%;
    padding: 1rem 6vw;
    background-color: #fff;
    position: relative;
    z-index: 1; }
    header .header .header_inner {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem; }
      header .header .header_inner .logo {
        width: auto; }
        header .header .header_inner .logo a {
          display: inline-block;
          width: auto; }
          header .header .header_inner .logo a img {
            width: 100%;
            max-width: 232px; }
            @media (max-width: 480px) {
              header .header .header_inner .logo a img {
                max-width: 180px; } }
      header .header .header_inner nav {
        display: inline-block;
        width: auto; }
        @media (max-width: 1024px) {
          header .header .header_inner nav {
            width: 100%;
            height: 100%;
            position: fixed;
            right: 0;
            top: 0;
            background-color: rgba(0, 0, 0, 0.78);
            display: flex;
            flex-flow: column;
            align-items: flex-end;
            transform: translateX(100%);
            transition: 1s ease; } }
        header .header .header_inner nav .nav_inner {
          width: auto; }
          @media (max-width: 1024px) {
            header .header .header_inner nav .nav_inner {
              max-width: 300px;
              width: 100%;
              background-color: #fff;
              height: 100%;
              overflow-y: auto;
              display: flex;
              flex-flow: column;
              justify-content: center; } }
          header .header .header_inner nav .nav_inner ul {
            width: auto;
            display: inline-flex;
            align-items: center;
            gap: .875rem; }
            @media (max-width: 1024px) {
              header .header .header_inner nav .nav_inner ul {
                flex-flow: column;
                justify-content: center;
                width: 100%;
                padding: 1.5rem;
                gap: .825rem; } }
            header .header .header_inner nav .nav_inner ul li {
              width: auto;
              position: relative; }
              header .header .header_inner nav .nav_inner ul li.hide {
                display: none; }
                @media (max-width: 768px) {
                  header .header .header_inner nav .nav_inner ul li.hide {
                    display: inline-block; } }
              @media (max-width: 1024px) {
                header .header .header_inner nav .nav_inner ul li {
                  width: 100%; } }
              header .header .header_inner nav .nav_inner ul li:hover a {
                background: #c68221;
                color: #111;
                transition: .25s ease; }
              header .header .header_inner nav .nav_inner ul li a {
                display: inline-block;
                width: auto;
                font: 400 0.875rem "Figtree", serif;
                color: #333;
                padding: .5rem .875rem;
                border-radius: .5rem;
                position: relative;
                z-index: 9991; }
                @media (max-width: 1024px) {
                  header .header .header_inner nav .nav_inner ul li a {
                    width: 100%;
                    display: block;
                    text-align: center; } }
                header .header .header_inner nav .nav_inner ul li a.active {
                  background: #2d2f55;
                  color: #fff;
                  transition: .25s ease; }
              header .header .header_inner nav .nav_inner ul li .sub_menu {
                width: auto;
                min-width: 260px;
                display: none;
                position: absolute;
                left: 0;
                top: -2px;
                z-index: 9990;
                padding: 48px 0 0 0; }
                @media (max-width: 1024px) {
                  header .header .header_inner nav .nav_inner ul li .sub_menu {
                    position: relative;
                    padding: 0; } }
                header .header .header_inner nav .nav_inner ul li .sub_menu.right {
                  left: unset;
                  right: 0; }
                header .header .header_inner nav .nav_inner ul li .sub_menu .submenuinenr {
                  width: 100%;
                  padding: 12px;
                  border-radius: 12px;
                  background-color: #fff;
                  display: flex;
                  flex-flow: column;
                  gap: 6px;
                  border: 1px solid #ddd; }
                  header .header .header_inner nav .nav_inner ul li .sub_menu .submenuinenr a {
                    display: block;
                    width: 100%;
                    font: 400 0.875rem "Figtree", serif;
                    color: #333;
                    padding: 0;
                    border-radius: 8px;
                    transition: .5s ease;
                    border: none;
                    padding: .725rem 1rem;
                    background-color: #fff; }
                    header .header .header_inner nav .nav_inner ul li .sub_menu .submenuinenr a:hover {
                      color: #313131;
                      transition: .5s ease;
                      background: #c68221; }
        header .header .header_inner nav .closePop {
          width: 2.5rem;
          height: 2.5rem;
          border-radius: 50%;
          display: none;
          align-items: center;
          justify-content: center;
          background-color: #FDC06A;
          cursor: pointer; }
          header .header .header_inner nav .closePop:hover {
            background-color: #ffe1b6; }
          @media (max-width: 1024px) {
            header .header .header_inner nav .closePop {
              position: absolute;
              right: 24px;
              top: 24px;
              display: flex; } }
          header .header .header_inner nav .closePop img {
            display: block;
            width: 20px; }
      header .header .header_inner .popMenu {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        background: #2d2f55;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer; }
        @media (max-width: 1024px) {
          header .header .header_inner .popMenu {
            display: flex; } }
        header .header .header_inner .popMenu img {
          display: block;
          width: 22px; }

.slider {
  width: 100%;
  background-color: #d1d3ec; }

.sl_bottomWrapper {
  width: 100%;
  background-color: #eff0f9;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(6, minmax(0, 1fr)); }
  @media (max-width: 834px) {
    .sl_bottomWrapper {
      grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  @media (max-width: 480px) {
    .sl_bottomWrapper {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  .sl_bottomWrapper a {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem; }
    .sl_bottomWrapper a:hover span img {
      transform: scale(1.2);
      transition: .25s ease; }
    .sl_bottomWrapper a:hover b {
      color: #c68221;
      transition: .25s ease; }
    .sl_bottomWrapper a span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      background-color: #c68221; }
      .sl_bottomWrapper a span img {
        display: block;
        width: 1.5rem;
        transition: .25s ease; }
    .sl_bottomWrapper a b {
      display: block;
      width: 100%;
      text-align: center;
      font: 500 1rem "Figtree", serif;
      color: #4D5E69;
      transition: .25s ease; }

.slider_and_links {
  width: 100%;
  background-color: #2d2f55;
  padding: 3rem 6vw 4.5rem 6vw;
  display: flex;
  flex-flow: column;
  gap: 3rem; }
  .slider_and_links h1 {
    text-align: center;
    font: 700 3rem "Figtree", serif;
    color: #fff; }
    @media (max-width: 480px) {
      .slider_and_links h1 {
        font-size: 2rem; } }
    .slider_and_links h1 span {
      font: italic 500 4.875rem "EB Garamond", serif;
      color: #d1d3ec; }
      @media (max-width: 480px) {
        .slider_and_links h1 span {
          font-size: 2.875rem; } }
  .slider_and_links .slider_links {
    width: 100%; }
    .slider_and_links .slider_links .slider_links_inner {
      width: 100%;
      margin: 0 auto;
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(3, minmax(0, 1fr)); }
      @media (max-width: 834px) {
        .slider_and_links .slider_links .slider_links_inner {
          grid-template-columns: repeat(1, minmax(0, 1fr)); } }
      .slider_and_links .slider_links .slider_links_inner .sl_con {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: .625rem;
        padding: .75rem;
        background-color: #21233e;
        box-shadow: 0 120px 34px transparent, 0 77px 31px rgba(0, 0, 0, 0.01), 0 43px 26px rgba(0, 0, 0, 0.03), 0 19px 19px rgba(0, 0, 0, 0.05), 0 5px 11px rgba(0, 0, 0, 0.06); }
        .slider_and_links .slider_links .slider_links_inner .sl_con .photo {
          width: 100%;
          height: 300px;
          border-radius: 0 0 12px 12px;
          background-color: #2d2f55;
          overflow: hidden;
          transition: .25s ease; }
          @media (max-width: 480px) {
            .slider_and_links .slider_links .slider_links_inner .sl_con .photo {
              height: auto; } }
          .slider_and_links .slider_links .slider_links_inner .sl_con .photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .slider_and_links .slider_links .slider_links_inner .sl_con .text {
          width: 100%;
          display: flex;
          flex-flow: column;
          padding: .75rem; }
          .slider_and_links .slider_links .slider_links_inner .sl_con .text b {
            display: block;
            width: 100%;
            text-align: left;
            font: 600 1.25rem "Figtree", serif;
            color: #fff; }
          .slider_and_links .slider_links .slider_links_inner .sl_con .text p {
            text-align: left;
            font: 400 1rem/1.4 "Figtree", serif;
            color: #d1d3ec;
            margin: .625rem 0 0 0; }
          .slider_and_links .slider_links .slider_links_inner .sl_con .text a {
            width: 100%;
            height: 0px;
            background-color: #d1d3ec;
            border-radius: .375rem;
            font: 500 0.875rem/3rem "Figtree", serif;
            text-transform: uppercase;
            color: #2d2f55;
            text-align: center;
            letter-spacing: 1px;
            overflow: hidden;
            transition: .25s ease;
            margin: 0; }
            @media (max-width: 480px) {
              .slider_and_links .slider_links .slider_links_inner .sl_con .text a {
                height: 48px;
                transition: .25s ease;
                margin: .875rem 0 0 0; } }
            .slider_and_links .slider_links .slider_links_inner .sl_con .text a:hover {
              background-color: #fff; }
        .slider_and_links .slider_links .slider_links_inner .sl_con:hover .photo {
          height: calc(300px - 62px);
          transition: .25s ease; }
          @media (max-width: 480px) {
            .slider_and_links .slider_links .slider_links_inner .sl_con:hover .photo {
              height: auto; } }
        .slider_and_links .slider_links .slider_links_inner .sl_con:hover .text a {
          height: 48px;
          transition: .25s ease;
          margin: .875rem 0 0 0; }

.wrapper {
  width: 100%;
  padding: 4.5rem 6vw;
  overflow-x: hidden;
  background-color: #eff0f9; }
  .wrapper.colored {
    background-color: #c68221; }
  .wrapper.infra {
    background: #eff0f9;
    background-size: 100%; }
  .wrapper.choose {
    min-height: 100vh;
    background-color: #2d2f55;
    background-size: cover; }
    @media (max-width: 1024px) {
      .wrapper.choose {
        min-height: auto; } }
  .wrapper.phil {
    background-color: #eff0f9;
    padding-bottom: 8rem; }
  .wrapper.photo_gal {
    background: linear-gradient(0deg, white 0%, white 40%, #2d2f55 40%, #2d2f55 100%);
    padding: 4.5rem 0; }
    .wrapper.photo_gal .inner_wrapper {
      max-width: 100%; }
  .wrapper.your_st {
    height: 100vh;
    background: url(../images/legendary.jpg) no-repeat center;
    background-size: cover; }
    .wrapper.your_st .inner_wrapper {
      height: 100%; }
  .wrapper .inner_wrapper {
    width: 100%;
    margin: 0 auto; }
    .wrapper .inner_wrapper .about {
      width: 100%;
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: center; }
      @media (max-width: 834px) {
        .wrapper .inner_wrapper .about {
          grid-template-columns: repeat(1, minmax(0, 1fr)); } }
      .wrapper .inner_wrapper .about .text {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 1.5rem; }
        .wrapper .inner_wrapper .about .text h1 {
          text-align: left;
          font: 700 3rem "Figtree", serif;
          color: #2d2f55; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .about .text h1 {
              font: 700 2rem "Figtree", serif; } }
          .wrapper .inner_wrapper .about .text h1 span {
            font: italic 500 4.875rem "EB Garamond", serif;
            color: #c68221; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .about .text h1 span {
                font-size: 2.875rem; } }
        .wrapper .inner_wrapper .about .text .text_inner {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 1.5rem;
          align-items: flex-start; }
          .wrapper .inner_wrapper .about .text .text_inner b {
            display: block;
            text-align: left;
            font: 600 1.25rem/1.2 "Figtree", serif;
            color: #2d2f55; }
          .wrapper .inner_wrapper .about .text .text_inner p {
            text-align: left;
            font: 400 1rem/1.4 "Figtree", serif;
            color: #4D5E69; }
          .wrapper .inner_wrapper .about .text .text_inner a {
            display: inline-block;
            width: auto;
            padding: 0 2rem;
            font: 500 0.875rem/3rem "Figtree", serif;
            border-radius: 50px;
            border: 1px solid #2d2f55;
            color: #2d2f55;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: .25s ease; }
            .wrapper .inner_wrapper .about .text .text_inner a:hover {
              background-color: #2d2f55;
              transition: .25s ease;
              color: #fff; }
      .wrapper .inner_wrapper .about .image {
        display: block;
        width: 100%; }
        .wrapper .inner_wrapper .about .image img {
          display: block;
          width: 100%;
          border-radius: 12px; }
    .wrapper .inner_wrapper .missionvision {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin: 3rem 0 0 0;
      transition: .5s ease; }
      @media (max-width: 480px) {
        .wrapper .inner_wrapper .missionvision {
          grid-template-columns: repeat(1, minmax(0, 1fr)); } }
      .wrapper .inner_wrapper .missionvision:hover .mission {
        transition: .5s ease;
        transform: translate3d(-12px, -24px, 0); }
      .wrapper .inner_wrapper .missionvision:hover .vision {
        transition: .5s ease;
        transform: translate3d(12px, 24px, 0); }
      .wrapper .inner_wrapper .missionvision .mission {
        width: 100%;
        border-radius: 12px;
        background-color: #2d2f55;
        padding: 2rem;
        display: flex;
        flex-flow: column;
        gap: 1.25rem;
        align-items: flex-start;
        transition: .25s ease; }
        .wrapper .inner_wrapper .missionvision .mission h2 {
          text-align: left;
          font: 700 2rem/3rem "Figtree", serif;
          color: #fff; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .missionvision .mission h2 {
              font-size: 1.5rem; } }
          .wrapper .inner_wrapper .missionvision .mission h2 span {
            font: italic 500 3rem/3rem "EB Garamond", serif;
            color: #d1d3ec; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .missionvision .mission h2 span {
                font-size: 2rem; } }
        .wrapper .inner_wrapper .missionvision .mission p {
          text-align: left;
          font: 400 1rem/1.4 "Figtree", serif;
          color: #d1d3ec; }
        .wrapper .inner_wrapper .missionvision .mission a {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 3rem;
          width: 3rem;
          border-radius: .5rem;
          background-color: #d1d3ec;
          transition: .25s ease; }
          .wrapper .inner_wrapper .missionvision .mission a:hover {
            background-color: #fff;
            transition: .25s ease; }
          .wrapper .inner_wrapper .missionvision .mission a img {
            display: block;
            width: 100%;
            max-width: 1.5rem; }
      .wrapper .inner_wrapper .missionvision .vision {
        width: 100%;
        border-radius: 12px;
        background-color: #2d2f55;
        padding: 2rem;
        display: flex;
        flex-flow: column;
        gap: 1.25rem;
        align-items: flex-start;
        transition: .25s ease; }
        .wrapper .inner_wrapper .missionvision .vision h2 {
          text-align: left;
          font: 700 2rem/3rem "Figtree", serif;
          color: #fff; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .missionvision .vision h2 {
              font-size: 1.5rem; } }
          .wrapper .inner_wrapper .missionvision .vision h2 span {
            font: italic 500 3rem/3rem "EB Garamond", serif;
            color: #d1d3ec; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .missionvision .vision h2 span {
                font-size: 2rem; } }
        .wrapper .inner_wrapper .missionvision .vision p {
          text-align: left;
          font: 400 1rem/1.4 "Figtree", serif;
          color: #d1d3ec; }
        .wrapper .inner_wrapper .missionvision .vision a {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 3rem;
          width: 3rem;
          border-radius: .5rem;
          background-color: #d1d3ec;
          transition: .25s ease; }
          .wrapper .inner_wrapper .missionvision .vision a:hover {
            background-color: #fff;
            transition: .25s ease; }
          .wrapper .inner_wrapper .missionvision .vision a img {
            display: block;
            width: 100%;
            max-width: 1.5rem; }
    .wrapper .inner_wrapper .leaderShip {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      .wrapper .inner_wrapper .leaderShip .heading {
        width: 100%;
        max-width: 48rem;
        display: flex;
        flex-flow: column;
        gap: 1.25rem;
        margin: 0 auto; }
        .wrapper .inner_wrapper .leaderShip .heading h1 {
          text-align: center;
          font: 700 3rem "Figtree", serif;
          color: #602742; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .leaderShip .heading h1 {
              font-size: 2rem; } }
          .wrapper .inner_wrapper .leaderShip .heading h1 span {
            font: italic 500 4.875rem "EB Garamond", serif;
            color: #fff; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .leaderShip .heading h1 span {
                font-size: 2.875rem; } }
        .wrapper .inner_wrapper .leaderShip .heading b {
          text-align: center;
          font: 400 1.125rem/1.4 "Figtree", serif;
          color: #602742; }
      .wrapper .inner_wrapper .leaderShip .leaders {
        width: 100%;
        display: grid;
        gap: 1.5rem;
        grid-template-columns: repeat(3, minmax(0, 1fr)); }
        @media (max-width: 1024px) {
          .wrapper .inner_wrapper .leaderShip .leaders {
            grid-template-columns: repeat(1, minmax(0, 1fr)); } }
        .wrapper .inner_wrapper .leaderShip .leaders .leaderCon {
          width: 100%;
          display: grid;
          align-items: center;
          grid-template-columns: auto 220px;
          gap: .5rem;
          background-color: #FFFFFF;
          border-radius: 12px;
          padding: .5rem; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .leaderShip .leaders .leaderCon {
              display: flex;
              flex-flow: column-reverse; } }
          .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text {
            flex: 1;
            display: flex;
            flex-flow: column;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text {
                padding: 0 1rem 1rem 1rem; } }
            .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text h3 {
              text-align: left;
              font: 600 1.25rem "Figtree", serif;
              color: #2d2f55; }
              .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text h3 span {
                font: italic 500 2rem "EB Garamond", serif;
                color: #c68221; }
            .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text p {
              text-align: left;
              font: 400 0.925rem/1.4 "Figtree", serif;
              color: #4D5E69; }
            .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text a {
              display: inline-block;
              font: 600 0.75rem/2.5rem "Figtree", serif;
              color: #2d2f55;
              text-transform: uppercase;
              letter-spacing: 1px;
              padding: 0 1.5rem;
              border-radius: .5rem;
              border: 1px solid #2d2f55;
              transition: .25s ease; }
              @media (max-width: 480px) {
                .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text a {
                  display: block;
                  width: 100%;
                  text-align: center; } }
              .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .text a:hover {
                transition: .25s ease;
                background-color: #2d2f55;
                color: #fff; }
          .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .photo {
            width: 100%;
            height: 100%;
            background-color: #d1d3ec;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .photo {
                padding: 1rem 0; } }
            .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .photo span {
              display: block;
              width: 140px;
              height: 140px;
              border-radius: 50%;
              overflow: hidden; }
              .wrapper .inner_wrapper .leaderShip .leaders .leaderCon .photo span img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover; }
    .wrapper .inner_wrapper .ourcampus {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      .wrapper .inner_wrapper .ourcampus .heading {
        width: 100%;
        max-width: 48rem;
        display: flex;
        flex-flow: column;
        gap: 1.25rem;
        margin: 0 auto; }
        .wrapper .inner_wrapper .ourcampus .heading h1 {
          text-align: center;
          font: 700 3rem "Figtree", serif;
          color: #2d2f55; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .ourcampus .heading h1 {
              font-size: 2rem; } }
          .wrapper .inner_wrapper .ourcampus .heading h1 span {
            font: italic 500 4.875rem "EB Garamond", serif;
            color: #c68221; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .ourcampus .heading h1 span {
                font-size: 2.875rem; } }
        .wrapper .inner_wrapper .ourcampus .heading b {
          text-align: center;
          font: 400 1.125rem/1.4 "Figtree", serif;
          color: #4D5E69; }
      .wrapper .inner_wrapper .ourcampus .campus_wrapp {
        width: 100%;
        padding: 2rem;
        border-radius: 2rem;
        background-color: #2d2f55; }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .ourcampus .campus_wrapp {
            padding: 2rem; } }
        .wrapper .inner_wrapper .ourcampus .campus_wrapp ul {
          width: 100%;
          display: grid;
          gap: 3rem;
          grid-template-columns: repeat(6, minmax(0, 1fr));
          align-items: flex-start; }
          @media (max-width: 1024px) {
            .wrapper .inner_wrapper .ourcampus .campus_wrapp ul {
              grid-template-columns: repeat(4, minmax(0, 1fr)); } }
          @media (max-width: 768px) {
            .wrapper .inner_wrapper .ourcampus .campus_wrapp ul {
              grid-template-columns: repeat(3, minmax(0, 1fr)); } }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .ourcampus .campus_wrapp ul {
              grid-template-columns: repeat(2, minmax(0, 1fr)); } }
          .wrapper .inner_wrapper .ourcampus .campus_wrapp ul li {
            width: 100%;
            display: flex;
            gap: 1rem;
            flex-flow: column;
            align-items: center; }
            .wrapper .inner_wrapper .ourcampus .campus_wrapp ul li span {
              height: 7rem;
              width: 7rem;
              display: flex;
              align-items: center;
              justify-content: center;
              background-color: #fff;
              border-radius: 50%; }
              .wrapper .inner_wrapper .ourcampus .campus_wrapp ul li span img {
                display: block;
                width: 100%;
                max-width: 3rem; }
            .wrapper .inner_wrapper .ourcampus .campus_wrapp ul li b {
              display: block;
              width: 100%;
              text-align: center;
              font: 500 1rem "Figtree", serif;
              color: #fff; }
        .wrapper .inner_wrapper .ourcampus .campus_wrapp .life_con {
          width: 100%; }
          .wrapper .inner_wrapper .ourcampus .campus_wrapp .life_con .photo {
            width: 100%; }
            .wrapper .inner_wrapper .ourcampus .campus_wrapp .life_con .photo img {
              display: block;
              width: 100%; }
          .wrapper .inner_wrapper .ourcampus .campus_wrapp .life_con b {
            display: block;
            width: 100%;
            padding: .875rem;
            text-align: center;
            background-color: #fff;
            font: 500 1rem "Figtree", serif;
            color: #4D5E69; }
      .wrapper .inner_wrapper .ourcampus .view_all {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .wrapper .inner_wrapper .ourcampus .view_all a {
          display: inline-block;
          width: auto;
          text-align: center;
          font: 500 0.875rem/3rem "Figtree", serif;
          text-transform: uppercase;
          letter-spacing: 1px;
          background-color: #d1d3ec;
          border-radius: .25rem;
          padding: 0 3rem;
          color: #2d2f55;
          transition: .25s ease; }
          .wrapper .inner_wrapper .ourcampus .view_all a:hover {
            background-color: #2d2f55;
            color: #fff;
            transition: .25s ease; }
    .wrapper .inner_wrapper .why_choose {
      width: 100%;
      height: 100%;
      display: flex;
      flex-flow: column;
      align-items: center;
      justify-content: center;
      gap: 3rem; }
      .wrapper .inner_wrapper .why_choose .heading {
        width: 100%;
        max-width: 26rem;
        display: flex;
        flex-flow: column;
        gap: 1.25rem;
        margin: 0 auto; }
        .wrapper .inner_wrapper .why_choose .heading h1 {
          text-align: center;
          font: 700 3rem "Figtree", serif;
          color: #fff; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .why_choose .heading h1 {
              font-size: 2rem; } }
          .wrapper .inner_wrapper .why_choose .heading h1 span {
            font: italic 500 4.875rem "EB Garamond", serif;
            color: #d1d3ec; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .why_choose .heading h1 span {
                font-size: 2.875rem; } }
        .wrapper .inner_wrapper .why_choose .heading b {
          text-align: center;
          font: 400 1.125rem/1.4 "Figtree", serif;
          color: #d1d3ec; }
      .wrapper .inner_wrapper .why_choose ul {
        width: 100%;
        display: grid;
        gap: 1.5rem;
        row-gap: 5rem;
        grid-template-columns: repeat(3, minmax(0, 1fr)); }
        @media (max-width: 834px) {
          .wrapper .inner_wrapper .why_choose ul {
            grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .why_choose ul {
            grid-template-columns: repeat(1, minmax(0, 1fr)); } }
        .wrapper .inner_wrapper .why_choose ul li {
          width: 100%;
          background-color: rgba(0, 0, 0, 0.48);
          padding: 3rem 1.5rem 1.5rem 1.5rem;
          border-radius: .5rem;
          display: flex;
          flex-flow: column;
          align-items: center;
          gap: .5rem;
          position: relative; }
          .wrapper .inner_wrapper .why_choose ul li span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 96px;
            height: 96px;
            background: linear-gradient(0deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.48) 50%, rgba(0, 0, 0, 0.48) 100%);
            border-radius: 50%;
            position: absolute;
            top: -48px; }
            .wrapper .inner_wrapper .why_choose ul li span img {
              display: block;
              width: 48px; }
          .wrapper .inner_wrapper .why_choose ul li b {
            display: block;
            width: 100%;
            text-align: center;
            font: 600 1.25rem "Figtree", serif;
            color: #fff; }
          .wrapper .inner_wrapper .why_choose ul li p {
            text-align: center;
            font: 400 1rem "Figtree", serif;
            color: rgba(255, 255, 255, 0.78); }
    .wrapper .inner_wrapper .facts {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      .wrapper .inner_wrapper .facts h1 {
        text-align: center;
        font: 700 3rem "Figtree", serif;
        color: #2d2f55; }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .facts h1 {
            font-size: 2rem; } }
        .wrapper .inner_wrapper .facts h1 span {
          font: italic 500 4.875rem "EB Garamond", serif;
          color: #c68221; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .facts h1 span {
              font-size: 2.875rem; } }
      .wrapper .inner_wrapper .facts .flavourContainer {
        width: 100%;
        display: grid;
        grid-gap: 2rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: flex-start;
        overflow: hidden; }
        @media (max-width: 834px) {
          .wrapper .inner_wrapper .facts .flavourContainer {
            grid-template-columns: repeat(1, minmax(0, 1fr)); } }
        .wrapper .inner_wrapper .facts .flavourContainer .flavContainer {
          perspective: 150rem;
          position: relative;
          height: 376px; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer {
              height: auto; } }
          .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp {
            width: 100%;
            border-radius: 24px;
            padding: 1rem;
            background-color: #555;
            height: 376px;
            display: flex;
            flex-flow: column;
            gap: .25rem;
            transition: all 0.8s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            backface-visibility: hidden; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp {
                height: auto;
                position: unset;
                border-radius: 24px 24px 0 0; } }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp.orange {
              background-color: #2d2f55; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp.blue {
              background-color: #2d2f55; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp.green {
              background-color: #2d2f55; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp .photo {
              width: 100%;
              border-radius: 16px;
              overflow: hidden; }
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp .photo img {
                display: block;
                width: 100%; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp .text {
              width: 100%;
              display: flex;
              flex-flow: column;
              gap: 6px; }
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp .text b {
                display: block;
                width: 100%;
                text-align: center;
                font: 700 1.5rem "Figtree", serif;
                color: #fff; }
                .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavWrapp .text b span {
                  font: italic 600 2.25rem "EB Garamond", serif; }
          .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack {
            width: 100%;
            border-radius: 24px;
            padding: 24px;
            background-color: #555;
            height: 376px;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            transition: all 0.8s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            backface-visibility: hidden;
            transform: rotateY(180deg); }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack {
                height: auto;
                position: unset;
                transform: unset;
                border-radius: 0 0 24px 24px;
                padding-top: 0; } }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack.orange {
              background-color: #EC7016; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack.blue {
              background-color: #EC7016; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack.green {
              background-color: #EC7016; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack p {
              text-align: center;
              font: 400 16px "Figtree", serif;
              color: #fff; }
            .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack a {
              display: inline-block;
              width: auto;
              font: 400 16px/48px "Figtree", serif;
              color: #202022;
              border-radius: 8px;
              padding: 0 28px;
              background-color: #fff;
              transition: all 0.8s ease; }
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer .flavBack a:hover {
                background-color: transparent;
                color: #fff;
                border: 1px solid #fff;
                transition: all 0.8s ease; }
          .wrapper .inner_wrapper .facts .flavourContainer .flavContainer:hover .flavWrapp {
            transform: rotateY(-180deg); }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer:hover .flavWrapp {
                transform: unset; } }
          .wrapper .inner_wrapper .facts .flavourContainer .flavContainer:hover .flavBack {
            transform: rotateY(0); }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .facts .flavourContainer .flavContainer:hover .flavBack {
                transform: unset; } }
    .wrapper .inner_wrapper .philosophy {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      .wrapper .inner_wrapper .philosophy h1 {
        text-align: center;
        font: 700 3rem "Figtree", serif;
        color: #2d2f55; }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .philosophy h1 {
            font-size: 2rem; } }
        .wrapper .inner_wrapper .philosophy h1 span {
          font: italic 500 4.875rem "EB Garamond", serif;
          color: #c68221; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .philosophy h1 span {
              font-size: 2.875rem; } }
      .wrapper .inner_wrapper .philosophy ul {
        width: 100%;
        display: grid;
        gap: .25rem;
        grid-template-columns: repeat(5, minmax(0, 1fr)); }
        @media (max-width: 1024px) {
          .wrapper .inner_wrapper .philosophy ul {
            grid-template-columns: repeat(3, minmax(0, 1fr)); } }
        @media (max-width: 768px) {
          .wrapper .inner_wrapper .philosophy ul {
            grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .philosophy ul {
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: .5rem; } }
        .wrapper .inner_wrapper .philosophy ul li {
          width: 100%;
          border-radius: .5rem;
          overflow: hidden;
          position: relative; }
          .wrapper .inner_wrapper .philosophy ul li:nth-child(2) {
            transform: translateY(48px); }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .philosophy ul li:nth-child(2) {
                transform: unset; } }
          .wrapper .inner_wrapper .philosophy ul li:nth-child(3) {
            transform: translateY(8px); }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .philosophy ul li:nth-child(3) {
                transform: unset; } }
          .wrapper .inner_wrapper .philosophy ul li:nth-child(4) {
            transform: translateY(62px); }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .philosophy ul li:nth-child(4) {
                transform: unset; } }
          .wrapper .inner_wrapper .philosophy ul li:hover img {
            filter: blur(0px);
            transition: .5s ease; }
          .wrapper .inner_wrapper .philosophy ul li:hover .text {
            padding: 1.5rem;
            transition: .5s ease; }
            .wrapper .inner_wrapper .philosophy ul li:hover .text b {
              font-size: 4rem;
              transition: .5s ease;
              color: #D6861D; }
            .wrapper .inner_wrapper .philosophy ul li:hover .text p {
              font-size: .875rem;
              transition: .5s ease; }
          .wrapper .inner_wrapper .philosophy ul li img {
            display: block;
            width: 100%;
            filter: blur(6px);
            transition: .5s ease; }
          .wrapper .inner_wrapper .philosophy ul li .text {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            display: flex;
            flex-flow: column;
            gap: .75rem;
            justify-content: flex-end;
            background: linear-gradient(0deg, #0a293b 0%, rgba(10, 41, 59, 0.25) 50%, rgba(10, 41, 59, 0) 100%);
            padding: 1.5rem 1.5rem 6rem 1.5rem;
            transition: .5s ease; }
            .wrapper .inner_wrapper .philosophy ul li .text b {
              display: block;
              width: 100%;
              text-align: center;
              font: 700 6rem "EB Garamond", serif;
              color: #fff;
              transition: .5s ease; }
            .wrapper .inner_wrapper .philosophy ul li .text p {
              text-align: center;
              font: 600 1.125rem "Figtree", serif;
              color: #fff;
              text-transform: uppercase;
              transition: .5s ease; }
    .wrapper .inner_wrapper .holistics {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 16px; }
      .wrapper .inner_wrapper .holistics .section1 {
        width: 100%;
        display: grid;
        align-items: center;
        background-color: #eff0f9;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 12px; }
        @media (max-width: 834px) {
          .wrapper .inner_wrapper .holistics .section1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
            border-radius: 12px; } }
        .wrapper .inner_wrapper .holistics .section1 .photo {
          width: 100%;
          aspect-ratio: 4 / 3;
          border-radius: 12px 0 0 12px;
          overflow: hidden; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .holistics .section1 .photo {
              border-radius: 12px; } }
          .wrapper .inner_wrapper .holistics .section1 .photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .wrapper .inner_wrapper .holistics .section1 .text {
          width: 100%;
          padding: 3rem;
          display: flex;
          flex-flow: column;
          gap: 2rem;
          align-items: flex-start;
          border-radius: 0 12px 12px 0; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .holistics .section1 .text {
              border-radius: 12px;
              padding: 1.5rem; } }
          .wrapper .inner_wrapper .holistics .section1 .text h1 {
            text-align: left;
            font: 700 3rem "Figtree", serif;
            color: #2d2f55; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .holistics .section1 .text h1 {
                font-size: 2rem; } }
            .wrapper .inner_wrapper .holistics .section1 .text h1 span {
              display: block;
              width: 100%;
              text-align: left;
              font: italic 500 3.875rem/3rem "EB Garamond", serif;
              color: #c68221; }
              @media (max-width: 480px) {
                .wrapper .inner_wrapper .holistics .section1 .text h1 span {
                  font-size: 2.875rem; } }
          .wrapper .inner_wrapper .holistics .section1 .text p {
            text-align: left;
            font: 400 1rem/1.4 "Figtree", serif;
            color: #4D5E69; }
          .wrapper .inner_wrapper .holistics .section1 .text a {
            display: inline-block;
            width: auto;
            font: 600 0.775rem/2.5rem "Figtree", serif;
            color: #2d2f55;
            border: 1px solid #2d2f55;
            border-radius: .5rem;
            padding: 0 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: .25s ease; }
            .wrapper .inner_wrapper .holistics .section1 .text a:hover {
              background-color: #2d2f55;
              color: #fff;
              transition: .25s ease; }
      .wrapper .inner_wrapper .holistics .grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem; }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .holistics .grid {
            grid-template-columns: repeat(1, minmax(0, 1fr)); } }
        .wrapper .inner_wrapper .holistics .grid .column {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr)); }
          @media (max-width: 834px) {
            .wrapper .inner_wrapper .holistics .grid .column {
              display: flex;
              flex-flow: column-reverse; } }
          @media (max-width: 834px) {
            .wrapper .inner_wrapper .holistics .grid .column:nth-child(3), .wrapper .inner_wrapper .holistics .grid .column:nth-child(4), .wrapper .inner_wrapper .holistics .grid .column:nth-child(7), .wrapper .inner_wrapper .holistics .grid .column:nth-child(8) {
              display: flex;
              flex-flow: column; } }
          .wrapper .inner_wrapper .holistics .grid .column .photo {
            width: 100%;
            height: 100%;
            border-radius: 12px 0 0 12px;
            overflow: hidden; }
            @media (max-width: 834px) {
              .wrapper .inner_wrapper .holistics .grid .column .photo {
                border-radius: 12px 12px 0 0; } }
            .wrapper .inner_wrapper .holistics .grid .column .photo.left {
              border-radius: 0 12px 12px 0; }
              @media (max-width: 834px) {
                .wrapper .inner_wrapper .holistics .grid .column .photo.left {
                  border-radius: 12px 12px 0 0; } }
            .wrapper .inner_wrapper .holistics .grid .column .photo img {
              display: block;
              width: 100%;
              height: 100%;
              object-fit: cover; }
          .wrapper .inner_wrapper .holistics .grid .column .text {
            width: 100%;
            display: flex;
            flex-flow: column;
            justify-content: center;
            gap: 1rem;
            padding: 1.5rem;
            background-color: #000000;
            border-radius: 0 12px 12px 0; }
            @media (max-width: 834px) {
              .wrapper .inner_wrapper .holistics .grid .column .text {
                border-radius: 0 0 12px 12px; } }
            .wrapper .inner_wrapper .holistics .grid .column .text.left {
              border-radius: 12px 0 0 12px; }
              @media (max-width: 834px) {
                .wrapper .inner_wrapper .holistics .grid .column .text.left {
                  border-radius: 0 0 12px 12px; } }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_1 {
              background-color: #D6861D; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_2 {
              background-color: #149A94; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_3 {
              background-color: #7B3A9F; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_4 {
              background-color: #DA514D; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_5 {
              background-color: #EB347E; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_6 {
              background-color: #259AC4; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_7 {
              background-color: #51A928; }
            .wrapper .inner_wrapper .holistics .grid .column .text.col_8 {
              background-color: #4F5CCD; }
            .wrapper .inner_wrapper .holistics .grid .column .text b {
              display: block;
              width: 100%;
              text-align: left;
              font: 700 1.25rem "Figtree", serif;
              color: #fff;
              text-transform: uppercase; }
            .wrapper .inner_wrapper .holistics .grid .column .text p {
              text-align: left;
              font: 400 0.875rem/1.4 "Figtree", serif;
              color: rgba(255, 255, 255, 0.78); }
    .wrapper .inner_wrapper .photoGallery {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      .wrapper .inner_wrapper .photoGallery .heading {
        width: 100%;
        max-width: 48rem;
        display: flex;
        flex-flow: column;
        gap: 1.25rem;
        margin: 0 auto; }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .photoGallery .heading {
            padding: 0 6vw; } }
        .wrapper .inner_wrapper .photoGallery .heading h1 {
          text-align: center;
          font: 700 3rem "Figtree", serif;
          color: #fff; }
          @media (max-width: 480px) {
            .wrapper .inner_wrapper .photoGallery .heading h1 {
              font-size: 2rem; } }
          .wrapper .inner_wrapper .photoGallery .heading h1 span {
            font: italic 500 4.875rem "EB Garamond", serif;
            color: #d1d3ec; }
            @media (max-width: 480px) {
              .wrapper .inner_wrapper .photoGallery .heading h1 span {
                font-size: 2.875rem; } }
        .wrapper .inner_wrapper .photoGallery .heading b {
          text-align: center;
          font: 400 1.125rem/1.4 "Figtree", serif;
          color: #d1d3ec; }
      .wrapper .inner_wrapper .photoGallery .gallery {
        width: 100%; }
        .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box {
          width: 100%;
          height: 100%; }
          .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link {
            width: 100%;
            height: 100%; }
            .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a {
              display: block;
              width: 100%;
              height: 100%;
              position: relative; }
              .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a:hover span {
                opacity: .78;
                transition: .25s ease; }
              .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a .photo {
                width: 100%;
                aspect-ratio: 4 / 3;
                overflow: hidden; }
                .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a .photo img {
                  display: block;
                  width: 100%;
                  object-fit: cover;
                  height: 100%; }
              .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a span {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100%;
                background-color: #104D6E;
                position: absolute;
                opacity: 0;
                left: 0;
                top: 0;
                transition: .25s ease; }
                .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a span i {
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  height: 3rem;
                  width: 3rem;
                  border-radius: 50%;
                  border: 1px solid #d1d3ec; }
                  .wrapper .inner_wrapper .photoGallery .gallery .photo_gallery_box .photo_gallery_link a span i img {
                    display: block;
                    width: 1.5rem; }
      .wrapper .inner_wrapper .photoGallery .view_all {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .wrapper .inner_wrapper .photoGallery .view_all a {
          display: inline-block;
          width: auto;
          text-align: center;
          font: 500 0.875rem/3rem "Figtree", serif;
          text-transform: uppercase;
          letter-spacing: 1px;
          background-color: #d1d3ec;
          border-radius: .25rem;
          padding: 0 3rem;
          color: #2d2f55;
          transition: .25s ease; }
          .wrapper .inner_wrapper .photoGallery .view_all a:hover {
            background-color: #2d2f55;
            color: #fff;
            transition: .25s ease; }
    .wrapper .inner_wrapper .yourStory {
      width: 100%;
      height: 100%;
      display: flex;
      flex-flow: column;
      align-items: center;
      justify-content: center;
      gap: 3.875rem; }
      .wrapper .inner_wrapper .yourStory .text {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 2rem; }
        .wrapper .inner_wrapper .yourStory .text h1 {
          text-align: center;
          font: 500 4rem "EB Garamond", serif;
          color: #2d2f55;
          padding: 0 14rem; }
          @media (max-width: 1024px) {
            .wrapper .inner_wrapper .yourStory .text h1 {
              padding: 0; } }
          @media (max-width: 768px) {
            .wrapper .inner_wrapper .yourStory .text h1 {
              font-size: 2.5rem;
              padding: 0; } }
          .wrapper .inner_wrapper .yourStory .text h1 span {
            color: #d1d3ec;
            font-style: italic; }
        .wrapper .inner_wrapper .yourStory .text b {
          display: block;
          width: 100%;
          text-align: center;
          font: 400 1.125rem "Figtree", serif;
          color: #2d2f55;
          letter-spacing: 2px;
          text-transform: uppercase; }
      .wrapper .inner_wrapper .yourStory a {
        display: inline-block;
        width: auto;
        text-align: center;
        font: 500 0.875rem/3rem "Figtree", serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        background-color: #d1d3ec;
        border-radius: .25rem;
        padding: 0 3rem;
        color: #2d2f55;
        transition: .25s ease; }
        @media (max-width: 480px) {
          .wrapper .inner_wrapper .yourStory a {
            padding: 0;
            font-size: .725rem;
            display: block;
            width: 100%; } }
        .wrapper .inner_wrapper .yourStory a:hover {
          background-color: #fff;
          transition: .25s ease; }
    .wrapper .inner_wrapper .collaboration_wrapp {
      width: 100%;
      padding: 3.5rem;
      border-radius: 3rem;
      background-color: #2d2f55;
      display: grid;
      gap: 6rem;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: center; }
      @media (max-width: 768px) {
        .wrapper .inner_wrapper .collaboration_wrapp {
          grid-template-columns: repeat(1, 1fr);
          gap: 2rem;
          padding: 2rem; } }
      .wrapper .inner_wrapper .collaboration_wrapp .collaboration_heading {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 3rem;
        align-items: flex-start;
        padding: 3rem 0; }
        @media (max-width: 768px) {
          .wrapper .inner_wrapper .collaboration_wrapp .collaboration_heading {
            padding: 0; } }
        .wrapper .inner_wrapper .collaboration_wrapp .collaboration_heading h1 {
          text-align: left;
          font: 600 2rem "Figtree", serif;
          color: #fff;
          white-space: pre-line; }
        .wrapper .inner_wrapper .collaboration_wrapp .collaboration_heading .logo {
          width: 100%;
          max-width: 300px; }
          .wrapper .inner_wrapper .collaboration_wrapp .collaboration_heading .logo img {
            display: block;
            width: 100%; }
      .wrapper .inner_wrapper .collaboration_wrapp .collaboration_text {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 1.5rem; }
        .wrapper .inner_wrapper .collaboration_wrapp .collaboration_text p {
          text-align: left;
          font: 400 1.125rem/1.4 "Figtree", serif;
          color: #fff; }

footer {
  width: 100%;
  padding: 4.5rem 6vw;
  background-color: #2d2f55; }
  footer .footer {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 3rem; }
    footer .footer .logo {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      footer .footer .logo img {
        display: block;
        width: 100%;
        max-width: 176px; }
    footer .footer b {
      display: block;
      width: 100%;
      text-align: center;
      font: 400 1rem "Figtree", serif;
      color: #fff;
      white-space: pre-line; }
    footer .footer ul {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-flow: row wrap;
      gap: .775rem; }
      footer .footer ul li {
        width: auto; }
        footer .footer ul li a {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 3rem;
          width: 3rem;
          border-radius: 50%;
          border: 1px solid #fff; }
          footer .footer ul li a:hover {
            background-color: rgba(0, 0, 0, 0.25); }
          footer .footer ul li a img {
            display: block;
            width: 1.5rem; }
    footer .footer .footer_links {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-flow: row wrap;
      gap: 2rem; }
      @media (max-width: 480px) {
        footer .footer .footer_links {
          gap: 1rem; } }
      footer .footer .footer_links a {
        display: inline-block;
        text-transform: uppercase;
        font: 400 14px "Figtree", serif;
        color: #fff; }
        footer .footer .footer_links a:hover {
          color: #d1d3ec; }
    footer .footer p {
      text-align: center;
      font: 400 0.925rem/1.4 "Figtree", serif;
      color: #fff;
      padding: 0 10rem; }
      @media (max-width: 480px) {
        footer .footer p {
          padding: 0; } }
    footer .footer .poweredby {
      width: auto; }
      footer .footer .poweredby .poweredInner {
        width: auto; }
        footer .footer .poweredby .poweredInner a {
          padding: .375rem .625rem;
          background-color: rgba(0, 0, 0, 0.58);
          border-radius: .25rem;
          width: auto;
          display: inline-flex;
          align-items: center;
          gap: .625rem; }
          footer .footer .poweredby .poweredInner a span {
            display: block;
            flex-shrink: 0;
            width: 1.25rem; }
            footer .footer .poweredby .poweredInner a span img {
              display: block;
              width: 100%; }
          footer .footer .poweredby .poweredInner a b {
            display: inline-block;
            width: auto;
            font: 400 0.75rem "Figtree", serif;
            color: rgba(255, 255, 255, 0.7); }
          footer .footer .poweredby .poweredInner a:hover {
            background-color: #000000; }

.header_min_img {
  width: 100%;
  min-height: 360px; }
  .header_min_img img {
    display: block;
    width: 100%;
    min-height: 360px;
    object-fit: cover; }

.life_at_school_w {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 3rem; }
  .life_at_school_w h1 {
    text-align: center;
    font: 700 3rem "Figtree", serif;
    color: #2d2f55; }
    @media (max-width: 480px) {
      .life_at_school_w h1 {
        font-size: 2rem; } }
    .life_at_school_w h1 span {
      font: italic 500 4.875rem "EB Garamond", serif;
      color: #c68221; }
      @media (max-width: 480px) {
        .life_at_school_w h1 span {
          font-size: 2.875rem; } }
  .life_at_school_w .life_atSections {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 48px; }
    .life_at_school_w .life_atSections .life_atSecLeft {
      width: 100%;
      display: grid;
      align-items: center;
      grid-template-columns: auto 608px;
      gap: 40px; }
      @media (max-width: 1262px) {
        .life_at_school_w .life_atSections .life_atSecLeft {
          grid-template-columns: auto 460px; } }
      @media (max-width: 1024px) {
        .life_at_school_w .life_atSections .life_atSecLeft {
          grid-template-columns: 100%;
          gap: 24px; } }
      .life_at_school_w .life_atSections .life_atSecLeft .life_atText {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 24px; }
        .life_at_school_w .life_atSections .life_atSecLeft .life_atText h2 {
          text-align: left;
          font: 700 2rem "Figtree", serif;
          color: #313131; }
        .life_at_school_w .life_atSections .life_atSecLeft .life_atText .text {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 8px;
          max-height: 360px;
          overflow-y: auto; }
          @media (max-width: 768px) {
            .life_at_school_w .life_atSections .life_atSecLeft .life_atText .text {
              max-height: 100%; } }
          .life_at_school_w .life_atSections .life_atSecLeft .life_atText .text p {
            text-align: left;
            font: 400 1rem/1.4 "Figtree", serif;
            color: #50505d; }
      .life_at_school_w .life_atSections .life_atSecLeft .life_atSlider {
        width: 100%; }
        .life_at_school_w .life_atSections .life_atSecLeft .life_atSlider .sportsImg {
          width: 100%; }
          .life_at_school_w .life_atSections .life_atSecLeft .life_atSlider .sportsImg img {
            display: block;
            width: 100%; }
    .life_at_school_w .life_atSections .life_atRight {
      width: 100%;
      display: grid;
      align-items: center;
      grid-template-columns: 608px auto;
      gap: 40px; }
      @media (max-width: 834px) {
        .life_at_school_w .life_atSections .life_atRight {
          grid-template-columns: 460px auto; } }
      @media (max-width: 768px) {
        .life_at_school_w .life_atSections .life_atRight {
          display: flex;
          flex-flow: column-reverse;
          gap: 24px; } }
      .life_at_school_w .life_atSections .life_atRight .life_atText {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 24px; }
        .life_at_school_w .life_atSections .life_atRight .life_atText h2 {
          text-align: left;
          font: 700 2rem "Figtree", serif;
          color: #313131; }
        .life_at_school_w .life_atSections .life_atRight .life_atText .text {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 8px;
          max-height: 360px;
          overflow-y: auto; }
          @media (max-width: 768px) {
            .life_at_school_w .life_atSections .life_atRight .life_atText .text {
              max-height: 100%; } }
          .life_at_school_w .life_atSections .life_atRight .life_atText .text p {
            text-align: left;
            font: 400 1rem/1.4 "Figtree", serif;
            color: #50505d; }
      .life_at_school_w .life_atSections .life_atRight .life_atSlider {
        width: 100%; }
        .life_at_school_w .life_atSections .life_atRight .life_atSlider .sportsImg {
          width: 100%; }
          .life_at_school_w .life_atSections .life_atRight .life_atSlider .sportsImg img {
            display: block;
            width: 100%; }

.initiativesWrapper {
  width: 100%; }
  .initiativesWrapper .initiativeInner {
    width: 100%; }
    .initiativesWrapper .initiativeInner h1 {
      text-align: center;
      font: 700 3rem "Figtree", serif;
      color: #2d2f55; }
      @media (max-width: 480px) {
        .initiativesWrapper .initiativeInner h1 {
          font-size: 2rem; } }
      .initiativesWrapper .initiativeInner h1 span {
        font: italic 500 4.875rem "EB Garamond", serif;
        color: #c68221; }
        @media (max-width: 480px) {
          .initiativesWrapper .initiativeInner h1 span {
            font-size: 2.875rem; } }
    .initiativesWrapper .initiativeInner p {
      text-align: center;
      margin: 24px 0 0 0;
      font: 400 1rem "Figtree", serif; }
      .initiativesWrapper .initiativeInner p small {
        font-weight: 600;
        font-size: 1rem; }
    .initiativesWrapper .initiativeInner .sportsPhotos {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-gap: 24px;
      margin: 62px 20px 20px 20px; }
      @media (max-width: 768px) {
        .initiativesWrapper .initiativeInner .sportsPhotos {
          grid-template-columns: repeat(2, minmax(0, 1fr)); } }
      @media (max-width: 480px) {
        .initiativesWrapper .initiativeInner .sportsPhotos {
          grid-template-columns: repeat(1, minmax(0, 1fr)); } }
      .initiativesWrapper .initiativeInner .sportsPhotos .sportsimage {
        width: 100%; }
        .initiativesWrapper .initiativeInner .sportsPhotos .sportsimage img {
          display: block;
          width: 100%; }
    .initiativesWrapper .initiativeInner .initiativesContainer {
      width: 100%;
      display: flex;
      flex-flow: column;
      margin: 62px 0 0 0;
      gap: 48px; }
      .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft {
        width: 100%;
        display: grid;
        grid-gap: 48px;
        grid-template-columns: repeat(2, 1fr);
        align-items: center; }
        @media (max-width: 768px) {
          .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft:nth-child(even) {
            flex-flow: column-reverse; } }
        @media (max-width: 768px) {
          .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft {
            display: flex;
            flex-flow: column;
            gap: 24px; } }
        .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .text {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 32px; }
          .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .text h2 {
            text-align: left;
            font: 700 2rem "Figtree", serif;
            color: #2d2f55;
            line-height: 1; }
            @media (max-width: 768px) {
              .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .text h2 {
                font-size: 28px;
                line-height: 1; } }
            @media (max-width: 480px) {
              .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .text h2 {
                font-size: 24px;
                line-height: 1; } }
          .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .text ul {
            width: 100%;
            display: flex;
            flex-flow: column;
            gap: 8px; }
            .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .text ul li {
              width: 100%;
              text-align: left;
              font: 400 15px "Figtree", serif;
              color: #313131; }
        .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .photo {
          width: 100%; }
          .initiativesWrapper .initiativeInner .initiativesContainer .initiativeLeft .photo img {
            display: block;
            width: 100%; }

.allNewsWrapp {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 1.5rem; }
  .allNewsWrapp h1 {
    text-align: left;
    font: 700 3rem "Figtree", serif;
    color: #2d2f55; }
    @media (max-width: 768px) {
      .allNewsWrapp h1 {
        font-size: 2rem; } }
  .allNewsWrapp .allNewscon {
    width: 100%; }
    .allNewsWrapp .allNewscon table {
      width: 100%;
      border-collapse: collapse; }
      .allNewsWrapp .allNewscon table tbody {
        width: 100%;
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(3, 1fr); }
        @media (max-width: 834px) {
          .allNewsWrapp .allNewscon table tbody {
            grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 480px) {
          .allNewsWrapp .allNewscon table tbody {
            grid-template-columns: repeat(1, 1fr); } }
        .allNewsWrapp .allNewscon table tbody tr {
          display: block;
          width: 100%;
          height: 100%; }
          .allNewsWrapp .allNewscon table tbody tr td {
            display: block;
            width: 100%;
            height: 100%; }
            .allNewsWrapp .allNewscon table tbody tr td .news {
              width: 100%;
              height: 100%; }
              .allNewsWrapp .allNewscon table tbody tr td .news a {
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 8px;
                overflow: hidden;
                border: 1px solid #a0a0a0;
                padding: 0 0 16px 0; }
                .allNewsWrapp .allNewscon table tbody tr td .news a:hover {
                  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); }
                .allNewsWrapp .allNewscon table tbody tr td .news a .photo {
                  width: 100%; }
                  .allNewsWrapp .allNewscon table tbody tr td .news a .photo img {
                    display: block;
                    width: 100%;
                    aspect-ratio: 16 / 9; }
                .allNewsWrapp .allNewscon table tbody tr td .news a b {
                  display: block;
                  width: 100%;
                  text-align: left;
                  font: 500 1rem "Figtree", serif;
                  color: #313131;
                  padding: 16px 16px 8px 16px; }
                .allNewsWrapp .allNewscon table tbody tr td .news a span {
                  display: block;
                  width: 100%;
                  text-align: left;
                  font: 400 0.775rem/18px "Figtree", serif;
                  color: #53524E;
                  padding: 0 0 0 42px;
                  background: url(../icons/calendar.png) no-repeat left 16px center;
                  background-size: 16px;
                  box-sizing: border-box; }

.about_links {
  width: 100%;
  padding: 0 6vw;
  background-color: #2d2f55;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center; }
  @media (max-width: 1024px) {
    .about_links {
      padding: 0; } }
  @media (max-width: 480px) {
    .about_links {
      flex-flow: column;
      padding: 0; } }
  .about_links a {
    display: inline-block;
    width: auto;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    padding: 1.5rem 3rem;
    border-bottom: 3px solid #2d2f55; }
    @media (max-width: 1262px) {
      .about_links a {
        flex: 1;
        text-align: center;
        padding: 1.5rem 0; } }
    @media (max-width: 768px) {
      .about_links a {
        flex: unset;
        width: 50%;
        text-align: center;
        padding: 1.5rem; } }
    @media (max-width: 480px) {
      .about_links a {
        display: block;
        width: 100%;
        text-align: center; } }
    .about_links a:hover {
      background-color: rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.5); }
    .about_links a.active {
      background-color: rgba(0, 0, 0, 0.25);
      border-color: #278035; }

.about_us_wrapper {
  width: 100%;
  padding: 4.5rem 6vw;
  display: flex;
  flex-flow: column;
  gap: 3rem; }
  .about_us_wrapper .heading {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 1.5rem; }
    .about_us_wrapper .heading h1 {
      text-align: left;
      color: #2d2f55; }
    .about_us_wrapper .heading b {
      display: block;
      width: 100%;
      text-align: left;
      font-size: 1.05rem;
      font-weight: 500;
      line-height: 1.4; }
  .about_us_wrapper ul {
    width: 100%;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center; }
    @media (max-width: 768px) {
      .about_us_wrapper ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1.5rem; } }
    .about_us_wrapper ul li {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      @media (max-width: 768px) {
        .about_us_wrapper ul li {
          gap: 1.5rem; } }
      .about_us_wrapper ul li .photo {
        width: 100%; }
        .about_us_wrapper ul li .photo img {
          display: block;
          width: 100%; }
      .about_us_wrapper ul li p {
        text-align: left;
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.4; }

.v_m_m_wrapper {
  width: 100%;
  padding: 4.5rem 6vw;
  display: flex;
  flex-flow: column;
  gap: 3rem; }
  .v_m_m_wrapper .heading {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 1.5rem; }
    .v_m_m_wrapper .heading h1 {
      text-align: left;
      color: #2d2f55; }
    .v_m_m_wrapper .heading b {
      display: block;
      width: 100%;
      text-align: left;
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.4; }
  .v_m_m_wrapper ul {
    width: 100%;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
    @media (max-width: 834px) {
      .v_m_m_wrapper ul {
        grid-template-columns: repeat(1, minmax(0, 1fr)); } }
    .v_m_m_wrapper ul li {
      width: 100%;
      padding: 2rem;
      background-color: #F5F3ED;
      display: flex;
      flex-flow: column;
      gap: 1.5rem;
      height: 100%; }
      .v_m_m_wrapper ul li:last-child {
        background-color: #F8F0FF; }
      .v_m_m_wrapper ul li b {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 2rem;
        font-weight: 600;
        color: #313131; }
      .v_m_m_wrapper ul li .text {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 1rem; }
        .v_m_m_wrapper ul li .text p {
          text-align: left;
          line-height: 1.4;
          font-size: 1.125rem; }

.visionary_wrapper {
  width: 100%;
  display: flex;
  flex-flow: column; }
  .visionary_wrapper .chairperson_cc {
    width: 100%;
    padding: 4.5rem 6vw;
    display: flex;
    gap: 4.5rem;
    align-items: center; }
    .visionary_wrapper .chairperson_cc.trustee {
      background-color: #F8F0FF; }
      .visionary_wrapper .chairperson_cc.trustee .cc_txt h1 {
        color: #2d2f55; }
    .visionary_wrapper .chairperson_cc.principal {
      background-color: #F5F3ED; }
      .visionary_wrapper .chairperson_cc.principal .cc_txt h1 {
        color: #7A776B; }
    @media (max-width: 1262px) {
      .visionary_wrapper .chairperson_cc {
        padding: 3rem 6vw;
        align-items: flex-start; } }
    @media (max-width: 768px) {
      .visionary_wrapper .chairperson_cc {
        flex-flow: column; } }
    .visionary_wrapper .chairperson_cc .cc_photo {
      width: 100%; }
      .visionary_wrapper .chairperson_cc .cc_photo img {
        display: block;
        width: 100%; }
    .visionary_wrapper .chairperson_cc .cc_txt {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      .visionary_wrapper .chairperson_cc .cc_txt h1 {
        width: 100%;
        flex-shrink: 0;
        color: #818181;
        text-align: left;
        font-size: 3.5rem;
        line-height: 1; }
        @media (max-width: 1262px) {
          .visionary_wrapper .chairperson_cc .cc_txt h1 {
            font-size: 3rem; } }
        @media (max-width: 768px) {
          .visionary_wrapper .chairperson_cc .cc_txt h1 {
            font-size: 2.5rem; } }
      .visionary_wrapper .chairperson_cc .cc_txt p {
        text-align: left;
        font-size: 1.25rem;
        line-height: 1.4;
        font-weight: 500; }
      .visionary_wrapper .chairperson_cc .cc_txt .by {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem; }
        .visionary_wrapper .chairperson_cc .cc_txt .by .photo {
          width: 4.5rem;
          aspect-ratio: 1 / 1;
          flex-shrink: 0;
          overflow: hidden;
          border-radius: 50%; }
          .visionary_wrapper .chairperson_cc .cc_txt .by .photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .visionary_wrapper .chairperson_cc .cc_txt .by .text {
          display: flex;
          flex-flow: column;
          gap: .25rem;
          width: 100%; }
          .visionary_wrapper .chairperson_cc .cc_txt .by .text b {
            display: block;
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-size: 1.5rem;
            color: #313131; }
          .visionary_wrapper .chairperson_cc .cc_txt .by .text small {
            display: block;
            width: 100%;
            text-align: left;
            font-size: 1rem; }
  .visionary_wrapper ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
    @media (max-width: 834px) {
      .visionary_wrapper ul {
        grid-template-columns: repeat(1, minmax(0, 1fr)); } }
    .visionary_wrapper ul li {
      width: 100%;
      padding: 3rem 6vw;
      background-color: #F8F0FF;
      display: flex;
      flex-flow: column;
      gap: 1.5rem;
      height: 100%; }
      .visionary_wrapper ul li:last-child {
        background-color: #F5F3ED; }
        .visionary_wrapper ul li:last-child b {
          color: #7A776B; }
      .visionary_wrapper ul li b {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 2rem;
        font-weight: 600;
        color: #2d2f55; }
      .visionary_wrapper ul li p {
        text-align: left;
        line-height: 1.4;
        font-size: 1.125rem; }
      .visionary_wrapper ul li .by {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem; }
        .visionary_wrapper ul li .by .photo {
          width: 4.5rem;
          aspect-ratio: 1 / 1;
          flex-shrink: 0;
          overflow: hidden;
          border-radius: 50%; }
          .visionary_wrapper ul li .by .photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .visionary_wrapper ul li .by .text {
          display: flex;
          flex-flow: column;
          gap: .25rem;
          width: 100%; }
          .visionary_wrapper ul li .by .text b {
            display: block;
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-size: 1.5rem;
            color: #313131; }
          .visionary_wrapper ul li .by .text small {
            display: block;
            width: 100%;
            text-align: left;
            font-size: 1rem; }

.affiliation_wrapper {
  width: 100%;
  padding: 4.5rem 6vw;
  display: flex;
  flex-flow: column;
  gap: 3rem; }
  .affiliation_wrapper .heading {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 1.5rem; }
    .affiliation_wrapper .heading h1 {
      text-align: left;
      color: #2d2f55; }
    .affiliation_wrapper .heading b {
      display: block;
      width: 100%;
      text-align: left;
      font-size: 1.05rem;
      font-weight: 500;
      line-height: 1.4; }
  .affiliation_wrapper ul {
    width: 100%;
    display: grid;
    gap: 8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start; }
    @media (max-width: 834px) {
      .affiliation_wrapper ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1.5rem; } }
    .affiliation_wrapper ul li {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem; }
      @media (max-width: 768px) {
        .affiliation_wrapper ul li {
          gap: 1.5rem; } }
      .affiliation_wrapper ul li .photo {
        width: 100%; }
        .affiliation_wrapper ul li .photo img {
          display: block;
          width: 100%; }
      .affiliation_wrapper ul li h1 {
        text-align: left;
        color: #2d2f55; }
      .affiliation_wrapper ul li b {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.4; }

.aboutWrapp {
  width: 100%;
  background: #F5F3ED; }
  @media (max-width: 1262px) {
    .aboutWrapp {
      padding: 2rem 4vw 4.5rem 4vw; } }
  .aboutWrapp .aboutus {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 1.5rem; }
    .aboutWrapp .aboutus h1 {
      text-align: left;
      font: 600 2rem "Figtree", serif;
      color: #2d2f55; }
    .aboutWrapp .aboutus h2 {
      text-align: left;
      font: 500 32px "Figtree", serif;
      color: #313131; }
    .aboutWrapp .aboutus .photo {
      width: 100%;
      margin: 0 0 40px 0;
      display: flex;
      align-items: center;
      justify-content: center; }
      .aboutWrapp .aboutus .photo img {
        display: block;
        width: 100%;
        max-width: 560px; }
    .aboutWrapp .aboutus p {
      text-align: left;
      font: 400 15px/1.4 "Figtree", serif;
      color: #505055;
      margin: 24px 0 0 0; }
    .aboutWrapp .aboutus .share {
      height: auto;
      width: 100%;
      margin-top: 60px; }
      .aboutWrapp .aboutus .share h4 {
        text-align: left;
        font: 600 14px "Figtree", serif;
        color: #515778;
        text-transform: uppercase; }
      .aboutWrapp .aboutus .share .share_infra {
        height: auto;
        width: 100%;
        margin-top: 15px;
        display: flex;
        flex-flow: row nowrap;
        align-items: center; }
        .aboutWrapp .aboutus .share .share_infra a {
          height: 30px;
          width: 30px;
          display: block;
          margin-right: 2px;
          border-radius: 2px;
          background: url(../icons/share_links.png) no-repeat #ddd;
          font-size: 0px; }
          .aboutWrapp .aboutus .share .share_infra a.face {
            background-position: 0 0; }
          .aboutWrapp .aboutus .share .share_infra a.twi {
            background-position: -32px 0; }
          .aboutWrapp .aboutus .share .share_infra a.in {
            background-position: -64px 0; }
          .aboutWrapp .aboutus .share .share_infra a.wapp {
            background-position: -96px 0; }

.contact_us {
  width: 100%;
  background: #F5F3ED; }
  .contact_us .contact_us_inner {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 24px; }
    .contact_us .contact_us_inner .heading {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 48px; }
      @media (max-width: 768px) {
        .contact_us .contact_us_inner .heading {
          flex-flow: column; } }
      .contact_us .contact_us_inner .heading .heading_left {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 24px; }
        .contact_us .contact_us_inner .heading .heading_left b {
          display: block;
          width: 100%;
          text-align: left;
          font: 600 16px "Figtree", serif;
          color: #313131;
          text-transform: uppercase; }
        .contact_us .contact_us_inner .heading .heading_left h1 {
          text-align: left;
          font: 600 48px/1.2 "Figtree", serif;
          color: #313131;
          white-space: pre-line; }
          @media (max-width: 768px) {
            .contact_us .contact_us_inner .heading .heading_left h1 {
              font-size: 2rem; } }
      .contact_us .contact_us_inner .heading .heading_right {
        width: 100%;
        max-width: 354px; }
        .contact_us .contact_us_inner .heading .heading_right img {
          display: block;
          width: 100%; }
    .contact_us .contact_us_inner .map {
      width: 100%; }
      .contact_us .contact_us_inner .map a {
        display: block;
        width: 100%; }
        .contact_us .contact_us_inner .map a img {
          display: block;
          width: 100%;
          border-radius: 16px; }
    .contact_us .contact_us_inner .contactInfo {
      width: 100%; }
      .contact_us .contact_us_inner .contactInfo ul {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
        align-items: flex-start; }
        @media (max-width: 1024px) {
          .contact_us .contact_us_inner .contactInfo ul {
            grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 768px) {
          .contact_us .contact_us_inner .contactInfo ul {
            grid-template-columns: repeat(1, minmax(0, 1fr)); } }
        .contact_us .contact_us_inner .contactInfo ul li {
          display: flex;
          flex-flow: column;
          align-items: center;
          width: 100%;
          height: 100%;
          padding: 48px;
          background-color: #fff;
          border-radius: 16px; }
          .contact_us .contact_us_inner .contactInfo ul li.add {
            background-color: #2d2f55; }
            .contact_us .contact_us_inner .contactInfo ul li.add span {
              background-color: #073f5d; }
          .contact_us .contact_us_inner .contactInfo ul li.call {
            background-color: #2d2f55; }
            .contact_us .contact_us_inner .contactInfo ul li.call span {
              background-color: #733B93; }
          .contact_us .contact_us_inner .contactInfo ul li.whatsapp {
            background-color: #2d2f55; }
            .contact_us .contact_us_inner .contactInfo ul li.whatsapp span {
              background-color: #BE5276; }
          .contact_us .contact_us_inner .contactInfo ul li.email {
            background-color: #2d2f55; }
            .contact_us .contact_us_inner .contactInfo ul li.email span {
              background-color: #BE5276; }
          .contact_us .contact_us_inner .contactInfo ul li span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 6rem;
            background-color: #000;
            aspect-ratio: 1 / 1;
            margin: 0 0 2rem 0;
            border-radius: 4px 32px 4px 32px; }
            .contact_us .contact_us_inner .contactInfo ul li span img {
              display: block;
              width: 100%;
              max-width: 32px; }
          .contact_us .contact_us_inner .contactInfo ul li b {
            display: block;
            width: 100%;
            text-align: center;
            font: 600 16px "Figtree", serif;
            color: #fff;
            text-transform: uppercase;
            margin: 0 0 8px 0; }
          .contact_us .contact_us_inner .contactInfo ul li p {
            text-align: center;
            font: 500 15px/1.2 "Figtree", serif;
            color: #fff; }

.contentWrapp {
  width: 100%; }
  .contentWrapp .content {
    width: 100%; }
    .contentWrapp .content h1 {
      text-align: left;
      font: 700 3rem "Figtree", serif;
      color: #2d2f55; }
    .contentWrapp .content .photo {
      width: 100%;
      margin: 24px 0 0 0;
      align-items: center;
      text-align: center; }
      .contentWrapp .content .photo img {
        width: 40%; }
    .contentWrapp .content p {
      text-align: left;
      margin: 24px 0 0 0; }
      .contentWrapp .content p span {
        width: auto; }
    .contentWrapp .content .contentTable {
      width: 100%;
      margin: 24px 0 0 0;
      overflow-x: auto; }
      .contentWrapp .content .contentTable table {
        width: 100%;
        border-collapse: collapse; }
        .contentWrapp .content .contentTable table th {
          text-align: center;
          font: 500 13px "Figtree", serif;
          color: #000;
          border: 1px solid #d0d0d0;
          padding: 8px 6px;
          background-color: #f2f2f2; }
        .contentWrapp .content .contentTable table td {
          text-align: center;
          font: 400 13px "Figtree", serif;
          color: #505050;
          border: 1px solid #d0d0d0;
          padding: 8px 6px;
          background-color: #fff; }

.docWrapp {
  width: 100%; }
  .docWrapp .docCon {
    width: 100%; }
    .docWrapp .docCon h1 {
      text-align: left;
      font: 700 3rem "Figtree", serif;
      color: #2d2f55; }
    .docWrapp .docCon table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0 32px 0; }
      .docWrapp .docCon table tbody {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 36px; }
        .docWrapp .docCon table tbody tr {
          display: block;
          width: 100%; }
          .docWrapp .docCon table tbody tr td {
            display: block;
            width: 100%; }
            .docWrapp .docCon table tbody tr td h3 {
              text-align: left;
              font: 600 24px "Figtree", serif;
              color: #2d2f55; }
            .docWrapp .docCon table tbody tr td table {
              width: 100%;
              border-collapse: collapse;
              margin: 16px 0 0 0; }
              .docWrapp .docCon table tbody tr td table tbody {
                width: 100%;
                display: grid;
                grid-gap: 24px;
                grid-template-columns: repeat(4, 1fr); }
                @media (max-width: 834px) {
                  .docWrapp .docCon table tbody tr td table tbody {
                    grid-template-columns: repeat(3, 1fr); } }
                @media (max-width: 768px) {
                  .docWrapp .docCon table tbody tr td table tbody {
                    grid-template-columns: repeat(2, 1fr); } }
                @media (max-width: 480px) {
                  .docWrapp .docCon table tbody tr td table tbody {
                    grid-template-columns: repeat(1, 1fr); } }
                .docWrapp .docCon table tbody tr td table tbody tr {
                  display: block;
                  width: 100%; }
                  .docWrapp .docCon table tbody tr td table tbody tr td {
                    display: block;
                    width: 100%; }
                    .docWrapp .docCon table tbody tr td table tbody tr td .doc {
                      width: 100%; }
                      .docWrapp .docCon table tbody tr td table tbody tr td .doc a {
                        display: block;
                        width: 100%;
                        border: 1px solid #e0e0e0; }
                        .docWrapp .docCon table tbody tr td table tbody tr td .doc a:hover {
                          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); }
                        .docWrapp .docCon table tbody tr td table tbody tr td .doc a span {
                          height: 148px;
                          width: 100%;
                          display: flex;
                          align-items: center;
                          justify-content: center;
                          border-bottom: 1px solid #e0e0e0; }
                          .docWrapp .docCon table tbody tr td table tbody tr td .doc a span.pdf {
                            background-color: #FFF7E4; }
                          .docWrapp .docCon table tbody tr td table tbody tr td .doc a span.excel {
                            background-color: #D6FFE3; }
                          .docWrapp .docCon table tbody tr td table tbody tr td .doc a span.xls {
                            background-color: #E9F0FF; }
                          .docWrapp .docCon table tbody tr td table tbody tr td .doc a span.ppt {
                            background-color: #FADFFF; }
                          .docWrapp .docCon table tbody tr td table tbody tr td .doc a span img {
                            display: block;
                            width: 100%;
                            max-width: 62px; }
                        .docWrapp .docCon table tbody tr td table tbody tr td .doc a b {
                          display: block;
                          text-align: left;
                          font: 500 14px "Figtree", serif;
                          color: #000;
                          padding: 16px 20px;
                          box-sizing: border-box; }

.tabsWrapper {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 3rem;
  background-color: #eff0f9; }
  .tabsWrapper .tabs_links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 1rem;
    padding: 0 6vw; }
    .tabsWrapper .tabs_links .tab_link {
      display: inline-block;
      width: auto;
      appearance: none;
      background-color: #d1d3ec;
      font: 400 1rem "Figtree", serif;
      color: #2d2f55;
      border-radius: 5px;
      padding: .5rem 1.125rem;
      border: none;
      cursor: pointer;
      height: 2.75rem; }
      .tabsWrapper .tabs_links .tab_link:hover {
        background: #2d2f55;
        color: #fff; }
      .tabsWrapper .tabs_links .tab_link.active-tab {
        background-color: #2d2f55;
        color: #fff; }
  .tabsWrapper .tab_content {
    width: 100%;
    padding: 4.5rem 6vw;
    background-color: #eff0f9; }
    .tabsWrapper .tab_content .missionCon {
      width: 100%;
      display: grid;
      gap: 3rem;
      grid-template-columns: 34% auto; }
      @media (max-width: 1024px) {
        .tabsWrapper .tab_content .missionCon {
          grid-template-columns: repeat(1, 1fr); } }
      .tabsWrapper .tab_content .missionCon .missionText {
        width: 100%;
        padding: 2rem;
        border-radius: 2rem;
        background-color: #2d2f55;
        display: flex;
        flex-flow: column;
        gap: 1.25rem; }
        .tabsWrapper .tab_content .missionCon .missionText h2 {
          text-align: left;
          font: 700 2.5rem "Figtree", serif;
          color: #fff; }
        .tabsWrapper .tab_content .missionCon .missionText p {
          text-align: left;
          font: 400 1rem "Figtree", serif;
          color: #ffffffaa; }
          .tabsWrapper .tab_content .missionCon .missionText p span {
            display: inline-block;
            width: auto;
            font-weight: 600;
            color: #fff; }
      .tabsWrapper .tab_content .missionCon .missionPhotos {
        width: 100%;
        padding: 1.5rem;
        background-color: #2d2f55;
        border-radius: 2rem; }
        .tabsWrapper .tab_content .missionCon .missionPhotos ul {
          width: 100%;
          display: grid;
          gap: 1.5rem;
          grid-template-columns: repeat(2, minmax(0, 1fr)); }
          @media (max-width: 480px) {
            .tabsWrapper .tab_content .missionCon .missionPhotos ul {
              grid-template-columns: repeat(1, 1fr); } }
          .tabsWrapper .tab_content .missionCon .missionPhotos ul li {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 1.5rem;
            overflow: hidden;
            background-color: #fff; }
            .tabsWrapper .tab_content .missionCon .missionPhotos ul li img {
              display: block;
              width: 100%;
              height: 100%;
              object-fit: cover; }
    .tabsWrapper .tab_content .visionCon {
      width: 100%;
      display: grid;
      gap: 3rem;
      grid-template-columns: 34% auto; }
      @media (max-width: 1024px) {
        .tabsWrapper .tab_content .visionCon {
          grid-template-columns: repeat(1, 1fr); } }
      .tabsWrapper .tab_content .visionCon .visionText {
        width: 100%;
        padding: 2rem;
        border-radius: 2rem;
        background-color: #2d2f55;
        display: flex;
        flex-flow: column;
        gap: 1.25rem; }
        .tabsWrapper .tab_content .visionCon .visionText h2 {
          text-align: left;
          font: 700 2.5rem "Figtree", serif;
          color: #fff; }
        .tabsWrapper .tab_content .visionCon .visionText p {
          text-align: left;
          font: 400 1rem "Figtree", serif;
          color: #ffffffaa; }
          .tabsWrapper .tab_content .visionCon .visionText p span {
            display: inline-block;
            width: auto;
            font-weight: 600;
            color: #fff; }
      .tabsWrapper .tab_content .visionCon .mottoPhotos {
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #fff;
        border-radius: 2rem;
        overflow: hidden; }
        .tabsWrapper .tab_content .visionCon .mottoPhotos img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .tabsWrapper .tab_content .valuesCon {
      width: 100%;
      display: grid;
      gap: 3rem;
      grid-template-columns: 34% auto; }
      @media (max-width: 1024px) {
        .tabsWrapper .tab_content .valuesCon {
          grid-template-columns: repeat(1, 1fr); } }
      .tabsWrapper .tab_content .valuesCon .valuesText {
        width: 100%;
        padding: 2rem;
        border-radius: 2rem;
        background-color: #2d2f55;
        display: flex;
        flex-flow: column;
        gap: 1.25rem; }
        .tabsWrapper .tab_content .valuesCon .valuesText h2 {
          text-align: left;
          font: 700 2.5rem "Figtree", serif;
          color: #fff; }
        .tabsWrapper .tab_content .valuesCon .valuesText p {
          text-align: left;
          font: 400 1rem "Figtree", serif;
          color: #ffffffaa; }
          .tabsWrapper .tab_content .valuesCon .valuesText p span {
            display: inline-block;
            width: auto;
            font-weight: 600;
            color: #fff; }
      .tabsWrapper .tab_content .valuesCon .valuesPhotos {
        width: 100%;
        padding: 1.5rem;
        background-color: #2d2f55;
        border-radius: 2rem; }
        .tabsWrapper .tab_content .valuesCon .valuesPhotos ul {
          width: 100%;
          display: grid;
          gap: 1.5rem;
          grid-template-columns: repeat(2, minmax(0, 1fr)); }
          @media (max-width: 480px) {
            .tabsWrapper .tab_content .valuesCon .valuesPhotos ul {
              grid-template-columns: repeat(1, 1fr); } }
          .tabsWrapper .tab_content .valuesCon .valuesPhotos ul li {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 1.5rem;
            overflow: hidden;
            background-color: #fff;
            position: relative; }
            .tabsWrapper .tab_content .valuesCon .valuesPhotos ul li img {
              display: block;
              width: 100%;
              height: 100%;
              object-fit: cover; }
            .tabsWrapper .tab_content .valuesCon .valuesPhotos ul li span {
              display: inline-block;
              width: auto;
              padding: .35rem .875rem .5rem .875rem;
              background-color: #c68221;
              color: #fff;
              font: 500 0.925rem "Figtree", serif;
              border-radius: .875rem;
              position: absolute;
              left: 1rem;
              bottom: 1rem; }
    .tabsWrapper .tab_content .mottoCon {
      width: 100%;
      display: grid;
      gap: 3rem;
      grid-template-columns: 34% auto; }
      @media (max-width: 1024px) {
        .tabsWrapper .tab_content .mottoCon {
          grid-template-columns: repeat(1, 1fr); } }
      .tabsWrapper .tab_content .mottoCon .mottoText {
        width: 100%;
        padding: 2rem;
        border-radius: 2rem;
        background-color: #2d2f55;
        display: flex;
        flex-flow: column;
        gap: 1.25rem; }
        .tabsWrapper .tab_content .mottoCon .mottoText h2 {
          text-align: left;
          font: 700 2.5rem "Figtree", serif;
          color: #fff; }
        .tabsWrapper .tab_content .mottoCon .mottoText p {
          text-align: left;
          font: 400 1rem "Figtree", serif;
          color: #ffffffaa; }
          .tabsWrapper .tab_content .mottoCon .mottoText p span {
            display: inline-block;
            width: auto;
            font-weight: 600;
            color: #fff; }
      .tabsWrapper .tab_content .mottoCon .mottoPhotos {
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #fff;
        border-radius: 2rem;
        overflow: hidden; }
        .tabsWrapper .tab_content .mottoCon .mottoPhotos img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover; }

.photoGalleryWrapp {
  width: 100%; }
  .photoGalleryWrapp .photogalleryCon {
    width: 100%; }
    .photoGalleryWrapp .photogalleryCon h1 {
      text-align: left;
      font: 700 3rem "Figtree", serif;
      color: #2d2f55; }
    .photoGalleryWrapp .photogalleryCon .photo_gallery_inner {
      width: 100%;
      margin: 32px auto;
      display: grid;
      grid-gap: 16px;
      grid-template-columns: repeat(4, 1fr);
      box-sizing: border-box; }
      @media (max-width: 834px) {
        .photoGalleryWrapp .photogalleryCon .photo_gallery_inner {
          grid-template-columns: repeat(3, 1fr); } }
      @media (max-width: 768px) {
        .photoGalleryWrapp .photogalleryCon .photo_gallery_inner {
          grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 480px) {
        .photoGalleryWrapp .photogalleryCon .photo_gallery_inner {
          grid-template-columns: repeat(1, 1fr); } }
      .photoGalleryWrapp .photogalleryCon .photo_gallery_inner .photo_gallery_box {
        width: 100%;
        height: auto;
        aspect-ratio: 4 /3; }
        .photoGalleryWrapp .photogalleryCon .photo_gallery_inner .photo_gallery_box .photo_gallery_link {
          height: 100%;
          width: 100%;
          position: relative;
          overflow: hidden; }
          .photoGalleryWrapp .photogalleryCon .photo_gallery_inner .photo_gallery_box .photo_gallery_link span {
            width: 100%;
            display: block;
            text-align: left;
            font: 500 15px "Figtree", serif;
            color: #fff;
            background: black;
            background: linear-gradient(180deg, transparent 0%, black 100%);
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 62px 16px 16px 16px;
            box-sizing: border-box; }
          .photoGalleryWrapp .photogalleryCon .photo_gallery_inner .photo_gallery_box .photo_gallery_link a {
            display: block;
            width: 100%;
            height: 100%;
            overflow: hidden; }
            .photoGalleryWrapp .photogalleryCon .photo_gallery_inner .photo_gallery_box .photo_gallery_link a img {
              display: block;
              width: 100%;
              height: 100%;
              object-fit: contain; }

.messages_wrapper001 {
  width: 100%;
  gap: 3rem;
  /*background-color: $blue;*/ }
  .messages_wrapper001 .msg1 {
    display: grid;
    gap: 3rem;
    grid-template-columns: 388px auto;
    align-items: center;
    position: relative;
    z-index: 1; }
    @media (max-width: 834px) {
      .messages_wrapper001 .msg1 {
        grid-template-columns: repeat(1, 1fr); } }
    .messages_wrapper001 .msg1 .photo {
      width: 100%;
      padding: 8px;
      box-sizing: border-box;
      background-color: #fff; }
      .messages_wrapper001 .msg1 .photo img {
        display: block;
        width: 100%; }
    .messages_wrapper001 .msg1 .text {
      display: flex;
      width: 100%;
      height: auto;
      flex-flow: column;
      gap: 1.5rem; }
      .messages_wrapper001 .msg1 .text h1 {
        text-align: left;
        color: #602742;
        font: 700 3rem "Figtree", serif; }
      .messages_wrapper001 .msg1 .text p {
        font: 400 1rem "Figtree", serif;
        text-align: left;
        color: #101010; }
      .messages_wrapper001 .msg1 .text .by {
        display: flex;
        width: 100%;
        flex-flow: column;
        gap: 4px;
        padding: 0 0 0 1rem;
        border-left: 4px solid #c68221;
        margin: 1.5rem 0 0 0; }
        .messages_wrapper001 .msg1 .text .by b {
          font: 600 1.5rem "Figtree", serif;
          display: block;
          width: 100%;
          text-align: left;
          color: #602742; }
        .messages_wrapper001 .msg1 .text .by small {
          font: 500 1rem "Figtree", serif;
          display: block;
          width: 100%;
          text-align: left;
          color: #000; }

.schoolAppWrapper {
  width: 100%;
  background-color: #FFFDFC; }
  .schoolAppWrapper .schoolAppwrapp {
    width: 100%;
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin: 0 auto;
    padding: 72px 0 0 24px; }
    @media (max-width: 480px) {
      .schoolAppWrapper .schoolAppwrapp {
        padding: 24px 0 0 24px;
        grid-template-columns: repeat(1, 1fr); } }
    .schoolAppWrapper .schoolAppwrapp .appText {
      width: auto;
      display: inline-flex;
      flex-flow: column;
      align-items: center;
      gap: 40px;
      padding: 0 0 62px 0; }
      @media (max-width: 480px) {
        .schoolAppWrapper .schoolAppwrapp .appText {
          padding: 0 24px 62px 0; } }
      .schoolAppWrapper .schoolAppwrapp .appText .introd {
        width: auto;
        display: inline-flex;
        flex-flow: column;
        align-items: center; }
        .schoolAppWrapper .schoolAppwrapp .appText .introd h1 {
          text-align: center;
          font: 400 78px "dk_au_revoirregular", serif;
          color: #000; }
        .schoolAppWrapper .schoolAppwrapp .appText .introd b {
          display: inline-block;
          width: auto;
          text-align: center;
          font: 700 24px "Rubik", sans-serif;
          color: #000; }
      .schoolAppWrapper .schoolAppwrapp .appText .unified_edu_001 {
        width: auto;
        display: inline-flex;
        flex-flow: column;
        gap: 16px; }
        .schoolAppWrapper .schoolAppwrapp .appText .unified_edu_001 b {
          display: inline-block;
          width: auto;
          text-align: center;
          font: 700 40px "Rubik", sans-serif;
          color: #EA4F23; }
        .schoolAppWrapper .schoolAppwrapp .appText .unified_edu_001 .edusecurelogo {
          width: auto;
          display: inline-flex;
          align-items: center;
          justify-content: center; }
          .schoolAppWrapper .schoolAppwrapp .appText .unified_edu_001 .edusecurelogo img {
            display: block;
            width: 100%;
            max-width: 248px; }
      .schoolAppWrapper .schoolAppwrapp .appText .code {
        width: auto;
        display: inline-block;
        font: 600 16px "Rubik", sans-serif;
        color: #fff;
        background-color: #EA4F23;
        padding: 12px 32px;
        border-radius: 4px 24px 4px 24px; }
      .schoolAppWrapper .schoolAppwrapp .appText .appStore {
        width: auto;
        display: inline-flex;
        align-items: center;
        gap: 24px; }
        @media (max-width: 480px) {
          .schoolAppWrapper .schoolAppwrapp .appText .appStore {
            gap: 16px; } }
        .schoolAppWrapper .schoolAppwrapp .appText .appStore a {
          display: inline-block;
          width: auto; }
          .schoolAppWrapper .schoolAppwrapp .appText .appStore a img {
            display: block;
            width: 100%;
            max-width: 200px; }
    .schoolAppWrapper .schoolAppwrapp .appPhoto {
      width: 100%;
      background: url(../icons/mobilebg.svg) no-repeat right bottom;
      background-size: 100%; }
      .schoolAppWrapper .schoolAppwrapp .appPhoto img {
        display: block;
        width: 100%; }

.appfeatures {
  width: 100%;
  padding: 62px 0;
  background-color: #EA4F23; }
  .appfeatures .appfeaturesInner {
    width: 100%;
    max-width: 1246;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 48px; }
    .appfeatures .appfeaturesInner h1 {
      text-align: center;
      font: 700 40px "Rubik", sans-serif;
      color: #fff;
      padding: 0 148px; }
      @media (max-width: 768px) {
        .appfeatures .appfeaturesInner h1 {
          padding: 0 48px; } }
      @media (max-width: 480px) {
        .appfeatures .appfeaturesInner h1 {
          padding: 0; } }
    .appfeatures .appfeaturesInner .featuresCon {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      align-items: flex-start;
      grid-gap: 20px; }
      @media (max-width: 768px) {
        .appfeatures .appfeaturesInner .featuresCon {
          grid-template-columns: repeat(3, minmax(0, 1fr)); } }
      @media (max-width: 480px) {
        .appfeatures .appfeaturesInner .featuresCon {
          grid-template-columns: repeat(2, minmax(0, 1fr)); } }
      .appfeatures .appfeaturesInner .featuresCon .featureCC {
        width: 100%;
        height: 100%;
        min-height: 204px;
        display: flex;
        flex-flow: column;
        gap: 32px;
        padding: 48px 24px 24px 24px;
        background-color: #fff;
        border-radius: 16px; }
        .appfeatures .appfeaturesInner .featuresCon .featureCC span {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%; }
          .appfeatures .appfeaturesInner .featuresCon .featureCC span img {
            display: block;
            width: 100%;
            max-width: 48px; }
            @media (max-width: 480px) {
              .appfeatures .appfeaturesInner .featuresCon .featureCC span img {
                max-width: 36px; } }
        .appfeatures .appfeaturesInner .featuresCon .featureCC b {
          display: block;
          width: 100%;
          text-align: center;
          font: 400 15px "Rubik", sans-serif;
          color: #202020; }
          @media (max-width: 480px) {
            .appfeatures .appfeaturesInner .featuresCon .featureCC b {
              font-size: 14px; } }

.unified {
  width: 206px;
  position: fixed;
  bottom: 112px;
  right: 24px;
  z-index: 999; }
  @media (max-width: 480px) {
    .unified {
      right: 78px;
      bottom: 48px; } }
  .unified a {
    display: block;
    width: 100%; }
    .unified a:hover img {
      transform: scale(1.1);
      transition: .2s ease; }
    .unified a img {
      display: block;
      width: 100%;
      transition: .2s ease; }

.approach {
  width: 100%;
  padding: 72px 0;
  background-color: #d1d3ec;
  overflow-x: hidden; }
  @media (max-width: 768px) {
    .approach {
      padding: 56px 0; } }
  @media (max-width: 480px) {
    .approach {
      padding: 48px 0; } }
  .approach .approach_inner {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto; }
    .approach .approach_inner ul {
      width: 100%;
      display: grid;
      gap: 32px;
      align-items: center;
      grid-template-columns: repeat(2, minmax(0, 1fr)); }
      @media (max-width: 768px) {
        .approach .approach_inner ul {
          grid-template-columns: repeat(1, minmax(0, 1fr)); } }
      .approach .approach_inner ul li {
        width: 100%;
        display: grid;
        gap: 12px;
        align-items: center;
        grid-template-columns: repeat(2, minmax(0, 1fr)); }
        @media (max-width: 480px) {
          .approach .approach_inner ul li {
            grid-template-columns: repeat(1, minmax(0, 1fr)); } }
        .approach .approach_inner ul li:first-child {
          display: block; }
        .approach .approach_inner ul li:nth-child(2) .approch_text {
          background-color: #41A914; }
          .approach .approach_inner ul li:nth-child(2) .approch_text::after {
            border-left-color: #41A914; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(2) .approch_text::after {
                border-left-color: transparent;
                border-bottom-color: #41A914; } }
          .approach .approach_inner ul li:nth-child(2) .approch_text.left::after {
            border-right-color: #41A914; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(2) .approch_text.left::after {
                border-right-color: transparent;
                border-bottom-color: #41A914; } }
        .approach .approach_inner ul li:nth-child(3) .approch_text {
          background-color: #BE28A3; }
          .approach .approach_inner ul li:nth-child(3) .approch_text::after {
            border-left-color: #BE28A3; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(3) .approch_text::after {
                border-left-color: transparent;
                border-top-color: #BE28A3; } }
          .approach .approach_inner ul li:nth-child(3) .approch_text.left::after {
            border-right-color: #BE28A3; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(3) .approch_text.left::after {
                border-right-color: transparent;
                border-top-color: #BE28A3; } }
        .approach .approach_inner ul li:nth-child(4) .approch_text {
          background-color: #D46D17; }
          .approach .approach_inner ul li:nth-child(4) .approch_text::after {
            border-left-color: #D46D17; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(4) .approch_text::after {
                border-left-color: transparent;
                border-top-color: #D46D17; } }
          .approach .approach_inner ul li:nth-child(4) .approch_text.left::after {
            border-right-color: #D46D17; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(4) .approch_text.left::after {
                border-right-color: transparent;
                border-top-color: #D46D17; } }
        .approach .approach_inner ul li:nth-child(5) .approch_text {
          background-color: #19B55D; }
          .approach .approach_inner ul li:nth-child(5) .approch_text::after {
            border-left-color: #19B55D; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(5) .approch_text::after {
                border-left-color: transparent;
                border-bottom-color: #19B55D; } }
          .approach .approach_inner ul li:nth-child(5) .approch_text.left::after {
            border-right-color: #19B55D; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(5) .approch_text.left::after {
                border-right-color: transparent;
                border-bottom-color: #19B55D; } }
        .approach .approach_inner ul li:nth-child(6) .approch_text {
          background-color: #E5336F; }
          .approach .approach_inner ul li:nth-child(6) .approch_text::after {
            border-left-color: #E5336F; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(6) .approch_text::after {
                border-left-color: transparent;
                border-bottom-color: #E5336F; } }
          .approach .approach_inner ul li:nth-child(6) .approch_text.left::after {
            border-right-color: #E5336F; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li:nth-child(6) .approch_text.left::after {
                border-right-color: transparent;
                border-bottom-color: #E5336F; } }
        .approach .approach_inner ul li .apperoach_heading {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 16px; }
          .approach .approach_inner ul li .apperoach_heading h2 {
            text-align: left;
            font: 600 48px "Figtree", serif;
            color: #2d2f55;
            letter-spacing: -1.2px; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li .apperoach_heading h2 {
                font-size: 32px; } }
          .approach .approach_inner ul li .apperoach_heading b {
            display: block;
            width: 100%;
            text-align: left;
            font: 500 16px/1.3 "Figtree", serif;
            color: #000; }
        .approach .approach_inner ul li .approch_text {
          width: 100%;
          height: 100%;
          padding: 24px;
          display: flex;
          flex-flow: column;
          justify-content: center;
          gap: 16px;
          background-color: #000;
          position: relative;
          z-index: 1; }
          .approach .approach_inner ul li .approch_text:after {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-top: 24px solid transparent;
            border-bottom: 24px solid transparent;
            border-left: 30px solid #555555;
            border-right: 0;
            position: absolute;
            right: -29px;
            top: 0;
            bottom: 0;
            margin: auto 0; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li .approch_text:after {
                border-right: 24px solid transparent;
                border-left: 24px solid transparent;
                border-top: 30px solid #555555;
                border-bottom: 0;
                left: 0;
                right: 0;
                bottom: -29px;
                top: unset;
                margin: 0 auto; } }
          .approach .approach_inner ul li .approch_text.left::after {
            width: 0;
            height: 0;
            border-style: solid;
            border-top: 24px solid transparent;
            border-bottom: 24px solid transparent;
            border-right: 30px solid #555555;
            border-left: 0;
            position: absolute;
            left: -29px;
            right: unset;
            top: 0;
            bottom: 0;
            margin: auto 0; }
            @media (max-width: 480px) {
              .approach .approach_inner ul li .approch_text.left::after {
                border-top: 0;
                border-right: 24px solid transparent;
                border-left: 24px solid transparent;
                border-bottom: 30px solid #555555;
                left: 0;
                right: 0;
                top: -29px;
                bottom: unset;
                margin: 0 auto; } }
          .approach .approach_inner ul li .approch_text .icon {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center; }
            .approach .approach_inner ul li .approch_text .icon img {
              display: block;
              width: 100%;
              max-width: 48px; }
          .approach .approach_inner ul li .approch_text b {
            display: block;
            width: 100%;
            text-align: center;
            font: 600 18px/1.1 "Figtree", serif;
            color: #fff; }
          .approach .approach_inner ul li .approch_text p {
            text-align: center;
            font: 400 14px/1.3 "Figtree", serif;
            color: #fff; }
        .approach .approach_inner ul li .approchPhoto {
          width: 100%; }
          .approach .approach_inner ul li .approchPhoto img {
            display: block;
            width: 100%; }

.sectionNEWWrapp {
  width: 100%;
  padding: 48px 6vw;
  background-color: #f1f4ff; }
  .sectionNEWWrapp .sectionNEWCon {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.25rem; }
    .sectionNEWWrapp .sectionNEWCon b {
      display: block;
      width: 100%;
      text-align: center;
      font: 700 2.5rem "Figtree", serif;
      color: #2d2f55; }
      .sectionNEWWrapp .sectionNEWCon b span {
        font: italic 500 4.875rem "EB Garamond", serif;
        color: #c68221; }
        @media (max-width: 480px) {
          .sectionNEWWrapp .sectionNEWCon b span {
            font-size: 2.875rem; } }
    .sectionNEWWrapp .sectionNEWCon p {
      text-align: center;
      font: 500 1.125rem "Figtree", serif;
      color: #4D5E69; }
    .sectionNEWWrapp .sectionNEWCon a {
      display: inline-block;
      width: auto;
      text-align: center;
      font: 500 0.875rem/3rem "Figtree", serif;
      text-transform: uppercase;
      letter-spacing: 1px;
      background-color: #d1d3ec;
      border-radius: .25rem;
      padding: 0 3rem;
      color: #2d2f55;
      transition: .25s ease;
      margin: 1rem 0 0 0; }
      .sectionNEWWrapp .sectionNEWCon a:hover {
        background-color: #2d2f55;
        color: #fff;
        transition: .25s ease; }

.aboutusSection {
  width: 100%;
  padding: 4.5rem 6vw;
  background: linear-gradient(-90deg, white 0%, white 50%, #2d2f55 50%, #2d2f55 100%); }
  @media (max-width: 768px) {
    .aboutusSection {
      background: linear-gradient(0deg, white 0%, white 50%, #2d2f55 50%, #2d2f55 100%); } }
  .aboutusSection .aboutusSecCon {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center; }
    @media (max-width: 768px) {
      .aboutusSection .aboutusSecCon {
        grid-template-columns: repeat(1, 1fr); } }
    .aboutusSection .aboutusSecCon .about_sec {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 3rem;
      padding: 0 3rem 0 0; }
      @media (max-width: 768px) {
        .aboutusSection .aboutusSecCon .about_sec {
          padding: 0 0 2rem 0; } }
      .aboutusSection .aboutusSecCon .about_sec .about_sec1 {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 1rem; }
        .aboutusSection .aboutusSecCon .about_sec .about_sec1 h2 {
          display: block;
          width: 100%;
          text-align: left;
          font: 700 2rem "Figtree", serif;
          color: #fff; }
        .aboutusSection .aboutusSecCon .about_sec .about_sec1 p {
          text-align: left;
          font: 400 1rem/1.3 "Figtree", serif;
          color: #fff; }
    .aboutusSection .aboutusSecCon .visionSec {
      width: 100%;
      transform: translateX(-30px); }
      @media (max-width: 768px) {
        .aboutusSection .aboutusSecCon .visionSec {
          transform: translateX(0);
          padding: 3rem 0 0 0; } }
      .aboutusSection .aboutusSecCon .visionSec ul {
        width: 100%;
        display: flex;
        flex-flow: column;
        gap: 3rem; }
        .aboutusSection .aboutusSecCon .visionSec ul li {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 1rem; }
          .aboutusSection .aboutusSecCon .visionSec ul li .icon {
            width: 4rem;
            height: 4rem;
            flex-shrink: 0;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center; }
            .aboutusSection .aboutusSecCon .visionSec ul li .icon .iconInner {
              width: 3.5rem;
              height: 3.5rem;
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              background-color: #D6861D; }
              .aboutusSection .aboutusSecCon .visionSec ul li .icon .iconInner img {
                display: block;
                width: 1.75rem; }
          .aboutusSection .aboutusSecCon .visionSec ul li .text {
            width: 100%;
            display: flex;
            flex-flow: column;
            gap: .5rem; }
            .aboutusSection .aboutusSecCon .visionSec ul li .text b {
              display: block;
              width: 100%;
              text-align: left;
              font: 700 1.25rem "Figtree", serif;
              color: #2d2f55; }
            .aboutusSection .aboutusSecCon .visionSec ul li .text p {
              text-align: left;
              font: 400 1rem/1.2 "Figtree", serif;
              color: #4D5E69; }
