[data-animation="fade-up"] {
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20%); }
  [data-animation="fade-up"].in-view {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible; }

[data-animation="opacity"] {
  transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  visibility: hidden; }
  [data-animation="opacity"].in-view {
    opacity: 1;
    visibility: visible; }

[data-animation="fade-left"] {
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20%); }
  [data-animation="fade-left"].in-view {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); }

[data-animation="fade-right"] {
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20%); }
  [data-animation="fade-right"].in-view {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); }

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto; }
  .popup-container .popup-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1024px;
    margin: 0 auto;
    max-height: 95vh;
    overflow-y: auto;
    position: relative; }
    .popup-container .popup-content h2 {
      font-size: 24px;
      line-height: 32px;
      font-weight: 600;
      margin-bottom: 30px;
      padding-right: 42px; }
      @media only screen and (max-width: 991px) {
        .popup-container .popup-content h2 {
          font-size: 20px;
          line-height: 30px; } }
    .popup-container .popup-content .form-group {
      margin-bottom: 30px; }
      .popup-container .popup-content .form-group label {
        display: block;
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
        font-family: "Lato", sans-serif;
        margin-bottom: 8px;
        color: #141414; }
        @media only screen and (max-width: 991px) {
          .popup-container .popup-content .form-group label {
            font-size: 16px;
            line-height: 26px; } }
      .popup-container .popup-content .form-group input, .popup-container .popup-content .form-group select {
        width: 100%;
        border: 1px solid #F1F1F1;
        border-radius: 5px;
        box-sizing: border-box;
        background: #FAFAFA;
        color: #141414; }
      .popup-container .popup-content .form-group .custom-select {
        position: relative; }
        .popup-container .popup-content .form-group .custom-select select {
          color: #B6B6B6; }
          .popup-container .popup-content .form-group .custom-select select option {
            color: #141414; }
        .popup-container .popup-content .form-group .custom-select::before {
          content: "";
          position: absolute;
          right: 0;
          top: 50%;
          width: 50px;
          height: 100%;
          transform: translateY(-50%);
          background: url(../img/dow-arrow-white.svg) no-repeat #001F44;
          pointer-events: none;
          text-align: center;
          background-position: center; }
      @media only screen and (max-width: 767px) {
        .popup-container .popup-content .form-group button {
          line-height: 16px;
          margin-top: 20px; } }
    .popup-container .popup-content .date-time {
      position: relative; }
      .popup-container .popup-content .date-time input {
        appearance: none; }
      .popup-container .popup-content .date-time::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 50px;
        height: 100%;
        transform: translateY(-50%);
        background: url(../img/calender-icon.svg) no-repeat #001F44;
        pointer-events: none;
        text-align: center;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        background-position: center; }
    .popup-container .popup-content .col-100 .form-group {
      margin-bottom: 0; }
    .popup-container .popup-content .col-50:nth-child(odd) .form-group {
      margin-right: 30px; }
    .popup-container .popup-content .varificationBox {
      display: flex; }
      .popup-container .popup-content .varificationBox .imageCode img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .popup-container .popup-content .close {
      position: absolute;
      top: 27px;
      right: 28px;
      cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .popup-container .popup-content {
      padding: 20px;
      max-width: 95%;
      max-height: 95vh; }
      .popup-container .popup-content .form-group {
        margin-bottom: 20px; }
      .popup-container .popup-content .col-50:nth-child(odd) .form-group {
        margin-right: 0; } }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; }

body {
  font-family: "Montserrat", sans-serif;
  color: #001F44;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  overflow-x: hidden;
  padding-top: 125px; }
  @media only screen and (min-width: 1920px) {
    body {
      max-width: 1920px;
      margin: 0 auto; } }
  @media only screen and (max-width: 991px) {
    body {
      padding-top: 133px; } }
  body::-webkit-scrollbar {
    width: 10px; }
  body::-webkit-scrollbar-thumb {
    background: #001F44; }
  body::-webkit-scrollbar-track {
    background: #F1F1F1; }

main {
  overflow-x: hidden;
  overflow-y: auto; }

.overflow-hidden {
  overflow: hidden; }

input:focus {
  outline: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px; }

p {
  font-family: "Lato", sans-serif;
  font-weight: 400; }

ul,
ol,
li {
  list-style-type: none; }

a {
  text-decoration: none;
  transition: all .5s ease;
  display: inline-block; }
  a :focus {
    outline: 0; }

img {
  display: block;
  max-width: 100%; }

input,
textarea,
button,
select {
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  background: none;
  outline: none;
  padding: 0 15px; }

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none; }

.com-pad-80 {
  padding: 80px 0  !important; }
  @media only screen and (max-width: 991px) {
    .com-pad-80 {
      padding: 40px 0 !important; } }

.com-pad-60 {
  padding: 60px 0 !important; }
  @media only screen and (max-width: 767px) {
    .com-pad-60 {
      padding: 30px 0 !important; } }

.com-pad-40 {
  padding: 40px 0 !important; }

.text-right {
  text-align: right; }

.display-flex {
  display: flex;
  flex-wrap: wrap; }

.text-center {
  text-align: center; }

.align-center {
  align-items: center; }

.align-end {
  align-items: flex-end; }

.justify-end {
  justify-content: flex-end; }

.btn {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  line-height: 20px;
  font-weight: 600;
  background: #D79501;
  color: #ffffff;
  border: 1px solid #D79501;
  padding: 16px  24px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out; }
  .btn span {
    position: relative;
    padding-right: 34px; }
    .btn span::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background: url(../img/btn-arrow-color.svg) no-repeat;
      filter: brightness(0) invert(1);
      width: 24px;
      height: 24px; }
  .btn:hover {
    background: #001F44;
    border: 1px solid #001F44; }
    .btn:hover span::before {
      transform: translateY(-50%) rotate(-50deg); }

.btnTransparent {
  background: transparent;
  border: 1px solid #141414;
  color: #141414;
  transition: all 0.5s ease-in-out; }
  .btnTransparent span::before {
    filter: brightness(0) invert(0); }
  .btnTransparent:hover {
    background: #001F44;
    color: #ffffff; }
    .btnTransparent:hover span::before {
      filter: brightness(0) invert(1);
      transform: translateY(-50%) rotate(-50deg); }

.btnMainColor {
  background: transparent;
  border: 1px solid #001F44;
  color: #001F44;
  transition: all 0.5s ease-in-out; }
  .btnMainColor span::before {
    transition: all 0.5s ease-in-out;
    filter: brightness(0) invert(0); }
  .btnMainColor:hover {
    background: #001F44;
    color: #ffffff; }
    .btnMainColor:hover span::before {
      filter: brightness(0) invert(1);
      transform: translateY(-50%) rotate(-50deg); }

.bntWhite {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff; }
  .bntWhite span::before {
    filter: brightness(0) invert(1); }

.mb-0 {
  margin-bottom: 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.p-0 {
  padding: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.btn-auto {
  width: auto;
  height: auto; }

.w-auto {
  width: auto; }

.h-auto {
  height: auto; }

.w-full {
  width: 100%; }

.h-full {
  height: 100%; }

.bgYellow {
  background: #F4FFDD; }

.bgPurple {
  background: #DDE5FF; }

.bgPink {
  background: #FFDDDD; }

.commonBannerHedaingBox {
  max-width: 992px;
  padding: 0; }
  .commonBannerHedaingBox .heading {
    text-transform: uppercase;
    font-size: 100px;
    line-height: 110px;
    font-weight: 700;
    font-weight: 800;
    margin-bottom: 16px; }
    @media only screen and (max-width: 991px) {
      .commonBannerHedaingBox .heading {
        font-size: 60px;
        line-height: 70px; } }
    @media only screen and (max-width: 1200px) {
      .commonBannerHedaingBox .heading {
        font-size: 80px;
        line-height: 90px; } }
    @media only screen and (max-width: 991px) {
      .commonBannerHedaingBox .heading {
        font-size: 40px;
        line-height: 50px; } }

::placeholder {
  color: #B6B6B6; }

.bgSkyBlue {
  background: #F4F8FD; }

.mb-50 {
  margin-bottom: 50px; }

.mt-30 {
  margin-top: 30px; }

.mt-50 {
  margin-top: 50px; }

.desktop-view {
  display: block; }
  @media only screen and (max-width: 991px) {
    .desktop-view {
      display: none; } }

.mobile-view {
  display: none; }
  @media only screen and (max-width: 991px) {
    .mobile-view {
      display: block; } }

.commonCardItem {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 10px;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
  .commonCardItem .beforeItem {
    position: relative;
    z-index: 1;
    height: 100%; }
    .commonCardItem .beforeItem .image {
      width: 100%;
      overflow: hidden; }
      .commonCardItem .beforeItem .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1); }
    .commonCardItem .beforeItem .itemContent {
      padding: 0 20px 20px 20px;
      position: absolute;
      bottom: 0;
      right: 0;
      color: #ffffff;
      width: 100%; }
      .commonCardItem .beforeItem .itemContent .display-flex {
        justify-content: space-around;
        align-items: center; }
        .commonCardItem .beforeItem .itemContent .display-flex h4 {
          font-size: 32px;
          line-height: 42px;
          font-weight: 700;
          margin-bottom: 0;
          flex: 1; }
          @media only screen and (max-width: 991px) {
            .commonCardItem .beforeItem .itemContent .display-flex h4 {
              font-size: 24px;
              line-height: 34px; } }
    .commonCardItem .beforeItem::before {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      bottom: 0;
      z-index: 0;
      transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
      opacity: 0;
      visibility: hidden;
      z-index: 1; }
  .commonCardItem:hover .beforeItem::before {
    opacity: 1;
    visibility: visible; }
  .commonCardItem:hover .image img {
    transform: scale(1.1); }

.commonheading .heading {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 30px; }
  @media only screen and (max-width: 991px) {
    .commonheading .heading {
      font-size: 20px;
      line-height: 30px; } }
.commonheading p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px; }
  @media only screen and (max-width: 991px) {
    .commonheading p {
      font-size: 16px;
      line-height: 26px; } }

.imageZoomEffect {
  overflow: hidden; }
  .imageZoomEffect img {
    transition: transform 0.3s ease-in-out; }
  .imageZoomEffect:hover img {
    transform: scale(1.05); }

.swiper-arrow-box {
  position: absolute;
  bottom: 0;
  left: 77%;
  display: flex; }
  .swiper-arrow-box .swiper-arrow {
    background: #001F44;
    color: #ffffff;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 67px;
    height: 104px;
    flex: 1; }
    .swiper-arrow-box .swiper-arrow::after {
      background: url(../img/next-arrow.svg) no-repeat center;
      font-size: 0;
      width: 13px;
      height: 19px;
      filter: brightness(0) invert(1); }
  .swiper-arrow-box .swiper-button-prev {
    opacity: 0.68; }
    .swiper-arrow-box .swiper-button-prev::after {
      transform: rotate(180deg); }

.loader-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10; }

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid #001F44;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto; }
  .loader:after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #D79501; }

@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.not-found-scetion {
  background: url(../img/not-found-bg.jpg) no-repeat;
  background-size: cover;
  min-height: 550px;
  display: flex;
  align-items: center; }
  .not-found-scetion .heading {
    font-size: 100px;
    line-height: 110px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase; }
    @media only screen and (max-width: 991px) {
      .not-found-scetion .heading {
        font-size: 60px;
        line-height: 70px; } }
  .not-found-scetion p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 60px; }
    @media only screen and (max-width: 991px) {
      .not-found-scetion p {
        font-size: 16px;
        line-height: 26px; } }
  .not-found-scetion .btn {
    font-weight: 400; }
    .not-found-scetion .btn:hover {
      background: #D79501; }

.thank-you-section .popup-content {
  text-align: center;
  max-width: 750px;
  margin: auto; }
  .thank-you-section .popup-content .thank-you-gif {
    width: 120px;
    height: 120px;
    margin: auto; }
  .thank-you-section .popup-content h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: uppercase; }
    @media only screen and (max-width: 991px) {
      .thank-you-section .popup-content h2 {
        font-size: 20px;
        line-height: 30px; } }
  .thank-you-section .popup-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 50px;
    color: #565656; }
    @media only screen and (max-width: 991px) {
      .thank-you-section .popup-content p {
        font-size: 16px;
        line-height: 26px; } }

.yearSelectBox {
  max-width: 150px;
  width: 100%; }
  .yearSelectBox select {
    height: auto;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-weight: 700;
    color: #001F44;
    border: 1px solid #001F44;
    background: url(../img/down-arrow.svg) no-repeat right 20px center; }

.imageHoverEffect {
  position: relative;
  overflow: hidden; }
  .imageHoverEffect img {
    width: 100%;
    transition: all 0.5s ease-in-out; }
  .imageHoverEffect:hover img {
    transform: scale(1.05); }

.youtube-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%; }
  .youtube-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/youtube-icon.svg) no-repeat;
    width: 100px;
    height: 100px;
    background-size: 100%;
    z-index: 1; }
    @media only screen and (max-width: 991px) {
      .youtube-icon::before {
        width: 50px;
        height: 50px; } }

.swiper-wrapper {
  transition-timing-function: linear !important; }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid #ECECEC;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  transition: all 1s ease-in-out; }
  header .top-bar {
    background: #001F44;
    padding: 15px 0;
    color: #ffffff;
    text-transform: uppercase; }
    header .top-bar .txt {
      font-size: 14px;
      line-height: 22px;
      font-weight: 400; }
    header .top-bar .topBarLink ul {
      display: flex;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 32px; }
      header .top-bar .topBarLink ul li a {
        color: #ffffff;
        font-size: 14px;
        line-height: 22px;
        font-weight: 400; }
    @media only screen and (max-width: 1200px) {
      header .top-bar .topBarLink ul {
        gap: 16px; } }
    @media only screen and (max-width: 991px) {
      header .top-bar .topBarLink {
        display: none; }
      header .top-bar .txt {
        font-size: 12px;
        line-height: 20px;
        font-weight: 400; } }
  header .bottom-bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    padding-left: 80px;
    background: #ffffff; }
    header .bottom-bar .flex-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 20px; }
      header .bottom-bar .flex-header .left-head {
        justify-content: flex-start;
        align-self: stretch;
        align-items: center;
        display: flex; }
        header .bottom-bar .flex-header .left-head .logo {
          display: flex;
          justify-content: center;
          align-self: stretch;
          align-items: center;
          flex-direction: row;
          flex: none;
          width: 120px;
          padding: 10px 0;
          margin-right: 100px; }
        header .bottom-bar .flex-header .left-head .nav-links-header {
          display: flex;
          align-self: stretch; }
          header .bottom-bar .flex-header .left-head .nav-links-header > ul {
            display: flex;
            flex: 1;
            justify-content: flex-start;
            align-self: stretch;
            align-items: center;
            gap: 36px;
            position: static; }
            header .bottom-bar .flex-header .left-head .nav-links-header > ul li {
              display: flex;
              flex-direction: row;
              justify-content: center;
              align-items: center;
              text-transform: uppercase;
              position: relative; }
              header .bottom-bar .flex-header .left-head .nav-links-header > ul li a {
                color: #001F44;
                cursor: pointer;
                font-size: 14px;
                line-height: 22px;
                font-weight: 400; }
          @media only screen and (max-width: 991px) {
            header .bottom-bar .flex-header .left-head .nav-links-header {
              display: none; } }
      header .bottom-bar .flex-header .right-head {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex: none;
        align-self: stretch;
        position: relative; }
        header .bottom-bar .flex-header .right-head ul {
          display: flex;
          flex: 1;
          justify-content: space-between;
          align-self: stretch;
          align-items: center;
          position: relative; }
          header .bottom-bar .flex-header .right-head ul li {
            display: flex;
            position: relative;
            height: 100%;
            justify-content: center;
            align-self: stretch;
            align-items: center; }
            header .bottom-bar .flex-header .right-head ul li:nth-child(2) {
              padding: 0 30px;
              margin-left: 30px; }
              header .bottom-bar .flex-header .right-head ul li:nth-child(2):before {
                content: '';
                position: absolute;
                width: 1px;
                height: 100%;
                background: #E4E4E4;
                top: 0;
                left: 0; }
            header .bottom-bar .flex-header .right-head ul li .loginBtn {
              background: #001F44;
              font-family: "Montserrat", sans-serif;
              font-size: 16px;
              line-height: 22px;
              font-weight: 400;
              padding: 8px 24px;
              letter-spacing: 5%;
              color: #ffffff;
              text-transform: uppercase;
              transition: all 1s ease-in-out; }
              header .bottom-bar .flex-header .right-head ul li .loginBtn:hover {
                background: #D79501; }
            header .bottom-bar .flex-header .right-head ul li .hambergerBtn {
              border: none;
              width: 70px;
              height: 100%;
              background: #001F44;
              cursor: pointer;
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              position: relative; }
              header .bottom-bar .flex-header .right-head ul li .hambergerBtn span {
                display: block;
                width: 35px;
                border: 1px solid #ffffff;
                border-radius: 2px;
                position: absolute;
                transition: transform 0.3s ease, opacity 0.3s ease; }
                header .bottom-bar .flex-header .right-head ul li .hambergerBtn span:first-child {
                  transform: translateY(-6px); }
                header .bottom-bar .flex-header .right-head ul li .hambergerBtn span:last-child {
                  transform: translateY(6px); }
              header .bottom-bar .flex-header .right-head ul li .hambergerBtn.active span:first-child {
                transform: rotate(45deg); }
              header .bottom-bar .flex-header .right-head ul li .hambergerBtn.active span:last-child {
                transform: rotate(-45deg); }
            @media only screen and (max-width: 991px) {
              header .bottom-bar .flex-header .right-head ul li:first-child {
                margin-right: 10px; }
              header .bottom-bar .flex-header .right-head ul li:nth-child(2) {
                display: none; } }
    @media only screen and (min-width: 1920px) {
      header .bottom-bar {
        max-width: 1920px;
        margin: 0 auto; } }
    @media only screen and (max-width: 1200px) {
      header .bottom-bar {
        padding-left: 50px; }
        header .bottom-bar .flex-header {
          gap: 10px; }
          header .bottom-bar .flex-header .left-head .logo {
            margin-right: 60px; }
          header .bottom-bar .flex-header .left-head .nav-links-header > ul {
            gap: 15px; }
          header .bottom-bar .flex-header .right-head ul li:nth-child(2) {
            padding: 0 20px;
            margin-left: 20px; } }
    @media only screen and (max-width: 991px) {
      header .bottom-bar {
        padding-left: 40px; }
        header .bottom-bar .right-head ul li:nth-child(2) {
          display: none; } }
    @media only screen and (max-width: 991px) {
      header .bottom-bar {
        padding-left: 16px; }
        header .bottom-bar .flex-header .left-head .logo {
          width: 116px;
          margin-right: 0;
          justify-content: flex-start;
          display: block; }
        header .bottom-bar .flex-header .right-head {
          padding-right: 16px; }
          header .bottom-bar .flex-header .right-head ul li:not(:last-child) {
            padding: 0 10px; }
          header .bottom-bar .flex-header .right-head ul li .loginBtn {
            font-size: 14px;
            line-height: 22px;
            font-weight: 400;
            padding: 8px 11px; }
          header .bottom-bar .flex-header .right-head ul li .hambergerBtn {
            width: 40px;
            height: 40px; }
            header .bottom-bar .flex-header .right-head ul li .hambergerBtn span {
              width: 17px; }
              header .bottom-bar .flex-header .right-head ul li .hambergerBtn span:first-child {
                transform: translateY(-4px); }
              header .bottom-bar .flex-header .right-head ul li .hambergerBtn span:last-child {
                transform: translateY(4px); } }
  header .menu-search-box {
    padding: 20px 0; }
    header .menu-search-box .form-group .search-input {
      position: relative;
      background: #F4F8FD;
      border: 1px solid #001F44;
      height: 40px;
      padding-left: 30px; }
      header .menu-search-box .form-group .search-input::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: url(../img/search-icon.svg) no-repeat center center;
        top: 50%;
        left: 15px;
        transform: translateY(-50%); }
      header .menu-search-box .form-group .search-input input {
        border: none;
        background: transparent;
        height: 40px; }

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%; }

header .nav-links-header li.dropdown {
  height: 100%;
  position: relative; }
  header .nav-links-header li.dropdown .gradient-box {
    position: absolute;
    left: 0;
    top: 100%;
    width: 260px;
    background: #ffffff;
    border-top: 1px solid #001F44;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    color: #001F44; }
    header .nav-links-header li.dropdown .gradient-box .first-level-dropdown ul {
      display: block; }
      header .nav-links-header li.dropdown .gradient-box .first-level-dropdown ul li {
        display: block;
        text-transform: none !important;
        position: relative; }
        header .nav-links-header li.dropdown .gradient-box .first-level-dropdown ul li a {
          color: #001F44;
          width: 100%;
          display: block;
          padding: 12px 15px;
          transition: all 0.5s ease;
          position: relative; }
          header .nav-links-header li.dropdown .gradient-box .first-level-dropdown ul li a:after {
            display: none; }
          header .nav-links-header li.dropdown .gradient-box .first-level-dropdown ul li a:hover {
            background: #001F44;
            color: #ffffff; }
        header .nav-links-header li.dropdown .gradient-box .first-level-dropdown ul li:not(:last-child) {
          border-bottom: 1px solid #CCCCCC; }
  header .nav-links-header li.dropdown a span {
    position: relative;
    padding-left: 18px; }
  header .nav-links-header li.dropdown a:after {
    display: none !important; }
  header .nav-links-header li.dropdown:first-child .gradient-box {
    left: -28px; }
  header .nav-links-header li.dropdown:hover a span:after {
    transform: translate(0, -50%) rotate(180deg); }
  header .nav-links-header li.dropdown:hover .gradient-box,
  header .nav-links-header li.dropdown:hover .fullFledgeMenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); }
header .bottom-bar {
  position: relative; }
  header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu {
    position: static; }
    header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu {
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      background: #ffffff;
      border: 1px solid #E4E4E4;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s ease-in-out;
      color: #001F44; }
      header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li {
        font-family: "Lato", sans-serif;
        text-transform: none; }
        header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide {
          width: 30%; }
          header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide ul {
            border-right: 1px solid #E4E4E4;
            height: 100%; }
            header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide ul li {
              display: block; }
              header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide ul li a {
                display: block;
                padding: 30px 20px;
                text-align: center;
                font-size: 20px;
                line-height: 30px; }
                @media only screen and (max-width: 991px) {
                  header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide ul li a {
                    font-size: 18px;
                    line-height: 28px; } }
                header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide ul li a.active {
                  background: #001F44;
                  color: #ffffff; }
              header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .leftSide ul li:not(:last-child) {
                border-bottom: 1px solid #E4E4E4; }
        header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .rightSide {
          width: 70%;
          padding: 60px; }
          header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .rightSide .course-menu {
            font-size: 32px;
            line-height: 42px;
            font-weight: 600;
            margin-bottom: 15px; }
            @media only screen and (max-width: 991px) {
              header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu .fullFledgeMenu ul li .display-flex .rightSide .course-menu {
                font-size: 24px;
                line-height: 34px; } }
    header .bottom-bar .flex-header .left-head .nav-links-header .dropdownFullMenu:hover .fullFledgeMenu {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); }

.hambergerMenu {
  position: fixed;
  top: 125px;
  right: 0;
  width: 100%;
  height: 100%;
  background: #001F44;
  z-index: 9;
  transition: all 1s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden; }
  .hambergerMenu .scroll-div {
    height: 95%;
    overflow-y: auto;
    padding: 60px 0;
    max-height: calc(100vh - 100px); }
    .hambergerMenu .scroll-div::-webkit-scrollbar {
      width: 2px; }
    .hambergerMenu .scroll-div::-webkit-scrollbar-thumb {
      background: #ffffff; }
    .hambergerMenu .scroll-div::-webkit-scrollbar-track {
      background: transparent;
      box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); }
    .hambergerMenu .scroll-div .hamberMenuInner {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      overflow: hidden;
      padding: 0; }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li:not(:last-child) {
        padding-bottom: 40px; }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li a {
        color: #ffffff;
        font-size: 40px;
        line-height: 50px;
        font-family: "Lato", sans-serif;
        transition: all 0.3s ease;
        text-transform: uppercase; }
        @media only screen and (max-width: 991px) {
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li a {
            font-size: 20px;
            line-height: 30px; } }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li a:hover {
          color: #D79501;
          text-decoration: underline;
          transform: translateX(10px); }
        @media only screen and (max-width: 991px) {
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li a:hover {
            transform: translateX(0); } }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.mobile-menu {
        display: none; }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.height-ul {
        border-bottom: none !important;
        margin-bottom: 0 !important; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.height-ul > a {
          display: none !important; }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li .hide-menu {
        display: none; }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu > a {
        position: relative;
        display: block; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu > a::before {
          content: '';
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%) rotate(-90deg);
          background: url(../img/dow-arrow-white.svg) no-repeat center center;
          width: 15px;
          height: 8px; }
      .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transform: translate(100%, 0);
        opacity: 0;
        visibility: hidden;
        z-index: 10;
        transition: transform 0.8s ease-in-out; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one.active {
          position: static;
          transform: translate(0, 0);
          opacity: 1;
          visibility: visible; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .step-two {
          display: none; }
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .step-two.active {
            display: block; }
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .step-two li {
            position: relative;
            padding-left: 30px;
            margin-top: 10px;
            border: none;
            padding-bottom: 0;
            margin-bottom: 0px; }
            .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .step-two li::before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              background: url(../img/btn-arrow.svg) no-repeat center center;
              width: 24px;
              height: 24px; }
            .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .step-two li a {
              font-weight: 500;
              text-transform: none; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one li a {
          font-weight: 300; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .dropdown > a {
          position: relative;
          display: block;
          text-transform: none; }
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .dropdown > a::before {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: url(../img/dow-arrow-white.svg) no-repeat center center;
            width: 15px;
            height: 8px; }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .dropdown.active-dropdown > a::before {
          transform: translateY(-50%) rotate(180deg); }
        .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .backbtn {
          position: relative;
          display: block;
          padding-left: 30px;
          font-weight: 400; }
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.drpmenu .step-one .backbtn::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            background: url(../img/dow-arrow-white.svg) no-repeat center center;
            width: 24px;
            height: 24px;
            cursor: pointer; }
      .hambergerMenu .scroll-div .hamberMenuInner .visible-menu {
        display: none !important; }
    .hambergerMenu .scroll-div .contact-box-hamberger {
      color: #ffffff; }
      .hambergerMenu .scroll-div .contact-box-hamberger p {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px; }
        @media only screen and (max-width: 991px) {
          .hambergerMenu .scroll-div .contact-box-hamberger p {
            font-size: 18px;
            line-height: 28px; } }
      .hambergerMenu .scroll-div .contact-box-hamberger a {
        color: #ffffff; }
      .hambergerMenu .scroll-div .contact-box-hamberger .social-icon-box {
        border-top: 2px solid #fff;
        padding-top: 20px;
        margin-top: 20px; }
        .hambergerMenu .scroll-div .contact-box-hamberger .social-icon-box p {
          font-size: 14px;
          line-height: 22px;
          font-weight: 400; }
        .hambergerMenu .scroll-div .contact-box-hamberger .social-icon-box .social-icon ul {
          display: flex;
          flex-wrap: wrap;
          gap: 20px;
          align-items: center; }
          .hambergerMenu .scroll-div .contact-box-hamberger .social-icon-box .social-icon ul li a {
            transition: all 0.5 ease-in-out; }
            .hambergerMenu .scroll-div .contact-box-hamberger .social-icon-box .social-icon ul li a:hover {
              transform: translateY(-5px); }
      .hambergerMenu .scroll-div .contact-box-hamberger > ul li {
        opacity: 0.7;
        padding-bottom: 10px; }
    @media only screen and (max-width: 991px) {
      .hambergerMenu .scroll-div {
        padding: 40px 0 0;
        max-height: calc(100vh - 250px); }
        .hambergerMenu .scroll-div .hamberMenuInner {
          display: flex;
          align-items: flex-end;
          justify-content: space-between;
          flex-wrap: wrap; }
          .hambergerMenu .scroll-div .hamberMenuInner .menu-list {
            width: 100%; }
            .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li {
              padding-bottom: 16px; }
              .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li.mobile-menu {
                display: block; }
              .hambergerMenu .scroll-div .hamberMenuInner .menu-list ul li:not(:last-child) {
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.5);
                margin-bottom: 16px; }
          .hambergerMenu .scroll-div .hamberMenuInner .contact-box-hamberger > ul li {
            font-size: 12px;
            line-height: 20px;
            font-weight: 400; }
        .hambergerMenu .scroll-div .mobile-social-icon {
          background: #01254F;
          padding: 26px 0; } }
  .hambergerMenu.show-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible; }
  @media only screen and (max-width: 991px) {
    .hambergerMenu {
      top: 200px; } }

.newsletter {
  border-top: 1px solid #001F44; }
  .newsletter .news-letter-flex {
    display: flex; }
    .newsletter .news-letter-flex .left-side {
      max-width: 324px;
      width: 100%; }
      .newsletter .news-letter-flex .left-side .news-logo {
        padding: 30px 0 33px;
        border-right: 1px solid #001F44;
        height: 100%;
        display: flex;
        align-items: center; }
  .newsletter .right-side {
    margin-left: 100px;
    width: 100%; }
    .newsletter .right-side .info-news {
      padding: 44px 0 46px;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .newsletter .right-side .info-news .content-box {
        width: 70%;
        padding-right: 20px; }
        .newsletter .right-side .info-news .content-box p {
          font-size: 24px;
          line-height: 32px;
          color: #001F44; }
          @media only screen and (max-width: 991px) {
            .newsletter .right-side .info-news .content-box p {
              font-size: 20px;
              line-height: 30px; } }
      .newsletter .right-side .info-news .button-area {
        width: 30%; }
  @media only screen and (max-width: 1350px) {
    .newsletter .news-letter-flex .left-side {
      max-width: 250px; }
    .newsletter .news-letter-flex .right-side {
      margin-left: 50px; }
      .newsletter .news-letter-flex .right-side .info-news .content-box {
        width: 60%;
        padding-right: 20px; }
      .newsletter .news-letter-flex .right-side .info-news .button-area {
        width: auto; } }
@media only screen and (max-width: 1350px) and (max-width: 991px) {
  .newsletter .news-letter-flex {
    flex-direction: column; }
    .newsletter .news-letter-flex .left-side {
      max-width: 100%;
      width: 100%; }
      .newsletter .news-letter-flex .left-side .news-logo {
        padding: 16px 0 0;
        border-right: none;
        width: 166px; }
    .newsletter .news-letter-flex .right-side {
      margin-left: 0;
      width: 100%; }
      .newsletter .news-letter-flex .right-side .info-news {
        padding: 12px 0 20px;
        flex-direction: column; }
        .newsletter .news-letter-flex .right-side .info-news .content-box {
          max-width: 100%;
          width: 100%; }
          .newsletter .news-letter-flex .right-side .info-news .content-box p {
            font-size: 16px;
            line-height: 22px;
            font-weight: 400;
            padding-right: 0;
            margin-bottom: 20px; }
        .newsletter .news-letter-flex .right-side .info-news .button-area {
          width: 100%; } }

footer {
  background: #001F44;
  font-family: "Lato", sans-serif; }
  footer .foo-top {
    margin-bottom: 40px; }
    footer .foo-top .right-space {
      max-width: 365px;
      padding-right: 0; }
    footer .foo-top a {
      transform: all 0.5 ease-in-out; }
      footer .foo-top a:hover {
        transform: translateX(10px); }
  footer .foo-bottom .foo-col h5,
  footer .foo-bottom .foo-col li {
    margin-bottom: 8px; }
    footer .foo-bottom .foo-col h5:last-child,
    footer .foo-bottom .foo-col li:last-child {
      margin-bottom: 0; }
  footer .foo-col h5 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    text-transform: uppercase; }
  footer .foo-col p {
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400; }
  footer .foo-col li {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400; }
    footer .foo-col li a {
      color: #ffffff;
      cursor: pointer;
      font-size: 12px;
      line-height: 20px;
      font-weight: 400; }
  footer .social-icon ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center; }
    footer .social-icon ul li a {
      transition: all 0.5 ease-in-out; }
      footer .social-icon ul li a:hover {
        transform: translateY(-5px); }
  @media only screen and (max-width: 991px) {
    footer .foo-col h5 {
      margin-bottom: 16px;
      font-size: 16px;
      line-height: 22px;
      font-weight: 400; }
    footer .foo-col p {
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      font-weight: 300; }
    footer .foo-col li {
      margin-bottom: 15px;
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      font-weight: 300; }
      footer .foo-col li a {
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        font-weight: 300; }
    footer .foo-top {
      margin-bottom: 0; }
      footer .foo-top .right-space {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%; }
      footer .foo-top .col-10 {
        margin-bottom: 30px; }
    footer .foo-bottom .foo-col.text-right li, footer .foo-bottom .foo-col.text-right a {
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      font-weight: 300; }
    footer .foo-bottom .col-30 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
    footer .foo-bottom .col-30.display-flex.align-end {
      display: block; }
    footer .foo-bottom .social-icon ul {
      margin: 40px 0; } }
  @media only screen and (max-width: 767px) {
    footer .foo-bottom .foo-col.text-right {
      text-align: center; }
    footer .foo-bottom .social-icon ul {
      justify-content: center;
      margin: 40px 0; }
    footer .foo-bottom .col-30 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.wrapper {
  max-width: calc(100% - 160px);
  margin: 0 auto;
  padding: 0; }
  @media only screen and (min-width: 1920px) {
    .wrapper {
      max-width: 1920px;
      margin: 0 80px; } }
  @media only screen and (max-width: 1200px) {
    .wrapper {
      max-width: calc(100% - 100px); } }
  @media only screen and (max-width: 991px) {
    .wrapper {
      max-width: calc(100% - 80px); } }
  @media only screen and (max-width: 767px) {
    .wrapper {
      max-width: calc(100% - 32px); } }

.wrapper-two {
  max-width: calc(100% - 200px);
  margin: 0 auto;
  padding: 0; }
  @media only screen and (max-width: 1200px) {
    .wrapper-two {
      max-width: calc(100% - 100px); } }
  @media only screen and (max-width: 991px) {
    .wrapper-two {
      max-width: calc(100% - 80px); } }
  @media only screen and (max-width: 767px) {
    .wrapper-two {
      max-width: calc(100% - 32px); } }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.center-item {
  align-items: center; }

.overflow-hidden {
  overflow: hidden; }

.common-col, .col-10, .col-13, .col-20, .col-25, .col-30, .cols-33, .col-35, .col-40, .col-50, .col-60, .col-70, .col-80, .col-90, .col-100 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col-10 {
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%; }
  @media only screen and (max-width: 991px) {
    .col-10 {
      -ms-flex: 0 0 33.33%;
      flex: 0 0 33.33%;
      max-width: 33.33%; } }
  @media only screen and (max-width: 767px) {
    .col-10 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; } }

.col-13 {
  -ms-flex: 0 0 16.25%;
  flex: 0 0 16.25%;
  max-width: 16.25%; }
  @media only screen and (max-width: 767px) {
    .col-13 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }
  @media only screen and (max-width: 767px) {
    .col-20 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-25 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }
  @media only screen and (max-width: 767px) {
    .col-25 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-30 {
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%; }
  @media only screen and (max-width: 767px) {
    .col-30 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.cols-33 {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%; }
  @media only screen and (max-width: 991px) {
    .cols-33 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; } }
  @media only screen and (max-width: 767px) {
    .cols-33 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-35 {
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%; }
  @media only screen and (max-width: 767px) {
    .col-35 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-40 {
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%; }
  @media only screen and (max-width: 991px) {
    .col-40 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-50 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }
  @media only screen and (max-width: 991px) {
    .col-50 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-60 {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%; }
  @media only screen and (max-width: 767px) {
    .col-60 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-70 {
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%; }
  @media only screen and (max-width: 767px) {
    .col-70 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-80 {
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%; }
  @media only screen and (max-width: 767px) {
    .col-80 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-90 {
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%; }
  @media only screen and (max-width: 767px) {
    .col-90 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }

.col-100 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.bannerSection .display-flex .leftSide {
  width: 60%;
  position: relative; }
  .bannerSection .display-flex .leftSide .line-anim {
    position: absolute;
    left: 0;
    top: 0%; }
    @media only screen and (max-width: 991px) {
      .bannerSection .display-flex .leftSide .line-anim {
        display: none; } }
  .bannerSection .display-flex .leftSide .image {
    height: 100%; }
    .bannerSection .display-flex .leftSide .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
.bannerSection .display-flex .rightSide {
  background: url(../img/banner-bg.jpg) no-repeat center;
  background-color: #001F44;
  background-blend-mode: multiply;
  width: 40%;
  display: flex;
  align-items: center; }
  .bannerSection .display-flex .rightSide .admission-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    padding-left: 50px; }
    @media only screen and (max-width: 991px) {
      .bannerSection .display-flex .rightSide .admission-text {
        font-size: 18px;
        line-height: 28px; } }
  .bannerSection .display-flex .rightSide .commonBannerHeadingBox {
    position: relative;
    padding-left: 50px;
    padding-top: 30px;
    max-width: 700px;
    z-index: 1; }
    .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox {
      position: relative; }
      .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading {
        font-size: 80px;
        line-height: 88px;
        color: #ffffff;
        text-transform: uppercase;
        padding-bottom: 40px; }
        @media only screen and (max-width: 991px) {
          .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading {
            font-size: 40px;
            line-height: 50px; } }
        .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading span {
          font-size: 152px;
          line-height: 162px;
          display: block; }
          @media only screen and (max-width: 991px) {
            .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading span {
              font-size: 60px;
              line-height: 70px; } }
      .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .line-anim {
        position: absolute;
        height: 200%;
        width: 100%;
        top: -60px;
        left: calc(-20% - 34px);
        z-index: -1; }
      @media only screen and (max-width: 1350px) {
        .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading {
          font-size: 60px;
          line-height: 70px; }
          .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading span {
            font-size: 100px;
            line-height: 110px; } }
      @media only screen and (max-width: 991px) {
        .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading {
          font-size: 30px;
          line-height: 40px;
          padding-bottom: 23px;
          padding-left: 23px;
          margin-bottom: 0; }
          .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .heading span {
            font-size: 60px;
            line-height: 70px; }
        .bannerSection .display-flex .rightSide .commonBannerHeadingBox .headingMainBox .line-anim {
          top: -31px;
          left: calc(-10% - 34px); } }
    .bannerSection .display-flex .rightSide .commonBannerHeadingBox p {
      font-weight: 300;
      text-transform: uppercase;
      font-size: 20px;
      line-height: 30px;
      color: #ffffff;
      margin-bottom: 20px; }
      @media only screen and (max-width: 991px) {
        .bannerSection .display-flex .rightSide .commonBannerHeadingBox p {
          font-size: 18px;
          line-height: 28px; } }
    .bannerSection .display-flex .rightSide .commonBannerHeadingBox .content-box {
      padding: 0 10px 20px 20px; }
      .bannerSection .display-flex .rightSide .commonBannerHeadingBox .content-box .applyBtn .btn:hover {
        border: 1px solid #ffffff;
        background: transparent; }
    @media only screen and (max-width: 991px) {
      .bannerSection .display-flex .rightSide .commonBannerHeadingBox {
        padding-top: 0; } }
@media only screen and (max-width: 991px) {
  .bannerSection .display-flex .leftSide {
    width: 100%; }
  .bannerSection .display-flex .rightSide {
    width: 100%; }
    .bannerSection .display-flex .rightSide .admission-text {
      display: none; } }

.accreditationSection {
  padding: 30px 0 80px 0; }
  .accreditationSection .accreditationImageBox {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .accreditationSection .accreditationImageBox .heading {
      font-size: 18px;
      line-height: 28px;
      font-weight: 600;
      display: block;
      word-wrap: break-word;
      padding-right: 30px; }
      @media only screen and (max-width: 991px) {
        .accreditationSection .accreditationImageBox .heading {
          font-size: 16px;
          line-height: 26px; } }
    .accreditationSection .accreditationImageBox .imagflex {
      display: flex;
      align-items: center;
      gap: 50px;
      max-width: 700px;
      width: auto; }
      .accreditationSection .accreditationImageBox .imagflex .image {
        flex: 1;
        border: 1px solid #E4E4E4;
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 72px;
        padding: 12px; }
        .accreditationSection .accreditationImageBox .imagflex .image img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
        .accreditationSection .accreditationImageBox .imagflex .image:nth-child(even) {
          background: #041E54; }
  @media only screen and (max-width: 991px) {
    .accreditationSection {
      padding: 60px 0 60px 16px; }
      .accreditationSection .wrapper {
        max-width: 100%; }
        .accreditationSection .wrapper .accreditationImageBox {
          display: block; }
          .accreditationSection .wrapper .accreditationImageBox .heading br {
            display: none; }
          .accreditationSection .wrapper .accreditationImageBox .overflow-scroll {
            overflow-x: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
            margin-top: 20px; }
            .accreditationSection .wrapper .accreditationImageBox .overflow-scroll::-webkit-scrollbar {
              display: none; }
            .accreditationSection .wrapper .accreditationImageBox .overflow-scroll .imagflex {
              width: max-content;
              gap: 16px; }
              .accreditationSection .wrapper .accreditationImageBox .overflow-scroll .imagflex .image {
                width: 150px;
                flex: none;
                height: auto; } }

.campusBuiltSection {
  background: #F4F8FD;
  position: relative;
  min-height: 100vh; }
  .campusBuiltSection .campusHeadingBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 0 100px;
    flex-wrap: wrap;
    gap: 0; }
    .campusBuiltSection .campusHeadingBox .heading-box {
      width: 50%;
      padding-right: 50px; }
      .campusBuiltSection .campusHeadingBox .heading-box .heading {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 48px;
        line-height: 60px; }
        @media only screen and (max-width: 991px) {
          .campusBuiltSection .campusHeadingBox .heading-box .heading {
            font-size: 28px;
            line-height: 38px; } }
    .campusBuiltSection .campusHeadingBox .content {
      width: 50%; }
      .campusBuiltSection .campusHeadingBox .content p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 32px; }
        @media only screen and (max-width: 991px) {
          .campusBuiltSection .campusHeadingBox .content p {
            font-size: 16px;
            line-height: 26px; } }
  .campusBuiltSection .campusWrapper {
    position: relative;
    padding-bottom: 100px;
    overflow: hidden; }
    .campusBuiltSection .campusWrapper .campusSlider {
      display: flex;
      flex-wrap: nowrap;
      width: max-content;
      gap: 90px;
      padding: 0 100px; }
      .campusBuiltSection .campusWrapper .campusSlider .slideItems {
        position: relative;
        flex: 1; }
        .campusBuiltSection .campusWrapper .campusSlider .slideItems .image {
          width: 100%;
          overflow: hidden;
          max-height: 350px;
          height: 100%; }
          .campusBuiltSection .campusWrapper .campusSlider .slideItems .image img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .campusBuiltSection .campusWrapper .campusSlider .slideItems .itemContent {
          background: #001F44;
          padding: 20px;
          position: absolute;
          bottom: -30px;
          right: -30px;
          color: #ffffff; }
          .campusBuiltSection .campusWrapper .campusSlider .slideItems .itemContent h4 {
            font-size: 20px;
            line-height: 30px;
            font-weight: 700;
            margin-bottom: 0; }
            @media only screen and (max-width: 991px) {
              .campusBuiltSection .campusWrapper .campusSlider .slideItems .itemContent h4 {
                font-size: 18px;
                line-height: 28px; } }
  @media only screen and (max-width: 991px) {
    .campusBuiltSection .campusHeadingBox {
      padding: 0 16px; }
      .campusBuiltSection .campusHeadingBox .heading-box {
        width: 100%;
        padding-right: 0; }
      .campusBuiltSection .campusHeadingBox .content {
        width: 100%; }
    .campusBuiltSection .campusWrapper {
      position: relative;
      padding-bottom: 100px; }
      .campusBuiltSection .campusWrapper .campusSlider {
        gap: 16px; }
        .campusBuiltSection .campusWrapper .campusSlider .slideItems {
          max-width: 400px; }
          .campusBuiltSection .campusWrapper .campusSlider .slideItems .image {
            max-height: 250px; }
          .campusBuiltSection .campusWrapper .campusSlider .slideItems .itemContent {
            padding: 10px;
            bottom: -30px;
            right: 10px; }
            .campusBuiltSection .campusWrapper .campusSlider .slideItems .itemContent h4 {
              font-size: 14px;
              line-height: 22px;
              font-weight: 400; } }

.purpose-section {
  background: #001F44;
  min-height: 100vh;
  position: relative; }
  .purpose-section .our-purpose-heading {
    position: absolute;
    top: 50%;
    font-size: 100px;
    line-height: 110px;
    font-weight: 700;
    color: #093466;
    text-transform: uppercase;
    left: 80px; }
    @media only screen and (max-width: 991px) {
      .purpose-section .our-purpose-heading {
        font-size: 60px;
        line-height: 70px; } }
    @media only screen and (max-width: 991px) {
      .purpose-section .our-purpose-heading {
        font-size: 40px;
        line-height: 50px;
        left: 16px; } }
  .purpose-section .our-purpose-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px; }
    .purpose-section .our-purpose-image img {
      width: 100%; }
    @media only screen and (max-width: 991px) {
      .purpose-section .our-purpose-image {
        bottom: 30px;
        right: 6px;
        width: 100px; } }
  .purpose-section .color-purpose {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    overflow: hidden; }
    .purpose-section .color-purpose .bg-box {
      margin-bottom: 24px;
      padding: 6px 32px;
      width: -moz-fit-content;
      display: inline-block;
      padding: 10px 20px;
      clip-path: inset(0 100% 0 0);
      width: fit-content; }
      .purpose-section .color-purpose .bg-box p {
        font-size: 84px;
        line-height: 94px;
        font-weight: 700;
        font-family: "Montserrat", sans-serif; }
        @media only screen and (max-width: 991px) {
          .purpose-section .color-purpose .bg-box p {
            font-size: 40px;
            line-height: 50px; } }
        .purpose-section .color-purpose .bg-box p span {
          font-weight: 275; }
    .purpose-section .color-purpose .bg-orange {
      background: #EDB83F; }
    .purpose-section .color-purpose .bg-white {
      background: #ffffff; }

.studentPortfolioSection .list-box ul {
  display: flex;
  flex-direction: column; }
  .studentPortfolioSection .list-box ul li {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .studentPortfolioSection .list-box ul li > .image {
      position: relative;
      padding: 40px 0 0 40px;
      width: 60%; }
      .studentPortfolioSection .list-box ul li > .image::before {
        content: '';
        position: absolute;
        left: 0;
        width: 90%;
        height: 100%;
        background: #001F44;
        top: 0;
        z-index: -1; }
    .studentPortfolioSection .list-box ul li .content {
      width: 40%;
      padding: 0px 80px; }
      .studentPortfolioSection .list-box ul li .content h3 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        color: #141414;
        margin-bottom: 40px;
        text-transform: uppercase; }
        @media only screen and (max-width: 991px) {
          .studentPortfolioSection .list-box ul li .content h3 {
            font-size: 24px;
            line-height: 34px; } }
      .studentPortfolioSection .list-box ul li .content p {
        font-size: 18px;
        line-height: 28px;
        color: #141414;
        margin-bottom: 40px; }
        @media only screen and (max-width: 991px) {
          .studentPortfolioSection .list-box ul li .content p {
            font-size: 16px;
            line-height: 26px; } }
    .studentPortfolioSection .list-box ul li:last-child {
      flex-direction: row-reverse; }
      .studentPortfolioSection .list-box ul li:last-child .image {
        padding: 0 40px 40px 0;
        overflow: hidden; }
        .studentPortfolioSection .list-box ul li:last-child .image::before {
          right: 0;
          left: inherit; }
@media only screen and (max-width: 991px) {
  .studentPortfolioSection .list-box ul li > .image {
    padding: 20px 0 0 16px;
    width: 100%;
    margin-right: 16px; }
  .studentPortfolioSection .list-box ul li .content {
    width: 100%;
    padding: 0px 16px; }
    .studentPortfolioSection .list-box ul li .content h3 {
      margin: 20px 0; }
    .studentPortfolioSection .list-box ul li .content p {
      margin-bottom: 20px; }
  .studentPortfolioSection .list-box ul li:last-child .image {
    padding: 20px 0 0 16px; }
    .studentPortfolioSection .list-box ul li:last-child .image::before {
      right: inherit;
      left: 0; } }

.upComingEventArea {
  max-width: calc(100% - 208px);
  margin: auto; }
  .upComingEventArea .eventsList {
    display: flex; }
    .upComingEventArea .eventsList .items {
      flex: 0 0 25%;
      max-width: 25%;
      padding-right: 25px; }
      .upComingEventArea .eventsList .items .inner-items {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.06);
        background: #fff;
        transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        .upComingEventArea .eventsList .items .inner-items .contentItem {
          padding: 30px;
          color: #565656; }
          .upComingEventArea .eventsList .items .inner-items .contentItem .dates {
            font-weight: 300;
            font-family: "Lato", sans-serif;
            font-size: 24px;
            line-height: 32px; }
            .upComingEventArea .eventsList .items .inner-items .contentItem .dates span.number {
              font-size: 100px;
              line-height: 110px;
              font-weight: 700;
              font-weight: 600;
              color: #001F44; }
              @media only screen and (max-width: 991px) {
                .upComingEventArea .eventsList .items .inner-items .contentItem .dates span.number {
                  font-size: 60px;
                  line-height: 70px; } }
            @media only screen and (max-width: 991px) {
              .upComingEventArea .eventsList .items .inner-items .contentItem .dates {
                font-size: 20px;
                line-height: 30px; } }
          .upComingEventArea .eventsList .items .inner-items .contentItem p {
            margin-bottom: 30px;
            font-weight: 600; }
        .upComingEventArea .eventsList .items .inner-items .image img {
          width: 100%; }
        .upComingEventArea .eventsList .items .inner-items:hover {
          background: #001F44; }
          .upComingEventArea .eventsList .items .inner-items:hover .contentItem {
            color: #ffffff; }
            .upComingEventArea .eventsList .items .inner-items:hover .contentItem .dates span.number {
              color: #ffffff; }
  @media only screen and (max-width: 1200px) {
    .upComingEventArea {
      max-width: calc(100% - 100px); } }
  @media only screen and (max-width: 991px) {
    .upComingEventArea {
      max-width: calc(100% - 16px);
      margin-right: 0; }
      .upComingEventArea .eventsList {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none; }
        .upComingEventArea .eventsList::-webkit-scrollbar {
          display: none; }
        .upComingEventArea .eventsList .items {
          flex: 0 0 50%;
          max-width: 50%;
          padding-right: 12px; }
          .upComingEventArea .eventsList .items .inner-items .contentItem {
            padding: 16px; }
            .upComingEventArea .eventsList .items .inner-items .contentItem p {
              margin-bottom: 16px; } }
  @media only screen and (max-width: 767px) {
    .upComingEventArea .eventsList .items {
      flex: 0 0 90%;
      max-width: 90%; } }

.awardAchievementsSection {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden; }
  .awardAchievementsSection .headingBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    flex-wrap: wrap; }
    .awardAchievementsSection .headingBox .awardHeading {
      font-size: 80px;
      line-height: 88px;
      text-transform: uppercase;
      font-weight: 700;
      color: #001F44;
      margin-bottom: 60px;
      transform: scale(1);
      transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
      @media only screen and (max-width: 991px) {
        .awardAchievementsSection .headingBox .awardHeading {
          font-size: 40px;
          line-height: 50px; } }
  .awardAchievementsSection .awardsWrapper {
    overflow: hidden;
    position: relative; }
    .awardAchievementsSection .awardsWrapper .awardsSlider {
      display: flex;
      gap: 60px;
      will-change: transform;
      padding: 0 100px;
      width: max-content;
      overflow: hidden; }
      .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem {
        position: relative;
        overflow: hidden;
        flex: 1;
        z-index: 1;
        background: #ffffff;
        padding: 10px;
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
        transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
        .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem {
          position: relative;
          height: 100%; }
          .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .image {
            width: 100%;
            overflow: hidden;
            max-height: 450px;
            height: 100%; }
            .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .image img {
              width: 100%;
              height: 100%;
              object-fit: cover; }
          .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent {
            padding: 0 40px 40px 40px;
            position: absolute;
            bottom: 0;
            right: 0;
            color: #ffffff;
            width: 100%; }
            .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .display-flex {
              justify-content: space-between;
              align-items: center;
              gap: 30px; }
              .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .display-flex h4 {
                font-size: 32px;
                line-height: 42px;
                font-weight: 700;
                margin-bottom: 0;
                flex: 1; }
                @media only screen and (max-width: 991px) {
                  .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .display-flex h4 {
                    font-size: 24px;
                    line-height: 34px; } }
            .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .awardBtnKnowMore {
              opacity: 0;
              transform: translateY(100px);
              transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
          .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem::before {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(1deg, rgba(0, 0, 0, 0.7) 38%, transparent 56%, transparent);
            bottom: 0;
            z-index: 0;
            transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
        .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem:hover .itemContent .awardBtnKnowMore {
          opacity: 1;
          transform: translateY(0); }
        .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem:hover .beforeItem::before {
          background: linear-gradient(1deg, rgba(0, 0, 0, 0.7) 69%, transparent 100%, transparent); }
    @media only screen and (max-width: 991px) {
      .awardAchievementsSection .awardsWrapper .awardsSlider {
        gap: 16px; }
        .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem {
          max-width: 500px; }
          .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .image {
            max-height: 350px; }
          .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent {
            padding: 0 40px 40px 40px;
            position: absolute;
            bottom: 0;
            right: 0;
            color: #ffffff;
            width: 100%; }
            .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .display-flex {
              justify-content: space-between;
              align-items: center;
              gap: 30px; }
              .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .display-flex h4 {
                font-size: 18px;
                line-height: 28px; } }
          @media only screen and (max-width: 991px) and (max-width: 991px) {
            .awardAchievementsSection .awardsWrapper .awardsSlider .awardItem .beforeItem .itemContent .display-flex h4 {
              font-size: 16px;
              line-height: 26px; } }

  @media only screen and (max-width: 991px) {
    .awardAchievementsSection .headingBox {
      padding: 0 16px; } }

.courserOfferSection {
  position: relative;
  min-height: 100vh; }
  .courserOfferSection .heading {
    padding-bottom: 50px; }
    .courserOfferSection .heading h3 {
      font-size: 48px;
      line-height: 60px;
      font-weight: 700;
      text-transform: uppercase; }
      @media only screen and (max-width: 991px) {
        .courserOfferSection .heading h3 {
          font-size: 28px;
          line-height: 38px; } }
  .courserOfferSection .offerSectionBox {
    display: grid;
    gap: 48px 74px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    align-items: start; }
    .courserOfferSection .offerSectionBox .item {
      background: #001F44;
      padding: 27px 24px; }
      .courserOfferSection .offerSectionBox .item h3 {
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 30px; }
        @media only screen and (max-width: 991px) {
          .courserOfferSection .offerSectionBox .item h3 {
            font-size: 24px;
            line-height: 34px; } }
      .courserOfferSection .offerSectionBox .item p {
        font-size: 18px;
        line-height: 28px;
        color: #ffffff;
        margin-bottom: 30px; }
        @media only screen and (max-width: 991px) {
          .courserOfferSection .offerSectionBox .item p {
            font-size: 16px;
            line-height: 26px; } }
      .courserOfferSection .offerSectionBox .item .view-course {
        color: #ffffff;
        border: none;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        position: relative;
        padding-left: 18px;
        cursor: pointer; }
        .courserOfferSection .offerSectionBox .item .view-course::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          width: 8px;
          height: 14px;
          background: url(../img/left-arrow.svg) no-repeat; }
      .courserOfferSection .offerSectionBox .item .view-course.active {
        text-decoration: underline;
        color: #D79501;
        padding-left: 24px; }
        .courserOfferSection .offerSectionBox .item .view-course.active::before {
          background: url(../img/btn-arrow-orange.svg) no-repeat;
          width: 14px;
          height: 8px; }
      .courserOfferSection .offerSectionBox .item .courserList {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out; }
        .courserOfferSection .offerSectionBox .item .courserList ul {
          padding-top: 40px;
          border-top: 1px solid #ffffff;
          margin-top: 40px; }
          .courserOfferSection .offerSectionBox .item .courserList ul li {
            position: relative;
            padding-left: 32px; }
            .courserOfferSection .offerSectionBox .item .courserList ul li::before {
              content: '';
              position: absolute;
              top: 50%;
              left: 0;
              transform: translateY(-50%);
              background: url(../img/btn-arrow.svg) no-repeat;
              width: 24px;
              height: 24px; }
            .courserOfferSection .offerSectionBox .item .courserList ul li a {
              font-family: "Lato", sans-serif;
              transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
              font-size: 24px;
              line-height: 32px;
              color: #ffffff; }
              @media only screen and (max-width: 991px) {
                .courserOfferSection .offerSectionBox .item .courserList ul li a {
                  font-size: 20px;
                  line-height: 30px; } }
            .courserOfferSection .offerSectionBox .item .courserList ul li:hover a {
              transform: translateX(10px);
              text-decoration: underline; }
            .courserOfferSection .offerSectionBox .item .courserList ul li:not(:last-child) {
              margin-bottom: 28px; }
    @media only screen and (max-width: 991px) {
      .courserOfferSection .offerSectionBox {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 40px; } }
  @media only screen and (max-width: 991px) {
    .courserOfferSection .heading {
      padding-bottom: 10px; }
      .courserOfferSection .heading h3 {
        text-align: left; } }

.placementSection {
  background: url(../img/placement-bg.png) no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 100vh; }
  .placementSection .innerBox {
    position: relative;
    overflow: hidden;
    height: auto; }
    .placementSection .innerBox .cardsBox {
      max-width: 1200px;
      margin: auto; }
      .placementSection .innerBox .cardsBox .cardItem {
        width: 420px;
        text-align: center;
        padding: 26px 30px; }
        .placementSection .innerBox .cardsBox .cardItem h3 {
          font-size: 80px;
          line-height: 88px;
          font-weight: 700;
          font-family: "Lato", sans-serif;
          display: inline-block;
          background: linear-gradient(90deg, transparent 50%, black 50%);
          background-size: 200% 100%;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          -webkit-text-stroke: 1px black;
          transition: background-position 1.5s cubic-bezier(0.19, 1, 0.22, 1);
          margin-bottom: 30px; }
          @media only screen and (max-width: 991px) {
            .placementSection .innerBox .cardsBox .cardItem h3 {
              font-size: 40px;
              line-height: 50px; } }
          .placementSection .innerBox .cardsBox .cardItem h3:hover {
            background-position: -100% 0; }
        .placementSection .innerBox .cardsBox .cardItem:nth-child(even) {
          margin-left: auto; }
        .placementSection .innerBox .cardsBox .cardItem h6 {
          font-size: 24px;
          line-height: 32px;
          font-weight: 700; }
          @media only screen and (max-width: 991px) {
            .placementSection .innerBox .cardsBox .cardItem h6 {
              font-size: 20px;
              line-height: 30px; } }
        .placementSection .innerBox .cardsBox .cardItem p {
          font-size: 18px;
          line-height: 28px; }
          @media only screen and (max-width: 991px) {
            .placementSection .innerBox .cardsBox .cardItem p {
              font-size: 16px;
              line-height: 26px; } }
  @media only screen and (max-width: 991px) {
    .placementSection .innerBox .cardsBox {
      margin-top: 40px; }
      .placementSection .innerBox .cardsBox .cardItem {
        width: 100%;
        margin-bottom: 30px; }
        .placementSection .innerBox .cardsBox .cardItem h3 {
          margin-bottom: 10px; } }

.ourValueSection {
  background: #F4F8FD; }
  .ourValueSection .content h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .ourValueSection .content h6 {
        font-size: 18px;
        line-height: 28px; } }
  .ourValueSection .content p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0; }
  .ourValueSection .leftSide {
    padding: 120px 80px;
    height: 100%;
    position: relative;
    z-index: 1; }
    .ourValueSection .leftSide .backgroundFill {
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      /* Starts from 0% width */
      height: 100%;
      background-color: white;
      z-index: -1;
      /* Moves behind content */ }
    .ourValueSection .leftSide .chairManMessage .heading h2 {
      font-size: 80px;
      line-height: 88px;
      font-weight: 700;
      margin-bottom: 30px;
      text-transform: uppercase;
      transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
      transform: scale(1.3); }
      @media only screen and (max-width: 991px) {
        .ourValueSection .leftSide .chairManMessage .heading h2 {
          font-size: 40px;
          line-height: 50px; } }
    .ourValueSection .leftSide .chairManMessage .heading p {
      font-size: 20px;
      line-height: 30px;
      margin-bottom: 30px;
      transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
      @media only screen and (max-width: 991px) {
        .ourValueSection .leftSide .chairManMessage .heading p {
          font-size: 18px;
          line-height: 28px; } }
    .ourValueSection .leftSide .chairManMessage .chairmanInfo {
      display: flex;
      gap: 20px; }
      .ourValueSection .leftSide .chairManMessage .chairmanInfo .image img {
        width: 58px;
        height: 58px;
        border-radius: 50%; }
  .ourValueSection .rightSide {
    position: relative;
    padding: 80px 80px 80px 60px; }
    .ourValueSection .rightSide::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 330px;
      height: 100%;
      background: url(../img/value-before.svg) no-repeat;
      z-index: 1; }
    .ourValueSection .rightSide .valuesList ul li .content h6 {
      position: relative;
      padding-bottom: 20px;
      padding-bottom: 7px;
      margin: 10px 0; }
      .ourValueSection .rightSide .valuesList ul li .content h6::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 2px;
        background: #D79501; }
    .ourValueSection .rightSide .valuesList ul li:not(:last-child) {
      margin-bottom: 30px; }
  @media only screen and (max-width: 991px) {
    .ourValueSection .leftSide {
      padding: 60px 16px 0 16px; }
      .ourValueSection .leftSide .backgroundFill {
        display: none; }
      .ourValueSection .leftSide .chairManMessage p,
      .ourValueSection .leftSide .chairManMessage .chairmanInfo {
        display: none; }
    .ourValueSection .rightSide {
      padding: 0 16px 60px 16px; }
      .ourValueSection .rightSide::before {
        display: none; } }

.glimpseSection {
  position: relative;
  min-height: 100vh;
  overflow: hidden; }
  .glimpseSection .col-60 {
    position: absolute;
    left: 0;
    top: 0;
    flex: 0 0 100%;
    max-width: 100%; }
  .glimpseSection .leftSide {
    background: transparent;
    z-index: 0; }
    .glimpseSection .leftSide .chairManMessage .heading .content {
      max-width: 800px; }
      @media only screen and (max-width: 991px) {
        .glimpseSection .leftSide .chairManMessage .heading .content p {
          display: block;
          font-size: 16px;
          line-height: 22px;
          font-weight: 400; } }
  .glimpseSection .rightSideGlimpse {
    height: 100%;
    width: 100%;
    padding: 100px 0; }
    .glimpseSection .rightSideGlimpse .glimpseWrapper {
      height: 100%; }
      .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider {
        display: flex;
        gap: 60px;
        will-change: transform;
        width: max-content;
        height: 100%;
        align-items: center;
        padding: 0 100px; }
        .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem {
          position: relative;
          flex: 1;
          z-index: 1;
          background: #ffffff;
          padding: 10px;
          filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1)); }
          .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem .beforeItem {
            position: relative; }
            .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem .beforeItem .image {
              width: 100%;
              height: 300px;
              overflow: hidden; }
              .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem .beforeItem .image img {
                width: 100%;
                height: 100%;
                object-fit: cover; }
            .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem .beforeItem::before {
              content: '';
              position: absolute;
              left: 0;
              width: 100%;
              height: 100%;
              background: linear-gradient(1deg, rgba(0, 0, 0, 0.7) 38%, transparent 56%, transparent);
              bottom: 0;
              z-index: 0; }
          @media only screen and (max-width: 991px) {
            .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem {
              max-width: 500px; } }
  @media only screen and (max-width: 991px) {
    .glimpseSection .col-60 {
      position: relative; }
    .glimpseSection .rightSideGlimpse {
      padding: 40px 0; }
      .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider {
        gap: 12px; }
        .glimpseSection .rightSideGlimpse .glimpseWrapper .glimseSlider .glimseItem .beforeItem .image {
          max-height: 250px; } }

.tb-pad {
  padding-top: 60px;
  padding-bottom: 60px; }
  @media only screen and (max-width: 991px) {
    .tb-pad {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media only screen and (max-width: 563px) {
    .tb-pad {
      padding-top: 40px;
      padding-bottom: 40px; } }

.lr-pad {
  padding-left: 80px;
  padding-right: 80px; }
  @media only screen and (max-width: 991px) {
    .lr-pad {
      padding-left: 48px;
      padding-right: 48px; } }
  @media only screen and (max-width: 563px) {
    .lr-pad {
      padding-left: 24px;
      padding-right: 24px; } }

main {
  overflow-x: hidden;
  overflow-y: auto; }

.about-banner {
  position: relative;
  height: calc(100dvh - 125px); }
  @media only screen and (max-width: 991px) {
    .about-banner {
      height: auto; } }
  .about-banner.about-page .front-layer .banner-contentbox {
    max-width: 757px; }
    @media only screen and (max-width: 991px) {
      .about-banner.about-page .front-layer .banner-contentbox {
        max-width: 100%; } }
    .about-banner.about-page .front-layer .banner-contentbox .svg-wrapper svg.line-anim.whitesvg {
      left: 18%; }
  .about-banner .bg-layer {
    position: relative;
    width: 100%;
    height: 100%; }
    .about-banner .bg-layer img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .about-banner .front-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 991px) {
      .about-banner .front-layer {
        position: relative; } }
    .about-banner .front-layer .banner-contentbox {
      margin-left: 152px;
      padding: 60px;
      color: #ffffff;
      max-width: 757px;
      background: rgba(0, 31, 68, 0.9);
      position: relative;
      max-width: 615px;
      min-height: 322px; }
      @media only screen and (max-width: 1200px) {
        .about-banner .front-layer .banner-contentbox {
          padding: 32px; } }
      @media only screen and (max-width: 991px) {
        .about-banner .front-layer .banner-contentbox {
          margin-left: 0;
          width: 100%;
          max-width: 100%;
          min-height: auto;
          padding-left: 40px; } }
      .about-banner .front-layer .banner-contentbox h1 {
        font-size: 2.75rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
        text-transform: uppercase; }
        @media only screen and (max-width: 991px) {
          .about-banner .front-layer .banner-contentbox h1 {
            font-size: 1.75rem; } }
      .about-banner .front-layer .banner-contentbox p {
        font-size: 1.5rem;
        font-weight: 300;
        font-family: "Lato", sans-serif;
        max-width: 533px;
        line-height: 1.4;
        margin-top: 16px;
        margin-bottom: 0; }
        @media only screen and (max-width: 991px) {
          .about-banner .front-layer .banner-contentbox p {
            font-size: 1rem; } }
      .about-banner .front-layer .banner-contentbox .svg-wrapper {
        position: relative; }
        @media only screen and (max-width: 991px) {
          .about-banner .front-layer .banner-contentbox .svg-wrapper {
            position: static; } }
        .about-banner .front-layer .banner-contentbox .svg-wrapper svg.line-anim {
          position: absolute;
          width: auto;
          height: auto;
          left: 35%;
          top: -70px;
          transform: translate(-50%, -50%); }
          .about-banner .front-layer .banner-contentbox .svg-wrapper svg.line-anim.whitesvg {
            top: -50px;
            left: 25%; }
            @media only screen and (max-width: 991px) {
              .about-banner .front-layer .banner-contentbox .svg-wrapper svg.line-anim.whitesvg {
                top: 0; } }
          @media only screen and (max-width: 991px) {
            .about-banner .front-layer .banner-contentbox .svg-wrapper svg.line-anim {
              max-width: 90%;
              height: 100%;
              top: 0; } }
  .about-banner.varient2 {
    height: 638px; }
    @media only screen and (max-width: 991px) {
      .about-banner.varient2 {
        height: auto; } }
    .about-banner.varient2 .bg-layer {
      height: 100%; }
      .about-banner.varient2 .bg-layer img {
        width: 70%;
        margin-left: 30%;
        height: 100%;
        object-position: right;
        object-fit: cover; }
        @media only screen and (max-width: 991px) {
          .about-banner.varient2 .bg-layer img {
            width: 100%;
            margin-left: 0; } }
    @media only screen and (max-width: 991px) {
      .about-banner.varient2 .front-layer .banner-contentbox .svg-wrapper svg.line-anim {
        top: -20px; } }

.mission-vision {
  padding-top: 40px; }
  .mission-vision .missionvs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    .mission-vision .missionvs .missionbox {
      position: relative; }
      .mission-vision .missionvs .missionbox .content {
        position: absolute;
        width: 380px;
        left: 104px;
        top: 88px; }
        .mission-vision .missionvs .missionbox .content p {
          font-size: 1.125rem;
          font-family: "Lato", sans-serif;
          line-height: 1.4;
          color: #2F2F2FCC; }
          .mission-vision .missionvs .missionbox .content p.title {
            font-size: 2rem;
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            color: #000000;
            text-transform: uppercase;
            margin-bottom: 10px;
            position: relative; }
            .mission-vision .missionvs .missionbox .content p.title::after {
              content: "";
              position: absolute;
              width: 35%;
              height: 2px;
              top: 50%;
              transform: translateY(-50%);
              right: 0;
              background: #EDB83F; }
      .mission-vision .missionvs .missionbox:nth-child(1) svg {
        transform: rotate(90deg); }
      .mission-vision .missionvs .missionbox.vision .content {
        left: auto;
        right: 104px; }
        .mission-vision .missionvs .missionbox.vision .content p.title::after {
          left: 0;
          top: 170%;
          transform: translateX(-60%) rotate(90deg); }

.global-headings h1, .global-headings p {
  font-size: 1.125rem;
  color: #655D5D;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  margin-top: 24px;
  line-height: 1.4; }
  @media only screen and (max-width: 991px) {
    .global-headings h1, .global-headings p {
      font-size: 1rem; } }
  .global-headings h1.global-title, .global-headings p.global-title {
    color: #001F44;
    font-size: 2.25rem;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-top: 0;
    line-height: 1; }
    @media only screen and (max-width: 991px) {
      .global-headings h1.global-title, .global-headings p.global-title {
        font-size: 1.5rem; } }
.global-headings.fixed-width {
  max-width: 724px; }

.leaders-message {
  padding-top: 20px; }
  .leaders-message .centered-tabs {
    display: flex;
    margin: 40px auto;
    width: max-content;
    position: relative; }
    .leaders-message .centered-tabs .tab {
      padding: 8px 16px;
      font-size: 1.25rem;
      color: #595959;
      font-family: "Lato", sans-serif;
      border-bottom: 1px solid #001F4480;
      cursor: pointer; }
      .leaders-message .centered-tabs .tab.active {
        font-weight: 700;
        color: #001F44; }
    .leaders-message .centered-tabs .follower {
      pointer-events: none;
      height: 5px;
      background: #001F44;
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 0;
      transition: all 0.3s ease-out; }
  .leaders-message .contentlist {
    background: #E2E6EB33; }
    .leaders-message .contentlist .contentbox {
      display: none; }
      .leaders-message .contentlist .contentbox.actcontent {
        display: flex;
        gap: 60px; }
      .leaders-message .contentlist .contentbox .mediaside {
        flex: 0.8; }
        .leaders-message .contentlist .contentbox .mediaside .mediabox {
          position: relative;
          padding-top: calc(543 / 524 * 100%);
          overflow: hidden; }
          .leaders-message .contentlist .contentbox .mediaside .mediabox img {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            object-fit: cover; }
      .leaders-message .contentlist .contentbox .contentside {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px; }
        .leaders-message .contentlist .contentbox .contentside p {
          font-size: 1rem;
          color: #434343;
          line-height: 1.4;
          font-family: "Lato", sans-serif; }
          .leaders-message .contentlist .contentbox .contentside p.title {
            font-size: 2.25rem;
            color: #161616;
            font-weight: 600;
            font-family: "Montserrat", sans-serif;
            line-height: 1; }
        .leaders-message .contentlist .contentbox .contentside .message p:not(:nth-child(2)) {
          margin-top: 16px; }
        .leaders-message .contentlist .contentbox .contentside .details {
          display: flex;
          flex-direction: column;
          gap: 12px; }
          .leaders-message .contentlist .contentbox .contentside .details p {
            font-size: 1.5rem;
            color: #1B1C1E;
            font-weight: 600;
            font-family: "Montserrat", sans-serif; }

.board-commitee .comittie-tabbers {
  display: flex;
  gap: 60px;
  margin-top: 48px;
  align-items: flex-start; }
  .board-commitee .comittie-tabbers .vertical-tabs {
    min-width: 229px;
    position: relative; }
    .board-commitee .comittie-tabbers .vertical-tabs .v-follower {
      pointer-events: none;
      height: 0;
      background: #001F44;
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      width: 5px;
      transition: all 0.3s ease-out; }
    .board-commitee .comittie-tabbers .vertical-tabs .v-tab {
      padding: 16px 16px 16px 0;
      border-right: 1px solid #71737A;
      text-align: right;
      font-size: 1.125rem;
      color: #71737A;
      line-height: 1.4;
      font-weight: 400;
      font-family: "Montserrat", sans-serif;
      cursor: pointer; }
      .board-commitee .comittie-tabbers .vertical-tabs .v-tab.active {
        color: #001F44;
        font-weight: 600; }
      .board-commitee .comittie-tabbers .vertical-tabs .v-tab:hover {
        color: #001F44;
        font-weight: 600; }
  .board-commitee .comittie-tabbers .v-contentside {
    display: none; }
    .board-commitee .comittie-tabbers .v-contentside.actcontent {
      display: flex;
      gap: 40px;
      align-items: center; }
    .board-commitee .comittie-tabbers .v-contentside .mediaside {
      min-width: 262px; }
      .board-commitee .comittie-tabbers .v-contentside .mediaside .mediabox {
        padding-top: calc(259 / 262 * 100%);
        position: relative;
        overflow: hidden; }
        .board-commitee .comittie-tabbers .v-contentside .mediaside .mediabox img {
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          object-fit: cover; }
      .board-commitee .comittie-tabbers .v-contentside .mediaside .detail {
        text-align: center;
        margin-top: 16px; }
        .board-commitee .comittie-tabbers .v-contentside .mediaside .detail p {
          font-size: 1rem;
          color: #001F44;
          font-family: "Montserrat", sans-serif;
          font-weight: 500;
          line-height: 2; }
          .board-commitee .comittie-tabbers .v-contentside .mediaside .detail p.title {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4; }
    .board-commitee .comittie-tabbers .v-contentside .content {
      display: flex;
      flex-direction: column;
      gap: 32px; }
      .board-commitee .comittie-tabbers .v-contentside .content p {
        font-size: 1rem;
        color: #001F44;
        font-weight: 300;
        font-family: "Lato", sans-serif;
        line-height: 1.8; }
        .board-commitee .comittie-tabbers .v-contentside .content p.title {
          font-family: "Montserrat", sans-serif;
          font-weight: 700;
          font-size: 1.75rem; }

.about-history .global-headings.fixed-width {
  max-width: 954px; }
.about-history .historybox {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto; }
  .about-history .historybox svg.history {
    width: 90%;
    height: 100%;
    object-fit: contain; }
.about-history .animateborder {
  fill: none;
  stroke: #001F44;
  stroke-width: 4;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s ease-out; }

.common-cta {
  cursor: pointer;
  font-size: 1rem;
  color: #001F44;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  border: 1px solid #001F44;
  padding: 14px 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-decoration: none; }
  .common-cta span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; }
  .common-cta::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #001F44;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.075, 0.1, 0.165, 1); }
  .common-cta:hover {
    color: #fff; }
    .common-cta:hover::before {
      transform: translateX(0); }
    .common-cta:hover svg path {
      fill: #fff; }

.eventsSectionPage .eventstabarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 45px; }
  .eventsSectionPage .eventstabarea .events-tab-list ul {
    gap: 20px;
    display: flex; }
    .eventsSectionPage .eventstabarea .events-tab-list ul li {
      padding: 10px 20px;
      border: 1px solid #001F44;
      cursor: pointer;
      color: #001F44;
      text-transform: uppercase;
      font-weight: 700;
      transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
      display: flex;
      align-items: center; }
    .eventsSectionPage .eventstabarea .events-tab-list ul li.active-tab {
      background: #001F44;
      color: #ffffff; }
  .eventsSectionPage .eventstabarea .yearSelectBox {
    width: 100%; }
    .eventsSectionPage .eventstabarea .yearSelectBox select {
      height: auto;
      padding: 10px 20px;
      font-size: 16px;
      line-height: 22px;
      font-weight: 400;
      font-weight: 700;
      color: #001F44;
      border: 1px solid #001F44;
      background: url(../img/down-arrow.svg) no-repeat right 20px center; }
    .eventsSectionPage .eventstabarea .yearSelectBox.yearSelectBox1 {
      max-width: 200px;
      width: 200px; }
.eventsSectionPage .upComingEventArea {
  max-width: calc(100% - 160px); }
  .eventsSectionPage .upComingEventArea .tab-content {
    display: none;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
    .eventsSectionPage .upComingEventArea .tab-content .eventsList {
      flex-wrap: wrap;
      margin: 0 -8px; }
      .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        padding: 0 8px;
        margin-bottom: 40px; }
        .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox .items {
          flex: 0 0 100%;
          max-width: 100%;
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.06);
          background: #fff;
          transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
          padding-right: 0;
          height: 100%; }
          .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox .items img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1); }
        .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) {
          flex: 0 0 50%; }
          .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) .items {
            height: 100%;
            overflow: hidden; }
            .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) .items img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1); }
            .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) .items:hover img {
              transform: scale(1.05); }
  .eventsSectionPage .upComingEventArea .show-tab-content {
    display: block; }
@media only screen and (max-width: 1200px) {
  .eventsSectionPage .upComingEventArea {
    max-width: calc(100% - 100px);
    margin-right: auto; }
    .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox {
      -ms-flex: 0 0 33.33%;
      flex: 0 0 33.33%;
      margin-bottom: 40px; }
      .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) {
        flex: 0 0 33.33%; } }
@media only screen and (max-width: 991px) {
  .eventsSectionPage .eventstabarea {
    justify-content: flex-start; }
    .eventsSectionPage .eventstabarea .events-tab-list {
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
      width: 100%; }
      .eventsSectionPage .eventstabarea .events-tab-list ul {
        margin-bottom: 20px;
        padding-left: 0; }
        .eventsSectionPage .eventstabarea .events-tab-list ul li .tab {
          min-width: 131px;
          text-align: center; }
      .eventsSectionPage .eventstabarea .events-tab-list::-webkit-scrollbar {
        display: none; }
    .eventsSectionPage .eventstabarea .yearSelectBox {
      max-width: 100%;
      width: 100%;
      margin-bottom: 30px; }
  .eventsSectionPage .upComingEventArea {
    max-width: calc(100% - 80px); }
    .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      margin-bottom: 40px; }
      .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) {
        flex: 0 0 50%; } }
@media only screen and (max-width: 767px) {
  .eventsSectionPage .upComingEventArea {
    max-width: calc(100% - 32px); }
    .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      padding: 0;
      margin-bottom: 40px; }
      .eventsSectionPage .upComingEventArea .tab-content .eventsList .itemsBox:has(.items > img.w-full) {
        flex: 0 0 100%; } }

.student-banner .front-layer .banner-contentbox .line-anim {
  height: auto;
  bottom: -44%; }

.highlight-section {
  background: #001F44; }

.club-societies-section .clubThumb {
  margin-bottom: 40px;
  border-bottom: 1px solid #565656; }
  .club-societies-section .clubThumb .swiper-slide {
    height: auto;
    max-width: calc(100% / 1); }
    .club-societies-section .clubThumb .swiper-slide .tab {
      cursor: pointer;
      padding: 10px 20px;
      transition: all 0.3s ease-in-out;
      font-size: 20px;
      line-height: 30px;
      font-weight: 400;
      font-family: "Lato", sans-serif;
      color: #565656;
      text-align: center;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media only screen and (max-width: 991px) {
        .club-societies-section .clubThumb .swiper-slide .tab {
          font-size: 18px;
          line-height: 28px; } }
      .club-societies-section .clubThumb .swiper-slide .tab span {
        display: block;
        font-size: 14px;
        line-height: 22px;
        font-weight: 400; }
  .club-societies-section .clubThumb .swiper-slide-thumb-active .tab {
    background: #002855;
    color: white; }
.club-societies-section .mainSwiper {
  position: relative;
  overflow: hidden;
  margin-left: 0 !important; }
  .club-societies-section .mainSwiper .swiper-slide {
    display: flex;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow: hidden;
    transform: scale(0.7) translateY(-100px);
    height: auto; }
    .club-societies-section .mainSwiper .swiper-slide .slide-content {
      display: flex;
      width: 100%;
      height: 100%;
      flex-wrap: wrap; }
      .club-societies-section .mainSwiper .swiper-slide .slide-content .image {
        width: 50%; }
        .club-societies-section .mainSwiper .swiper-slide .slide-content .image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.3s ease-in-out; }
      .club-societies-section .mainSwiper .swiper-slide .slide-content .text {
        width: 50%;
        padding: 30px;
        background: #F4F8FD; }
        .club-societies-section .mainSwiper .swiper-slide .slide-content .text .heading {
          font-size: 24px;
          line-height: 32px;
          font-weight: 600;
          font-family: "Montserrat", sans-serif;
          text-transform: uppercase;
          margin-bottom: 20px; }
          @media only screen and (max-width: 991px) {
            .club-societies-section .mainSwiper .swiper-slide .slide-content .text .heading {
              font-size: 20px;
              line-height: 30px; } }
        .club-societies-section .mainSwiper .swiper-slide .slide-content .text .number {
          font-size: 100px;
          line-height: 110px;
          font-weight: 700;
          font-weight: 600;
          margin-bottom: 50px; }
          @media only screen and (max-width: 991px) {
            .club-societies-section .mainSwiper .swiper-slide .slide-content .text .number {
              font-size: 60px;
              line-height: 70px; } }
        .club-societies-section .mainSwiper .swiper-slide .slide-content .text p {
          opacity: 0.4; }
        @media only screen and (max-width: 991px) {
          .club-societies-section .mainSwiper .swiper-slide .slide-content .text .number {
            margin-bottom: 10px; } }
  .club-societies-section .mainSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1) translateY(0); }
@media only screen and (max-width: 991px) {
  .club-societies-section .mainSwiper {
    padding-bottom: 130px; }
  .club-societies-section .swiper-arrow-box {
    left: calc(50% - 67px); } }
@media only screen and (max-width: 767px) {
  .club-societies-section .mainSwiper .swiper-slide .slide-content {
    height: 100%; }
    .club-societies-section .mainSwiper .swiper-slide .slide-content .image {
      width: 100%; }
    .club-societies-section .mainSwiper .swiper-slide .slide-content .text {
      width: 100%; } }

.swiper.highlightslider .swiper-arrow-box {
  left: calc(50% + 67px); }
  .swiper.highlightslider .swiper-arrow-box .swiper-arrow {
    background: #ffffff; }
    .swiper.highlightslider .swiper-arrow-box .swiper-arrow:after {
      color: #001F44;
      filter: brightness(0) invert(0); }
  .swiper.highlightslider .swiper-arrow-box .swiper-button-prev {
    opacity: 0.3; }
.swiper.highlightslider .slide-content {
  display: flex;
  color: #ffffff;
  flex-wrap: wrap;
  gap: 0; }
  .swiper.highlightslider .slide-content .image {
    width: 50%;
    height: 430px;
    background: #ffffff;
    padding: 10px; }
    .swiper.highlightslider .slide-content .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .swiper.highlightslider .slide-content .text {
    width: 50%;
    padding: 0 0px 100px 50px; }
    .swiper.highlightslider .slide-content .text .heading {
      font-size: 40px;
      line-height: 50px;
      font-weight: 600;
      margin-bottom: 30px; }
      @media only screen and (max-width: 991px) {
        .swiper.highlightslider .slide-content .text .heading {
          font-size: 20px;
          line-height: 30px; } }
    .swiper.highlightslider .slide-content .text p {
      padding-bottom: 20px; }
@media only screen and (max-width: 767px) {
  .swiper.highlightslider {
    padding-bottom: 100px; }
    .swiper.highlightslider .swiper-arrow-box {
      left: calc(50% - 67px); }
    .swiper.highlightslider .slide-content .image {
      width: 100%;
      height: 350px; }
    .swiper.highlightslider .slide-content .text {
      padding: 20px 0 0;
      width: 100%; } }

.student-grid .commonheading {
  max-width: 70%; }
.student-grid .student-container {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 10px; }
  .student-grid .student-container .img-trip {
    position: relative; }
  .student-grid .student-container .trip-img-box {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative; }
    .student-grid .student-container .trip-img-box img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1); }
    .student-grid .student-container .trip-img-box:hover img {
      transform: scale(1.1); }
  .student-grid .student-container .gallery-box2 .trip-img-box {
    height: 65%;
    margin-bottom: 10px; }
  .student-grid .student-container .gallery-box2 .blue-bg {
    height: 33%;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    background: #001F44; }
    .student-grid .student-container .gallery-box2 .blue-bg .heading {
      margin-bottom: 0;
      font-size: 32px;
      line-height: 42px;
      text-transform: uppercase;
      color: #ffffff;
      font-weight: 600; }
      @media only screen and (max-width: 991px) {
        .student-grid .student-container .gallery-box2 .blue-bg .heading {
          font-size: 24px;
          line-height: 34px; } }
      .student-grid .student-container .gallery-box2 .blue-bg .heading span {
        color: #D79501; }
      @media only screen and (max-width: 1350px) {
        .student-grid .student-container .gallery-box2 .blue-bg .heading {
          font-size: 20px;
          line-height: 30px; } }
  @media only screen and (max-width: 1350px) and (max-width: 991px) {
    .student-grid .student-container .gallery-box2 .blue-bg .heading {
      font-size: 18px;
      line-height: 28px; } }

.student-grid .image-span-one {
  grid-row: span 2; }
@media only screen and (max-width: 991px) {
  .student-grid .commonheading {
    max-width: 100%; }
  .student-grid .student-container {
    grid-template-columns: 1fr 1fr; } }
@media only screen and (max-width: 563px) {
  .student-grid .commonheading {
    max-width: 100%; }
  .student-grid .student-container {
    grid-template-columns: 1fr; } }

.midcontent .global-headings {
  display: flex;
  gap: 72px;
  padding: 0 70px; }
  @media only screen and (max-width: 1200px) {
    .midcontent .global-headings {
      gap: 24px;
      padding: 0 24px; } }
  @media only screen and (max-width: 991px) {
    .midcontent .global-headings {
      padding: 0;
      flex-direction: column;
      gap: 16px; } }
  .midcontent .global-headings .left {
    min-width: 433px; }
    @media only screen and (max-width: 1200px) {
      .midcontent .global-headings .left {
        min-width: 40%; } }
  .midcontent .global-headings p {
    margin-top: 0; }
    .midcontent .global-headings p.global-title {
      font-size: 3rem;
      line-height: 1.2; }
      @media only screen and (max-width: 991px) {
        .midcontent .global-headings p.global-title {
          font-size: 1.75rem; } }

.infralist .infracontbox {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  align-items: center; }
  @media only screen and (max-width: 991px) {
    .infralist .infracontbox {
      display: flex;
      flex-direction: column-reverse;
      gap: 0; } }
  .infralist .infracontbox::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    left: 0;
    background: #EDB83F; }
    @media only screen and (max-width: 991px) {
      .infralist .infracontbox::before {
        width: 100%;
        height: calc(100% - 40px);
        top: auto;
        bottom: 0; } }
  .infralist .infracontbox .item {
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 991px) {
      .infralist .infracontbox .item {
        width: 100%; } }
    .infralist .infracontbox .item.contentside {
      grid-column: span 6;
      padding: 40px 0 40px 40px; }
      @media only screen and (max-width: 1200px) {
        .infralist .infracontbox .item.contentside {
          grid-column: span 7; } }
      @media only screen and (max-width: 991px) {
        .infralist .infracontbox .item.contentside {
          padding: 24px; } }
      .infralist .infracontbox .item.contentside .contentlist {
        display: flex;
        flex-direction: column;
        gap: 40px; }
        .infralist .infracontbox .item.contentside .contentlist .contentbox {
          display: flex;
          gap: 12px;
          align-items: flex-start; }
          @media only screen and (max-width: 991px) {
            .infralist .infracontbox .item.contentside .contentlist .contentbox {
              flex-direction: column; } }
          .infralist .infracontbox .item.contentside .contentlist .contentbox .iconside {
            height: 56px;
            width: 56px;
            flex-shrink: 0; }
            .infralist .infracontbox .item.contentside .contentlist .contentbox .iconside img {
              width: 100%;
              height: 100%;
              object-fit: contain; }
          .infralist .infracontbox .item.contentside .contentlist .contentbox .contside p {
            font-size: 1rem;
            font-weight: 300;
            font-family: "Lato", sans-serif;
            color: #001F44; }
            @media only screen and (max-width: 991px) {
              .infralist .infracontbox .item.contentside .contentlist .contentbox .contside p {
                font-size: 0.875rem; } }
            .infralist .infracontbox .item.contentside .contentlist .contentbox .contside p.title {
              font-size: 1.25rem;
              font-family: "Montserrat", sans-serif;
              font-weight: 700;
              margin-bottom: 24px;
              position: relative; }
              @media only screen and (max-width: 991px) {
                .infralist .infracontbox .item.contentside .contentlist .contentbox .contside p.title {
                  font-size: 1.25rem;
                  margin-bottom: 16px; } }
              .infralist .infracontbox .item.contentside .contentlist .contentbox .contside p.title::after {
                content: "";
                width: 80px;
                height: 2px;
                background: #D79501;
                position: absolute;
                left: 0;
                bottom: -12px; }
                @media only screen and (max-width: 991px) {
                  .infralist .infracontbox .item.contentside .contentlist .contentbox .contside p.title::after {
                    bottom: -8px; } }
    .infralist .infracontbox .item.mediaside {
      grid-column: span 6;
      padding: 52px 0;
      height: 100%; }
      @media only screen and (max-width: 1200px) {
        .infralist .infracontbox .item.mediaside {
          grid-column: span 5; } }
      @media only screen and (max-width: 991px) {
        .infralist .infracontbox .item.mediaside {
          padding: 0 24px; } }
      .infralist .infracontbox .item.mediaside .media {
        width: 100%;
        height: 100%; }
        .infralist .infracontbox .item.mediaside .media img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block; }
  .infralist .infracontbox:nth-child(even) {
    direction: rtl;
    margin-top: 80px; }
    .infralist .infracontbox:nth-child(even)::before {
      background: #F4F8FD;
      left: auto;
      right: 0; }
    .infralist .infracontbox:nth-child(even) .item {
      direction: ltr; }
      .infralist .infracontbox:nth-child(even) .item.contentside {
        padding: 40px 40px 40px 0px; }
        @media only screen and (max-width: 991px) {
          .infralist .infracontbox:nth-child(even) .item.contentside {
            padding: 24px; } }

.midcontent.contact-mid .global-headings {
  flex-direction: column;
  gap: 24px;
  padding: 0; }
  @media only screen and (max-width: 991px) {
    .midcontent.contact-mid .global-headings {
      gap: 16px; } }
  .midcontent.contact-mid .global-headings p.global-title {
    font-size: 6.125rem; }
    @media only screen and (max-width: 991px) {
      .midcontent.contact-mid .global-headings p.global-title {
        font-size: 2rem; } }
.midcontent.contact-mid.admissionpage .global-headings p.global-title {
  font-size: 4rem; }
  @media only screen and (max-width: 991px) {
    .midcontent.contact-mid.admissionpage .global-headings p.global-title {
      font-size: 2rem; } }

.contact-details .cont-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  background: #fff;
  box-shadow: 0px 0px 32px 0px #00000008;
  margin: 60px auto 0 auto;
  border-radius: 8px; }
  @media only screen and (max-width: 991px) {
    .contact-details .cont-grid {
      margin: 0; } }
  .contact-details .cont-grid .detailside {
    grid-column: span 5;
    padding: 32px 16px 24px 32px; }
    @media only screen and (max-width: 991px) {
      .contact-details .cont-grid .detailside {
        grid-column: span 12;
        padding: 16px; } }
    .contact-details .cont-grid .detailside p {
      font-size: 1rem;
      color: #001F44;
      font-weight: 300;
      font-family: "Lato", sans-serif;
      line-height: 1.4; }
      .contact-details .cont-grid .detailside p.m-title {
        font-size: 2rem;
        font-weight: 600;
        font-family: "Montserrat", sans-serif; }
        @media only screen and (max-width: 991px) {
          .contact-details .cont-grid .detailside p.m-title {
            font-size: 1.25rem; } }
      .contact-details .cont-grid .detailside p.subtitle {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 24px; }
        @media only screen and (max-width: 991px) {
          .contact-details .cont-grid .detailside p.subtitle {
            margin-bottom: 16px; } }
    .contact-details .cont-grid .detailside .detail-image {
      margin: 16px auto; }
      .contact-details .cont-grid .detailside .detail-image img {
        width: 100%;
        object-fit: contain;
        display: block; }
    .contact-details .cont-grid .detailside ul {
      list-style-type: none;
      display: flex;
      flex-direction: column;
      gap: 24px; }
      @media only screen and (max-width: 991px) {
        .contact-details .cont-grid .detailside ul {
          gap: 16px; } }
      .contact-details .cont-grid .detailside ul li {
        display: flex;
        gap: 8px;
        align-items: flex-start; }
        .contact-details .cont-grid .detailside ul li svg {
          flex-shrink: 0; }
        .contact-details .cont-grid .detailside ul li a {
          text-decoration: none;
          color: #001F44;
          font-weight: 300;
          font-size: 1rem;
          transition: 0.4s color ease-out; }
          .contact-details .cont-grid .detailside ul li a.directions {
            display: block;
            text-decoration: underline;
            color: #1468CD;
            text-underline-offset: 3px;
            margin-top: 4px; }
          .contact-details .cont-grid .detailside ul li a:hover {
            color: #D79501; }
  .contact-details .cont-grid .mapside {
    grid-column: span 7; }
    @media only screen and (max-width: 991px) {
      .contact-details .cont-grid .mapside {
        grid-column: span 12; } }
    .contact-details .cont-grid .mapside iframe {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.contact-box {
  box-shadow: 0px 0px 32px 0px #00000008;
  background: #fff;
  padding: 30px; }
  @media only screen and (max-width: 991px) {
    .contact-box {
      padding: 16px; } }
  .contact-box .contact-heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px; }
    @media only screen and (max-width: 991px) {
      .contact-box .contact-heading {
        gap: 8px;
        margin-bottom: 24px; } }
    .contact-box .contact-heading p {
      font-size: 1rem;
      font-weight: 300;
      font-family: "Lato", sans-serif;
      line-height: 1.4;
      color: #4F4F4F; }
      .contact-box .contact-heading p.title {
        font-size: 2rem;
        color: #001F44;
        font-weight: 600;
        font-family: "Montserrat", sans-serif; }
        @media only screen and (max-width: 991px) {
          .contact-box .contact-heading p.title {
            font-size: 1.25rem; } }
  .contact-box .formbox {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 60px; }
    @media only screen and (max-width: 991px) {
      .contact-box .formbox {
        gap: 16px 32px; } }
    .contact-box .formbox .w-half {
      width: calc(50% - 30px); }
      @media only screen and (max-width: 991px) {
        .contact-box .formbox .w-half {
          width: 100%; } }
    .contact-box .formbox .w-full {
      width: 100%; }
    .contact-box .formbox .breakpoint {
      padding-top: 32px;
      border-top: 1px solid #F1F1F1; }
      .contact-box .formbox .breakpoint .contact-heading {
        margin-bottom: 0; }
    .contact-box .formbox .inputbox label {
      display: flex;
      flex-wrap: wrap;
      gap: 8px; }
    .contact-box .formbox .inputbox input, .contact-box .formbox .inputbox select, .contact-box .formbox .inputbox textarea {
      width: 100%;
      border: 1px solid #F1F1F1;
      background: #FAFAFA;
      font-size: 1rem;
      font-weight: 300;
      font-family: "Montserrat", sans-serif;
      line-height: 1;
      height: auto;
      padding: 16px;
      /* Firefox */ }
      .contact-box .formbox .inputbox input:focus, .contact-box .formbox .inputbox select:focus, .contact-box .formbox .inputbox textarea:focus {
        border-color: #D79501; }
      .contact-box .formbox .inputbox input::placeholder, .contact-box .formbox .inputbox select::placeholder, .contact-box .formbox .inputbox textarea::placeholder {
        color: #B6B6B6; }
      .contact-box .formbox .inputbox input::-webkit-outer-spin-button, .contact-box .formbox .inputbox input::-webkit-inner-spin-button, .contact-box .formbox .inputbox select::-webkit-outer-spin-button, .contact-box .formbox .inputbox select::-webkit-inner-spin-button, .contact-box .formbox .inputbox textarea::-webkit-outer-spin-button, .contact-box .formbox .inputbox textarea::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0; }
      .contact-box .formbox .inputbox input[type=number], .contact-box .formbox .inputbox select[type=number], .contact-box .formbox .inputbox textarea[type=number] {
        -moz-appearance: textfield; }
      .contact-box .formbox .inputbox input[type=date], .contact-box .formbox .inputbox select[type=date], .contact-box .formbox .inputbox textarea[type=date] {
        position: relative;
        text-transform: uppercase; }
        .contact-box .formbox .inputbox input[type=date]::-webkit-calendar-picker-indicator, .contact-box .formbox .inputbox select[type=date]::-webkit-calendar-picker-indicator, .contact-box .formbox .inputbox textarea[type=date]::-webkit-calendar-picker-indicator {
          filter: invert(1);
          z-index: 2; }
        .contact-box .formbox .inputbox input[type=date]::after, .contact-box .formbox .inputbox select[type=date]::after, .contact-box .formbox .inputbox textarea[type=date]::after {
          content: "";
          height: 100%;
          width: 50px;
          background: #001F44;
          position: absolute;
          right: 0;
          top: 0;
          z-index: 1; }
    .contact-box .formbox .inputbox select {
      position: relative;
      padding-right: 50px;
      background-image: url("../img/selectdrop.svg");
      background-repeat: no-repeat;
      background-size: 50px 100%;
      background-position: 101%; }
    .contact-box .formbox .inputbox button {
      cursor: pointer;
      font-size: 1rem;
      color: #001F44;
      font-weight: 600;
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      border: 1px solid #001F44;
      padding: 14px 28px;
      background: #fff;
      position: relative;
      overflow: hidden;
      width: max-content; }
      .contact-box .formbox .inputbox button span {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px; }
      .contact-box .formbox .inputbox button::before {
        content: "";
        width: 100%;
        height: 100%;
        background: #001F44;
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .contact-box .formbox .inputbox button:hover {
        color: #fff; }
        .contact-box .formbox .inputbox button:hover::before {
          transform: translateX(0); }
        .contact-box .formbox .inputbox button:hover svg path {
          fill: #fff; }

.admissionform {
  padding-top: 0;
  padding-bottom: 60px; }
  @media only screen and (max-width: 991px) {
    .admissionform {
      padding-bottom: 40px; } }
  .admissionform .contact-box .contact-heading {
    margin-bottom: 24px; }
    .admissionform .contact-box .contact-heading .title {
      font-size: 1.5rem; }

.prog-mid .common-cta {
  margin-top: 32px; }
.prog-mid .imagescontainer {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  overflow-x: hidden;
  gap: 90px;
  margin-top: 40px; }
  @media only screen and (max-width: 991px) {
    .prog-mid .imagescontainer {
      gap: 40px; } }
  .prog-mid .imagescontainer .imagecont {
    position: relative;
    overflow: hidden;
    flex: 1; }
    .prog-mid .imagescontainer .imagecont img {
      width: 100%;
      height: 100%;
      object-fit: contain; }

.usp .usp-cards-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px; }
  @media only screen and (max-width: 991px) {
    .usp .usp-cards-container {
      margin-top: 40px;
      gap: 32px; } }
  .usp .usp-cards-container .usp-card {
    grid-column: span 4;
    position: relative;
    padding: 0 16px;
    opacity: 0;
    transform: translateX(50%); }
    @media only screen and (max-width: 991px) {
      .usp .usp-cards-container .usp-card {
        grid-column: span 12; } }
    .usp .usp-cards-container .usp-card.active {
      opacity: 1;
      transform: translateX(0); }
      .usp .usp-cards-container .usp-card.active .border {
        height: 100%; }
    .usp .usp-cards-container .usp-card .border {
      position: absolute;
      height: 100%;
      width: 1px;
      background: #001F44;
      left: -8px;
      top: 0;
      transition: height 0.3s ease-out; }
    .usp .usp-cards-container .usp-card .count p {
      font-size: 2.5rem;
      color: #001F44;
      opacity: 0.2;
      font-family: "Lato", sans-serif;
      font-weight: 300; }
    .usp .usp-cards-container .usp-card .name {
      margin: 16px auto; }
      .usp .usp-cards-container .usp-card .name p {
        font-size: 1.5rem;
        font-family: "Montserrat", sans-serif;
        color: #001F44;
        font-weight: 700;
        text-transform: uppercase;
        max-width: 228px; }
        @media only screen and (max-width: 991px) {
          .usp .usp-cards-container .usp-card .name p {
            font-size: 1.25rem; } }
    .usp .usp-cards-container .usp-card .maincontent .media {
      position: relative;
      padding-top: calc(313 / 386 * 100%);
      margin-bottom: 32px; }
      .usp .usp-cards-container .usp-card .maincontent .media::after {
        content: "";
        height: 2px;
        width: 80px;
        background: #D79501;
        position: absolute;
        bottom: -17px;
        left: 0; }
      .usp .usp-cards-container .usp-card .maincontent .media img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0; }
    .usp .usp-cards-container .usp-card .maincontent p {
      font-size: 16px;
      color: #001F44;
      font-family: "Lato", sans-serif;
      font-weight: 300;
      line-height: 1.8; }
      .usp .usp-cards-container .usp-card .maincontent p span {
        font-weight: 700; }

.syllabus .syllabus-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px; }
  .syllabus .syllabus-container .global-headings {
    grid-column: 1 / span 5; }
    @media only screen and (max-width: 991px) {
      .syllabus .syllabus-container .global-headings {
        grid-column: span 12; } }
  .syllabus .syllabus-container .syllabus-faqs {
    grid-column: 7/ span 6;
    display: flex;
    flex-direction: column;
    gap: 24px; }
    @media only screen and (max-width: 991px) {
      .syllabus .syllabus-container .syllabus-faqs {
        grid-column: span 12; } }
    .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox {
      border: 1px solid #001F44; }
      .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox.active {
        background: #001F44; }
        .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox.active .titlebar p {
          color: #fff; }
        .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox.active .titlebar svg path {
          stroke: #fff; }
          .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox.active .titlebar svg path.vertical {
            display: none; }
      .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .titlebar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 16px 24px;
        cursor: pointer; }
        @media only screen and (max-width: 991px) {
          .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .titlebar {
            padding: 16px; } }
        .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .titlebar p {
          font-size: 1.5rem;
          color: #001F44;
          font-weight: 600;
          font-family: "Montserrat", sans-serif;
          text-transform: uppercase; }
          @media only screen and (max-width: 991px) {
            .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .titlebar p {
              font-size: 1.125rem; } }
        .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .titlebar svg path.vertical {
          display: block; }
      .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out; }
        .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol {
          padding: 16px 0;
          padding-left: 56px;
          padding-right: 24px;
          position: relative; }
          @media only screen and (max-width: 991px) {
            .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol {
              padding-left: 24px; } }
          .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol::before {
            content: "";
            position: absolute;
            top: 0;
            left: 24px;
            height: 1px;
            width: calc(100% - 48px);
            background: #D79501; }
          .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol p.title {
            font-size: 1.5rem;
            color: #fff;
            font-weight: 600;
            font-family: "Montserrat", sans-serif; }
            @media only screen and (max-width: 991px) {
              .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol p.title {
                font-size: 1.125rem; } }
          .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol ul {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 16px 0 16px 16px; }
            .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol ul li {
              color: #fff;
              font-size: 1.25rem;
              font-family: "Montserrat", sans-serif;
              font-weight: 400;
              position: relative;
              padding-left: 16px; }
              .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol ul li::marker {
                color: #D79501; }
              @media only screen and (max-width: 991px) {
                .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol ul li {
                  font-size: 1rem; } }
              .syllabus .syllabus-container .syllabus-faqs .syllbus-faqbox .contentbox .contentcol ul li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 14px;
                transform: translateY(-50%);
                height: 4px;
                width: 4px;
                background: #D79501;
                border-radius: 50%; }

.brochure {
  padding: 48px 0;
  background: #001F44;
  text-align: center; }
  @media only screen and (max-width: 991px) {
    .brochure {
      margin: 40px auto; } }
  .brochure .brochure-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto; }
    .brochure .brochure-title p {
      color: #fff;
      font-size: 1rem;
      font-family: "Lato", sans-serif;
      line-height: 1.5;
      font-weight: 300; }
      .brochure .brochure-title p.title {
        font-size: 2rem;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        position: relative; }
        @media only screen and (max-width: 991px) {
          .brochure .brochure-title p.title {
            font-size: 1.5rem; } }
        .brochure .brochure-title p.title::after {
          content: "";
          position: absolute;
          bottom: -20px;
          left: 50%;
          transform: translateX(-50%);
          height: 4px;
          width: 80px;
          background: #D79501; }
    .brochure .brochure-title .common-cta {
      background: transparent;
      border: 1px solid #fff;
      color: #fff; }
      .brochure .brochure-title .common-cta:hover {
        border-color: #D79501; }
      .brochure .brochure-title .common-cta::before {
        background: #D79501; }
      .brochure .brochure-title .common-cta svg path {
        fill: #fff; }

.eligibility .global-headings p {
  color: #001F44; }
  .eligibility .global-headings p a {
    color: #001F44;
    transition: color 0.3s ease-out; }
    .eligibility .global-headings p a:hover {
      color: #D79501; }
.eligibility .elig-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 16px;
  margin-top: 32px; }
  @media only screen and (max-width: 991px) {
    .eligibility .elig-cards {
      gap: 32px 16px; } }
  .eligibility .elig-cards .elig-card {
    position: relative;
    grid-column: span 3;
    padding-left: 24px;
    border-left: 1px solid #CCD2DA; }
    @media only screen and (max-width: 991px) {
      .eligibility .elig-cards .elig-card {
        grid-column: span 12; } }
    .eligibility .elig-cards .elig-card p.count {
      color: #001F44;
      opacity: 0.2;
      font-family: "Lato", sans-serif;
      font-weight: 300;
      font-size: 2.5rem; }
    .eligibility .elig-cards .elig-card p.title {
      font-size: 1.25rem;
      color: #001F44;
      font-family: #D79501;
      line-height: 1.4;
      font-weight: 700;
      margin-top: 16px;
      position: relative; }
      .eligibility .elig-cards .elig-card p.title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -12px;
        height: 2px;
        background: #D79501;
        width: 80px; }
    .eligibility .elig-cards .elig-card ul {
      display: flex;
      flex-direction: column;
      list-style-type: disc;
      margin-top: 24px;
      gap: 16px; }
      .eligibility .elig-cards .elig-card ul li {
        color: #001F44;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.4;
        position: relative;
        padding-left: 16px; }
        .eligibility .elig-cards .elig-card ul li::marker {
          color: #001F44; }
        .eligibility .elig-cards .elig-card ul li span {
          font-weight: 600; }
        .eligibility .elig-cards .elig-card ul li::before {
          content: "";
          position: absolute;
          left: 0;
          top: 11px;
          transform: translateY(-50%);
          height: 4px;
          width: 4px;
          background: #001F44;
          border-radius: 50%; }

.hods {
  background: #F4F8FD; }
  .hods .hod-detail {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 32px; }
    .hods .hod-detail .mediaside {
      grid-column: span 4;
      border: 1px solid #E4E4E4;
      padding: 20px; }
      @media only screen and (max-width: 991px) {
        .hods .hod-detail .mediaside {
          grid-column: span 12; } }
      .hods .hod-detail .mediaside .media {
        width: 100%; }
        .hods .hod-detail .mediaside .media img {
          width: 100%;
          object-fit: contain;
          display: block; }
      .hods .hod-detail .mediaside .names {
        margin-top: 16px; }
        .hods .hod-detail .mediaside .names p {
          font-size: 1rem;
          color: #565656;
          line-height: 1.4;
          font-weight: 300;
          font-family: "Lato", sans-serif; }
          .hods .hod-detail .mediaside .names p.title {
            font-size: 1.125rem;
            color: #000000;
            font-weight: 700; }
    .hods .hod-detail .detailside {
      grid-column: span 8;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px; }
      @media only screen and (max-width: 991px) {
        .hods .hod-detail .detailside {
          grid-column: span 12;
          padding: 20px 0; } }
      .hods .hod-detail .detailside .nametagbox {
        display: flex;
        gap: 16px; }
        @media only screen and (max-width: 991px) {
          .hods .hod-detail .detailside .nametagbox {
            flex-direction: column;
            gap: 4px; } }
        .hods .hod-detail .detailside .nametagbox p {
          font-size: 1rem;
          font-weight: 300;
          color: #001F44;
          line-height: 1.5; }
          .hods .hod-detail .detailside .nametagbox p.tag {
            flex-shrink: 0;
            min-width: 80px;
            font-weight: 700; }
  .hods .faculties {
    padding-bottom: 60px; }
    .hods .faculties .faculty-tabs {
      display: flex;
      gap: 0;
      margin-top: 24px;
      position: relative;
      max-width: 100%;
      overflow-y: auto; }
      .hods .faculties .faculty-tabs .fac-tab {
        padding: 16px 48px;
        width: max-content;
        border-bottom: 1px solid #EEEEEE;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        color: #616161;
        text-transform: uppercase;
        white-space: nowrap; }
        @media only screen and (max-width: 991px) {
          .hods .faculties .faculty-tabs .fac-tab {
            padding: 16px; } }
        .hods .faculties .faculty-tabs .fac-tab.active {
          font-weight: 600;
          color: #000000; }
      .hods .faculties .faculty-tabs .follower {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: #D79501;
        transition: width 0.3s ease-out,left 0.3s ease-out; }
    .hods .faculties .facdata {
      display: none;
      grid-template-columns: repeat(12, 1fr);
      gap: 0;
      margin-top: 32px; }
      .hods .faculties .facdata.active {
        display: grid; }
      .hods .faculties .facdata .facitem {
        grid-column: span 3;
        padding: 16px;
        position: relative;
        overflow: hidden;
        border: solid #E4E4E4;
        border-width: 1px 1px 1px 0; }
        @media only screen and (max-width: 991px) {
          .hods .faculties .facdata .facitem {
            grid-column: span 6;
            padding: 8px; } }
        .hods .faculties .facdata .facitem .facimage {
          width: 100%;
          object-fit: contain;
          display: block; }
        .hods .faculties .facdata .facitem .cont {
          margin-top: 16px; }
          .hods .faculties .facdata .facitem .cont p {
            font-size: 1rem;
            font-weight: 300;
            color: #565656;
            font-family: "Lato", sans-serif; }
            @media only screen and (max-width: 991px) {
              .hods .faculties .facdata .facitem .cont p {
                font-size: 0.875rem; } }
            .hods .faculties .facdata .facitem .cont p.title {
              color: #000000;
              font-size: 1.125rem;
              font-weight: 700;
              margin-bottom: 4px; }
              @media only screen and (max-width: 991px) {
                .hods .faculties .facdata .facitem .cont p.title {
                  font-size: 1rem;
                  margin-bottom: 0; } }
        .hods .faculties .facdata .facitem:nth-child(4n+1) {
          border-width: 1px 1px 1px 1px; }
        .hods .faculties .facdata .facitem:hover .frontlayer {
          transform: translateY(0); }
        .hods .faculties .facdata .facitem .frontlayer {
          position: absolute;
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          padding: 16px;
          background: rgba(0, 31, 68, 0.75);
          transform: translateY(100%);
          top: 0;
          left: 0;
          transition: transform 0.2s ease-out; }
          .hods .faculties .facdata .facitem .frontlayer p {
            color: #fff;
            font-size: 1rem;
            font-weight: 300;
            font-family: "Lato", sans-serif;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            display: -webkit-box;
            overflow: hidden; }
          .hods .faculties .facdata .facitem .frontlayer span {
            font-size: 1rem;
            text-decoration: underline;
            text-underline-offset: 2px;
            font-weight: 300;
            color: #fff;
            font-style: italic;
            cursor: pointer;
            margin-top: 4px; }

.leftflips .flipbox {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  align-items: center; }
  @media only screen and (max-width: 991px) {
    .leftflips .flipbox {
      padding: 16px;
      padding-right: 32px; } }
  .leftflips .flipbox .mediaside {
    grid-column: span 6;
    background: #001F44; }
    @media only screen and (max-width: 991px) {
      .leftflips .flipbox .mediaside {
        grid-column: span 12; } }
    .leftflips .flipbox .mediaside .media {
      position: relative;
      top: 40px;
      left: 40px;
      width: 100%; }
      @media only screen and (max-width: 991px) {
        .leftflips .flipbox .mediaside .media {
          top: 16px;
          left: 16px; } }
      .leftflips .flipbox .mediaside .media img {
        width: 100%;
        object-fit: contain;
        display: block; }
  .leftflips .flipbox .contentside {
    grid-column: span 5;
    padding: 20px;
    padding-left: 60px; }
    @media only screen and (max-width: 991px) {
      .leftflips .flipbox .contentside {
        grid-column: span 12;
        padding: 24px 0 0 0; } }
    .leftflips .flipbox .contentside .common-cta {
      margin-top: 40px; }
  .leftflips .flipbox:nth-child(even) {
    direction: rtl;
    padding-right: 16px;
    padding-left: 32px; }
    @media only screen and (max-width: 991px) {
      .leftflips .flipbox:nth-child(even) {
        margin-top: 40px; } }
    .leftflips .flipbox:nth-child(even) .mediaside, .leftflips .flipbox:nth-child(even) .contentside {
      direction: ltr; }
    .leftflips .flipbox:nth-child(even) .mediaside .media {
      top: -20px;
      left: -40px; }
      @media only screen and (max-width: 991px) {
        .leftflips .flipbox:nth-child(even) .mediaside .media {
          top: -16px;
          left: -16px; } }
    .leftflips .flipbox:nth-child(even) .contentside {
      padding-left: 20px;
      padding-right: 60px; }
      @media only screen and (max-width: 991px) {
        .leftflips .flipbox:nth-child(even) .contentside {
          padding: 24px 0 0 0; } }

.popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none; }
  .popup .pop {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center; }
    .popup .pop .modal-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 1030px;
      background: #fff;
      padding: 40px;
      position: relative; }
      .popup .pop .modal-content .closemodal {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer; }
      .popup .pop .modal-content .item {
        grid-column: span 1; }
        .popup .pop .modal-content .item .media {
          width: 100%; }
          .popup .pop .modal-content .item .media img {
            width: 100%;
            object-fit: contain;
            display: block; }
        .popup .pop .modal-content .item .content p {
          font-size: 1rem;
          color: #001F44;
          font-weight: 300;
          font-family: "Lato", sans-serif;
          line-height: 1.5; }
          .popup .pop .modal-content .item .content p.name {
            font-size: 2rem;
            font-weight: 600;
            font-family: "Montserrat", sans-serif; }
          .popup .pop .modal-content .item .content p.desig {
            font-size: 1.25rem;
            font-weight: 300; }
        .popup .pop .modal-content .item .content a {
          text-decoration: none;
          font-size: 1rem;
          color: #001F44;
          font-weight: 400;
          font-family: "Lato", sans-serif;
          line-height: 1.2;
          display: flex;
          align-self: center;
          margin-bottom: 24px;
          margin-top: 8px; }

.faqs .faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px; }
.faqs .global-headings p.global-title {
  line-height: 1.5; }
.faqs .faqbox {
  border: 1px solid #001F44; }
  .faqs .faqbox.active {
    background: #FAFAFA; }
    .faqs .faqbox.active .faqtitle svg path.vertical {
      display: none; }
  .faqs .faqbox .faqtitle {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px 24px; }
    @media only screen and (max-width: 991px) {
      .faqs .faqbox .faqtitle {
        padding: 16px; } }
    .faqs .faqbox .faqtitle p {
      font-size: 1.5rem;
      color: #001F44;
      font-weight: 600;
      font-family: "Montserrat", sans-serif; }
      @media only screen and (max-width: 991px) {
        .faqs .faqbox .faqtitle p {
          font-size: 1.125rem; } }
    .faqs .faqbox .faqtitle svg {
      flex-shrink: 0; }
      .faqs .faqbox .faqtitle svg path.vertical {
        display: block; }
  .faqs .faqbox .details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out; }
    .faqs .faqbox .details .detailbox {
      padding: 16px 24px;
      position: relative; }
      .faqs .faqbox .details .detailbox::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        width: calc(100% - 48px);
        height: 1px;
        background-color: #C4C4C4; }
      .faqs .faqbox .details .detailbox * {
        font-size: 1rem;
        color: #001F44;
        line-height: 1.4;
        font-weight: 300;
        font-family: "Lato", sans-serif; }
      .faqs .faqbox .details .detailbox b {
        font-weight: 600; }
      .faqs .faqbox .details .detailbox ul {
        list-style-type: disc; }
      .faqs .faqbox .details .detailbox ol {
        list-style-type: auto; }
        .faqs .faqbox .details .detailbox ol li {
          margin-top: 24px; }
        .faqs .faqbox .details .detailbox ol ul li {
          margin-top: 8px; }
      .faqs .faqbox .details .detailbox li {
        list-style-type: inherit; }
        .faqs .faqbox .details .detailbox li::marker {
          font-weight: 600; }
      .faqs .faqbox .details .detailbox ul, .faqs .faqbox .details .detailbox ol {
        margin-left: 24px;
        max-width: 490px; }

.award-achievement-section .banner-heading-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }
  .award-achievement-section .banner-heading-content .year-filter {
    max-width: 150px;
    width: 100%; }
.award-achievement-section .banner-box {
  position: relative; }
  .award-achievement-section .banner-box .image {
    position: relative;
    overflow: hidden;
    z-index: 1; }
    .award-achievement-section .banner-box .image img {
      transform: scale(1.1);
      transition: all 0.5s ease-in-out; }
    .award-achievement-section .banner-box .image::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 31, 68, 0.4);
      z-index: 1;
      opacity: 0;
      visibility: hidden; }
  .award-achievement-section .banner-box .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 920px; }
    .award-achievement-section .banner-box .content p {
      text-transform: uppercase;
      color: #ffffff;
      font-size: 40px;
      line-height: 50px;
      text-align: center;
      font-weight: 700;
      transform: scale(0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s ease-in-out; }
      @media only screen and (max-width: 991px) {
        .award-achievement-section .banner-box .content p {
          font-size: 20px;
          line-height: 30px; } }
  .award-achievement-section .banner-box:hover .image img {
    transform: scale(1); }
  .award-achievement-section .banner-box:hover .image::before {
    opacity: 1;
    visibility: visible; }
  .award-achievement-section .banner-box:hover .content p {
    transform: scale(1);
    opacity: 1;
    visibility: visible; }
@media only screen and (max-width: 991px) {
  .award-achievement-section .banner-heading-content {
    flex-wrap: wrap; }
  .award-achievement-section .banner-box .image img {
    transform: scale(1); }
  .award-achievement-section .banner-box .image::before {
    display: none; }
  .award-achievement-section .banner-box .content {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    background: #001F44;
    padding: 20px 0;
    width: 100%; }
    .award-achievement-section .banner-box .content p {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      font-size: 16px;
      line-height: 26px; } }

.award-list-section {
  padding-bottom: 140px; }
  .award-list-section .award-list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px; }
    .award-list-section .award-list .award-item {
      box-sizing: border-box;
      padding: 20px;
      -ms-flex: 0 0 33.33%;
      flex: 0 0 33.33%;
      max-width: 33.33%; }
      .award-list-section .award-list .award-item.show-two {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%; }
      .award-list-section .award-list .award-item .inner-item {
        position: relative;
        height: 100%; }
        .award-list-section .award-list .award-item .inner-item .image {
          position: relative;
          transition: all 0.5s ease-in;
          overflow: hidden; }
          .award-list-section .award-list .award-item .inner-item .image::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
            opacity: 0;
            visibility: hidden; }
          .award-list-section .award-list .award-item .inner-item .image img {
            transform: scale(1.1);
            transition: all 0.5s ease-in-out; }
        .award-list-section .award-list .award-item .inner-item .content {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          background: rgba(0, 31, 68, 0.7);
          backdrop-filter: blur(24px);
          -webkit-backdrop-filter: blur(24px);
          z-index: 3; }
          .award-list-section .award-list .award-item .inner-item .content a {
            padding: 15px 20px;
            display: block;
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            line-height: 22px;
            font-weight: 400;
            transition: all 0.5s ease-in-out; }
        .award-list-section .award-list .award-item .inner-item:hover .image::before {
          opacity: 1;
          visibility: visible; }
        .award-list-section .award-list .award-item .inner-item:hover .image img {
          transform: scale(1); }
        .award-list-section .award-list .award-item .inner-item:hover .content a {
          text-decoration: underline; }
  @media only screen and (max-width: 991px) {
    .award-list-section .award-list {
      margin: -5px; }
      .award-list-section .award-list .award-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 5px; }
        .award-list-section .award-list .award-item.show-two {
          flex: 0 0 100%;
          max-width: 100%;
          padding: 5px; }
        .award-list-section .award-list .award-item .inner-item .content a {
          padding: 10px;
          font-size: 12px;
          line-height: 20px;
          font-weight: 400; } }

.load-more {
  padding-top: 60px; }
  .load-more .load-more-image {
    width: 42px;
    height: 42px;
    margin: auto; }
  @media only screen and (max-width: 991px) {
    .load-more {
      padding-top: 30px; } }

.study-tour-section .eventstabarea {
  margin-bottom: 20px; }
.study-tour-section .tour-travel-list .list-item {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap; }
  .study-tour-section .tour-travel-list .list-item .content-side {
    flex: 0 0 35%;
    max-width: 35%;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0; }
    .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side {
      background: #F4F8FD;
      padding: 30px;
      padding-bottom: 70px; }
      .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side .heading {
        position: relative;
        padding-bottom: 12px;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 30px;
        font-weight: 700; }
        @media only screen and (max-width: 991px) {
          .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side .heading {
            font-size: 18px;
            line-height: 28px; } }
        .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side .heading::before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 80px;
          border: 1px solid #D79501; }
      .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side p {
        margin-bottom: 15px; }
  .study-tour-section .tour-travel-list .list-item .image-side {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 28%; }
    .study-tour-section .tour-travel-list .list-item .image-side .image {
      position: relative;
      width: 100%;
      padding-top: calc(473 / 883* 100%);
      overflow: hidden; }
      .study-tour-section .tour-travel-list .list-item .image-side .image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
.study-tour-section .tour-travel-list:not(:last-child) {
  padding-bottom: 100px; }
.study-tour-section .tour-travel-list:nth-child(even) .list-item .content-side {
  right: inherit;
  left: 0; }
  .study-tour-section .tour-travel-list:nth-child(even) .list-item .content-side .inner-content-side {
    background: #FDC500; }
.study-tour-section .tour-travel-list:nth-child(even) .list-item .image-side {
  padding-right: 0;
  padding-left: 28%; }
@media only screen and (max-width: 1350px) {
  .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side {
    padding: 30px; } }
@media only screen and (max-width: 1200px) {
  .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side {
    padding: 15px 20px; } }
@media only screen and (max-width: 991px) {
  .study-tour-section .tour-travel-list .list-item .content-side {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
    top: 0;
    transform: translateY(0);
    right: 0; }
    .study-tour-section .tour-travel-list .list-item .content-side .inner-content-side {
      padding: 15px 20px; }
  .study-tour-section .tour-travel-list .list-item .image-side {
    padding-right: 0; }
  .study-tour-section .tour-travel-list:not(:last-child) {
    padding-bottom: 50px; }
  .study-tour-section .tour-travel-list:nth-child(even) .list-item .image-side {
    padding-left: 0; } }

.marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 20px; }
  .marquee .marquee-wrapper {
    width: max-content;
    display: inline-flex;
    animation: marquee linear infinite; }
    .marquee .marquee-wrapper .marquee-item {
      will-change: transform;
      width: 16vw;
      flex-shrink: 0;
      text-align: center;
      margin-right: 20px; }
      @media only screen and (max-width: 991px) {
        .marquee .marquee-wrapper .marquee-item {
          width: 50vw; } }
      @media only screen and (max-width: 767px) {
        .marquee .marquee-wrapper .marquee-item {
          width: 70vw; } }
      .marquee .marquee-wrapper .marquee-item .image {
        height: 100%; }
        .marquee .marquee-wrapper .marquee-item .image img {
          height: 100%;
          object-fit: cover; }
  .marquee.alumni-enagement-slider .marquee-wrapper .marquee-item {
    width: 30vw; }
    @media only screen and (max-width: 991px) {
      .marquee.alumni-enagement-slider .marquee-wrapper .marquee-item {
        width: 50vw; } }
    @media only screen and (max-width: 767px) {
      .marquee.alumni-enagement-slider .marquee-wrapper .marquee-item {
        width: 70vw; } }
  .marquee.story-slider .marquee-wrapper .marquee-item {
    width: 20vw; }
    @media only screen and (max-width: 991px) {
      .marquee.story-slider .marquee-wrapper .marquee-item {
        width: 50vw; } }
    @media only screen and (max-width: 767px) {
      .marquee.story-slider .marquee-wrapper .marquee-item {
        width: 70vw; } }

@keyframes marquee {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }
.hods.guide-faculty-section {
  background: none;
  padding: 100px 0; }
  .hods.guide-faculty-section .faculties {
    padding-bottom: 40px; }
    .hods.guide-faculty-section .faculties .global-headings .global-title {
      font-size: 40px;
      line-height: 50px;
      font-weight: 600; }
      @media only screen and (max-width: 991px) {
        .hods.guide-faculty-section .faculties .global-headings .global-title {
          font-size: 20px;
          line-height: 30px; } }
    .hods.guide-faculty-section .faculties .facdata {
      display: grid; }
  @media only screen and (max-width: 991px) {
    .hods.guide-faculty-section {
      padding: 40px 0; }
      .hods.guide-faculty-section .faculties {
        padding-bottom: 0; } }

.empowerment-section .left-side .content {
  padding-right: 35px; }
  .empowerment-section .left-side .content .heading {
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px; }
    @media only screen and (max-width: 991px) {
      .empowerment-section .left-side .content .heading {
        font-size: 20px;
        line-height: 30px; } }
  .empowerment-section .left-side .content p:not(:last-child) {
    margin-bottom: 24px; }
.empowerment-section .right-side .image {
  position: relative;
  width: 100%;
  padding-top: calc(411 / 610* 100%);
  overflow: hidden; }
  .empowerment-section .right-side .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
@media only screen and (max-width: 991px) {
  .empowerment-section .left-side .content {
    margin-bottom: 40px;
    padding-right: 0; } }

.job-section {
  background: #F4F8FD;
  margin-bottom: 100px; }
  .job-section .job-heading-area {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px; }
    .job-section .job-heading-area .heading {
      font-size: 32px;
      line-height: 42px;
      margin-bottom: 20px; }
      @media only screen and (max-width: 991px) {
        .job-section .job-heading-area .heading {
          font-size: 24px;
          line-height: 34px; } }
      .job-section .job-heading-area .heading span {
        position: relative;
        display: inline-block;
        padding-bottom: 10px; }
        .job-section .job-heading-area .heading span::before {
          content: '';
          position: absolute;
          bottom: 0;
          border: 3px solid #D79501;
          width: 80px;
          left: 50%;
          transform: translateX(-50%); }
  .job-section .job-list .job-card {
    box-shadow: 0px 4px 34px 2px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out; }
    .job-section .job-list .job-card a {
      color: #001F44;
      padding: 16px 24px; }
      .job-section .job-list .job-card a .title {
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 10px; }
        @media only screen and (max-width: 991px) {
          .job-section .job-list .job-card a .title {
            font-size: 18px;
            line-height: 28px; } }
    .job-section .job-list .job-card:hover {
      background: #001F44;
      box-shadow: none;
      transform: translateY(-2px); }
      .job-section .job-list .job-card:hover .title, .job-section .job-list .job-card:hover .desc {
        color: #ffffff; }

.alumni-banner {
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    .alumni-banner {
      margin-bottom: 40px; } }

.common-midcontent .global-headings {
  display: flex;
  gap: 82px; }
  .common-midcontent .global-headings .left {
    min-width: 372px; }
  .common-midcontent .global-headings p {
    margin-top: 0;
    font-weight: 400;
    color: #001F44; }
  @media only screen and (max-width: 991px) {
    .common-midcontent .global-headings {
      flex-wrap: wrap;
      gap: 20px; } }

.alumni-engagement .global-headings .left {
  min-width: 435px; }
  .alumni-engagement .global-headings .left .global-title {
    font-weight: 600; }

.alumni-story-section .story-heading {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase; }
  @media only screen and (max-width: 991px) {
    .alumni-story-section .story-heading {
      font-size: 24px;
      line-height: 34px; } }
.alumni-story-section .story-slider {
  position: relative;
  padding: 60px 0; }
  .alumni-story-section .story-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #F4F8FD; }
  .alumni-story-section .story-slider .marquee-item .slide-image .story-video {
    position: relative;
    width: 100%;
    padding-top: calc(353 / 308* 100%); }
    .alumni-story-section .story-slider .marquee-item .slide-image .story-video img {
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .alumni-story-section .story-slider .marquee-item .slide-image .text-content {
    background: #232323;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px;
    max-width: 200px;
    line-height: 17px;
    position: absolute;
    bottom: 20px;
    left: 20px; }
  .alumni-story-section .story-slider .marquee-item:nth-child(odd) {
    padding-top: 50px; }
    .alumni-story-section .story-slider .marquee-item:nth-child(odd) .slide-image .text-content {
      top: 0;
      right: 20px;
      bottom: inherit;
      left: inherit;
      background: #ffffff;
      color: #000;
      padding: 20px; }
      .alumni-story-section .story-slider .marquee-item:nth-child(odd) .slide-image .text-content::before {
        content: '';
        position: absolute;
        bottom: -9px;
        right: 20px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #ffffff; }
  @media only screen and (max-width: 1200px) {
    .alumni-story-section .story-slider::before {
      width: 400px;
      height: 400px; } }
  @media only screen and (max-width: 767px) {
    .alumni-story-section .story-slider {
      padding: 10px 0; }
      .alumni-story-section .story-slider::before {
        width: 300px;
        height: 300px; } }

.success-beyond-mbs {
  background: #F4F8FD; }
  .success-beyond-mbs .success-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.5fr 1.2fr;
    grid-template-rows: auto auto;
    position: relative; }
    .success-beyond-mbs .success-grid .corner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center; }
      .success-beyond-mbs .success-grid .corner .imageHoverEffect {
        height: 100%;
        padding-top: calc(248 / 248* 100%); }
        .success-beyond-mbs .success-grid .corner .imageHoverEffect img {
          position: absolute;
          top: 0;
          left: 0;
          object-fit: cover;
          width: 100%;
          height: 100%; }
      .success-beyond-mbs .success-grid .corner .text-box {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        padding: 16px 30px; }
        .success-beyond-mbs .success-grid .corner .text-box h4 {
          font-size: 20px;
          line-height: 30px;
          margin-bottom: 8px; }
          @media only screen and (max-width: 991px) {
            .success-beyond-mbs .success-grid .corner .text-box h4 {
              font-size: 18px;
              line-height: 28px; } }
        .success-beyond-mbs .success-grid .corner .text-box p {
          font-weight: 300;
          font-size: 14px;
          line-height: 22px;
          font-weight: 400; }
          .success-beyond-mbs .success-grid .corner .text-box p span {
            font-weight: 700; }
    .success-beyond-mbs .success-grid .corner-top-left {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      position: relative;
      background: #FFF5E9; }
      .success-beyond-mbs .success-grid .corner-top-left .text-box {
        position: relative;
        justify-content: flex-start;
        padding-top: 30px; }
        .success-beyond-mbs .success-grid .corner-top-left .text-box::before {
          content: "";
          position: absolute;
          top: 0;
          left: -28px;
          width: 0;
          height: 0;
          border-right: 30px solid #FFF5E9;
          border-top: 30px solid transparent;
          border-bottom: 30px solid transparent;
          z-index: 1; }
    .success-beyond-mbs .success-grid .corner-top-right {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
      position: relative;
      background: #FFE9F0; }
      .success-beyond-mbs .success-grid .corner-top-right .text-box {
        position: relative;
        justify-content: flex-start;
        padding-top: 30px; }
        .success-beyond-mbs .success-grid .corner-top-right .text-box::before {
          content: "";
          position: absolute;
          top: 0;
          left: -28px;
          width: 0;
          height: 0;
          border-right: 30px solid #FFE9F0;
          border-top: 30px solid transparent;
          border-bottom: 30px solid transparent;
          z-index: 1; }
    .success-beyond-mbs .success-grid .center-content {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      background: #001F44;
      color: #fff;
      text-align: center;
      padding: 30px 0;
      display: flex;
      align-items: center;
      justify-content: center; }
      .success-beyond-mbs .success-grid .center-content p {
        font-size: 32px;
        line-height: 42px; }
        @media only screen and (max-width: 991px) {
          .success-beyond-mbs .success-grid .center-content p {
            font-size: 24px;
            line-height: 34px; } }
        .success-beyond-mbs .success-grid .center-content p span {
          display: block;
          color: #D79501; }
    .success-beyond-mbs .success-grid .center-content .text {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem; }
    .success-beyond-mbs .success-grid .corner-bottom-left {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      position: relative;
      background: #E9E9FF; }
      .success-beyond-mbs .success-grid .corner-bottom-left .text-box {
        position: relative;
        padding-bottom: 30px; }
        .success-beyond-mbs .success-grid .corner-bottom-left .text-box::before {
          content: "";
          position: absolute;
          top: 0;
          right: -29px;
          width: 0;
          height: 0;
          border-right: 30px solid #E9E9FF;
          border-top: 30px solid transparent;
          border-bottom: 30px solid transparent;
          z-index: 1;
          transform: rotate(180deg); }
    .success-beyond-mbs .success-grid .corner-bottom-right {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
      position: relative;
      background: #F9FFE9; }
      .success-beyond-mbs .success-grid .corner-bottom-right .text-box {
        position: relative;
        padding-bottom: 30px; }
        .success-beyond-mbs .success-grid .corner-bottom-right .text-box::before {
          content: "";
          position: absolute;
          top: 0;
          right: -29px;
          width: 0;
          height: 0;
          border-right: 30px solid #F9FFE9;
          border-top: 30px solid transparent;
          border-bottom: 30px solid transparent;
          z-index: 1;
          transform: rotate(180deg); }
    .success-beyond-mbs .success-grid .corner-bottom-left,
    .success-beyond-mbs .success-grid .corner-bottom-right {
      display: grid;
      grid-template-columns: 1fr 1fr; }
    .success-beyond-mbs .success-grid .corner-bottom-left .text-box,
    .success-beyond-mbs .success-grid .corner-bottom-right .text-box {
      order: -1; }
    @media only screen and (max-width: 767px) {
      .success-beyond-mbs .success-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        grid-template-areas: "corner-top-left" "corner-top-right" "center-content" "corner-bottom-left" "corner-bottom-right"; }
        .success-beyond-mbs .success-grid .corner .text-box {
          padding: 10px 15px; }
        .success-beyond-mbs .success-grid .corner-top-left {
          grid-area: corner-top-left; }
          .success-beyond-mbs .success-grid .corner-top-left .text-box::before {
            left: -20px;
            border-right: 20px solid #FFF5E9;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent; }
        .success-beyond-mbs .success-grid .corner-top-right {
          grid-area: corner-top-right; }
          .success-beyond-mbs .success-grid .corner-top-right .text-box::before {
            left: -20px;
            border-right: 20px solid #FFE9F0;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent; }
        .success-beyond-mbs .success-grid .center-content {
          grid-area: center-content; }
        .success-beyond-mbs .success-grid .corner-bottom-left {
          grid-area: corner-bottom-left; }
          .success-beyond-mbs .success-grid .corner-bottom-left .text-box::before {
            right: -20px;
            border-right: 20px solid #E9E9FF;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent; }
        .success-beyond-mbs .success-grid .corner-bottom-right {
          grid-area: corner-bottom-right; }
          .success-beyond-mbs .success-grid .corner-bottom-right .text-box::before {
            right: -20px;
            border-right: 20px solid #F9FFE9;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent; } }

.blog-list-section .eventstabarea .yearSelectBox {
  display: flex;
  align-items: center;
  max-width: 230px;
  gap: 12px; }
  .blog-list-section .eventstabarea .yearSelectBox .sort-para {
    max-width: 70px;
    width: 100%; }
.blog-list-section .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 16px; }
  @media only screen and (max-width: 991px) {
    .blog-list-section .blog-list {
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 767px) {
    .blog-list-section .blog-list {
      grid-template-columns: 1fr; } }

.blog-item {
  background: #ffffff;
  box-shadow: 0px 4px 34px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; }
  .blog-item a {
    color: #001F44;
    display: block;
    height: 100%; }
  .blog-item .image {
    padding-top: calc(265/416*100%); }
    .blog-item .image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .blog-item .blog-content {
    padding: 24px 24px 50px 24px; }
    .blog-item .blog-content .date-tag-area {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      font-family: "Lato", sans-serif;
      align-items: center; }
      .blog-item .blog-content .date-tag-area .date {
        position: relative;
        padding-left: 30px;
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        font-weight: 700; }
        .blog-item .blog-content .date-tag-area .date::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 0;
          width: 24px;
          height: 24px;
          background: url(../img/date-icon.svg) no-repeat;
          transform: translateY(-50%); }
      .blog-item .blog-content .date-tag-area .tag {
        background: #F5F5F5;
        border: 1px solid #ddd;
        border-radius: 32px;
        padding: 6px 14px;
        font-size: 12px;
        line-height: 17px;
        font-weight: 700;
        color: #001F44;
        text-transform: uppercase; }
    .blog-item .blog-content .short-desc p {
      font-size: 18px;
      line-height: 28px;
      font-weight: 500; }
      @media only screen and (max-width: 991px) {
        .blog-item .blog-content .short-desc p {
          font-size: 16px;
          line-height: 26px; } }
  .blog-item:hover .blog-content .date-tag-area .tag {
    text-decoration: underline; }
  .blog-item:hover .blog-content .short-desc p {
    text-decoration: underline; }
  .blog-item:hover .imageHoverEffect img {
    transform: scale(1.05); }

.blog-detail-banner .commonBannerHedaingBox {
  max-width: 90%;
  margin: auto; }
  .blog-detail-banner .commonBannerHedaingBox .heading {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize; }
  @media only screen and (max-width: 991px) {
    .blog-detail-banner .commonBannerHedaingBox {
      max-width: 100%; }
      .blog-detail-banner .commonBannerHedaingBox .heading {
        font-size: 25px;
        line-height: 30px; } }
.blog-detail-banner .tag-date-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px; }
  .blog-detail-banner .tag-date-box .btn-tag {
    border: 1px solid #141414;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    padding: 8px 20px;
    color: #001F44;
    border-radius: 32px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase; }
.blog-detail-banner .banner-box .image {
  padding-top: calc(498 / 1280* 100%); }
  .blog-detail-banner .banner-box .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.blog-detail-wrapper {
  max-width: calc(100% - 300px);
  margin: auto; }
  .blog-detail-wrapper .detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 160px;
    position: relative; }
    .blog-detail-wrapper .detail-content .right-side {
      max-width: calc(100% - 260px); }
      .blog-detail-wrapper .detail-content .right-side .detail-content-box {
        margin-bottom: 50px; }
        .blog-detail-wrapper .detail-content .right-side .detail-content-box .heading {
          font-size: 48px;
          line-height: 58px;
          font-weight: 700;
          margin-bottom: 30px; }
        .blog-detail-wrapper .detail-content .right-side .detail-content-box .para {
          color: #565656; }
          .blog-detail-wrapper .detail-content .right-side .detail-content-box .para:not(:last-child) {
            margin-bottom: 24px; }
      .blog-detail-wrapper .detail-content .right-side .detal-image {
        margin-bottom: 50px; }
    .blog-detail-wrapper .detail-content .left-side {
      width: 100px;
      flex-shrink: 0;
      position: -webkit-sticky;
      position: sticky;
      top: 70px;
      text-align: center; }
      .blog-detail-wrapper .detail-content .left-side .sticky-div {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        top: 80px; }
      .blog-detail-wrapper .detail-content .left-side p {
        font-weight: 500;
        margin-bottom: 20px; }
      .blog-detail-wrapper .detail-content .left-side .social-icon-list li:not(:last-child) {
        margin-bottom: 24px; }
      .blog-detail-wrapper .detail-content .left-side .social-icon-list li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background: #001F44;
        border-radius: 12px;
        transition: all 0.3s ease-in-out;
        margin: 0 auto; }
      .blog-detail-wrapper .detail-content .left-side .social-icon-list li:hover a {
        background: #ffffff;
        border: 1px solid #001F44; }
        .blog-detail-wrapper .detail-content .left-side .social-icon-list li:hover a .fb path {
          fill: #001F44; }
        .blog-detail-wrapper .detail-content .left-side .social-icon-list li:hover a .linkedin rect {
          fill: #001F44; }
        .blog-detail-wrapper .detail-content .left-side .social-icon-list li:hover a .linkedin path {
          fill: #ffffff; }
        .blog-detail-wrapper .detail-content .left-side .social-icon-list li:hover a .x-class path {
          stroke: #001F44; }
  @media only screen and (max-width: 991px) {
    .blog-detail-wrapper {
      max-width: calc(100% - 80px); }
      .blog-detail-wrapper .detail-content {
        gap: 0; }
        .blog-detail-wrapper .detail-content .left-side {
          width: 100%;
          position: static; }
          .blog-detail-wrapper .detail-content .left-side .sticky-div {
            display: flex;
            gap: 10px;
            align-items: center; }
            .blog-detail-wrapper .detail-content .left-side .sticky-div .social-icon-list {
              display: flex;
              gap: 16px;
              justify-content: center; }
        .blog-detail-wrapper .detail-content .right-side {
          max-width: 100%; }
          .blog-detail-wrapper .detail-content .right-side .detail-content-box, .blog-detail-wrapper .detail-content .right-side .detal-image {
            margin-bottom: 15px; }
          .blog-detail-wrapper .detail-content .right-side .detail-content-box .heading {
            font-size: 25px;
            line-height: 35px; } }
  @media only screen and (max-width: 767px) {
    .blog-detail-wrapper {
      max-width: calc(100% - 32px); } }

.related-blog-section {
  background: #FAFAFA; }
  .related-blog-section .wrapper {
    position: relative; }
  .related-blog-section .realted-heading-blog .heading {
    font-size: 40px;
    line-height: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase; }
    @media only screen and (max-width: 991px) {
      .related-blog-section .realted-heading-blog .heading {
        font-size: 20px;
        line-height: 30px; } }
  .related-blog-section .realted-heading-blog p {
    font-size: 20px;
    line-height: 30px; }
    @media only screen and (max-width: 991px) {
      .related-blog-section .realted-heading-blog p {
        font-size: 18px;
        line-height: 28px; } }
  .related-blog-section .related-blog {
    position: static; }
    .related-blog-section .related-blog .swiper-slide {
      height: auto; }
    .related-blog-section .related-blog .swiper-arrow-box {
      top: 0;
      bottom: inherit;
      left: inherit;
      right: 0; }
  @media only screen and (max-width: 991px) {
    .related-blog-section .wrapper {
      padding-bottom: 150px; }
    .related-blog-section .related-blog .swiper-arrow-box {
      top: inherit;
      bottom: 50px;
      left: 50%;
      right: inherit;
      transform: translateX(-50%); } }

.privacyPolicySection {
  padding: 30px 0; }
  .privacyPolicySection .privacyContainer {
    max-width: calc(100% - 412px);
    margin: auto; }
    .privacyPolicySection .privacyContainer h1 {
      font-weight: 700;
      font-size: 48px;
      line-height: 60px;
      text-transform: uppercase;
      margin-bottom: 0;
      padding-bottom: 40px; }
      @media only screen and (max-width: 991px) {
        .privacyPolicySection .privacyContainer h1 {
          font-size: 28px;
          line-height: 38px; } }
    .privacyPolicySection .privacyContainer .privacyContent {
      display: flex;
      gap: 60px;
      flex-direction: column;
      position: relative;
      padding-left: 20px;
      margin-top: 30px; }
      .privacyPolicySection .privacyContainer .privacyContent .contentDetail {
        display: flex;
        flex-direction: column;
        gap: 20px; }
        .privacyPolicySection .privacyContainer .privacyContent .contentDetail p {
          font-size: 16px;
          line-height: 22px;
          font-weight: 400; }
      .privacyPolicySection .privacyContainer .privacyContent::before {
        content: '';
        border: 1px solid #C4C4C4;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%; }
    @media only screen and (max-width: 991px) {
      .privacyPolicySection .privacyContainer {
        max-width: calc(100% - 40px); } }

/*# sourceMappingURL=main.css.map */
