/*-----------------------------------------------------------------

Template Name: Admit-EU Education Consulancy Website
Author:  Mahbubur Rahman
Author URI: https://mahbubur.com/
Developer: Mahbubur Rahman
Version: 1.0.0
Description: Admit-EU Education Consulancy Website

-------------------------------------------------------------------
CSS TABLE OF CONTENTS
-------------------------------------------------------------------

01. abstracts
    1.01 --> mixins
    1.02 --> variable

02. base
    2.01 --> typography
    2.02 --> animation

03. components
    3.01 --> buttons
    3.02 --> progress
    3.03 --> preloader

04. layout
    4.01 --> header
    4.02 --> banner
    4.03 --> section
    4.04 --> footer

------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-family: "DM Sans", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 28px;
}

span {
  display: inline-block;
}

.splt-txt span {
  color: unset;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}

figure {
  margin: 0;
}

@media (max-width: 1399px) {
  br {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border: 1px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8;
}

::-webkit-input-placeholder {
  color: var(--span);
  font-size: 16px;
}

::-moz-placeholder {
  color: var(--span);
  font-size: 16px;
}

:-ms-input-placeholder {
  color: var(--span);
  font-size: 16px;
}

::-ms-input-placeholder {
  color: var(--span);
  font-size: 16px;
}

::placeholder {
  color: var(--span);
  font-size: 16px;
}

.border-none {
  border: none !important;
}

.text-justify {
  text-align: justify;
}

.image img {
  width: 100%;
}

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

.transition {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.overlay {
  position: relative;
  z-index: 1;
}
.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.nice-select {
  width: 100%;
  border-radius: 10px;
  height: 50px;
  line-height: 50px;
}
.nice-select .list {
  width: 100%;
}

.top-uni-card {
  border: 1px solid #012861;
  padding: 0px;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 991px) {
  .top-uni-card {
    margin-bottom: 20px;
  }
}
.top-uni-card .uni-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 160px;
  position: relative;
  overflow: hidden;
}
.top-uni-card .uni-logo-container img {
  width: auto;
  height: auto;
  z-index: 9;
  vertical-align: bottom;
  max-width: 100%;
}
.top-uni-card .uni-logo-container::after {
  position: absolute;
  bottom: 0;
  z-index: 0;
  content: url("../images/shape/Mask-group.svg");
}
.top-uni-card .top-uni-details {
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 458px;
}
@media (max-width: 991px) {
  .top-uni-card .top-uni-details {
    min-height: 0;
    padding: 24px;
  }
}
.top-uni-card .top-uni-details h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 42px;
  text-align: left;
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 1199px) {
  .top-uni-card .top-uni-details h3 {
    font-size: 26px !important;
    line-height: 34px !important;
  }
}
.top-uni-card .top-uni-details p {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 16px;
  gap: 12px;
  line-height: 24px;
}
.top-uni-card .top-uni-details p img {
  width: 20px;
}
.top-uni-card .top-uni-details p span {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  color: #012861;
}
.top-uni-card .top-uni-details a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  border-radius: 12px;
  background: #012861;
  color: #fff;
  display: block;
  height: 56px;
  padding: 15px 24px;
  margin-top: 32px;
  position: relative;
  bottom: 0;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
}
.top-uni-card .top-uni-details .event-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 8px;
  text-transform: capitalize;
}
.top-uni-card .top-uni-details .event-type {
  color: #012861;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #012861;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 10px;
}

.view-all-uni {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .view-all-uni {
    margin-top: 40px;
  }
}
.view-all-uni a {
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  padding-top: 15px;
  padding-right: 42px;
  padding-bottom: 15px;
  padding-left: 24px;
  line-height: 24px;
  text-transform: initial;
  margin: auto;
  background: #012861;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
}
.view-all-uni a::after {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-left: 8px;
  background-image: url("../images/icons/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  content: "";
}

@media (max-width: 575px) {
  [class*=col-sm-] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.no-results {
  padding: 40px 0;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #012861;
}

.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #012861;
  border-radius: 8px;
  color: #012861;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.pagination .page-numbers.dots {
  border-color: transparent;
}
.pagination .page-numbers.dots:hover {
  background: transparent;
  color: #012861;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: #012861;
  border-color: #012861;
  color: #fff;
}

header .main-header {
  position: relative;
  background: #faf7f2;
  padding: 20px 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
header .main-header .header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .main-header .header-flex .logo-box {
  width: 140px;
}
header .main-header .header-flex .logo-box img {
  max-width: 100%;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
header .main-header .header-flex .main-header-items > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
header .main-header .header-flex .main-header-items > ul li {
  position: relative;
}
header .main-header .header-flex .main-header-items > ul li a {
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
  color: #012861;
  text-transform: capitalize;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
header .main-header .header-flex .main-header-items > ul li a:hover {
  color: #b9996a;
}
header .main-header .header-flex .main-header-items > ul li a i {
  font-size: 14px;
  margin-left: 4px;
}
header .main-header .header-flex .main-header-items > ul li a.active {
  color: #b9996a;
}
header .main-header .header-flex .main-header-items > ul li a.active {
  color: #b9996a;
}
header .main-header .header-flex .main-header-items > ul li > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: calc(100% + 7px);
  inset-inline-start: 0;
  min-width: 225px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0;
  text-align: left;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  top: 100%;
  padding-top: 2px;
  background: #f9f7f2;
  padding: 10px 15px;
  border-top: 2px solid #012861;
  z-index: 9;
}
header .main-header .header-flex .main-header-items > ul li:hover ul {
  opacity: 1;
  visibility: visible;
}
header .main-header .header-flex .main-header-items > ul > li:last-child a {
  background: #b9996a;
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  padding-right: 42px;
}
header .main-header .header-flex .main-header-items > ul > li:last-child a::after {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  margin-left: 8px;
  background: url("../images/icons/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  opacity: 1;
  content: "";
}
header .main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 10px 0;
}
header .main-header.sticky .header-flex .logo-box {
  width: 100px;
}
header .main-header .mobile-menu {
  display: none;
}
@media (max-width: 991px) {
  header .main-header {
    padding: 14px 0;
  }
  header .main-header .header-flex .logo-box {
    width: 110px;
  }
  header .main-header .header-flex .main-header-items {
    display: none;
  }
  header .main-header .mobile-menu {
    display: block;
    position: relative;
    z-index: 20;
  }
}
header .main-header .mobile-menu.mean-container .mean-bar {
  float: none;
  width: auto;
  background: transparent;
  position: static;
}
header .main-header .mobile-menu.mean-container .mean-push {
  display: none;
}
header .main-header .mobile-menu.mean-container a.meanmenu-reveal {
  position: fixed;
  top: 24px;
  right: 24px !important;
  left: unset !important;
  z-index: 100001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  text-indent: 0;
}
header .main-header .mobile-menu.mean-container a.meanmenu-reveal span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  background: #012861;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
header .main-header .mobile-menu.mean-container a.meanmenu-reveal.meanclose span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  margin: 0;
  background: #012861;
}
header .main-header .mobile-menu.mean-container a.meanmenu-reveal.meanclose span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header .main-header .mobile-menu.mean-container a.meanmenu-reveal.meanclose span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header .main-header .mobile-menu.mean-container .mean-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(320px, 82vw);
  height: 100vh;
  overflow-y: auto;
  float: none;
  background: #faf7f2;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  z-index: 100000;
  padding-top: 96px;
}
header .main-header .mobile-menu.mean-container .mean-nav::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 28px;
  width: 130px;
  height: 60px;
  background: url("../images/logo/logo-eu.png") no-repeat left center;
  background-size: contain;
}
header .main-header .mobile-menu.mean-container .mean-nav::after {
  content: "";
  position: absolute;
  top: 76px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
header .main-header .mobile-menu.mean-container .mean-nav ul:first-child {
  display: block !important;
  height: auto !important;
  border-top: 1px solid #012861;
}
header .main-header .mobile-menu.mean-container .mean-nav ul li:first-child > a {
  border-top: none !important;
}
header .main-header .mobile-menu.mean-container .mean-nav ul li a {
  padding-left: 28px !important;
  padding-right: 28px !important;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  border-top-color: #012861;
  color: #012861;
  text-transform: uppercase;
}
header .main-header .mobile-menu.mean-container .mean-nav ul li li a {
  padding-left: 40px !important;
  color: #012861;
}
header .main-header .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  right: 28px;
  background: #012861;
}
header .main-header .mobile-menu.mean-container a.meanmenu-reveal.meanclose ~ .mean-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
header .main-header .mobile-menu.mean-container:has(a.meanmenu-reveal.meanclose)::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(1, 40, 97, 0.45);
  z-index: 99999;
}

body:has(.mobile-menu.mean-container a.meanmenu-reveal.meanclose) {
  overflow: hidden;
}

.home-slider-main .swiper {
  width: 100%;
  height: calc(100vh - 136px);
}
@media (max-width: 991px) {
  .home-slider-main .swiper {
    height: calc(100vh - 96px);
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .home-slider-main .swiper {
    height: 80vh;
    min-height: 420px;
  }
}
@media (max-width: 575px) {
  .home-slider-main .swiper {
    height: 70vh;
    min-height: 380px;
  }
}
.home-slider-main .swiper .swiper-button-prev,
.home-slider-main .swiper .swiper-button-next {
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  width: 40px;
  height: 40px;
  background: #b9996a;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.home-slider-main .swiper .swiper-button-prev img,
.home-slider-main .swiper .swiper-button-next img {
  max-width: 17px;
}
.home-slider-main .swiper .swiper-button-prev {
  left: -50px;
}
.home-slider-main .swiper .swiper-button-next {
  right: -50px;
}
.home-slider-main .swiper:hover .swiper-button-prev {
  left: 30px;
}
.home-slider-main .swiper:hover .swiper-button-next {
  right: 30px;
}
@media (max-width: 991px) {
  .home-slider-main .swiper .swiper-button-prev,
  .home-slider-main .swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .home-slider-main .swiper .swiper-button-prev {
    left: 12px;
  }
  .home-slider-main .swiper .swiper-button-next {
    right: 12px;
  }
}
.home-slider-main .swiper-button-prev::after,
.home-slider-main .swiper-button-next::after {
  font-size: 20px;
  color: #fff;
  display: none;
}
.home-slider-main .swiper-slide {
  position: relative;
}
.home-slider-main .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.47))), url() rgba(211, 211, 211, 0) 50%/cover no-repeat;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 100%), url() rgba(211, 211, 211, 0) 50%/cover no-repeat;
}
.home-slider-main .swiper-slide .slide-bg,
.home-slider-main .swiper-slide .video-bg {
  width: 100%;
  height: calc(100vh - 136px);
}
@media (max-width: 991px) {
  .home-slider-main .swiper-slide .slide-bg,
  .home-slider-main .swiper-slide .video-bg {
    height: calc(100vh - 96px);
    min-height: 480px;
  }
}
@media (max-width: 767px) {
  .home-slider-main .swiper-slide .slide-bg,
  .home-slider-main .swiper-slide .video-bg {
    height: 80vh;
    min-height: 420px;
  }
}
@media (max-width: 575px) {
  .home-slider-main .swiper-slide .slide-bg,
  .home-slider-main .swiper-slide .video-bg {
    height: 70vh;
    min-height: 380px;
  }
}
.home-slider-main .swiper-slide .slide-bg {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.home-slider-main .swiper-slide video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.home-slider-main .swiper-slide .slider-cotentbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1344px;
  padding: 0 24px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .home-slider-main .swiper-slide .slider-cotentbox {
    padding: 0 16px;
  }
}
.home-slider-main .swiper-slide .slider-cotentbox h2 {
  font-size: clamp(2.5rem, 1.6rem + 3.9vw, 5rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  font-weight: 600;
  color: #fff;
  max-width: 770px;
}
.home-slider-main .swiper-slide .slider-cotentbox .description {
  margin-bottom: 48px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .home-slider-main .swiper-slide .slider-cotentbox .description {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.home-slider-main .swiper-slide .slider-cotentbox .description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  max-width: 770px;
  font-family: "DM Sans", sans-serif;
  color: #fff;
}
@media (max-width: 767px) {
  .home-slider-main .swiper-slide .slider-cotentbox .description p {
    font-size: 16px;
    line-height: 22px;
  }
}
.home-slider-main .swiper-slide .slider-cotentbox a {
  border-width: 1px;
  border-radius: 12px;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  padding-top: 15px;
  padding-right: 42px;
  padding-bottom: 15px;
  padding-left: 24px;
  line-height: 24px;
  background: #b9996a;
  color: #fff;
  position: relative;
}
@media (max-width: 575px) {
  .home-slider-main .swiper-slide .slider-cotentbox a {
    font-size: 16px;
    padding: 12px 36px 12px 20px;
  }
}
.home-slider-main .swiper-slide .slider-cotentbox a::after {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  margin-left: 8px;
  background: url("../images/icons/left-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  opacity: 1;
  content: "";
}

.course-uni-filter-main {
  padding: 100px 0;
  background: #012861;
  color: #fff;
  background-image: url("../images/shape/course-filter-shape.svg");
  background-size: contain;
  background-position: right 0px top;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .course-uni-filter-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .course-uni-filter-main {
    padding: 40px 0;
    background-image: none;
  }
}
.course-uni-filter-main ul {
  margin-bottom: 20px;
  border: none;
  gap: 24px;
}
@media (max-width: 575px) {
  .course-uni-filter-main ul {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .course-uni-filter-main ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.course-uni-filter-main ul li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  border: 1px solid #f8f9fa !important;
  color: #fff;
  text-transform: uppercase;
  min-width: 150px;
  border-radius: 12px !important;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  -ms-border-radius: 12px !important;
  -o-border-radius: 12px !important;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.course-uni-filter-main ul li button:hover {
  color: #fff;
}
.course-uni-filter-main ul li button.active {
  color: #012861;
}
@media (max-width: 575px) {
  .course-uni-filter-main ul li button {
    min-width: 0;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
  }
}
.course-uni-filter-main .tab-content > .active {
  display: block;
  border: 1px solid #b9996a;
  padding: 0px;
  border-radius: 12px;
}
.course-uni-filter-main form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 96px;
  background: #012861;
  border-radius: 12px;
  border: 1px solid #b9996a;
}
@media (max-width: 767px) {
  .course-uni-filter-main form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.course-uni-filter-main .course-input-group {
  width: 390px;
  padding: 21px 32px;
  border-right: 1px solid #2c3753;
}
@media (max-width: 991px) {
  .course-uni-filter-main .course-input-group {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .course-uni-filter-main .course-input-group {
    border-right: none;
    border-bottom: 1px solid #2c3753;
    padding: 16px 20px;
  }
}
.course-uni-filter-main .course-input-group label {
  display: block;
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
}
.course-uni-filter-main .course-input-group .select2-container--default .select2-selection--single {
  border: 0 !important;
}
.course-uni-filter-main .course-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #b9996a;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
}
.course-uni-filter-main .course-input-group .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 0;
  border-radius: 4px;
}
.course-uni-filter-main .course-input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #b9996a;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0;
}
.course-uni-filter-main .course-input-button {
  padding: 8px;
}
.course-uni-filter-main .course-input-button .course-filter-btn {
  margin-top: 0px;
  width: 140px;
  padding: 0px;
  height: 100%;
  background: #b9996a;
  border: 0;
  border-radius: 0px 6px 6px 0px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .course-uni-filter-main .course-input-button {
    padding: 16px 20px;
  }
  .course-uni-filter-main .course-input-button .course-filter-btn {
    width: 100%;
    height: 56px;
    border-radius: 6px;
  }
}

.course-list-main {
  padding: 100px 0;
}
.course-list-main .title-box {
  text-align: center;
  margin-bottom: 24px;
}
.course-list-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
}
.course-list-main .row {
  row-gap: 32px;
}
.course-list-main .course-list-card {
  height: 100%;
  padding: 32px;
  border: 1px solid #012861;
  border-radius: 12px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.course-list-main .course-list-card:hover {
  -webkit-box-shadow: 0 20px 40px rgba(1, 40, 97, 0.1);
          box-shadow: 0 20px 40px rgba(1, 40, 97, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.course-list-main .course-list-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.course-list-main .term-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #012861;
  border-radius: 8px;
  color: #012861;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}
.course-list-main .course-list-card h3 {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
  margin-bottom: 16px;
}
.course-list-main .course-list-meta {
  margin-bottom: 12px;
}
.course-list-main .course-list-meta p,
.course-list-main .course-list-universities {
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #495166;
}
.course-list-main .course-list-meta p span,
.course-list-main .course-list-universities span {
  font-weight: bold;
  color: #012861;
}
.course-list-main .course-list-universities {
  margin-bottom: 0;
  padding-bottom: 24px;
}
.course-list-main .course-list-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 24px;
  padding: 15px 24px;
  border-radius: 12px;
  background: #012861;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.course-list-main .course-list-link:hover {
  background: #b9996a;
  color: #fff;
}

.why-choose-uk-main {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f8f9fa;
  background-image: url("../images/shape/why-uk.svg");
  background-size: initial;
  background-position: left top 10%;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .why-choose-uk-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 575px) {
  .why-choose-uk-main {
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: none;
  }
}
.why-choose-uk-main .title-box {
  text-align: center;
}
.why-choose-uk-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
}
.why-choose-uk-main ul {
  margin: 64px 0;
  border: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .why-choose-uk-main ul {
    margin: 32px 0;
  }
}
@media (max-width: 575px) {
  .why-choose-uk-main ul {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .why-choose-uk-main ul li {
    width: 100%;
  }
}
.why-choose-uk-main ul li button {
  font-size: 18px;
  line-height: 24px;
  overflow: hidden;
  border: 1px solid #012861 !important;
  color: #012861;
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  font-family: "DM Sans", sans-serif;
  border-radius: 8px 8px 8px 8px !important;
  -webkit-border-radius: 8px 8px 8px 8px !important;
  -moz-border-radius: 8px 8px 8px 8px !important;
  -ms-border-radius: 8px 8px 8px 8px !important;
  -o-border-radius: 8px 8px 8px 8px !important;
}
.why-choose-uk-main ul li button.active {
  background-color: #012861 !important;
  color: #fff !important;
}
.why-choose-uk-main ul li button:hover {
  background-color: #012861 !important;
  color: #fff !important;
}
@media (max-width: 575px) {
  .why-choose-uk-main ul li button {
    padding: 8px 14px;
    font-size: 14px;
    width: 100%;
  }
}
.why-choose-uk-main .why-uk-content-parent {
  padding: 16px;
  border: 1px solid #012861;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  border-radius: 12px;
  position: relative;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background-image: url("../images/shape/top-uni.svg");
  background-size: initial;
  background-position: right 0px top;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .why-choose-uk-main .why-uk-content-parent {
    gap: 24px;
    background-image: none;
  }
}
@media (max-width: 767px) {
  .why-choose-uk-main .why-uk-content-parent {
    padding: 20px;
  }
}
.why-choose-uk-main .why-uk-content-parent .image-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .why-choose-uk-main .why-uk-content-parent .image-box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.why-choose-uk-main .why-uk-content-parent .image-box img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}
.why-choose-uk-main .why-uk-content-parent .content-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .why-choose-uk-main .why-uk-content-parent .content-box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.why-choose-uk-main .why-uk-content-parent .content-box h3 {
  font-size: 56px;
  line-height: 72px;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .why-choose-uk-main .why-uk-content-parent .content-box h3 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .why-choose-uk-main .why-uk-content-parent .content-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.why-choose-uk-main .why-uk-content-parent .content-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: #020f30;
  margin-bottom: 20px;
}

.world-class-main {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .world-class-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 575px) {
  .world-class-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.world-class-main .title-box {
  text-align: center;
}
.world-class-main .title-box h3 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
}
.world-class-main .title-box p {
  font-size: 18px;
  line-height: 24px;
  margin: 0px auto;
  margin-top: 32px;
  margin-bottom: 80px;
  max-width: 730px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 991px) {
  .world-class-main .title-box p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 22px;
  }
}
.world-class-main .top-uni-card {
  border: 1px solid #012861;
  padding: 0px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .world-class-main .top-uni-card {
    margin-bottom: 20px;
  }
}
.world-class-main .top-uni-card .uni-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 160px;
  position: relative;
  overflow: hidden;
}
.world-class-main .top-uni-card .uni-logo-container img {
  width: auto;
  height: auto;
  z-index: 9;
  vertical-align: bottom;
  max-width: 100%;
}
.world-class-main .top-uni-card .uni-logo-container::after {
  position: absolute;
  bottom: 0;
  z-index: 0;
  content: url("../images/shape/Mask-group.svg");
}
.world-class-main .top-uni-card .top-uni-details {
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 458px;
}
@media (max-width: 991px) {
  .world-class-main .top-uni-card .top-uni-details {
    min-height: 0;
    padding: 24px;
  }
}
.world-class-main .top-uni-card .top-uni-details h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 42px;
  text-align: left;
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .world-class-main .top-uni-card .top-uni-details h3 {
    font-size: 26px;
    line-height: 34px;
  }
}
.world-class-main .top-uni-card .top-uni-details p {
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 16px;
  gap: 12px;
  line-height: 24px;
  text-transform: capitalize;
}
.world-class-main .top-uni-card .top-uni-details p img {
  width: 20px;
}
.world-class-main .top-uni-card .top-uni-details p span {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  color: #012861;
}
.world-class-main .top-uni-card .top-uni-details a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  border-radius: 12px;
  background: #012861;
  color: #fff;
  display: block;
  height: 56px;
  padding: 15px 24px;
  margin-top: 32px;
  position: relative;
  bottom: 0;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
}
.world-class-main .view-all-uni {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .world-class-main .view-all-uni {
    margin-top: 40px;
  }
}
.world-class-main .view-all-uni a {
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  padding-top: 15px;
  padding-right: 42px;
  padding-bottom: 15px;
  padding-left: 24px;
  line-height: 24px;
  text-transform: initial;
  margin: auto;
  background: #012861;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
}
.world-class-main .view-all-uni a::after {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-left: 8px;
  background-image: url("../images/icons/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  content: "";
}

.hear-students-main {
  background: #012861;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .hear-students-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 575px) {
  .hear-students-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.hear-students-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.hear-students-main .title-box h2 span {
  color: #b9996a;
}
.hear-students-main .hear-studen-wrapper .swiper {
  width: 100%;
  height: 100%;
  height: 1100px;
  margin-top: -180px;
}
@media (max-width: 1199px) {
  .hear-students-main .hear-studen-wrapper .swiper {
    height: 900px;
    margin-top: -140px;
  }
}
@media (max-width: 991px) {
  .hear-students-main .hear-studen-wrapper .swiper {
    height: 720px;
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper {
    height: 560px;
    margin-top: -60px;
  }
}
@media (max-width: 575px) {
  .hear-students-main .hear-studen-wrapper .swiper {
    height: 460px;
    margin-top: -40px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-wrapper {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: -14px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide {
  scale: 0.96;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 0px solid #b9996a;
  height: 515px;
  z-index: 99;
  position: relative;
  top: 0;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  opacity: 0.6;
  margin: 0 0px;
}
@media (max-width: 1199px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide {
    height: 420px;
  }
}
@media (max-width: 991px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide {
    height: 340px;
  }
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide {
    height: 220px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box {
  position: relative;
  overflow: hidden;
  scale: 1.16;
  height: 100%;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper .popup-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper .popup-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper .popup-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(1, 40, 97, 0.6);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper .popup-video .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper .popup-video .play-btn {
    width: 40px;
    height: 40px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .video-box .video-wrapper .popup-video:hover .play-btn {
  background: #b9996a;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .hear-students-info {
  text-align: center;
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .hear-students-info h3 {
  border-radius: 8px;
  background: #b9996a;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px;
  margin-top: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
}
@media (max-width: 991px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide .hear-students-info h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide .hear-students-info h3 {
    font-size: 20px;
    margin-top: 14px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide .hear-students-info p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 24px;
}
@media (max-width: 575px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide .hear-students-info p {
    font-size: 15px;
    margin-top: 12px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active {
  scale: 1.12;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: auto;
  z-index: 9999;
  position: relative;
  top: 100px;
  border-radius: 8px;
  margin-left: 20px;
  margin-right: 20px;
  pointer-events: auto;
  opacity: 1;
}
@media (max-width: 1199px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active {
    top: 70px;
  }
}
@media (max-width: 991px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active {
    top: 50px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active {
    top: 30px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active .video-box {
  scale: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 8px solid #b9996a;
  height: 510px;
  z-index: 9999;
  position: relative;
  top: 0;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: auto;
  opacity: 1;
}
@media (max-width: 1199px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active .video-box {
    height: 420px;
  }
}
@media (max-width: 991px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active .video-box {
    height: 340px;
    border-width: 6px;
  }
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active .video-box {
    height: 280px;
    border-width: 4px;
  }
}
@media (max-width: 575px) {
  .hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active .video-box {
    height: 220px;
    border-width: 3px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .swiper-slide.swiper-slide-active .video-box .video-wrapper iframe {
  pointer-events: auto;
}
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation {
  position: absolute;
  bottom: -22px;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1344px;
  padding: 0 24px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation {
    bottom: -14px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-next,
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-prev {
  position: absolute;
  top: unset;
  bottom: 5px !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #b9996a;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-next,
  .hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-prev {
  right: 58px;
  left: unset;
}
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-prev::after {
  content: url("../images/icons/left-arrow.svg");
  height: 100%;
  top: -9px;
  position: relative;
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-prev::after {
    top: -12px;
  }
}
@media (max-width: 767px) {
  .hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-prev {
    right: 46px;
  }
}
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-next {
  right: 0px;
}
.hear-students-main .hear-studen-wrapper .swiper .hear-students-navigation .swiper-button-next::after {
  content: url("../images/icons/right-arrow.svg");
  top: -8px;
  position: relative;
}

.univarsity-fair-main {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/home/destination-events.webp");
  background-size: initial;
  background-position: right 0px top;
  background-color: #f8f9fa;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .univarsity-fair-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .univarsity-fair-main {
    background-image: none;
  }
}
@media (max-width: 575px) {
  .univarsity-fair-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.univarsity-fair-main .title-box {
  padding-bottom: 80px;
  max-width: 644px;
}
@media (max-width: 991px) {
  .univarsity-fair-main .title-box {
    padding-bottom: 40px;
  }
}
.univarsity-fair-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  font-family: "geller_testheadline_bold";
  font-weight: 800;
}
.univarsity-fair-main .title-box h2 span {
  color: #b9996a;
}
.univarsity-fair-main .unifair-serach-box {
  background-color: #fff;
  margin-bottom: 64px;
  border-radius: 12px;
  border: 1px solid #000;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 991px) {
  .univarsity-fair-main .unifair-serach-box {
    margin-bottom: 32px;
  }
}
.univarsity-fair-main .unifair-serach-box .uni-fair-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 28px 32px;
}
@media (min-width: 768px) {
  .univarsity-fair-main .unifair-serach-box .uni-fair-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .univarsity-fair-main .unifair-serach-box .uni-fair-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    padding: 16px 20px;
  }
}
.univarsity-fair-main .unifair-serach-box .uni-fair-toggle label {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: unset;
  margin-bottom: 0;
  color: #000;
  font-family: "DM Sans", sans-serif;
}
.univarsity-fair-main .unifair-serach-box .uni-fair-toggle img {
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 28px 32px;
  border-right: solid 1px #cccfd6;
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box:last-child {
  border: none;
}
@media (max-width: 767px) {
  .univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box {
    padding: 16px 20px;
    border-right: none;
    border-bottom: solid 1px #cccfd6;
  }
  .univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box:last-child {
    border-bottom: none;
  }
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box .select2 {
  width: 100% !important;
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box .select2 span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: unset;
  margin-bottom: 0;
  color: #000;
  font-family: "DM Sans", sans-serif;
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box .select2 .select2-selection__arrow {
  content: url("../images/icons/header-dropdown-arrow.svg");
  height: 30px;
  width: 30px;
}
.univarsity-fair-main .unifair-serach-box .uni-fair-search-wrapper .single-box:nth-child(1) .select2 .select2-selection__arrow {
  content: url("../images/icons/Calendar-Icon-Dark.svg");
  height: 20px;
  width: 20px;
}

.faq-main {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .faq-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .faq-main {
    padding: 40px 0;
  }
}
.faq-main .title-box {
  padding-right: 50px;
}
.faq-main .title-box h3 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  margin-bottom: 30px;
}
.faq-main .title-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 991px) {
  .faq-main .title-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .faq-main .title-box {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.faq-main .accordion-wrapper .single-accordion-wrapper .title-box {
  margin-bottom: 0;
  padding: 32px 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid #012861;
  background: initial;
  font-size: 28px;
  line-height: 36px;
  font-family: "geller_testheadline_black";
  font-weight: 900;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
}
@media (max-width: 575px) {
  .faq-main .accordion-wrapper .single-accordion-wrapper .title-box {
    padding: 20px 0;
    padding-right: 36px;
    font-size: 19px;
    line-height: 26px;
  }
}
.faq-main .accordion-wrapper .single-accordion-wrapper .title-box::before {
  color: #ccc;
  top: 37px;
  margin-top: 0;
  position: absolute;
  right: 0;
  font-size: 16px;
  width: 25px;
  height: 25px;
  aspect-ratio: 1/1;
  background: url("../images/icons/according-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media (max-width: 575px) {
  .faq-main .accordion-wrapper .single-accordion-wrapper .title-box::before {
    top: 22px;
    width: 20px;
    height: 20px;
  }
}
.faq-main .accordion-wrapper .single-accordion-wrapper .description-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.35s ease, padding-bottom 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding-bottom 0.4s ease;
}
.faq-main .accordion-wrapper .single-accordion-wrapper .description-box p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 991px) {
  .faq-main .accordion-wrapper .single-accordion-wrapper .description-box p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
.faq-main .accordion-wrapper .single-accordion-wrapper .description-box ul {
  margin-left: 20px;
}
.faq-main .accordion-wrapper .single-accordion-wrapper .description-box ul li {
  padding-bottom: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  font-family: "DM Sans", sans-serif;
  list-style-type: disc;
}
@media (max-width: 991px) {
  .faq-main .accordion-wrapper .single-accordion-wrapper .description-box ul li {
    font-size: 16px;
    line-height: 22px;
  }
}
.faq-main .accordion-wrapper .single-accordion-wrapper.no-transition .description-box {
  -webkit-transition: none;
  transition: none;
}
.faq-main .accordion-wrapper .single-accordion-wrapper.open .title-box::before {
  background: url("../images/icons/according-minus.svg");
}
.faq-main .accordion-wrapper .single-accordion-wrapper.open .description-box {
  max-height: unset;
  opacity: 1;
  padding-bottom: 32px;
}
.faq-main .accordion-wrapper .single-accordion-wrapper.open .description {
  max-height: unset;
}

.common-inner-banner-main {
  --banner-img-w: min(708px, 46vw);
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: var(--banner-img-w) auto;
  background-position: right 0px bottom -2px;
  background-repeat: no-repeat;
  min-height: 550px;
  background-color: #faf7f2;
}
@media (max-width: 991px) {
  .common-inner-banner-main {
    padding-top: 64px;
    padding-bottom: 64px;
    min-height: unset;
  }
}
@media (max-width: 767px) {
  .common-inner-banner-main {
    --banner-img-w: min(260px, 40vw);
    padding-top: 48px;
    padding-bottom: calc(var(--banner-img-w) / 1.31 + 48px);
    background-position: bottom center;
  }
}
@media (max-width: 575px) {
  .common-inner-banner-main {
    --banner-img-w: min(220px, 42vw);
    padding-top: 32px;
    padding-bottom: calc(var(--banner-img-w) / 1.31 + 40px);
  }
}
.common-inner-banner-main .content-box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 350px;
}
@media (max-width: 991px) {
  .common-inner-banner-main .content-box-wrapper {
    min-height: unset;
  }
}
.common-inner-banner-main .content-box-wrapper h1 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .common-inner-banner-main .content-box-wrapper h1 {
    margin-bottom: 24px;
  }
}
.common-inner-banner-main .content-box-wrapper p {
  color: #020f30;
  font-size: 18px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 575px) {
  .common-inner-banner-main .content-box-wrapper p {
    font-size: 16px;
    line-height: 22px;
  }
}

.about-banner-main {
  background-image: url("../images/about/About-us.png");
}

.vision-main {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .vision-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .vision-main {
    padding: 40px 0;
  }
}
.vision-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .vision-main .title-box h2 {
    margin-bottom: 24px;
  }
}
.vision-main .vision-flex {
  padding: 32px 0;
  border-bottom: 1px solid #ced4da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .vision-main .vision-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }
}
.vision-main .vision-flex .left-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.vision-main .vision-flex .left-box h3 {
  font-family: "geller_testheadline_semibold";
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  color: #020f30;
}
@media (max-width: 991px) {
  .vision-main .vision-flex .left-box h3 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .vision-main .vision-flex .left-box h3 {
    font-size: 26px;
  }
}
.vision-main .vision-flex .right-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.vision-main .vision-flex .right-box p {
  color: #020f30;
  font-size: 18px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 575px) {
  .vision-main .vision-flex .right-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
.vision-main .vision-flex:last-child {
  padding-bottom: 0;
  border: none;
}

.our-journey-main {
  padding: 100px 0;
  background: #012861;
}
@media (max-width: 991px) {
  .our-journey-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .our-journey-main {
    padding: 40px 0;
  }
}
.our-journey-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .our-journey-main .title-box h2 {
    margin-bottom: 24px;
  }
}
.our-journey-main .our-journey-desktop {
  overflow: hidden;
}
.our-journey-main .our-journey-desktop .our-journey-desktop-slider {
  overflow: hidden;
  height: 650px;
  position: relative;
}
@media (max-width: 991px) {
  .our-journey-main .our-journey-desktop .our-journey-desktop-slider {
    height: 560px;
  }
}
@media (max-width: 767px) {
  .our-journey-main .our-journey-desktop .our-journey-desktop-slider {
    height: 760px;
  }
}
@media (max-width: 575px) {
  .our-journey-main .our-journey-desktop .our-journey-desktop-slider {
    height: 620px;
  }
}
.our-journey-main .our-journey-desktop .timeline {
  overflow-y: auto;
  max-height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: absolute;
}
@media (max-width: 767px) {
  .our-journey-main .our-journey-desktop .timeline {
    display: none;
  }
}
.our-journey-main .our-journey-desktop .timeline .timeline-dot {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  text-align: center;
  cursor: pointer;
  margin-bottom: 24px;
}
.our-journey-main .our-journey-desktop .timeline .timeline-dot .long-bar::after {
  content: url("../images/about/time-line-bar.svg");
}
.our-journey-main .our-journey-desktop .timeline .timeline-dot .time-bullet {
  border-radius: 50%;
  background-color: #5c6e70;
  width: 20px;
  height: 20px;
  margin-top: 24px;
  position: relative;
  left: 0px;
}
.our-journey-main .our-journey-desktop .timeline .timeline-dot.active .time-bullet {
  background: #b9996a;
}
.our-journey-main .swiper {
  width: 100%;
  height: 100%;
}
.our-journey-main .swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.our-journey-main .swiper .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: auto;
  max-height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.our-journey-main .swiper .swiper-wrapper .swiper-slide::-webkit-scrollbar {
  display: none;
}
.our-journey-main .swiper .inner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 195px;
     -moz-column-gap: 195px;
          column-gap: 195px;
}
@media (max-width: 991px) {
  .our-journey-main .swiper .inner-content {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
@media (max-width: 767px) {
  .our-journey-main .swiper .inner-content {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
.our-journey-main .swiper .inner-content .year {
  color: #b9996a;
  font-family: "geller_testheadline_semibold";
  font-size: 80px;
  font-weight: 600;
  line-height: 125%;
}
@media (max-width: 991px) {
  .our-journey-main .swiper .inner-content .year {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .our-journey-main .swiper .inner-content .year {
    font-size: 40px;
  }
}
.our-journey-main .swiper .inner-content h3 {
  color: #fff;
  font-family: "geller_testheadline_semibold";
  font-size: 56px;
  font-weight: 600;
  line-height: 128.571%;
}
@media (max-width: 1199px) {
  .our-journey-main .swiper .inner-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .our-journey-main .swiper .inner-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .our-journey-main .swiper .inner-content h3 {
    font-size: 26px;
  }
}
.our-journey-main .swiper .inner-content .inner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-journey-main .swiper .inner-content .inner-right p {
  color: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  color: #fff;
}
@media (max-width: 575px) {
  .our-journey-main .swiper .inner-content .inner-right p {
    font-size: 15px;
    line-height: 160%;
  }
}

.what-wedo-main {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .what-wedo-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .what-wedo-main {
    padding: 40px 0;
  }
}
.what-wedo-main .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .what-wedo-main .title-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.what-wedo-main .title-box h2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
}
.what-wedo-main .title-box p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #020f30;
  font-size: 18px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 575px) {
  .what-wedo-main .title-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
.what-wedo-main .we-grid-parent {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .what-wedo-main .we-grid-parent {
    grid-template-columns: 1fr;
  }
}
.what-wedo-main .we-grid-parent .single-we-do {
  background-color: #ffffff;
  border-radius: 12px 12px 12px 12px;
  overflow: hidden;
  border: 1px solid #b5b2ef;
  padding: 40px;
  background-image: url("../images/about/whatwe-do-pattern1.webp");
  background-size: initial;
  background-position: right 0px top;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .what-wedo-main .we-grid-parent .single-we-do {
    padding: 24px;
  }
}
.what-wedo-main .we-grid-parent .single-we-do .icon {
  margin-bottom: 24px;
}
.what-wedo-main .we-grid-parent .single-we-do .icon img {
  width: 64px;
  height: 64px;
}
@media (max-width: 575px) {
  .what-wedo-main .we-grid-parent .single-we-do .icon img {
    width: 48px;
    height: 48px;
  }
}
.what-wedo-main .we-grid-parent .single-we-do h4 {
  font-size: clamp(1.375rem, 1.15rem + 0.98vw, 2rem);
  font-style: normal;
  line-height: 1.3125;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  color: #000;
}
@media (max-width: 575px) {
  .what-wedo-main .we-grid-parent .single-we-do h4 {
    margin-bottom: 16px;
  }
}
.what-wedo-main .we-grid-parent .single-we-do p {
  font-weight: 400;
  line-height: 26px;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  color: #000;
}
@media (max-width: 575px) {
  .what-wedo-main .we-grid-parent .single-we-do p {
    font-size: 16px;
    line-height: 22px;
  }
}

.team-banner-main {
  background-image: url("../images/team/Team.webp");
}

.executive-team-main {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .executive-team-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .executive-team-main {
    padding: 40px 0;
  }
}
.executive-team-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .executive-team-main .title-box h2 {
    margin-bottom: 32px;
  }
}
.executive-team-main .executive-team-box {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .executive-team-main .executive-team-box {
    margin-bottom: 32px;
  }
}
.executive-team-main .executive-team-box .image-box {
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .executive-team-main .executive-team-box .image-box {
    height: auto;
  }
}
.executive-team-main .executive-team-box .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.executive-team-main .executive-team-box .description-box {
  text-align: center;
  margin-bottom: 12px;
}
.executive-team-main .executive-team-box .description-box h3 {
  font-size: clamp(1.375rem, 1.15rem + 0.98vw, 2rem);
  font-style: normal;
  line-height: 1.3125;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  color: #000;
}
.executive-team-main .executive-team-box .description-box p {
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .executive-team-main .executive-team-box .description-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
.executive-team-main .executive-team-box .social-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .executive-team-main .executive-team-box .social-box ul {
    gap: 14px;
  }
}
.executive-team-main .executive-team-box .social-box ul li a {
  font-size: 17px;
  width: 25px;
  height: 25px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
}
.executive-team-main .executive-team-box .social-box ul li:nth-child(1) a {
  background: #1877f2;
}
.executive-team-main .executive-team-box .social-box ul li:nth-child(2) a {
  background: #0a66c2;
}
.executive-team-main .executive-team-box .social-box ul li:nth-child(3) a {
  background: #1da1f2;
}
.executive-team-main .ceo-box-flex {
  background: #012861;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  border-radius: 12px 12px 12px 12px;
  overflow: hidden;
  padding: 8px;
}
@media (max-width: 767px) {
  .executive-team-main .ceo-box-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.executive-team-main .ceo-box-flex .image-box {
  width: 36%;
}
@media (max-width: 767px) {
  .executive-team-main .ceo-box-flex .image-box {
    width: 100%;
  }
}
.executive-team-main .ceo-box-flex .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 12px 12px;
}
.executive-team-main .ceo-box-flex .quote-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 72px 50px;
  color: #fff;
}
@media (max-width: 991px) {
  .executive-team-main .ceo-box-flex .quote-box {
    padding: 48px 32px;
  }
}
@media (max-width: 767px) {
  .executive-team-main .ceo-box-flex .quote-box {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .executive-team-main .ceo-box-flex .quote-box {
    padding: 24px 20px;
  }
}
.executive-team-main .ceo-box-flex .quote-box h4 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .executive-team-main .ceo-box-flex .quote-box h4 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .executive-team-main .ceo-box-flex .quote-box h4 {
    font-size: 22px;
  }
}
.executive-team-main .ceo-box-flex .quote-box h5 {
  font-size: clamp(1.375rem, 1.15rem + 0.98vw, 2rem);
  font-style: normal;
  line-height: 1.3125;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  margin-bottom: 10px;
}
.executive-team-main .ceo-box-flex .quote-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 575px) {
  .executive-team-main .ceo-box-flex .quote-box p {
    font-size: 16px;
    line-height: 22px;
  }
}

.news-inner-banner-main {
  padding: 100px 0;
  background: #faf7f2;
}
@media (max-width: 991px) {
  .news-inner-banner-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .news-inner-banner-main {
    padding: 40px 0;
  }
}
.news-inner-banner-main h1 {
  text-align: center;
  font-size: clamp(2.5rem, 1.6rem + 3.9vw, 5rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  font-weight: 600;
}
.news-inner-banner-main .content-box-wrapper p {
  margin: 24px auto 0;
  max-width: 640px;
  color: #020f30;
  font-size: 18px;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 575px) {
  .news-inner-banner-main .content-box-wrapper p {
    font-size: 16px;
    line-height: 24px;
  }
}

.blog-main {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .blog-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .blog-main {
    padding: 40px 0;
  }
}
.blog-main .blog-single-card {
  border: 1px solid #b5b2ef;
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 40px;
  background-image: url("../images/blog/siuk-news-shape-vector.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (max-width: 575px) {
  .blog-main .blog-single-card {
    padding: 24px;
    margin-bottom: 20px;
  }
}
.blog-main .blog-single-card .date {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 575px) {
  .blog-main .blog-single-card .date {
    font-size: 14px;
  }
}
.blog-main .blog-single-card h3 {
  font-size: clamp(1.375rem, 1.15rem + 0.98vw, 2rem);
  font-style: normal;
  line-height: 1.3125;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .blog-main .blog-single-card h3 {
    margin-bottom: 16px;
  }
}
.blog-main .blog-single-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .blog-main .blog-single-card p {
    margin-bottom: 24px;
  }
}
.blog-main .blog-single-card a {
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 24px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  color: #fff;
  background: #012861;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .blog-main .blog-single-card a {
    font-size: 16px;
    padding: 12px 20px;
  }
}
.blog-main .blog-single-card a:hover {
  background: #b9996a;
}

.blog-details-banner-main .blog-details-category {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 16px;
  border-radius: 8px;
  background: #012861;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-details-banner-main .content-box-wrapper h1 {
  margin-bottom: 24px;
}
.blog-details-banner-main .blog-details-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 8px;
}
.blog-details-banner-main .blog-details-meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: #020f30;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.blog-details-banner-main .blog-details-meta span i {
  color: #b9996a;
}

.blog-details-main {
  padding: 100px 0;
}
.blog-details-main .blog-details-thumbnail {
  margin-bottom: 48px;
  border-radius: 16px;
  overflow: hidden;
}
.blog-details-main .blog-details-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-details-main .blog-details-content {
  color: #020f30;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
}
.blog-details-main .blog-details-content h2,
.blog-details-main .blog-details-content h3,
.blog-details-main .blog-details-content h4 {
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-details-main .blog-details-content h2 {
  font-size: 32px;
  line-height: 42px;
}
.blog-details-main .blog-details-content h3 {
  font-size: 26px;
  line-height: 36px;
}
.blog-details-main .blog-details-content h4 {
  font-size: 20px;
  line-height: 30px;
}
.blog-details-main .blog-details-content p {
  margin-bottom: 24px;
  color: #020f30;
}
.blog-details-main .blog-details-content ul,
.blog-details-main .blog-details-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.blog-details-main .blog-details-content ul li,
.blog-details-main .blog-details-content ol li {
  list-style: disc;
  margin-bottom: 12px;
  line-height: 28px;
}
.blog-details-main .blog-details-content ol li {
  list-style: decimal;
}
.blog-details-main .blog-details-content a {
  color: #012861;
  font-weight: 600;
  text-decoration: underline;
}
.blog-details-main .blog-details-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
}
.blog-details-main .blog-details-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid #b9996a;
  background: #faf7f2;
  border-radius: 8px;
  font-family: "geller_testheadline_medium";
  font-size: 20px;
  line-height: 32px;
  color: #012861;
}
.blog-details-main .blog-details-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 12px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.blog-details-main .blog-details-tags a {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #012861;
  color: #012861;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.blog-details-main .blog-details-tags a:hover {
  background: #012861;
  color: #fff;
}
.blog-details-main .blog-details-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin-top: 32px;
}
.blog-details-main .blog-details-share span {
  color: #012861;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}
.blog-details-main .blog-details-share a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #012861;
  color: #012861;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.blog-details-main .blog-details-share a:hover {
  background: #012861;
  color: #fff;
}
.blog-details-main .blog-details-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.blog-details-main .blog-details-nav a {
  max-width: 48%;
  color: #012861;
  font-family: "DM Sans", sans-serif;
}
.blog-details-main .blog-details-nav a span {
  display: block;
  margin-bottom: 6px;
  color: #b9996a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-details-main .blog-details-nav a strong {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.blog-details-main .blog-details-nav a.blog-nav-next {
  text-align: right;
  margin-left: auto;
}
.blog-details-main .blog-details-sidebar .blog-sidebar-widget {
  margin-bottom: 32px;
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
}
.blog-details-main .blog-details-sidebar .blog-sidebar-widget h4 {
  margin-bottom: 24px;
  font-family: "geller_testheadline_semibold";
  font-size: 20px;
  font-weight: 600;
  color: #012861;
}
.blog-details-main .blog-details-sidebar .blog-recent-posts li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin-bottom: 20px;
}
.blog-details-main .blog-details-sidebar .blog-recent-posts li:last-child {
  margin-bottom: 0;
}
.blog-details-main .blog-details-sidebar .blog-recent-posts .thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-details-main .blog-details-sidebar .blog-recent-posts .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-main .blog-details-sidebar .blog-recent-posts .info a {
  color: #012861;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}
.blog-details-main .blog-details-sidebar .blog-recent-posts .info span {
  margin-top: 4px;
  color: #737373;
  font-size: 13px;
}
.blog-details-main .blog-details-sidebar .blog-sidebar-categories li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #020f30;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.blog-details-main .blog-details-sidebar .blog-sidebar-categories li a span {
  color: #737373;
  font-size: 13px;
}
.blog-details-main .blog-details-sidebar .blog-sidebar-categories li a:hover {
  color: #012861;
  font-weight: 600;
}
.blog-details-main .blog-details-sidebar .blog-sidebar-categories li:last-child a {
  border-bottom: none;
}
.blog-details-main .blog-details-sidebar .blog-details-cta {
  display: block;
  padding: 24px;
  border-radius: 16px;
  background: #012861;
  text-align: center;
}
.blog-details-main .blog-details-sidebar .blog-details-cta h4 {
  margin-bottom: 12px;
  color: #fff;
}
.blog-details-main .blog-details-sidebar .blog-details-cta p {
  margin-bottom: 20px;
  color: #d7dce6;
  font-size: 14px;
  line-height: 22px;
}
.blog-details-main .blog-details-sidebar .blog-details-cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  background: #fff;
  color: #012861;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.blog-details-main .blog-details-sidebar .blog-details-cta a:hover {
  background: #b9996a;
  color: #fff;
}

.single-detail-main {
  padding: 100px 0;
}
.single-detail-main .uni-logo-container {
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid #012861;
  border-radius: 12px;
}
.single-detail-main .uni-logo-container img {
  display: block;
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-detail-main .single-detail-content > p {
  margin-bottom: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #012861;
  font-weight: 500;
}
.single-detail-main .single-detail-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding: 0;
}
.single-detail-main .single-detail-meta li {
  padding: 16px 24px;
  min-width: 160px;
  border: 1px solid #012861;
  border-radius: 12px;
  list-style: none;
  font-family: "geller_testheadline_semibold";
  font-size: 20px;
  font-weight: 600;
  color: #012861;
}
.single-detail-main .single-detail-meta li span {
  display: block;
  margin-bottom: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #b9996a;
}
.single-detail-main .single-detail-body {
  color: #020f30;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
}
.single-detail-main .single-detail-body h2,
.single-detail-main .single-detail-body h3,
.single-detail-main .single-detail-body h4 {
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
.single-detail-main .single-detail-body h2 {
  font-size: 32px;
  line-height: 42px;
}
.single-detail-main .single-detail-body h3 {
  font-size: 26px;
  line-height: 36px;
}
.single-detail-main .single-detail-body h4 {
  font-size: 20px;
  line-height: 30px;
}
.single-detail-main .single-detail-body p {
  margin-bottom: 24px;
  color: #020f30;
}
.single-detail-main .single-detail-body ul,
.single-detail-main .single-detail-body ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.single-detail-main .single-detail-body ul li,
.single-detail-main .single-detail-body ol li {
  list-style: disc;
  margin-bottom: 12px;
  line-height: 28px;
}
.single-detail-main .single-detail-body ol li {
  list-style: decimal;
}
.single-detail-main .single-detail-body a {
  color: #012861;
  font-weight: 600;
  text-decoration: underline;
}
.single-detail-main .single-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 24px;
}
.single-detail-main .single-detail-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid #b9996a;
  background: #faf7f2;
  border-radius: 8px;
  font-family: "geller_testheadline_medium";
  font-size: 20px;
  line-height: 32px;
  color: #012861;
}
.single-detail-main .single-detail-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  background: #012861;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.single-detail-main .single-detail-cta:hover {
  background: #b9996a;
  color: #fff;
}

.consult-form-main {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .consult-form-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  .consult-form-main {
    padding: 40px 0;
  }
}
.consult-form-main h2 {
  margin-bottom: 32px;
  font-size: 32px;
  line-height: 42px;
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
}
@media (max-width: 575px) {
  .consult-form-main h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 24px;
  }
}
.consult-form-main h3 {
  margin-top: 56px;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 32px;
  font-family: "geller_testheadline_semibold";
  color: #012861;
  font-weight: 600;
}
@media (max-width: 575px) {
  .consult-form-main h3 {
    margin-top: 32px;
    font-size: 20px;
    line-height: 28px;
  }
}
.consult-form-main .consult-form-note {
  margin-bottom: 24px;
  color: #495166;
  font-size: 14px;
  line-height: 22px;
  font-family: "DM Sans", sans-serif;
}
.consult-form-main .consult-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}
@media (max-width: 991px) {
  .consult-form-main .consult-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .consult-form-main .consult-form-grid {
    grid-template-columns: 1fr;
  }
}
.consult-form-main .consult-form-grid--single {
  grid-template-columns: 1fr;
  max-width: 360px;
}
.consult-form-main .consult-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #012861;
  font-size: 14px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}
.consult-form-main .consult-form-field label .req {
  margin-left: 2px;
  color: #b9996a;
}
.consult-form-main .consult-form-field br {
  display: none;
}
.consult-form-main .consult-form-field .wpcf7-form-control-wrap {
  display: block;
}
.consult-form-main .consult-form-field input[type=text],
.consult-form-main .consult-form-field input[type=email],
.consult-form-main .consult-form-field input[type=tel],
.consult-form-main .consult-form-field select,
.consult-form-main .consult-form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-bottom: 1px solid #ced4da;
  background: transparent;
  color: #012861;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.consult-form-main .consult-form-field input[type=text]::-webkit-input-placeholder, .consult-form-main .consult-form-field input[type=email]::-webkit-input-placeholder, .consult-form-main .consult-form-field input[type=tel]::-webkit-input-placeholder, .consult-form-main .consult-form-field select::-webkit-input-placeholder, .consult-form-main .consult-form-field textarea::-webkit-input-placeholder {
  color: #98a1b3;
}
.consult-form-main .consult-form-field input[type=text]::-moz-placeholder, .consult-form-main .consult-form-field input[type=email]::-moz-placeholder, .consult-form-main .consult-form-field input[type=tel]::-moz-placeholder, .consult-form-main .consult-form-field select::-moz-placeholder, .consult-form-main .consult-form-field textarea::-moz-placeholder {
  color: #98a1b3;
}
.consult-form-main .consult-form-field input[type=text]:-ms-input-placeholder, .consult-form-main .consult-form-field input[type=email]:-ms-input-placeholder, .consult-form-main .consult-form-field input[type=tel]:-ms-input-placeholder, .consult-form-main .consult-form-field select:-ms-input-placeholder, .consult-form-main .consult-form-field textarea:-ms-input-placeholder {
  color: #98a1b3;
}
.consult-form-main .consult-form-field input[type=text]::-ms-input-placeholder, .consult-form-main .consult-form-field input[type=email]::-ms-input-placeholder, .consult-form-main .consult-form-field input[type=tel]::-ms-input-placeholder, .consult-form-main .consult-form-field select::-ms-input-placeholder, .consult-form-main .consult-form-field textarea::-ms-input-placeholder {
  color: #98a1b3;
}
.consult-form-main .consult-form-field input[type=text]::placeholder,
.consult-form-main .consult-form-field input[type=email]::placeholder,
.consult-form-main .consult-form-field input[type=tel]::placeholder,
.consult-form-main .consult-form-field select::placeholder,
.consult-form-main .consult-form-field textarea::placeholder {
  color: #98a1b3;
}
.consult-form-main .consult-form-field input[type=text]:focus,
.consult-form-main .consult-form-field input[type=email]:focus,
.consult-form-main .consult-form-field input[type=tel]:focus,
.consult-form-main .consult-form-field select:focus,
.consult-form-main .consult-form-field textarea:focus {
  outline: none;
  border-bottom-color: #012861;
}
.consult-form-main .consult-form-field textarea {
  display: block;
  min-height: 120px;
  resize: vertical;
}
.consult-form-main .consult-form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 24px;
  cursor: pointer;
  background-image: url("../images/icons/header-dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px;
}
.consult-form-main .consult-form-field .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c0392b;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
}
.consult-form-main .consult-form-disclaimer {
  margin-top: 40px;
  color: #495166;
  font-size: 14px;
  line-height: 22px;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 575px) {
  .consult-form-main .consult-form-disclaimer {
    margin-top: 24px;
  }
}
.consult-form-main .consult-form-disclaimer a {
  color: #012861;
  font-weight: 600;
  text-decoration: underline;
}
.consult-form-main .consult-form-consent {
  margin-top: 16px;
}
.consult-form-main .consult-form-consent .wpcf7-list-item {
  display: block;
  margin: 0 0 12px;
}
.consult-form-main .consult-form-consent label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #012861;
  font-size: 14px;
  line-height: 22px;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
}
.consult-form-main .consult-form-consent input[type=checkbox] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #012861;
}
.consult-form-main .consult-form-consent .req {
  margin-left: 2px;
  color: #b9996a;
}
.consult-form-main .wpcf7-submit {
  display: inline-block;
  width: 100%;
  margin-top: 32px;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  background: #012861;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.consult-form-main .wpcf7-submit:hover {
  background: #b9996a;
}
.consult-form-main .wpcf7-response-output {
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: 8px !important;
  color: #012861 !important;
  border-color: #012861 !important;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
}
.consult-form-main form.sent .wpcf7-response-output {
  color: #2e7d32 !important;
  border-color: #2e7d32 !important;
}
.consult-form-main form.invalid .wpcf7-response-output,
.consult-form-main form.unaccepted .wpcf7-response-output,
.consult-form-main form.payment-required .wpcf7-response-output {
  color: #c0392b !important;
  border-color: #c0392b !important;
}

.blog-slider-main {
  padding: 100px 0;
  background: #faf7f2;
}
.blog-slider-main .title-box {
  margin-bottom: 56px;
  text-align: center;
}
.blog-slider-main .title-box h2 {
  font-size: clamp(2rem, 1.25rem + 3.1vw, 4rem);
  line-height: 1.25;
  font-family: "geller_testheadline_semibold";
  color: #020f30;
  font-weight: 600;
}
.blog-slider-main .blog-slider-wrapper {
  position: relative;
}
.blog-slider-main .blog-slider {
  padding: 0 60px;
}
@media (max-width: 767px) {
  .blog-slider-main .blog-slider {
    padding: 0;
  }
}
.blog-slider-main .blog-single-card {
  height: 100%;
  min-height: 260px;
  margin-bottom: 0;
  padding: 32px;
  border: 1px solid #b5b2ef;
  border-radius: 12px;
  background-image: url("../images/blog/siuk-news-shape-vector.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog-slider-main .blog-single-card .date {
  margin-bottom: 8px;
  color: #495166;
  font-size: 14px;
  line-height: 160%;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.blog-slider-main .blog-single-card h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  font-family: "geller_testheadline_semibold";
  color: #012861;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-slider-main .blog-single-card p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  color: #495166;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-slider-main .blog-single-card a {
  margin-top: auto;
  color: #012861;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.blog-slider-main .blog-single-card a:hover {
  color: #b9996a;
}
.blog-slider-main .swiper-button-next,
.blog-slider-main .swiper-button-prev {
  top: 50%;
  margin-top: 0;
  width: 48px;
  height: 48px;
  background: #b9996a;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.blog-slider-main .swiper-button-next::after,
.blog-slider-main .swiper-button-prev::after {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  font-size: 0;
}
.blog-slider-main .swiper-button-next:hover,
.blog-slider-main .swiper-button-prev:hover {
  background: #012861;
}
.blog-slider-main .swiper-button-prev {
  left: 0;
}
.blog-slider-main .swiper-button-prev::after {
  content: url("../images/icons/left-arrow.svg");
}
.blog-slider-main .swiper-button-next {
  right: 0;
}
.blog-slider-main .swiper-button-next::after {
  content: url("../images/icons/right-arrow.svg");
}

footer .footer-main {
  padding: 100px 0;
  background-color: #faf7f2;
}
@media (max-width: 991px) {
  footer .footer-main {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  footer .footer-main {
    padding: 40px 0;
  }
}
footer .footer-main .logo-box img {
  max-width: 120px;
}
footer .footer-main .footer-description {
  margin: 20px 0;
  padding-right: 40px;
}
@media (max-width: 767px) {
  footer .footer-main .footer-description {
    padding-right: 0;
  }
}
footer .footer-main .footer-description p {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  font-family: "DM Sans", sans-serif;
  color: #012861;
}
@media (max-width: 991px) {
  footer .footer-main .footer-description p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  footer .footer-main .footer-common-links {
    margin-top: 24px;
  }
}
footer .footer-main .footer-common-links h5 {
  text-transform: capitalize;
  font-family: "geller_testheadline_semibold";
  font-weight: 600;
  color: #012861;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: normal;
}
footer .footer-main .footer-common-links ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  font-family: "DM Sans", sans-serif;
  color: #012861;
}
@media (max-width: 991px) {
  footer .footer-main .footer-common-links ul li a {
    font-size: 16px;
  }
}
footer .footer-main .copyright-text {
  border-top: 1px solid #012861;
  padding-top: 40px;
  margin-top: 40px;
}
footer .footer-main .copyright-text p {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  font-family: "DM Sans", sans-serif;
  color: #012861;
}
@media (max-width: 991px) {
  footer .footer-main .copyright-text p {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */