﻿@import url("https://fonts.googleapis.com/css2?family=Edu+QLD+Beginner:wght@400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html, body {
  background-color: #fff; }

ul, ol {
  list-style: none; }

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

/* media Queries */
header {
  width: 100%;
  background: #0C224D; }
  header .headerContainer {
    width: 100%;
    max-width: 1220px;
    padding: 20px 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 768px) {
      header .headerContainer {
        padding: 24px; } }
    header .headerContainer .logo {
      width: auto; }
      @media (max-width: 768px) {
        header .headerContainer .logo {
          margin: 0 16px 0 0; } }
      header .headerContainer .logo a {
        display: inline-block; }
        header .headerContainer .logo a img {
          display: block;
          width: 100%;
          max-width: 370px; }
    header .headerContainer .menu {
      display: inline-flex;
      align-items: center;
      column-gap: 24px; }
      @media (max-width: 1024px) {
        header .headerContainer .menu {
          display: none; } }
      header .headerContainer .menu .link {
        width: auto;
        position: relative; }
        header .headerContainer .menu .link:hover .submenu_double {
          display: block; }
        header .headerContainer .menu .link:hover .submenu_double_right {
          display: block; }
        header .headerContainer .menu .link:hover .submenu_single {
          display: block; }
        header .headerContainer .menu .link:hover .submenu_single_right {
          display: block; }
        header .headerContainer .menu .link:hover a {
          color: #FEC85B; }
        header .headerContainer .menu .link a {
          display: inline-block;
          font: 500 13px "Rubik", sans-serif;
          text-transform: uppercase;
          color: #E9F0FC;
          position: relative;
          z-index: 99; }
          header .headerContainer .menu .link a:hover, header .headerContainer .menu .link a:active {
            color: #FEC85B; }
        header .headerContainer .menu .link .submenu_double {
          display: none;
          width: 460px;
          position: absolute;
          left: 0;
          top: 0;
          padding: 40px 0 0 0;
          z-index: 999; }
          header .headerContainer .menu .link .submenu_double ul {
            display: grid;
            grid-template-columns: auto 1px auto;
            align-items: flex-start;
            grid-gap: 16px;
            padding: 16px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            position: relative; }
            header .headerContainer .menu .link .submenu_double ul::before {
              content: '';
              position: absolute;
              top: -8px;
              left: 8px;
              width: 0;
              height: 0;
              border-left: 8px solid transparent;
              border-right: 8px solid transparent;
              border-bottom: 8px solid white;
              z-index: 10; }
            header .headerContainer .menu .link .submenu_double ul li {
              width: 100%;
              height: 100%; }
              header .headerContainer .menu .link .submenu_double ul li small {
                display: block;
                width: 100%;
                height: 100%;
                background-color: #ddd; }
              header .headerContainer .menu .link .submenu_double ul li a {
                display: block;
                width: 100%;
                font: 400 14px/44px "Rubik", sans-serif;
                color: #707070;
                text-transform: none;
                padding: 0 16px;
                border-radius: 8px; }
                header .headerContainer .menu .link .submenu_double ul li a:hover {
                  color: #0C224D;
                  background-color: #E9F0FC; }
        header .headerContainer .menu .link .submenu_single {
          display: none;
          width: 248px;
          position: absolute;
          left: 0;
          top: 0;
          padding: 40px 0 0 0;
          z-index: 999; }
          header .headerContainer .menu .link .submenu_single .submenu {
            width: 100%;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            position: relative; }
            header .headerContainer .menu .link .submenu_single .submenu::before {
              content: '';
              position: absolute;
              top: -8px;
              left: 8px;
              width: 0;
              height: 0;
              border-left: 8px solid transparent;
              border-right: 8px solid transparent;
              border-bottom: 8px solid white;
              z-index: 10; }
            header .headerContainer .menu .link .submenu_single .submenu a {
              display: block;
              width: 100%;
              font: 400 14px/44px "Rubik", sans-serif;
              color: #707070;
              text-transform: none;
              padding: 0 16px;
              border-radius: 8px; }
              header .headerContainer .menu .link .submenu_single .submenu a:hover {
                color: #0C224D;
                background-color: #E9F0FC; }
        header .headerContainer .menu .link .submenu_double_right {
          display: none;
          width: 460px;
          position: absolute;
          right: 0;
          top: 0;
          padding: 40px 0 0 0;
          z-index: 999; }
          header .headerContainer .menu .link .submenu_double_right ul {
            display: grid;
            grid-template-columns: auto 1px auto;
            align-items: flex-start;
            grid-gap: 16px;
            padding: 16px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            position: relative; }
            header .headerContainer .menu .link .submenu_double_right ul::before {
              content: '';
              position: absolute;
              top: -8px;
              right: 8px;
              width: 0;
              height: 0;
              border-left: 8px solid transparent;
              border-right: 8px solid transparent;
              border-bottom: 8px solid white;
              z-index: 10; }
            header .headerContainer .menu .link .submenu_double_right ul li {
              width: 100%;
              height: 100%; }
              header .headerContainer .menu .link .submenu_double_right ul li small {
                display: block;
                width: 100%;
                height: 100%;
                background-color: #ddd; }
              header .headerContainer .menu .link .submenu_double_right ul li a {
                display: block;
                width: 100%;
                font: 400 14px/44px "Rubik", sans-serif;
                color: #707070;
                text-transform: none;
                padding: 0 16px;
                border-radius: 8px; }
                header .headerContainer .menu .link .submenu_double_right ul li a:hover {
                  color: #0C224D;
                  background-color: #E9F0FC; }
        header .headerContainer .menu .link .submenu_single_right {
          display: none;
          width: 248px;
          position: absolute;
          right: 0;
          top: 0;
          padding: 40px 0 0 0;
          z-index: 999; }
          header .headerContainer .menu .link .submenu_single_right .submenu {
            width: 100%;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            position: relative; }
            header .headerContainer .menu .link .submenu_single_right .submenu::before {
              content: '';
              position: absolute;
              top: -8px;
              right: 8px;
              width: 0;
              height: 0;
              border-left: 8px solid transparent;
              border-right: 8px solid transparent;
              border-bottom: 8px solid white;
              z-index: 10; }
            header .headerContainer .menu .link .submenu_single_right .submenu a {
              display: block;
              width: 100%;
              font: 400 14px/44px "Rubik", sans-serif;
              color: #707070;
              text-transform: none;
              padding: 0 16px;
              border-radius: 8px; }
              header .headerContainer .menu .link .submenu_single_right .submenu a:hover {
                color: #0C224D;
                background-color: #E9F0FC; }
    header .headerContainer .morebtn {
      height: 40px;
      width: 40px;
      display: none; }
      @media (max-width: 1024px) {
        header .headerContainer .morebtn {
          top: 10px;
          display: block; } }
      header .headerContainer .morebtn #trigger-overlay {
        height: 40px;
        width: 40px;
        font: 600 14px/40px "Rubik", sans-serif;
        text-transform: uppercase;
        color: #fff;
        display: inline-block;
        background: url(../icons/menu.svg) no-repeat center #ff6f03;
        background-size: 22px;
        border: none;
        cursor: pointer;
        box-sizing: border-box;
        border-radius: 50%; }
      header .headerContainer .morebtn .overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #205ACC;
        z-index: 99999;
        overflow: hidden; }
        header .headerContainer .morebtn .overlay .overlay-close {
          width: 32px;
          height: 32px;
          position: absolute;
          right: 20px;
          top: 20px;
          overflow: hidden;
          border: none;
          background: url(../icons/close.svg) no-repeat center center;
          background-size: 32px;
          text-indent: 200%;
          color: transparent;
          outline: none;
          z-index: 100;
          cursor: pointer; }
        header .headerContainer .morebtn .overlay nav {
          text-align: center;
          position: relative;
          height: 100%; }
        header .headerContainer .morebtn .overlay .mm_links {
          width: 100%;
          padding: 48px;
          box-sizing: border-box;
          overflow-x: auto;
          height: 100%; }
          header .headerContainer .morebtn .overlay .mm_links ul {
            margin: 0 auto;
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-start;
            padding: 0; }
            @media (max-width: 768px) {
              header .headerContainer .morebtn .overlay .mm_links ul {
                display: grid;
                grid-gap: 62px;
                grid-template-columns: repeat(1, 1fr); } }
            header .headerContainer .morebtn .overlay .mm_links ul li {
              display: block;
              width: 25%; }
              @media (max-width: 768px) {
                header .headerContainer .morebtn .overlay .mm_links ul li {
                  width: 100%; } }
              header .headerContainer .morebtn .overlay .mm_links ul li b {
                display: block;
                width: 100%;
                text-align: left;
                font: 600 16px "Rubik", sans-serif;
                color: #fff;
                text-transform: uppercase; }
              header .headerContainer .morebtn .overlay .mm_links ul li dl {
                width: 100%;
                margin: 24px 0 0 0;
                display: grid;
                grid-gap: 16px;
                grid-template-columns: repeat(1, 1fr); }
                header .headerContainer .morebtn .overlay .mm_links ul li dl dt {
                  width: 100%;
                  text-align: left;
                  margin: 0; }
                  header .headerContainer .morebtn .overlay .mm_links ul li dl dt a {
                    display: inline-block;
                    width: auto;
                    font: 500 14px "Rubik", sans-serif;
                    color: #fff;
                    opacity: .58; }
                    header .headerContainer .morebtn .overlay .mm_links ul li dl dt a:hover {
                      opacity: 1; }
      header .headerContainer .morebtn .overlay-slidedown {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
        transition: transform 0.4s ease-in-out, visibility 0s 0.4s; }
      header .headerContainer .morebtn .overlay-slidedown.open {
        visibility: visible;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-transition: -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out; }

.header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #0C224D; }
  @media (max-width: 1280px) {
    .header {
      height: auto; } }
  .header header {
    width: 100%;
    background: linear-gradient(180deg, #0c224d 0%, rgba(12, 34, 77, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100; }
    @media (max-width: 768px) {
      .header header {
        position: relative; } }
    .header header .headerContainer {
      width: 100%;
      max-width: 1220px;
      padding: 20px 24px 64px 24px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media (max-width: 768px) {
        .header header .headerContainer {
          padding: 24px; } }
      .header header .headerContainer .logo {
        width: auto; }
        @media (max-width: 768px) {
          .header header .headerContainer .logo {
            margin: 0 16px 0 0; } }
        .header header .headerContainer .logo a {
          display: inline-block; }
          .header header .headerContainer .logo a img {
            display: block;
            width: 100%;
            max-width: 370px; }
      .header header .headerContainer .menu {
        display: inline-flex;
        align-items: center;
        column-gap: 24px; }
        @media (max-width: 1024px) {
          .header header .headerContainer .menu {
            display: none; } }
        .header header .headerContainer .menu .link {
          width: auto;
          position: relative; }
          .header header .headerContainer .menu .link:hover .submenu_double {
            display: block; }
          .header header .headerContainer .menu .link:hover .submenu_double_right {
            display: block; }
          .header header .headerContainer .menu .link:hover .submenu_single {
            display: block; }
          .header header .headerContainer .menu .link:hover .submenu_single_right {
            display: block; }
          .header header .headerContainer .menu .link:hover a {
            color: #FEC85B; }
          .header header .headerContainer .menu .link a {
            display: inline-block;
            font: 500 13px "Rubik", sans-serif;
            text-transform: uppercase;
            color: #E9F0FC;
            position: relative;
            z-index: 99; }
            .header header .headerContainer .menu .link a:hover, .header header .headerContainer .menu .link a:active {
              color: #FEC85B; }
          .header header .headerContainer .menu .link .submenu_double {
            display: none;
            width: 460px;
            position: absolute;
            left: 0;
            top: 0;
            padding: 40px 0 0 0; }
            .header header .headerContainer .menu .link .submenu_double ul {
              display: grid;
              grid-template-columns: auto 1px auto;
              align-items: flex-start;
              grid-gap: 16px;
              padding: 16px;
              background-color: #fff;
              border-radius: 8px;
              box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
              position: relative; }
              .header header .headerContainer .menu .link .submenu_double ul::before {
                content: '';
                position: absolute;
                top: -8px;
                left: 8px;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-bottom: 8px solid white;
                z-index: 10; }
              .header header .headerContainer .menu .link .submenu_double ul li {
                width: 100%;
                height: 100%; }
                .header header .headerContainer .menu .link .submenu_double ul li small {
                  display: block;
                  width: 100%;
                  height: 100%;
                  background-color: #ddd; }
                .header header .headerContainer .menu .link .submenu_double ul li a {
                  display: block;
                  width: 100%;
                  font: 400 14px/44px "Rubik", sans-serif;
                  color: #707070;
                  text-transform: none;
                  padding: 0 16px;
                  border-radius: 8px; }
                  .header header .headerContainer .menu .link .submenu_double ul li a:hover {
                    color: #0C224D;
                    background-color: #E9F0FC; }
          .header header .headerContainer .menu .link .submenu_single {
            display: none;
            width: 248px;
            position: absolute;
            left: 0;
            top: 0;
            padding: 40px 0 0 0; }
            .header header .headerContainer .menu .link .submenu_single .submenu {
              width: 100%;
              background-color: #fff;
              border-radius: 8px;
              box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
              position: relative; }
              .header header .headerContainer .menu .link .submenu_single .submenu::before {
                content: '';
                position: absolute;
                top: -8px;
                left: 8px;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-bottom: 8px solid white;
                z-index: 10; }
              .header header .headerContainer .menu .link .submenu_single .submenu a {
                display: block;
                width: 100%;
                font: 400 14px/44px "Rubik", sans-serif;
                color: #707070;
                text-transform: none;
                padding: 0 16px;
                border-radius: 8px; }
                .header header .headerContainer .menu .link .submenu_single .submenu a:hover {
                  color: #0C224D;
                  background-color: #E9F0FC; }
          .header header .headerContainer .menu .link .submenu_double_right {
            display: none;
            width: 460px;
            position: absolute;
            right: 0;
            top: 0;
            padding: 40px 0 0 0; }
            .header header .headerContainer .menu .link .submenu_double_right ul {
              display: grid;
              grid-template-columns: auto 1px auto;
              align-items: flex-start;
              grid-gap: 16px;
              padding: 16px;
              background-color: #fff;
              border-radius: 8px;
              box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
              position: relative; }
              .header header .headerContainer .menu .link .submenu_double_right ul::before {
                content: '';
                position: absolute;
                top: -8px;
                right: 8px;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-bottom: 8px solid white;
                z-index: 10; }
              .header header .headerContainer .menu .link .submenu_double_right ul li {
                width: 100%;
                height: 100%; }
                .header header .headerContainer .menu .link .submenu_double_right ul li small {
                  display: block;
                  width: 100%;
                  height: 100%;
                  background-color: #ddd; }
                .header header .headerContainer .menu .link .submenu_double_right ul li a {
                  display: block;
                  width: 100%;
                  font: 400 14px/44px "Rubik", sans-serif;
                  color: #707070;
                  text-transform: none;
                  padding: 0 16px;
                  border-radius: 8px; }
                  .header header .headerContainer .menu .link .submenu_double_right ul li a:hover {
                    color: #0C224D;
                    background-color: #E9F0FC; }
          .header header .headerContainer .menu .link .submenu_single_right {
            display: none;
            width: 248px;
            position: absolute;
            right: 0;
            top: 0;
            padding: 40px 0 0 0; }
            .header header .headerContainer .menu .link .submenu_single_right .submenu {
              width: 100%;
              background-color: #fff;
              border-radius: 8px;
              box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
              position: relative; }
              .header header .headerContainer .menu .link .submenu_single_right .submenu::before {
                content: '';
                position: absolute;
                top: -8px;
                right: 8px;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-bottom: 8px solid white;
                z-index: 10; }
              .header header .headerContainer .menu .link .submenu_single_right .submenu a {
                display: block;
                width: 100%;
                font: 400 14px/44px "Rubik", sans-serif;
                color: #707070;
                text-transform: none;
                padding: 0 16px;
                border-radius: 8px; }
                .header header .headerContainer .menu .link .submenu_single_right .submenu a:hover {
                  color: #0C224D;
                  background-color: #E9F0FC; }
      .header header .headerContainer .morebtn {
        height: 40px;
        width: 40px;
        display: none; }
        @media (max-width: 1024px) {
          .header header .headerContainer .morebtn {
            top: 10px;
            display: block; } }
        .header header .headerContainer .morebtn #trigger-overlay {
          height: 40px;
          width: 40px;
          font: 600 14px/40px "Rubik", sans-serif;
          text-transform: uppercase;
          color: #fff;
          display: inline-block;
          background: url(../icons/menu.svg) no-repeat center #ff6f03;
          background-size: 22px;
          border: none;
          cursor: pointer;
          box-sizing: border-box;
          border-radius: 50%; }
        .header header .headerContainer .morebtn .overlay {
          position: fixed;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          background-color: #205ACC;
          z-index: 99999; }
          .header header .headerContainer .morebtn .overlay .overlay-close {
            width: 32px;
            height: 32px;
            position: absolute;
            right: 20px;
            top: 20px;
            overflow: hidden;
            border: none;
            background: url(../icons/close.svg) no-repeat center center;
            background-size: 32px;
            text-indent: 200%;
            color: transparent;
            outline: none;
            z-index: 100;
            cursor: pointer; }
          .header header .headerContainer .morebtn .overlay nav {
            text-align: center;
            position: relative;
            height: 100%; }
          .header header .headerContainer .morebtn .overlay .mm_links {
            width: 100%;
            padding: 48px;
            box-sizing: border-box;
            overflow-x: auto;
            height: 100%; }
            .header header .headerContainer .morebtn .overlay .mm_links ul {
              margin: 0 auto;
              display: flex;
              flex-flow: row nowrap;
              align-items: flex-start;
              padding: 0; }
              @media (max-width: 768px) {
                .header header .headerContainer .morebtn .overlay .mm_links ul {
                  display: grid;
                  grid-gap: 62px;
                  grid-template-columns: repeat(1, 1fr); } }
              .header header .headerContainer .morebtn .overlay .mm_links ul li {
                display: block;
                width: 25%; }
                @media (max-width: 768px) {
                  .header header .headerContainer .morebtn .overlay .mm_links ul li {
                    width: 100%; } }
                .header header .headerContainer .morebtn .overlay .mm_links ul li b {
                  display: block;
                  width: 100%;
                  text-align: left;
                  font: 600 16px "Rubik", sans-serif;
                  color: #fff;
                  text-transform: uppercase; }
                .header header .headerContainer .morebtn .overlay .mm_links ul li dl {
                  width: 100%;
                  margin: 24px 0 0 0;
                  display: grid;
                  grid-gap: 16px;
                  grid-template-columns: repeat(1, 1fr); }
                  .header header .headerContainer .morebtn .overlay .mm_links ul li dl dt {
                    width: 100%;
                    text-align: left;
                    margin: 0; }
                    .header header .headerContainer .morebtn .overlay .mm_links ul li dl dt a {
                      display: inline-block;
                      width: auto;
                      font: 500 14px "Rubik", sans-serif;
                      color: #fff;
                      opacity: .58; }
                      .header header .headerContainer .morebtn .overlay .mm_links ul li dl dt a:hover {
                        opacity: 1; }
        .header header .headerContainer .morebtn .overlay-slidedown {
          visibility: hidden;
          -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
          -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
          transition: transform 0.4s ease-in-out, visibility 0s 0.4s; }
        .header header .headerContainer .morebtn .overlay-slidedown.open {
          visibility: visible;
          -webkit-transform: translateY(0%);
          transform: translateY(0%);
          -webkit-transition: -webkit-transform 0.4s ease-in-out;
          transition: transform 0.4s ease-in-out; }
  .header .slider {
    width: 100%;
    height: 100%; }
  .header footer {
    width: 100%;
    background: linear-gradient(180deg, rgba(12, 34, 77, 0) 0%, rgba(12, 34, 77, 0.9) 100%);
    position: absolute;
    left: 0;
    bottom: 0; }
    @media (max-width: 1024px) {
      .header footer {
        position: relative; } }
    .header footer .footerInner {
      width: 100%;
      max-width: 1220px;
      padding: 48px 24px 32px 24px;
      margin: 0 auto; }
      @media (max-width: 1024px) {
        .header footer .footerInner {
          padding: 24px; } }
      .header footer .footerInner b {
        display: block;
        width: 100%;
        text-align: left;
        font: 600 28px "Rubik", sans-serif;
        color: #fff;
        margin: 0 0 8px 0; }
      .header footer .footerInner p {
        text-align: left;
        font: 400 14px "Rubik", sans-serif;
        color: #fff;
        opacity: .78; }

.more_links_headerWrapper {
  background: white;
  background: linear-gradient(0deg, white 0%, white 60%, #0c224d 60%, #0c224d 100%); }
  .more_links_headerWrapper .more_links_header {
    width: 100%;
    max-width: 1220px;
    padding: 24px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px;
    align-items: flex-start; }
    @media (max-width: 1024px) {
      .more_links_headerWrapper .more_links_header {
        grid-template-columns: repeat(3, 1fr);
        background-color: #fff; } }
    @media (max-width: 560px) {
      .more_links_headerWrapper .more_links_header {
        grid-template-columns: repeat(2, 1fr);
        background-color: #fff; } }
    .more_links_headerWrapper .more_links_header .link {
      width: 100%; }
      .more_links_headerWrapper .more_links_header .link a {
        display: flex;
        flex-flow: column;
        align-items: center;
        width: 100%; }
        .more_links_headerWrapper .more_links_header .link a:hover span {
          transform: scale(1.2);
          transition: .3s ease; }
        .more_links_headerWrapper .more_links_header .link a span {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 56px;
          width: 56px;
          background-color: #000;
          border-radius: 50%;
          margin: 0 0 16px 0;
          transition: .3s ease; }
          .more_links_headerWrapper .more_links_header .link a span img {
            display: block;
            width: 26px; }
          .more_links_headerWrapper .more_links_header .link a span.pg {
            background-color: #a6c542; }
          .more_links_headerWrapper .more_links_header .link a span.vg {
            background-color: #f79800; }
          .more_links_headerWrapper .more_links_header .link a span.md {
            background-color: #2da4e6; }
          .more_links_headerWrapper .more_links_header .link a span.el {
            background-color: #eb5850; }
          .more_links_headerWrapper .more_links_header .link a span.of {
            background-color: #b250eb; }
          .more_links_headerWrapper .more_links_header .link a span.ad {
            background-color: #50c78b; }
        .more_links_headerWrapper .more_links_header .link a small {
          display: block;
          width: 100%;
          text-align: center;
          font: 400 13px "Rubik", sans-serif;
          color: #000; }

.introductionWrapper {
  width: 100%;
  background: url(../icons/int-left.svg) no-repeat left top, url(../icons/int-right.svg) no-repeat right top, url(../icons/int-left-bot.svg) no-repeat left bottom, url(../icons/int-right-bot.svg) no-repeat right bottom #DBEFFF;
  background-size: 20%; }
  @media (max-width: 768px) {
    .introductionWrapper {
      background-size: 30%; } }
  @media (max-width: 560px) {
    .introductionWrapper {
      background-size: 40%; } }
  .introductionWrapper .introductionContainer {
    width: 100%;
    max-width: 1220px;
    padding: 72px 24px;
    margin: 0 auto; }
    .introductionWrapper .introductionContainer h1 {
      height: 106px;
      text-align: center;
      font: 500 36px/106px "Rubik", sans-serif;
      color: #fff;
      background: url(../icons/int-heading.svg) no-repeat center;
      background-size: contain; }
      .introductionWrapper .introductionContainer h1 span {
        font: 600 40px "Edu QLD Beginner", cursive;
        color: white; }
      @media (max-width: 560px) {
        .introductionWrapper .introductionContainer h1 {
          font: 500 24px/72px "Rubik", sans-serif;
          height: 72px; } }
    .introductionWrapper .introductionContainer .introConText {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 16px;
      margin: 48px 0 0 0; }
      .introductionWrapper .introductionContainer .introConText ul {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px; }
        @media (max-width: 560px) {
          .introductionWrapper .introductionContainer .introConText ul {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 24px; } }
        .introductionWrapper .introductionContainer .introConText ul li {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          grid-gap: 16px; }
          .introductionWrapper .introductionContainer .introConText ul li p {
            text-align: justify;
            font: 400 16px/22px "Rubik", sans-serif;
            color: #262930; }
      .introductionWrapper .introductionContainer .introConText h2 {
        text-align: center;
        font: 500 24px "Rubik", sans-serif;
        color: #E83656;
        margin: 36px 0 0 0; }

.featuresWrapper {
  width: 100%;
  overflow: hidden;
  padding: 72px 0 0 0; }
  .featuresWrapper h1 {
    text-align: center;
    font: 500 42px "Rubik", sans-serif;
    color: #000; }
    .featuresWrapper h1 span {
      font: 500 48px "Edu QLD Beginner", cursive;
      color: #E83656; }
  .featuresWrapper ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 32px 0 0 0; }
    @media (max-width: 1024px) {
      .featuresWrapper ul {
        grid-template-columns: repeat(1, 1fr); } }
    .featuresWrapper ul li {
      width: 100%; }
      @media (max-width: 1024px) {
        .featuresWrapper ul li:nth-child(2) dl {
          flex-flow: row-reverse; }
        .featuresWrapper ul li:nth-child(3) dl {
          flex-flow: row-reverse; }
        .featuresWrapper ul li:nth-child(6) dl {
          flex-flow: row-reverse; } }
      @media (max-width: 560px) {
        .featuresWrapper ul li:nth-child(2) dl {
          flex-flow: column; }
        .featuresWrapper ul li:nth-child(3) dl {
          flex-flow: column-reverse; }
        .featuresWrapper ul li:nth-child(4) dl {
          flex-flow: column-reverse; }
        .featuresWrapper ul li:nth-child(6) dl {
          flex-flow: column; } }
      .featuresWrapper ul li dl {
        width: 100%;
        display: flex;
        flex-flow: row nowrap; }
        @media (max-width: 560px) {
          .featuresWrapper ul li dl {
            flex-flow: column; } }
        .featuresWrapper ul li dl dt {
          width: 50%; }
          @media (max-width: 560px) {
            .featuresWrapper ul li dl dt {
              width: 100%; } }
          .featuresWrapper ul li dl dt .photo {
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden; }
            @media (max-width: 1280px) {
              .featuresWrapper ul li dl dt .photo {
                height: 300px;
                aspect-ratio: unset; } }
            @media (max-width: 1024px) {
              .featuresWrapper ul li dl dt .photo {
                height: auto;
                aspect-ratio: 4 / 3; } }
            .featuresWrapper ul li dl dt .photo img {
              display: block;
              width: 100%;
              height: 100%; }
          .featuresWrapper ul li dl dt a {
            display: block;
            width: 100%;
            height: 100%;
            padding: 44px;
            background-color: #000;
            position: relative;
            transition: .25s ease; }
            @media (max-width: 1280px) {
              .featuresWrapper ul li dl dt a {
                height: 300px; } }
            @media (max-width: 1024px) {
              .featuresWrapper ul li dl dt a {
                height: 100%; } }
            @media (max-width: 560px) {
              .featuresWrapper ul li dl dt a {
                height: 300px; } }
            .featuresWrapper ul li dl dt a:hover span {
              left: 62px;
              transition: .25s ease; }
            .featuresWrapper ul li dl dt a span {
              display: block;
              width: 36px;
              position: absolute;
              left: 44px;
              bottom: 24px; }
              .featuresWrapper ul li dl dt a span img {
                display: block;
                width: 100%; }
            .featuresWrapper ul li dl dt a.admission {
              background: #e86543;
              background: linear-gradient(0deg, #e86543 0%, #e8795d 100%); }
            .featuresWrapper ul li dl dt a.sports {
              background: #1e86d6;
              background: linear-gradient(0deg, #1e86d6 0%, #489ee1 100%); }
            .featuresWrapper ul li dl dt a.health {
              background: #29b954;
              background: linear-gradient(0deg, #29b954 0%, #5ad37e 100%); }
            .featuresWrapper ul li dl dt a.learning {
              background: #ce9546;
              background: linear-gradient(0deg, #ce9546 0%, #daa864 100%); }
            .featuresWrapper ul li dl dt a.arts {
              background: #9338b9;
              background: linear-gradient(0deg, #9338b9 0%, #ac59cf 100%); }
            .featuresWrapper ul li dl dt a.responsible {
              background: #6f5d59;
              background: linear-gradient(0deg, #6f5d59 0%, #897975 100%); }
            .featuresWrapper ul li dl dt a b {
              display: block;
              width: 100%;
              text-align: left;
              font: 500 24px "Rubik", sans-serif;
              color: #fff;
              margin: 0 0 16px 0; }
            .featuresWrapper ul li dl dt a p {
              text-align: left;
              font: 400 16px/24px "Rubik", sans-serif;
              color: #fff; }

.foundersWrapper {
  width: 100%;
  background-color: #fff;
  padding: 72px 0; }
  .foundersWrapper h1 {
    text-align: center;
    font: 500 42px "Rubik", sans-serif;
    color: #000; }
    .foundersWrapper h1 span {
      font: 500 48px "Edu QLD Beginner", cursive;
      color: #E83656; }
  .foundersWrapper .foundersInner {
    width: 100%;
    max-width: 1220px;
    margin: 32px auto 0 auto;
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    padding: 0 24px; }
    @media (max-width: 1024px) {
      .foundersWrapper .foundersInner {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) {
      .foundersWrapper .foundersInner {
        grid-template-columns: repeat(1, 1fr); } }
    .foundersWrapper .foundersInner .founderCon {
      width: 100%;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      overflow: hidden; }
      .foundersWrapper .foundersInner .founderCon .founderPhoto {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 132px;
        background: url(../icons/founderBg.png) no-repeat left center;
        background-size: contain; }
        @media (max-width: 1024px) {
          .foundersWrapper .foundersInner .founderCon .founderPhoto {
            background-size: cover; } }
        .foundersWrapper .foundersInner .founderCon .founderPhoto .photo {
          display: block;
          width: 96px;
          aspect-ratio: 1 / 1;
          background-color: #fff;
          border-radius: 50%;
          overflow: hidden;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
          position: relative;
          transform: translateY(64px); }
          .foundersWrapper .foundersInner .founderCon .founderPhoto .photo img {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1; }
      .foundersWrapper .foundersInner .founderCon .founderInfo {
        width: 100%;
        padding: 66px 24px 24px 24px;
        display: flex;
        flex-flow: column;
        align-items: center; }
        .foundersWrapper .foundersInner .founderCon .founderInfo b {
          display: block;
          width: 100%;
          text-align: center;
          font: 500 18px "Rubik", sans-serif;
          color: #262930; }
        .foundersWrapper .foundersInner .founderCon .founderInfo small {
          display: block;
          width: 100%;
          text-align: center;
          font: 400 15px "Rubik", sans-serif;
          color: #205ACC;
          margin: 4px 0 20px 0; }
        .foundersWrapper .foundersInner .founderCon .founderInfo span {
          display: inline-block;
          width: auto;
          font: 400 18px/28px "Rubik", sans-serif;
          color: #262930;
          background: url(../icons/call.svg) no-repeat left center;
          background-size: 28px;
          padding: 0 0 0 38px; }

.missionVisionWrapper {
  width: 100%;
  background-color: #FEC85B;
  overflow: hidden; }
  .missionVisionWrapper .missionVisionInner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    padding: 96px 24px; }
    @media (max-width: 560px) {
      .missionVisionWrapper .missionVisionInner {
        grid-template-columns: repeat(1, 1fr); } }
    .missionVisionWrapper .missionVisionInner .vision {
      height: 100%;
      width: 100%;
      background: url(../icons/vision-missionBg.png) no-repeat right bottom #205ACC;
      background-size: cover;
      padding: 48px;
      border-radius: 0 48px 48px 48px;
      transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
      opacity: 0;
      transform: scale(0.5);
      transform: translateX(-105px); }
      @media (max-width: 560px) {
        .missionVisionWrapper .missionVisionInner .vision {
          padding: 24px; } }
      .missionVisionWrapper .missionVisionInner .vision h2 {
        text-align: left;
        font: 600 36px "Rubik", sans-serif;
        text-transform: uppercase;
        color: #fff;
        margin: 0 0 24px 0; }
      .missionVisionWrapper .missionVisionInner .vision ul {
        width: 100%;
        display: grid;
        grid-gap: 12px;
        grid-template-columns: repeat(1, 1fr); }
        .missionVisionWrapper .missionVisionInner .vision ul li {
          width: calc(100% - 24px);
          margin: 0 0 0 24px;
          text-align: justify;
          font: 400 15px/19px "Rubik", sans-serif;
          color: #fff;
          list-style: disc; }
    .missionVisionWrapper .missionVisionInner .mission {
      height: 100%;
      width: 100%;
      background: url(../icons/vision-missionBg.png) no-repeat right bottom #205ACC;
      background-size: cover;
      padding: 48px;
      border-radius: 0 48px 48px 48px;
      transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
      opacity: 0;
      transform: scale(0.5);
      transform: translateX(105px); }
      @media (max-width: 560px) {
        .missionVisionWrapper .missionVisionInner .mission {
          padding: 24px; } }
      .missionVisionWrapper .missionVisionInner .mission h2 {
        text-align: left;
        font: 600 36px "Rubik", sans-serif;
        text-transform: uppercase;
        color: #fff;
        margin: 0 0 24px 0; }
      .missionVisionWrapper .missionVisionInner .mission ul {
        width: 100%;
        display: grid;
        grid-gap: 12px;
        grid-template-columns: repeat(1, 1fr); }
        .missionVisionWrapper .missionVisionInner .mission ul li {
          width: calc(100% - 24px);
          margin: 0 0 0 24px;
          text-align: justify;
          font: 400 15px/19px "Rubik", sans-serif;
          color: #fff;
          list-style: disc; }
    .missionVisionWrapper .missionVisionInner .zoomIn {
      opacity: 1;
      transform: scale(1); }

.whyLearnersWrapper {
  width: 100%;
  background: url(../images/why-learnersBg.jpg) no-repeat left center #0C224D;
  background-size: cover; }
  .whyLearnersWrapper .whyLearnersInner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 96px 24px; }
    .whyLearnersWrapper .whyLearnersInner h1 {
      text-align: center;
      font: 500 42px "Rubik", sans-serif;
      color: #fff; }
      .whyLearnersWrapper .whyLearnersInner h1 span {
        font: 500 48px "Edu QLD Beginner", cursive;
        color: #E83656; }
    .whyLearnersWrapper .whyLearnersInner p {
      text-align: center;
      font: 300 18px "Rubik", sans-serif;
      color: #E9F0FC;
      margin: 16px 0 0 0; }
    .whyLearnersWrapper .whyLearnersInner .whyLearnContainer {
      width: 100%;
      margin: 48px 0 0 0;
      display: grid;
      grid-gap: 24px;
      grid-template-columns: repeat(3, 1fr); }
      @media (max-width: 768px) {
        .whyLearnersWrapper .whyLearnersInner .whyLearnContainer {
          grid-template-columns: repeat(1, 1fr); } }
      .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners {
        width: 100%;
        background-color: #FEC85B;
        grid-row: 1 / 4;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        padding: 40px; }
        @media (max-width: 560px) {
          .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners {
            grid-row: 1 / 2; } }
        .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners .learnersInner {
          width: 100%;
          display: flex;
          flex-flow: column;
          align-items: center; }
          .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners .learnersInner span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 82px;
            aspect-ratio: 1 / 1;
            border-radius: 32px;
            background-color: #fff;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); }
            .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners .learnersInner span img {
              display: block;
              width: 48px; }
          .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners .learnersInner b {
            display: block;
            width: 100%;
            text-align: center;
            margin: 40px 0 20px 0;
            font: 500 24px "Rubik", sans-serif;
            color: #0C224D; }
          .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .learners .learnersInner small {
            display: block;
            width: 100%;
            text-align: center;
            font: 400 16px/22px "Rubik", sans-serif;
            color: #0C224D; }
      .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .whyLearners {
        width: 100%;
        background-color: #205ACC;
        padding: 40px 24px 24px 24px;
        display: flex;
        flex-flow: column;
        align-items: center; }
        .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .whyLearners span {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 82px;
          aspect-ratio: 1 / 1;
          border-radius: 32px;
          background-color: #fff;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          margin: 0 0 24px 0; }
          .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .whyLearners span img {
            display: block;
            width: 48px; }
        .whyLearnersWrapper .whyLearnersInner .whyLearnContainer .whyLearners b {
          display: block;
          width: 100%;
          text-align: center;
          font: 400 16px/22px "Rubik", sans-serif;
          color: #fff; }

.newsannWrapper {
  width: 100%;
  background: url(../images/newsannBg.jpg) no-repeat left center #0C224D;
  background-size: 100%; }
  @media (max-width: 1280px) {
    .newsannWrapper {
      background-size: cover; } }
  .newsannWrapper .newsannInner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 768px) {
      .newsannWrapper .newsannInner {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 16px; } }
    .newsannWrapper .newsannInner .news {
      width: 100%;
      height: 100%;
      background: url(../icons/newsbg.png) no-repeat left bottom #fff;
      background-size: 100%;
      padding: 32px;
      transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
      opacity: 0;
      transform: scale(0.5); }
      .newsannWrapper .newsannInner .news h2 {
        text-align: center;
        font: 600 32px "Rubik", sans-serif;
        color: #205ACC;
        text-transform: uppercase; }
      .newsannWrapper .newsannInner .news .newsInner {
        width: 100%;
        margin: 32px 0 0 0;
        max-height: 370px;
        overflow: hidden; }
        .newsannWrapper .newsannInner .news .newsInner ul {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          grid-gap: 10px; }
          .newsannWrapper .newsannInner .news .newsInner ul li {
            width: 100%;
            padding-top: 10px;
            border-top: 1px solid #E9F0FC; }
            .newsannWrapper .newsannInner .news .newsInner ul li:first-child {
              border: none;
              padding: 0; }
            .newsannWrapper .newsannInner .news .newsInner ul li a {
              display: block;
              width: 100%; }
              .newsannWrapper .newsannInner .news .newsInner ul li a b {
                display: block;
                width: 100%;
                text-align: left;
                font: 500 15px "Rubik", sans-serif;
                color: #0C224D; }
              .newsannWrapper .newsannInner .news .newsInner ul li a small {
                display: block;
                width: 100%;
                text-align: left;
                font: 400 12px "Rubik", sans-serif;
                color: #205ACC;
                margin: 8px 0 0 0; }
              .newsannWrapper .newsannInner .news .newsInner ul li a:hover b {
                color: #205ACC; }
        .newsannWrapper .newsannInner .news .newsInner .viewAll {
          width: 100%;
          margin: 24px 0 0 0; }
          .newsannWrapper .newsannInner .news .newsInner .viewAll a {
            display: block;
            width: 100%;
            font: 600 14px/52px "Rubik", sans-serif;
            color: #fff;
            background-color: #205ACC;
            text-transform: uppercase;
            border-radius: 8px;
            text-align: center; }
            .newsannWrapper .newsannInner .news .newsInner .viewAll a:hover {
              background-color: #0C224D; }
    .newsannWrapper .newsannInner .announcement {
      width: 100%;
      height: 100%;
      background-color: #E9F0FC;
      padding: 32px;
      transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
      opacity: 0;
      transform: scale(0.5); }
      .newsannWrapper .newsannInner .announcement h2 {
        text-align: center;
        font: 600 32px "Rubik", sans-serif;
        color: #205ACC;
        text-transform: uppercase; }
        @media (max-width: 560px) {
          .newsannWrapper .newsannInner .announcement h2 {
            font-size: 28px; } }
      .newsannWrapper .newsannInner .announcement .annInner {
        width: 100%;
        margin: 32px 0 0 0;
        max-height: 370px;
        overflow: hidden; }
        .newsannWrapper .newsannInner .announcement .annInner ul {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          grid-gap: 10px; }
          .newsannWrapper .newsannInner .announcement .annInner ul li {
            width: 100%;
            padding-top: 10px;
            border-top: 1px solid #ddd; }
            .newsannWrapper .newsannInner .announcement .annInner ul li:first-child {
              border: none;
              padding: 0; }
            .newsannWrapper .newsannInner .announcement .annInner ul li a {
              display: block;
              width: 100%; }
              .newsannWrapper .newsannInner .announcement .annInner ul li a b {
                display: block;
                width: 100%;
                text-align: left;
                font: 500 15px "Rubik", sans-serif;
                color: #0C224D; }
              .newsannWrapper .newsannInner .announcement .annInner ul li a small {
                display: block;
                width: 100%;
                text-align: left;
                font: 400 12px "Rubik", sans-serif;
                color: #205ACC;
                margin: 8px 0 0 0; }
              .newsannWrapper .newsannInner .announcement .annInner ul li a:hover b {
                color: #205ACC; }
    .newsannWrapper .newsannInner .achievements {
      width: 100%;
      height: 100%;
      background: url(../icons/facebookBg.png) no-repeat left top #0C224D;
      background-size: 100%;
      padding: 32px;
      transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
      opacity: 0;
      transform: scale(0.5); }
      @media (max-width: 1024px) {
        .newsannWrapper .newsannInner .achievements {
          background-size: cover; } }
      .newsannWrapper .newsannInner .achievements h2 {
        text-align: center;
        font: 600 32px "Rubik", sans-serif;
        color: #E9F0FC;
        text-transform: uppercase; }
      .newsannWrapper .newsannInner .achievements .achievementsInner {
        width: 100%;
        margin: 32px 0 0 0;
        max-height: 370px;
        overflow: hidden; }
        .newsannWrapper .newsannInner .achievements .achievementsInner ul {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          grid-gap: 10px; }
          .newsannWrapper .newsannInner .achievements .achievementsInner ul li {
            width: 100%;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.15); }
            .newsannWrapper .newsannInner .achievements .achievementsInner ul li:first-child {
              border: none;
              padding: 0; }
            .newsannWrapper .newsannInner .achievements .achievementsInner ul li a {
              display: block;
              width: 100%; }
              .newsannWrapper .newsannInner .achievements .achievementsInner ul li a dl {
                width: 100%;
                display: grid;
                grid-template-columns: 72px auto;
                align-items: flex-start;
                grid-gap: 10px; }
                .newsannWrapper .newsannInner .achievements .achievementsInner ul li a dl dt {
                  width: 100%; }
                  .newsannWrapper .newsannInner .achievements .achievementsInner ul li a dl dt .image {
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    overflow: hidden; }
                    .newsannWrapper .newsannInner .achievements .achievementsInner ul li a dl dt .image img {
                      display: block;
                      width: 100%;
                      object-fit: cover;
                      height: 100%; }
                  .newsannWrapper .newsannInner .achievements .achievementsInner ul li a dl dt b {
                    display: block;
                    width: 100%;
                    text-align: left;
                    font: 500 14px "Rubik", sans-serif;
                    color: white; }
                  .newsannWrapper .newsannInner .achievements .achievementsInner ul li a dl dt small {
                    display: block;
                    width: 100%;
                    text-align: left;
                    font: 400 12px "Rubik", sans-serif;
                    color: rgba(255, 255, 255, 0.58);
                    margin: 8px 0 0 0; }
              .newsannWrapper .newsannInner .achievements .achievementsInner ul li a:hover b {
                color: #FEC85B; }
        .newsannWrapper .newsannInner .achievements .achievementsInner .viewAll {
          width: 100%;
          margin: 24px 0 0 0; }
          .newsannWrapper .newsannInner .achievements .achievementsInner .viewAll a {
            display: block;
            width: 100%;
            font: 600 14px/52px "Rubik", sans-serif;
            color: #fff;
            background-color: #20C66A;
            text-transform: uppercase;
            border-radius: 8px;
            text-align: center; }
            .newsannWrapper .newsannInner .achievements .achievementsInner .viewAll a:hover {
              background-color: #a6c542; }
    .newsannWrapper .newsannInner .facebookFeeds {
      width: 100%;
      height: 100%;
      background: url(../icons/facebookBg.png) no-repeat left top #E9F0FC;
      background-size: 100%;
      padding: 32px;
      transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), width 0.4s cubic-bezier(0.34, 0.615, 0.4, 0.985);
      opacity: 0;
      transform: scale(0.5); }
      @media (max-width: 1024px) {
        .newsannWrapper .newsannInner .facebookFeeds {
          background-size: cover; } }
      .newsannWrapper .newsannInner .facebookFeeds h2 {
        text-align: center;
        font: 600 32px "Rubik", sans-serif;
        color: #205ACC;
        text-transform: uppercase;
        margin: 0 0 32px 0; }
      .newsannWrapper .newsannInner .facebookFeeds .feedscon {
        width: 100%; }
    .newsannWrapper .newsannInner .zoomIn {
      opacity: 1;
      transform: scale(1); }

.photogalleryFooter {
  width: 100%;
  padding: 2px 0; }
  .photogalleryFooter .photoImg {
    width: 100%; }
    .photogalleryFooter .photoImg a {
      display: block;
      width: 100%;
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden; }
      .photogalleryFooter .photoImg a img {
        display: block;
        width: 100%; }
      .photogalleryFooter .photoImg a span {
        width: 100%;
        display: block;
        text-align: left;
        font: 400 14px "Rubik", sans-serif;
        color: #fff;
        background: black;
        background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
        background: linear-gradient(180deg, transparent 0%, black 100%);
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 62px 16px 16px 16px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
  .photogalleryFooter .viewall {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin: 24px 0 24px 0; }
    .photogalleryFooter .viewall a {
      height: 40px;
      width: 160px;
      border-radius: 8px;
      font: 400 14px/40px "Rubik", sans-serif;
      color: #fff;
      background-color: #0C224D;
      text-align: center;
      text-transform: uppercase; }
      .photogalleryFooter .viewall a:hover {
        background-color: #205ACC; }

.popup {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: 9999; }
  .popup .simplePopup {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    overflow: hidden; }
    .popup .simplePopup .simplePopup_inner {
      width: 100%;
      max-width: 728px;
      position: relative;
      padding: 8px;
      border-radius: 8px;
      background-color: #fff;
      box-sizing: border-box; }
      .popup .simplePopup .simplePopup_inner .closepopup {
        display: block;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: url(../../icons/close_black.svg) no-repeat center #F05555;
        background-size: 22px;
        position: absolute;
        top: -12px;
        right: -12px;
        font-size: 0;
        z-index: 99; }
      .popup .simplePopup .simplePopup_inner .popup_video {
        width: 100%; }
        .popup .simplePopup .simplePopup_inner .popup_video iframe {
          width: 100%;
          aspect-ratio: 16 / 9; }

.aapWrapper {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  background-color: #FEC85B;
  padding: 28px 24px; }
  .aapWrapper .aapWrappInner {
    width: auto;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    column-gap: 8px; }
    @media (max-width: 560px) {
      .aapWrapper .aapWrappInner {
        flex-flow: column;
        grid-gap: 8px; } }
    .aapWrapper .aapWrappInner b {
      display: inline-block;
      font: 400 16px "Rubik", sans-serif;
      color: #000;
      padding: 0 24px 0 0; }
      .aapWrapper .aapWrappInner b span {
        display: inline-block;
        font: 500 16px "Rubik", sans-serif;
        color: #000; }
      @media (max-width: 768px) {
        .aapWrapper .aapWrappInner b {
          text-align: center; } }
    .aapWrapper .aapWrappInner a {
      display: block;
      width: 170px;
      height: 44px;
      border-radius: 8px;
      background-color: #000;
      font: 300 14px/44px "Rubik", sans-serif;
      color: #fff;
      text-align: center; }
      .aapWrapper .aapWrappInner a.android {
        background: url(../icons/material-symbols_android.svg) no-repeat left 16px center #20C66A;
        background-size: 24px;
        padding: 0 0 0 16px; }
      .aapWrapper .aapWrappInner a.ios {
        background: url(../icons/ic_round-apple.svg) no-repeat left 16px center #000;
        background-size: 24px;
        padding: 0 0 0 16px; }

.footer {
  width: 100%;
  background: url(../images/footerbg.jpg) no-repeat left top #0C224D;
  background-size: 100%; }
  @media (max-width: 1024px) {
    .footer {
      background-size: cover; } }
  .footer .footerInner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 72px 24px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; }
    .footer .footerInner .footerAbout {
      width: auto; }
      .footer .footerInner .footerAbout .logo {
        width: auto;
        margin: 0 0 40px 0; }
        .footer .footerInner .footerAbout .logo img {
          display: block;
          width: 100%;
          max-width: 330px; }
      .footer .footerInner .footerAbout p {
        text-align: left;
        font: 300 13px/20px "Rubik", sans-serif;
        color: #fff;
        padding: 24px 0 0 0; }
    .footer .footerInner .realtedLinks {
      display: inline-flex;
      column-gap: 72px; }
      @media (max-width: 768px) {
        .footer .footerInner .realtedLinks {
          margin: 72px 0 0 0; } }
      .footer .footerInner .realtedLinks .resources {
        width: auto;
        display: flex;
        flex-flow: column;
        align-items: flex-start; }
        .footer .footerInner .realtedLinks .resources b {
          display: block;
          width: 100%;
          text-align: left;
          font: 500 14px "Rubik", sans-serif;
          color: #fff;
          text-transform: uppercase; }
        .footer .footerInner .realtedLinks .resources .links {
          width: 100%;
          display: grid;
          grid-gap: 16px;
          grid-template-columns: repeat(1, 1fr);
          margin: 32px 0 0 0; }
          .footer .footerInner .realtedLinks .resources .links a {
            display: block;
            width: 100%;
            text-align: left;
            font: 400 13px "Rubik", sans-serif;
            color: #E9F0FC;
            white-space: nowrap; }
            .footer .footerInner .realtedLinks .resources .links a:hover {
              color: #FEC85B; }
        .footer .footerInner .realtedLinks .resources .address {
          width: 100%;
          margin: 32px 0 0 0; }
          .footer .footerInner .realtedLinks .resources .address p {
            text-align: left;
            font: 400 13px "Rubik", sans-serif;
            color: #E9F0FC; }
          .footer .footerInner .realtedLinks .resources .address small {
            display: block;
            width: 100%;
            text-align: left;
            font: 400 13px "Rubik", sans-serif;
            color: #E9F0FC;
            margin: 16px 0 0 0; }
          .footer .footerInner .realtedLinks .resources .address i {
            font-style: normal;
            display: block;
            width: 100%;
            text-align: left;
            font: 400 13px "Rubik", sans-serif;
            color: #E9F0FC;
            margin: 4px 0 16px 0; }
          .footer .footerInner .realtedLinks .resources .address span {
            display: block;
            width: 100%;
            text-align: left;
            font: 400 13px "Rubik", sans-serif;
            color: #E9F0FC;
            margin: 8px 0 0 0; }
  .footer .copyright {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15); }
    .footer .copyright b {
      display: inline-block;
      width: auto;
      text-align: left;
      font: 400 13px "Rubik", sans-serif;
      color: #fff; }
    .footer .copyright small {
      display: inline-block;
      width: auto;
      text-align: left;
      font: 400 13px "Rubik", sans-serif;
      color: #fff; }
      @media (max-width: 560px) {
        .footer .copyright small {
          margin: 8px 0 0 0; } }
      .footer .copyright small a {
        display: inline-block;
        width: auto;
        color: #FEC85B; }

.aboutWrapp {
  width: 100%;
  margin-bottom: 72px; }
  .aboutWrapp .aboutus {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px 24px 0 0; }
    .aboutWrapp .aboutus h2 {
      text-align: left;
      font: 500 42px "Rubik", sans-serif;
      color: #000; }
      @media (max-width: 768px) {
        .aboutWrapp .aboutus h2 {
          font-size: 28px;
          text-align: center; } }
    .aboutWrapp .aboutus .photo {
      width: 100%;
      margin: 0 0 40px 0;
      align-items: center;
      text-align: center; }
      .aboutWrapp .aboutus .photo img {
        width: 40%; }
        @media (max-width: 560px) {
          .aboutWrapp .aboutus .photo img {
            width: 100%; } }
    .aboutWrapp .aboutus p {
      text-align: left;
      font: 400 18px "Rubik", sans-serif;
      color: #000;
      margin: 24px 0 0 0; }
    .aboutWrapp .aboutus .share {
      height: auto;
      width: 100%;
      margin-top: 60px; }
      .aboutWrapp .aboutus .share h4 {
        text-align: left;
        font: 500 14px 'Heebo', sans-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; }

.photoGalleryWrapp {
  width: 100%;
  padding-top: 32px;
  margin-bottom: 72px; }
  .photoGalleryWrapp .photogalleryCon {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto;
    box-sizing: border-box; }
    .photoGalleryWrapp .photogalleryCon h2 {
      text-align: left;
      text-transform: uppercase;
      font: 600 40px "Rubik", sans-serif;
      color: #000; }
    .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: 1024px) {
        .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: 560px) {
        .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: 400 14px "Rubik", sans-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%; }
            .photoGalleryWrapp .photogalleryCon .photo_gallery_inner .photo_gallery_box .photo_gallery_link a img {
              display: block;
              width: 100%;
              height: 100%;
              object-fit: contain; }

.contentWrapp {
  width: 100%;
  margin-bottom: 72px; }
  .contentWrapp .content {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px; }
    .contentWrapp .content h2 {
      text-align: left;
      text-transform: uppercase;
      font: 500 42px "Rubik", sans-serif !important;
      color: #422874;
      margin: 0 0 16px 0; }
      @media (max-width: 768px) {
        .contentWrapp .content h2 {
          font-size: 28px !important;
          text-align: center; } }
    .contentWrapp .content .photo {
      width: 100%;
      margin: 0 0 40px 0;
      align-items: center;
      text-align: center; }
      .contentWrapp .content .photo img {
        width: 40%; }
        @media (max-width: 560px) {
          .contentWrapp .content .photo img {
            width: 100%; } }
    .contentWrapp .content p {
      text-align: left;
      font: 400 18px "Rubik", sans-serif !important;
      color: #000;
      margin: 24px 0 0 0; }
      .contentWrapp .content p span {
        font-family: "Rubik", sans-serif !important; }
    .contentWrapp .content .contentTable {
      width: 100%;
      margin: 24px 0 0 0; }
      .contentWrapp .content .contentTable ul {
        width: 100%;
        display: grid;
        grid-gap: 12px;
        grid-template-columns: repeat(1, 1fr); }
        .contentWrapp .content .contentTable ul li {
          width: calc(100% - 24px);
          font: 400 16px "Rubik", sans-serif;
          color: #000;
          margin: 0 0 0 24px;
          list-style: disc; }
          .contentWrapp .content .contentTable ul li span {
            font-family: "Rubik", sans-serif !important; }
      .contentWrapp .content .contentTable table {
        width: 100%;
        border-collapse: collapse; }
        .contentWrapp .content .contentTable table th {
          text-align: center;
          font: 500 13px "Rubik", sans-serif;
          color: #000;
          border: 1px solid #d0d0d0;
          padding: 8px 6px;
          background-color: #f2f2f2; }
        .contentWrapp .content .contentTable table td {
          text-align: center;
          font: 400 13px "Rubik", sans-serif;
          color: #505050;
          border: 1px solid #d0d0d0;
          padding: 8px 6px;
          background-color: #fff; }

.contactWrapp {
  width: 100%;
  padding-top: 32px;
  margin-bottom: 72px; }
  .contactWrapp .contactCon {
    width: 100%;
    max-width: 1220px;
    padding: 0 24px;
    margin: 0 auto;
    box-sizing: border-box; }
    .contactWrapp .contactCon h2 {
      text-align: left;
      text-transform: uppercase;
      font: 600 40px "Rubik", sans-serif;
      color: #000; }
    .contactWrapp .contactCon ul {
      width: 100%;
      margin: 32px 0;
      display: grid;
      grid-gap: 24px;
      grid-template-columns: repeat(3, 1fr); }
      @media (max-width: 768px) {
        .contactWrapp .contactCon ul {
          grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 560px) {
        .contactWrapp .contactCon ul {
          grid-template-columns: repeat(1, 1fr); } }
      .contactWrapp .contactCon ul li {
        width: 100%;
        background-color: #FFF8EB;
        display: flex;
        flex-flow: column;
        align-items: center;
        padding: 0 0 36px 0; }
        .contactWrapp .contactCon ul li.phone {
          background-color: #EBF7FF; }
          .contactWrapp .contactCon ul li.phone span {
            background: url(../icons/phone.svg) no-repeat center bottom 40px #0099FF;
            background-size: 66px; }
        .contactWrapp .contactCon ul li.email {
          background-color: #F9ECFF; }
          .contactWrapp .contactCon ul li.email span {
            background: url(../icons/email2.svg) no-repeat center bottom 40px #BC1CFF;
            background-size: 66px; }
        .contactWrapp .contactCon ul li span {
          display: block;
          width: 200px;
          background: url(../icons/address.svg) no-repeat center bottom 40px #FDBB43;
          background-size: 66px;
          border-radius: 0 0 120px 120px;
          padding: 124px 0 24px 0; }
        .contactWrapp .contactCon ul li b {
          display: block;
          width: 100%;
          text-align: center;
          font: 400 28px "Rubik", sans-serif;
          text-transform: uppercase;
          color: #000;
          margin: 24px 0 12px 0; }
        .contactWrapp .contactCon ul li p {
          text-align: center;
          font: 400 16px "Rubik", sans-serif;
          color: #000; }
    .contactWrapp .contactCon .message {
      width: 100%;
      max-width: 850px;
      margin: 62px auto 0 auto; }
      .contactWrapp .contactCon .message h2 {
        text-align: center;
        font: 400 40px "Rubik", sans-serif;
        color: #000; }
      .contactWrapp .contactCon .message small {
        display: block;
        width: 100%;
        text-align: center;
        font: 400 14px "Rubik", sans-serif;
        color: #808080;
        margin: 8px 0 0 0; }
      .contactWrapp .contactCon .message dl {
        width: 100%;
        margin: 32px 0 0 0;
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(2, 1fr); }
        @media (max-width: 560px) {
          .contactWrapp .contactCon .message dl {
            grid-template-columns: repeat(1, 1fr); } }
        .contactWrapp .contactCon .message dl dt {
          width: 100%; }
          .contactWrapp .contactCon .message dl dt label {
            display: block;
            width: 100%;
            text-align: left;
            font: 400 14px "Rubik", sans-serif;
            color: #505050;
            margin: 0 0 8px 0; }
          .contactWrapp .contactCon .message dl dt input[type=text] {
            display: block;
            width: 100%;
            height: 56px;
            padding: 8px;
            box-sizing: border-box;
            border: 1px solid #D0D0D0;
            font: 500 16px "Rubik", sans-serif;
            color: #000; }
            .contactWrapp .contactCon .message dl dt input[type=text]:focus {
              outline: none;
              border-color: #a0a0a0; }
      .contactWrapp .contactCon .message .msg {
        display: block;
        width: 100%;
        margin: 24px 0 0 0; }
        .contactWrapp .contactCon .message .msg label {
          display: block;
          width: 100%;
          text-align: left;
          font: 400 14px "Rubik", sans-serif;
          color: #505050;
          margin: 0 0 8px 0; }
        .contactWrapp .contactCon .message .msg textarea {
          display: block;
          width: 100%;
          height: 124px;
          padding: 8px;
          box-sizing: border-box;
          border: 1px solid #D0D0D0;
          font: 400 16px "Rubik", sans-serif;
          color: #000; }
          .contactWrapp .contactCon .message .msg textarea:focus {
            outline: none;
            border-color: #a0a0a0; }
      .contactWrapp .contactCon .message .button {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
        margin: 48px 0 0 0; }
        .contactWrapp .contactCon .message .button input[type=submit] {
          height: 56px;
          width: 100%;
          max-width: 220px;
          text-align: center;
          display: block;
          border: none;
          font: 400 14px "Rubik", sans-serif;
          color: #fff;
          text-transform: uppercase;
          background-color: #205ACC;
          cursor: pointer; }
          .contactWrapp .contactCon .message .button input[type=submit]:hover {
            background-color: #422874; }

.docWrapp {
  width: 100%;
  padding-top: 32px;
  margin-bottom: 72px; }
  .docWrapp .docCon {
    width: 100%;
    max-width: 1220px;
    padding: 0 24px;
    margin: 0 auto;
    box-sizing: border-box; }
    .docWrapp .docCon h2 {
      text-align: left;
      text-transform: uppercase;
      font: 600 40px "Rubik", sans-serif;
      color: #000; }
    .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 "Rubik", sans-serif;
              color: #000; }
            .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: 1024px) {
                  .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: 560px) {
                  .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 "Rubik", sans-serif;
                          color: #000;
                          padding: 16px 20px;
                          box-sizing: border-box; }

.photoGalleryWrapper {
  width: 100%;
  background-color: #F7F3EB;
  padding: 72px 0; }
  .photoGalleryWrapper .photogalleryInner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px; }
    .photoGalleryWrapper .photogalleryInner .heading {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media (max-width: 560px) {
        .photoGalleryWrapper .photogalleryInner .heading {
          flex-flow: column; } }
      .photoGalleryWrapper .photogalleryInner .heading li {
        width: auto; }
        @media (max-width: 560px) {
          .photoGalleryWrapper .photogalleryInner .heading li {
            width: 100%;
            text-align: left; } }
        .photoGalleryWrapper .photogalleryInner .heading li h2 {
          text-align: left;
          font: 500 28px "Rubik", sans-serif;
          color: #000;
          position: relative;
          z-index: 10; }
          @media (max-width: 560px) {
            .photoGalleryWrapper .photogalleryInner .heading li h2 {
              white-space: nowrap; } }
        .photoGalleryWrapper .photogalleryInner .heading li a {
          display: inline-block;
          text-align: center;
          font: 400 14px/48px "Rubik", sans-serif;
          color: #fff;
          background-color: #00A551;
          padding: 0 40px; }
          @media (max-width: 560px) {
            .photoGalleryWrapper .photogalleryInner .heading li a {
              margin: 20px 0 0 0;
              width: 100%; } }
          .photoGalleryWrapper .photogalleryInner .heading li a:hover {
            background-color: #042E6F; }
    .photoGalleryWrapper .photogalleryInner .gallery {
      width: 100%;
      margin: 48px 0 0 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 16px; }
      @media (max-width: 1024px) {
        .photoGalleryWrapper .photogalleryInner .gallery {
          grid-template-columns: repeat(3, 1fr); } }
      @media (max-width: 768px) {
        .photoGalleryWrapper .photogalleryInner .gallery {
          grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 560px) {
        .photoGalleryWrapper .photogalleryInner .gallery {
          grid-template-columns: repeat(1, 1fr); } }
      .photoGalleryWrapper .photogalleryInner .gallery .photo_gallery_box {
        width: 100%; }
        .photoGalleryWrapper .photogalleryInner .gallery .photo_gallery_box a {
          display: block;
          width: 100%;
          padding: 14px;
          background-color: #fff;
          transition: .3s ease; }
          .photoGalleryWrapper .photogalleryInner .gallery .photo_gallery_box a:hover span img {
            transform: scale(1.25);
            transition: .3s ease; }
          .photoGalleryWrapper .photogalleryInner .gallery .photo_gallery_box a span {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden; }
            .photoGalleryWrapper .photogalleryInner .gallery .photo_gallery_box a span img {
              display: block;
              width: 100%;
              object-fit: cover;
              transition: .3s ease; }
          .photoGalleryWrapper .photogalleryInner .gallery .photo_gallery_box a b {
            display: block;
            width: 100%;
            text-align: center;
            font: 400 14px "Rubik", sans-serif;
            color: #212832;
            padding: 1rem 0 .25rem 0; }
