@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #033748;
  --secondary-color: #EFECEA;
  --white-color: #fff;
  --offWhite-color: #F2F2F2;
  --black-color: #000;
  --grey-color: #9D928A;
}

a {
  text-decoration: none;
}

body {
  font-family: "Playfair Display", serif;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1700px;
  }
}
@media (max-width: 1600px) {
  .container {
    max-width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}

.header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
  height: 93px;
}
@media (max-width: 767px) {
  .header {
    height: 75px;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header .logo {
    width: 40%;
  }
}
.header .language-button img {
  width: 28px;
  display: none;
}
.header .language-button select {
  border: none;
  padding-right: 0.7rem;
  cursor: pointer;
}
.header .main-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background-color: var(--primary-color);
  width: 100%;
  height: auto;
  overflow-y: auto;
  padding: 4rem 1rem;
  display: none;
}
@media (max-width: 1600px) {
  .header .main-menu {
    padding: 5rem 0rem;
  }
}
.header .main-menu::-webkit-scrollbar {
  display: none;
}
.header .main-menu .menu {
  list-style: none;
  padding: 0;
  width: 16%;
  position: relative;
}
@media (max-width: 1440px) {
  .header .main-menu .menu {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  .header .main-menu .menu {
    width: 25%;
  }
}
@media (max-width: 767.5px) {
  .header .main-menu .menu {
    width: 100%;
  }
}
.header .main-menu .menu li {
  padding-bottom: 1rem;
}
.header .main-menu .menu li:last-child {
  padding-bottom: 0;
}
@media (max-width: 500px) {
  .header .main-menu .menu li {
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 768px) {
  .header .main-menu .menu li {
    position: relative;
    padding-bottom: 1.5rem;
  }
}
.header .main-menu .menu li a {
  color: #fff;
  max-width: 25%;
  width: 100%;
  padding-left: 0;
  display: flex;
  transition: all 0.3s;
  font-size: 18px;
}
@media (max-width: 1366px) {
  .header .main-menu .menu li a {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .header .main-menu .menu li a {
    max-width: 90%;
    font-size: 20px;
  }
}
@media (hover: hover) {
  .header .main-menu .menu li a:hover {
    padding-left: 10px;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .header .main-menu .menu li a {
    max-width: 100%;
    padding-right: 2rem;
  }
}
.header .main-menu .menu li a img {
  margin-left: auto;
  transition: transform 0.3s ease;
}
@media (max-width: 767.5px) {
  .header .main-menu .menu li a img {
    transform: rotate(0deg);
  }
}
.header .main-menu .menu li.active > a {
  padding-left: 10px;
}
@media (max-width: 767.5px) {
  .header .main-menu .menu li.active > a img {
    transform: rotate(90deg);
  }
}
.header .main-menu .menu li.has-sub-menu .sub-menu {
  list-style-type: none;
  margin-top: 1rem;
  display: none;
  padding: 1.5rem 0.5rem 1.5rem 2rem;
  width: -moz-max-content;
  width: max-content;
  min-width: 300px;
}
@media (max-width: 991.5px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu {
    min-width: 250px;
    padding: 1rem 0.5rem 1rem 1rem;
  }
}
@media (max-width: 767.5px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #00455C;
  }
  .header .main-menu .menu li.has-sub-menu .sub-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .header .main-menu .menu li.has-sub-menu .sub-menu .sub-menu {
    background-color: #00455C;
    top: -10px;
    left: calc(100% + 20px);
  }
}
@media (min-width: 768px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li {
    padding-bottom: 1.2rem;
  }
  .header .main-menu .menu li.has-sub-menu .sub-menu li:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li {
    padding-bottom: 1.75rem;
  }
}
.header .main-menu .menu li.has-sub-menu .sub-menu li.active > a {
  padding-left: 10px;
}
.header .main-menu .menu li.has-sub-menu .sub-menu li a {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  font-size: 18px;
  padding-left: 0;
}
@media (max-width: 1366px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li a {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li a {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 0;
    transition: all 0.3s;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li a:hover {
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li a img {
    margin-left: 2rem;
  }
}
@media (max-width: 767.5px) {
  .header .main-menu .menu li.has-sub-menu .sub-menu li a {
    width: 100%;
  }
}
.header .main-menu .close {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  position: absolute;
}
@media (max-width: 500px) {
  .header .main-menu .close img {
    max-width: 20px;
  }
}
.header .location-page-menu ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header .location-page-menu ul li a {
  color: var(--primary-color);
  font-size: 15px;
}
@media (max-width: 1250px) {
  .header .location-page-menu ul {
    gap: 0.8rem;
  }
  .header .location-page-menu ul li a {
    font-size: 14px;
  }
}
.header .serach-heading h2 {
  color: var(--white-color);
  text-align: center;
  font-size: 70px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .header .serach-heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 1250px) {
  .header .serach-heading h2 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .header .serach-heading h2 {
    font-size: 30px;
  }
}
@media (max-width: 767.5px) {
  .header .serach-heading h2 {
    font-size: 25px;
  }
}
.header .serach-heading {
  margin-bottom: 3rem;
}
.header .predictive-box {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid #ced4da;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.header .predictive-box::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background-color: var(--white-color);
}
.header .predictive-box::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}
.header .predictive-box.show {
  max-height: 300px;
  opacity: 1;
  overflow-y: auto;
}
@media (max-width: 1336px) {
  .header .predictive-box.show {
    max-height: 200px;
  }
}
.header .search-box {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background-color: var(--primary-color);
  width: 100%;
  height: calc(100vh - 93px);
  padding: 120px 0px 80px;
  display: none;
}
@media (min-width: 1440px) {
  .header .search-box {
    height: 70vh;
  }
}
@media (max-width: 1440px) {
  .header .search-box {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .header .search-box {
    padding-top: 5rem;
    height: calc(100vh - 75px);
  }
}
.header .search-box .close {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  position: absolute;
}
.header .search-box .form-group {
  position: relative;
}
.header .search-box .form-group button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  padding-left: 15px;
  border-left: 1px solid #fff;
}
.header .search-box .form-group .form-control {
  background-color: transparent;
  border-radius: 6px;
  border-color: #fff;
  font-size: 22px;
  color: #fff;
  padding: 0.8rem 1.5rem;
}
.header .search-box .form-group .form-control::-moz-placeholder {
  color: #bfbfbf;
}
.header .search-box .form-group .form-control::placeholder {
  color: #bfbfbf;
}
.header .search-box .form-group .form-control:focus {
  box-shadow: none;
}
.header .search-box ul {
  list-style-type: none;
  padding: 0;
  margin-top: 2rem;
  overflow-y: auto;
}
.header .search-box ul::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background-color: #045874;
}
.header .search-box ul::-webkit-scrollbar-thumb {
  background-color: #dfdede;
  border-radius: 10px;
}
.header .search-box ul li {
  margin-bottom: 1rem;
  padding-left: 15px;
}
.header .search-box ul li a {
  color: var(--primary-color);
  font-size: 20px;
}
.header .search-box ul li a:hover {
  text-decoration: underline;
}

.my-btn {
  display: inline-block;
  background-color: #fff;
  border: none;
  outline: none;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 0.7rem 1.7rem;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  z-index: 2;
  position: relative;
}
.my-btn::before {
  background-color: var(--primary-color);
  width: 0;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  z-index: -1;
}
.my-btn:hover::before {
  width: 100%;
  left: 0;
}
.my-btn:hover {
  color: var(--white-color);
}

.main-banner {
  min-height: 66vh;
  background-image: url("../images/main-banner.png");
  background-position: center;
  background-size: cover;
  position: relative;
}
.main-banner .container {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
}
.main-banner .container .text {
  background-color: var(--secondary-color);
  padding: 2.5rem 2.2rem;
}
@media (max-width: 767px) {
  .main-banner .container .text {
    padding: 1.3rem 2rem;
  }
}
@media (max-width: 450px) {
  .main-banner .container .text {
    padding: 1rem;
  }
}
.main-banner .container .text h1 {
  color: var(--primary-color);
}

h1 {
  font-size: 56px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 1366px) {
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}

.home-heading h1 {
  font-size: 40px;
}
@media (max-width: 1600px) {
  .home-heading h1 {
    font-size: 36px;
  }
}
@media (max-width: 1440px) {
  .home-heading h1 {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .home-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .home-heading h1 {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .home-heading h1 {
    font-size: 16px;
  }
}

.main-banner-content:not(.no-padding) {
  padding-top: 11rem;
}
@media (max-width: 1366px) {
  .main-banner-content:not(.no-padding) {
    padding-top: 10rem;
  }
}
@media (max-width: 991px) {
  .main-banner-content:not(.no-padding) {
    padding-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .main-banner-content:not(.no-padding) {
    padding-top: 7rem;
  }
}
.main-banner-content {
  padding: 4rem 0;
}
@media (max-width: 991.5px) {
  .main-banner-content {
    padding: 3rem 0 0;
  }
}
.main-banner-content p.normal,
.main-banner-content a,
.main-banner-content p {
  font-size: 22px;
}
@media (max-width: 1440px) {
  .main-banner-content p.normal,
  .main-banner-content a,
  .main-banner-content p {
    font-size: 20px;
  }
}
@media (max-width: 1366px) {
  .main-banner-content p.normal,
  .main-banner-content a,
  .main-banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .main-banner-content p.normal,
  .main-banner-content a,
  .main-banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 991.5px) {
  .mt-30 {
    margin-top: 30px;
  }
  .row-gap-25 {
    row-gap: 25px;
  }
}
p.normal,
a,
.normal-ul li,
p {
  font-size: 22px;
}
@media (max-width: 1440px) {
  p.normal,
  a,
  .normal-ul li,
  p {
    font-size: 20px;
  }
}
@media (max-width: 1366px) {
  p.normal,
  a,
  .normal-ul li,
  p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  p.normal,
  a,
  .normal-ul li,
  p {
    font-size: 16px;
  }
}

.normal-ol li {
  font-size: 24px;
  color: var(--primary-color);
}
@media (max-width: 1440px) {
  .normal-ol li {
    font-size: 22px;
  }
}
@media (max-width: 1366px) {
  .normal-ol li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .normal-ol li {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .normal-ol li {
    font-size: 16px;
  }
}

.normal-ul {
  padding-left: 1rem;
}
.normal-ul li {
  padding-bottom: 0px;
}

.li-square li {
  list-style: square !important;
  list-style-type: square !important;
}

.normal-ol {
  padding-left: 2.3rem;
}
.normal-ol li {
  padding-bottom: 10px;
}
@media (max-width: 1024px) {
  .normal-ol {
    padding-left: 1rem;
  }
}

.swiper-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.swiper-btns .swiper-button-next:after,
.swiper-btns .swiper-button-prev:after {
  display: none;
}
.swiper-btns .swiper-button-next,
.swiper-btns .swiper-button-prev {
  position: unset;
  margin-top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1.57242px solid rgba(17, 17, 17, 0.35);
  color: rgba(17, 17, 17, 0.35);
  border-radius: 16.5451px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .swiper-btns .swiper-button-next,
  .swiper-btns .swiper-button-prev {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
    border-radius: 14.5451px;
  }
}
.swiper-btns .swiper-button-next:hover, .swiper-btns .swiper-button-next:active,
.swiper-btns .swiper-button-prev:hover,
.swiper-btns .swiper-button-prev:active {
  background-color: var(--primary-color);
  color: #fff;
}

.core-values {
  padding: 6rem 0 4rem;
  background-color: var(--secondary-color);
}
@media (max-width: 991px) {
  .core-values {
    padding: 3rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .core-values {
    padding-top: 2rem;
  }
}
.core-values .swiper-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.core-values .swiper-btns .swiper-button-next,
.core-values .swiper-btns .swiper-button-prev {
  position: unset;
  margin-top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1.57242px solid rgba(17, 17, 17, 0.35);
  color: rgba(17, 17, 17, 0.35);
  border-radius: 16.5451px;
  transition: all 0.2s;
}
.core-values .swiper-btns .swiper-button-next:after,
.core-values .swiper-btns .swiper-button-prev:after {
  display: none;
}
.core-values .swiper-btns .swiper-button-next:hover, .core-values .swiper-btns .swiper-button-next:active,
.core-values .swiper-btns .swiper-button-prev:hover,
.core-values .swiper-btns .swiper-button-prev:active {
  background-color: var(--primary-color);
  color: #fff;
}
@media (max-width: 767px) {
  .core-values .swiper-btns .swiper-button-next,
  .core-values .swiper-btns .swiper-button-prev {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
    border-radius: 14.5451px;
  }
}
.core-values {
  /* Material You Slider Styles */
}
.core-values .values_swiper {
  overflow: hidden;
  padding: 0 !important;
}
.core-values .swiper-wrapper {
  max-width: 100%;
}
.core-values .swiper-slide {
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.core-values .swiper-slide:not(.swiper-slide-active)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.333);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .core-values .swiper-slide:not(.swiper-slide-active) h4 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .core-values .swiper-slide {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .core-values .swiper-slide {
    width: 16% !important;
  }
  .core-values .swiper-slide-active {
    width: 36% !important;
  }
}
.core-values .values-box {
  height: 500px;
  width: 100%;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .core-values .values-box {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .core-values .values-box {
    height: 300px;
  }
}
.core-values .values-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.core-values .values-box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to top, rgba(3, 39, 51, 0.5960784314) 0%, transparent 100%);
}
@media (max-width: 1024px) {
  .core-values .values-box .text {
    padding: 1rem;
  }
}
.core-values .values-box .text h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .core-values .values-box .text h4 {
    font-size: 20px;
  }
}
.core-values .values-box .text p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  font-size: 16px !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}
.core-values {
  /* Active slide text styling */
}
.core-values .swiper-slide-active .values-box .text {
  padding-bottom: 2.5rem;
}
.core-values .swiper-slide-active .values-box .text h4 {
  font-size: 40px;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .core-values .swiper-slide-active .values-box .text h4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .core-values .swiper-slide-active .values-box .text h4 {
    font-size: 24px;
  }
}
.core-values .swiper-slide-active .values-box .text p {
  opacity: 1;
  max-height: 200px;
}
@media (max-width: 1024px) {
  .core-values .swiper-slide-active .values-box .text p {
    font-size: 14px !important;
  }
}
@media (max-width: 768px) {
  .core-values .swiper-slide-active .values-box .text p {
    font-size: 13px;
  }
}

h2 {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 1366px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 450px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  color: var(--primary-color);
  font-size: 42px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  h3 {
    font-size: 34px;
  }
}
@media (max-width: 1366px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  h3 {
    font-size: 24px;
  }
}

.businesses {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .businesses {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .businesses {
    padding: 2rem 0;
  }
}
.businesses .businesses-box img {
  height: 272px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.businesses .businesses-box .text {
  width: 87%;
  background-color: var(--secondary-color);
  padding: 2rem 1.5rem;
}
@media (max-width: 1024px) {
  .businesses .businesses-box .text {
    padding: 1.5rem 0.9rem;
  }
}
@media (max-width: 767px) {
  .businesses .businesses-box .text {
    padding: 1.5rem 1.5rem;
  }
}
.businesses .businesses-box .text {
  margin-left: 1rem;
  margin-top: -2.2rem;
  position: relative;
}
.businesses .businesses-box .text h5 {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
@media (max-width: 1366px) {
  .businesses .businesses-box .text h5 {
    font-size: 25px;
  }
}
@media (max-width: 1024px) {
  .businesses .businesses-box .text h5 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .businesses .businesses-box .text h5 {
    font-size: 20px;
  }
}
.businesses .businesses-box .text a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}
.businesses .businesses-box .text a i {
  font-size: 12px;
  margin-left: 0.5rem;
}
.businesses .businesses-box .text a:hover {
  text-decoration: underline;
}

.proposition {
  padding: 6rem 0;
}
.proposition .propostion-box {
  background-color: var(--secondary-color);
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  .proposition .propostion-box {
    padding: 3rem;
  }
}
@media (max-width: 1366px) {
  .proposition .propostion-box {
    padding: 2.7rem 2.5rem;
  }
}
@media (max-width: 1280px) {
  .proposition .propostion-box {
    padding: 2.5rem 2.2rem;
  }
}
@media (max-width: 767px) {
  .proposition .propostion-box {
    padding: 2.2rem 2rem;
  }
}
@media (max-width: 576px) {
  .proposition .propostion-box {
    padding: 1.5rem;
  }
}
.proposition .propostion-box h5 {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 1440px) {
  .proposition .propostion-box h5 {
    font-size: 30px;
  }
}
@media (max-width: 1366px) {
  .proposition .propostion-box h5 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .proposition .propostion-box h5 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .proposition .propostion-box h5 {
    font-size: 22px;
  }
}
.proposition .propostion-box p {
  color: #000;
  font-weight: 400;
}
@media (max-width: 576px) {
  .proposition .propostion-box p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .proposition {
    padding: 3rem 0 4rem;
  }
}

.footer {
  background-color: var(--primary-color);
  padding: 3rem 0 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }
}
.footer .logo img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(170deg) brightness(105%) contrast(100%);
}
.footer .logo p i {
  transform: rotate(-45deg);
}
.footer h5 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .footer h5 {
    font-size: 18px;
  }
}
.footer .footer-list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.footer .footer-list li {
  margin-bottom: 1rem;
}
.footer .footer-list li a {
  color: var(--white-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-list li a::before {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
  background-color: var(--white-color);
  content: "";
  transition: all 0.3s;
}
.footer .footer-list li a:hover::before {
  width: 100%;
  left: 0;
}
@media (max-width: 576px) {
  .footer .footer-list li a {
    font-size: 13px;
  }
}

.footer-bottom {
  padding: 1.1rem 0;
  background-color: var(--secondary-color);
}
.footer-bottom p {
  font-size: 16px;
  margin-bottom: 0;
  color: #033748;
}
.footer-bottom p a {
  color: #033748;
}
@media (max-width: 576px) {
  .footer-bottom p {
    font-size: 13px;
  }
}

.pages-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  height: 50vh;
  display: flex;
  align-items: center;
}
.pages-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  content: "";
  z-index: -1;
}
@media (max-width: 607px) {
  .pages-banner h1 {
    font-size: 28px;
  }
}

.location {
  padding: 3rem 0;
}
.location .text {
  background-color: var(--offWhite-color);
  height: 100%;
  padding: 2.5rem 2rem;
}
.location .text p {
  color: var(--black-color);
  font-weight: 500;
  max-width: 500px;
}
@media (max-width: 767) {
  .location .text p {
    max-width: 100%;
  }
}
.location .text a {
  color: var(--black-color);
  font-weight: 500;
}
.location .text a:hover {
  text-decoration: underline;
}
.location .text .direction-link {
  font-weight: 500;
  color: var(--black-color);
}
.location .text .direction-link i {
  font-size: 14px;
  margin-left: 0.5rem;
}
.location .text .direction-link:hover {
  text-decoration: underline;
}

.key-info-box {
  padding: 0.85rem;
  border: 1px solid var(--secondary-color);
}
.key-info-box .key-info-left {
  background-color: var(--secondary-color);
}

.normal-table .table {
  border: 1px solid var(--secondary-color);
  padding: 0.8rem;
}
.normal-table .table th,
.normal-table .table td {
  font-size: 22px;
}
@media (max-width: 1440px) {
  .normal-table .table th,
  .normal-table .table td {
    font-size: 20px;
  }
}
@media (max-width: 1366px) {
  .normal-table .table th,
  .normal-table .table td {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .normal-table .table th,
  .normal-table .table td {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .normal-table .table th,
  .normal-table .table td {
    font-size: 14px;
  }
}
.normal-table .table th {
  background-color: var(--secondary-color);
  font-weight: 400;
  padding: 15px;
  color: var(--primary-color);
}
@media (max-width: 500px) {
  .normal-table .table th {
    width: 50%;
    padding: 10px 8px;
  }
}
.normal-table .table td {
  padding: 15px 15px 15px 30px;
  color: var(--black-color);
}
@media (max-width: 500px) {
  .normal-table .table td {
    width: 50%;
    padding: 10px 5px 10px 10px;
  }
}
.normal-table .table > :not(caption) > * > * {
  border: 0px;
}
.normal-table .table-group-divider {
  border: 0px;
}

.regional-focus {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .regional-focus {
    padding: 3rem 0 1rem;
  }
}
@media (max-width: 500px) {
  .regional-focus {
    padding: 3rem 0 1rem;
  }
}

.private-equity {
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .private-equity {
    padding: 3rem 0 1rem;
  }
}
@media (max-width: 500px) {
  .private-equity {
    padding: 2rem 0 1rem;
  }
}
.private-equity .equity-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.private-equity .equity-content p {
  color: var(--primary-color);
}

.grey-box {
  background-color: var(--offWhite-color);
  min-height: 450px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grey-box p {
  color: var(--primary-color);
}
.grey-box .grey-box-content {
  height: 140px;
}
@media (max-width: 1366px) {
  .grey-box {
    padding: 1.9rem;
    min-height: 400px;
  }
}
@media (max-width: 991.5px) {
  .grey-box {
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  .grey-box {
    min-height: 100%;
    padding: 1rem;
  }
  .grey-box h2 {
    padding-bottom: 1rem;
  }
  .grey-box .grey-box-content {
    height: auto;
  }
}

.rigorous-evaluation {
  padding: 6rem 0 3rem;
}
@media (max-width: 767px) {
  .rigorous-evaluation {
    padding: 3rem 0 4rem;
  }
}
@media (max-width: 500px) {
  .rigorous-evaluation {
    padding: 2rem 0;
  }
}

.evaluation_swiper {
  margin-top: 4.5rem;
}

.mobile-none {
  display: block;
}
@media (max-width: 991px) {
  .mobile-none {
    display: none;
  }
}

.desktop-none {
  display: none;
}
@media (max-width: 991px) {
  .desktop-none {
    display: block;
  }
}

.coming-soon {
  padding: 5rem 0;
}
.coming-soon p {
  color: var(--primary-color);
}

.news-insights {
  padding: 4rem 0;
}
@media (max-width: 500px) {
  .news-insights {
    padding: 3rem 0;
  }
}
.news-insights .result-row {
  margin-top: 0.7rem;
}
.news-insights .result-row p,
.news-insights .result-row a {
  font-family: "Outfit", sans-serif;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .news-insights .result-row p,
  .news-insights .result-row a {
    font-size: 14px;
  }
}
.news-insights .result-row a {
  text-decoration: underline;
}

.news-insights .pagination-custom {
  margin-top: 1rem;
  font-family: "Outfit", sans-serif;
  display: flex;
  gap: 30px;
  list-style: none;
}
.news-insights .pagination-custom .page-item .prev i {
  margin-right: 0.9rem;
}
.news-insights .pagination-custom .page-item .next i {
  margin-left: 0.9rem;
}
.news-insights .pagination-custom .page-item .page-link {
  color: var(--grey-color);
  font-size: 16px;
  font-weight: 400;
  border: none;
  background: none;
  padding: 0;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .news-insights .pagination-custom .page-item .page-link {
    font-size: 14px;
  }
}
.news-insights .pagination-custom .page-item .page-link span:hover {
  color: var(--primary-color);
}
.news-insights .pagination-custom .page-item .page-link:hover {
  color: var(--primary-color);
}
.news-insights .pagination-custom .page-item .page-link.prev, .news-insights .pagination-custom .page-item .page-link.next {
  color: var(--grey-color);
}
.news-insights .pagination-custom .page-item .page-link.prev i, .news-insights .pagination-custom .page-item .page-link.next i {
  font-size: 14px;
}
@media (max-width: 767px) {
  .news-insights .pagination-custom .page-item .page-link.prev i, .news-insights .pagination-custom .page-item .page-link.next i {
    font-size: 12px;
  }
}
.news-insights .pagination-custom .page-item .page-link.prev i:hover, .news-insights .pagination-custom .page-item .page-link.next i:hover {
  color: var(--primary-color);
}
.news-insights .pagination-custom .page-item.active .page-link {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.news-insights .filter-title p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 1440px) {
  .news-insights .filter-title p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .news-insights .filter-title p {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .news-insights .filter-title p {
    font-size: 18px;
  }
}
.news-insights .filter-dropdown {
  margin-bottom: 1rem;
  max-width: 200px;
}
@media (max-width: 500px) {
  .news-insights .filter-dropdown {
    max-width: 100%;
  }
}
.news-insights .filter-dropdown .select2-container--default {
  width: 100% !important;
}
.news-insights .filter-dropdown .select2-container--default .select2-selection--single {
  border: none;
  border-bottom: 1.5px solid var(--primary-color);
  border-radius: 0;
  height: auto;
  padding-bottom: 8px;
  background: transparent;
  display: flex;
  align-items: center;
}
.news-insights .filter-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--primary-color);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  padding-left: 0;
  line-height: normal;
}
@media (max-width: 500px) {
  .news-insights .filter-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
  }
}
.news-insights .filter-dropdown .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--primary-color);
}
.news-insights .filter-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 0;
  width: 16px;
}
.news-insights .filter-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--primary-color) transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -5px;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  width: 0;
  transition: transform 0.3s;
}
.news-insights .filter-dropdown .select2-container--default.select2-container--open .select2-selection__arrow b {
  transform: rotate(180deg);
}

.select2-dropdown {
  border: 1px solid var(--secondary-color) !important;
  border-radius: 4px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
  margin-top: 5px;
}

.select2-results__option {
  font-family: "Outfit", sans-serif !important;
  font-size: 16px !important;
  padding: 12px 20px !important;
  color: var(--primary-color) !important;
  transition: all 0.2s;
}
.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  background-color: var(--secondary-color);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1440px) {
  .news-item {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .news-item {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .news-item {
    gap: 15 px;
  }
}
.news-item .news-date p {
  font-family: "Outfit", sans-serif;
  color: var(--grey-color);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .news-item .news-date p {
    font-size: 18px;
  }
}
@media (max-width: 1366px) {
  .news-item .news-date p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news-item .news-date p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .news-item .news-date p {
    font-size: 12px;
  }
}
.news-item .news-title a {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .news-item .news-title a {
    font-size: 22px;
  }
}
@media (max-width: 1366px) {
  .news-item .news-title a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .news-item .news-title a {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .news-item .news-title a {
    font-size: 16px;
  }
}
.news-item .news-title p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .news-item .news-title p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .news-item .news-title p {
    font-size: 10px;
  }
}

.clientele {
  padding: 4rem 0 1rem;
}
@media (max-width: 500px) {
  .clientele {
    padding: 3rem 0 1rem;
  }
}

.flex-gap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 50px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
  justify-items: center;
}
.flex-gap img {
  width: auto;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .flex-gap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .flex-gap {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 500px) {
  .flex-gap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.colleague-stories {
  padding: 4rem 0;
}
@media (max-width: 500px) {
  .colleague-stories {
    padding: 3rem 0;
  }
}
.colleague-stories .collegue-list {
  align-items: center;
  background-color: var(--offWhite-color);
  margin: 1.75rem 0;
}
.colleague-stories .collegue-list .col-lg-3 {
  padding: 0;
}
@media (max-width: 1024px) {
  .colleague-stories .collegue-list {
    align-items: stretch;
  }
  .colleague-stories .collegue-list img {
    height: 100%;
  }
}
.colleague-stories .collegue-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991.5px) {
  .colleague-stories .collegue-content {
    padding: 2rem 0.3rem;
  }
}
.colleague-stories .collegue-content h3 {
  font-weight: bold;
}
.colleague-stories .collegue-content p {
  color: var(--primary-color);
}

.join-himmah {
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-align: center;
}
@media (max-width: 1366px) {
  .join-himmah {
    padding: 5rem 0;
  }
}
.join-himmah h2 {
  color: var(--white-color);
}
@media (max-width: 1366px) {
  .join-himmah h2 {
    font-size: 36px;
  }
}
.join-himmah p {
  padding-left: 110px;
  padding-right: 110px;
}
@media (max-width: 1440px) {
  .join-himmah p {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1366px) {
  .join-himmah p {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1024px) {
  .join-himmah p {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.join-himmah .join-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.join-himmah .join-content .join-select .select2-container--default {
  width: 100% !important;
  max-width: 320px;
  margin: 0 auto;
}
.join-himmah .join-content .join-select .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid var(--white-color);
  border-radius: 0;
  height: 55px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.join-himmah .join-content .join-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--white-color);
  font-size: 16px;
  padding-left: 0;
}
.join-himmah .join-content .join-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-himmah .join-content .join-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: solid var(--white-color);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-color: var(--white-color);
  width: auto;
  height: auto;
  margin-top: -6px;
}
.join-himmah .join-content .join-select .select2-container--default.select2-container--open .select2-selection__arrow b {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.counter-section {
  padding: 6rem 0;
  margin: 0 0 4rem;
  background-color: var(--secondary-color);
  justify-content: center;
  align-items: center;
}
@media (max-width: 1440px) {
  .counter-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .counter-section {
    padding: 3rem 0;
  }
}
@media (max-width: 500px) {
  .counter-section {
    padding: 2rem 0;
    margin: 1rem 0 4rem;
  }
}
.counter-section .counter-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.counter-section .counter-box p {
  color: var(--black-color);
  font-family: "outfit", sans-serif;
}
@media (max-width: 991px) {
  .counter-section .counter-box p {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .counter-section .counter-box p {
    padding: 0 1.5rem;
  }
}
@media (max-width: 500px) {
  .counter-section .counter-box p {
    padding: 0 2rem;
  }
}
.counter-section .counter-box h2 {
  font-size: 96px;
  font-weight: 400;
}
.counter-section .counter-box h2 span {
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 1440px) {
  .counter-section .counter-box h2 span {
    font-size: 14px;
  }
}
@media (max-width: 1366px) {
  .counter-section .counter-box h2 span {
    font-size: 12px;
  }
}
@media (max-width: 1440px) {
  .counter-section .counter-box h2 {
    font-size: 72px;
  }
}
@media (max-width: 1366px) {
  .counter-section .counter-box h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .counter-section .counter-box h2 {
    font-size: 56px;
  }
}

.transaction-highlights {
  padding: 0 0 6rem;
}
@media (max-width: 500px) {
  .transaction-highlights {
    padding: 3rem 0;
  }
}
.transaction-highlights .transaction-card {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  padding: 1.2rem 1.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  .transaction-highlights .transaction-card {
    padding: 1rem 1rem 1.5rem;
  }
}
.transaction-highlights .transaction-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.transaction-highlights .transaction-card .card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.transaction-highlights .transaction-card .card-header span {
  font-size: 16px;
  color: #111;
  font-weight: 400;
}
@media (max-width: 1366px) {
  .transaction-highlights .transaction-card .card-header span {
    font-size: 14px;
  }
}
.transaction-highlights .transaction-card .card-logo {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}
.transaction-highlights .transaction-card .card-logo img {
  max-height: 100%;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.transaction-highlights .transaction-card .card-company {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 1rem;
  min-height: 50px;
}
.transaction-highlights .transaction-card .divider {
  width: 100%;
  height: 1px;
  background-color: #EAEAEA;
  margin-bottom: 1rem;
}
.transaction-highlights .transaction-card .card-amount {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}
.transaction-highlights .transaction-card .card-type {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: #111;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.transaction-highlights .transaction-card .card-flag {
  width: 100%;
  height: 100%;
  margin-bottom: 1.5rem;
}
.transaction-highlights .transaction-card .card-role {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: var(--black-color);
  font-weight: 500;
  margin-top: auto;
}
.transaction-highlights .row {
  row-gap: 1rem;
}
@media (max-width: 1600px) {
  .transaction-highlights .row.row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media (max-width: 1100px) {
  .transaction-highlights .row.row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}
@media (max-width: 768px) {
  .transaction-highlights .row.row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (max-width: 576px) {
  .transaction-highlights .row.row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 100%;
  }
}

.normal-breadcrum ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  position: relative;
  align-items: center;
  padding-left: 0rem;
}
.normal-breadcrum ul li a {
  color: #959593;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.normal-breadcrum ul li a.active {
  color: var(--primary-color);
}
.normal-breadcrum ul li a:not(.active)::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(/assets/images/svg/arrow-breadcrumb.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 14px;
  width: 8px;
  margin-left: 1rem;
}

.people-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.85rem 0 1rem;
}
.people-title h2 {
  font-size: 36px;
}
@media (max-width: 1440px) {
  .people-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 1366px) {
  .people-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 1280px) {
  .people-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .people-title h2 {
    font-size: 24px;
  }
}
.people-title .line-width {
  width: 80%;
  height: 1px;
  background-color: rgba(149, 149, 147, 0.35);
}
@media (max-width: 1024px) {
  .people-title .line-width {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .people-title .line-width {
    width: 60%;
  }
}

.people-sidebar {
  padding: 0;
}
.people-sidebar .sidebar-header {
  border-bottom: 1px solid rgba(3, 55, 72, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  max-width: 80%;
  cursor: pointer;
}
.people-sidebar .sidebar-header h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--primary-color);
}
@media (max-width: 1366px) {
  .people-sidebar .sidebar-header h3 {
    font-size: 20px;
  }
}
.people-sidebar .sidebar-header i {
  color: var(--primary-color);
  transition: transform 0.3s;
}
.people-sidebar .sidebar-header[aria-expanded=false] i {
  transform: rotate(180deg);
}
.people-sidebar .nav-pills {
  margin-left: 1rem;
}
@media (max-width: 1024px) {
  .people-sidebar .nav-pills {
    margin-left: 0.75rem;
  }
}
.people-sidebar .nav-pills .nav-link {
  font-family: "Outfit", sans-serif;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.8rem 0;
  border-radius: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.3s;
}
@media (max-width: 1366px) {
  .people-sidebar .nav-pills .nav-link {
    font-size: 15px;
    padding: 0.5rem 0;
  }
}
.people-sidebar .nav-pills .nav-link.active {
  font-family: "Outfit", sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  background-color: transparent;
}
.people-sidebar .nav-pills .nav-link:hover:not(.active) {
  padding-left: 0.5rem;
}
@media (max-width: 500px) {
  .people-sidebar {
    margin-bottom: 2rem;
  }
  .people-sidebar .sidebar-header {
    padding: 1rem 0rem;
    max-width: 100%;
  }
}

.person-card {
  margin-bottom: 2rem;
}
.person-card .image {
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.person-card .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.person-card .text h5 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.person-card .text p {
  font-family: "Outfit", sans-serif;
  color: #666666;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0;
}

.tab-content .tab-pane {
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateY(10px);
}
.tab-content .tab-pane.active {
  transform: translateY(0);
}
.tab-content .tab-pane.fade {
  opacity: 0;
}
.tab-content .tab-pane.fade.show {
  opacity: 1;
}

.person-card {
  cursor: pointer;
  transition: transform 0.3s;
}
.person-card:hover {
  transform: translateY(-5px);
}

.person-modal .modal-dialog {
  max-width: 80vw;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1440.5px) {
  .person-modal .modal-dialog {
    height: 50vh;
  }
}
@media (max-width: 991px) {
  .person-modal .modal-dialog {
    width: 95vw;
    max-width: 95vw;
    height: 90vh;
  }
}
.person-modal .modal-content {
  height: 100%;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.person-modal .modal-content .modal-body {
  height: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .person-modal .modal-content .modal-body .container-fluid,
  .person-modal .modal-content .modal-body .row,
  .person-modal .modal-content .modal-body [class^=col-] {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .person-modal .modal-content .modal-body {
    display: flex;
    flex-direction: column;
  }
  .person-modal .modal-content .modal-body .container-fluid,
  .person-modal .modal-content .modal-body .row {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
  }
  .person-modal .modal-content .modal-body .col-lg-3 {
    flex: none;
    height: auto;
  }
  .person-modal .modal-content .modal-body .col-lg-9 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
}
.person-modal .btn-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 10;
  padding: 0.5rem;
  background-size: 1.2rem;
  opacity: 1;
}
.person-modal .btn-close:focus {
  border: none;
  box-shadow: none;
}
.person-modal .modal-person-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.person-modal .modal-person-image .image-wrapper {
  position: relative;
  margin: 1.5rem;
  max-width: 215px;
}
.person-modal .modal-person-image .image-wrapper img {
  transition: filter 0.3s;
}
@media (max-width: 991.5px) {
  .person-modal .modal-person-image .image-wrapper img {
    max-width: 200px;
  }
}
@media (max-width: 500px) {
  .person-modal .modal-person-image .image-wrapper img {
    max-width: 100%;
  }
}
.person-modal .modal-person-image .image-wrapper .social-icons {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  display: none !important;
}
@media (max-width: 820px) {
  .person-modal .modal-person-image .image-wrapper .social-icons {
    bottom: 2rem;
    right: 2rem;
  }
}
@media (max-width: 500px) {
  .person-modal .modal-person-image .image-wrapper .social-icons {
    right: 1rem;
  }
}
.person-modal .modal-person-image .image-wrapper .social-icons a {
  transition: all 0.3s;
}
.person-modal .modal-person-image .image-wrapper .social-icons a:hover {
  transform: scale(1.1);
}
.person-modal .modal-person-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  height: 100%;
}
.person-modal .modal-person-content h2 {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 0;
}
.person-modal .modal-person-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.person-modal .modal-person-content .bio-content {
  font-size: 18px;
  color: var(--primary-color);
  overflow-y: auto;
  flex: 1;
  padding-right: 1rem;
  /* Custom scrollbar styling */
}
.person-modal .modal-person-content .bio-content::-webkit-scrollbar {
  width: 5px;
}
.person-modal .modal-person-content .bio-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.person-modal .modal-person-content .bio-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
.person-modal .modal-person-content .bio-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.person-modal .modal-person-content .bio-content p {
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .person-modal .modal-person-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .person-modal .modal-person-content .bio-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    /* Ensure it has a baseline height to grow from */
    min-height: 0;
  }
}

.form-left h2 {
  font-weight: 400;
}
.form-left .form-container {
  font-family: "Outfit", sans-serif;
}
.form-left .form-container .form-control {
  border: none;
  border-bottom: 2px solid var(--secondary-color);
  padding-left: 0;
  padding-bottom: 20px;
  border-radius: 0;
}
.form-left .form-container .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
}
.form-left .form-container textarea {
  resize: none;
}
.form-left .form-container .btn-custom {
  background-color: var(--primary-color);
  font-family: "Playfair Display", serif;
  color: var(--white-color);
  padding: 10px 28px;
  border-radius: 0;
  border: none;
}
.form-left .form-container .btn-custom:hover {
  background-color: var(--black-color);
}
@media (max-width: 768px) {
  .form-left .form-container .btn-custom {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .form-left .form-container .btn-custom {
    width: 50%;
  }
}
@media (max-width: 400px) {
  .form-left .form-container .btn-custom {
    width: 75%;
  }
}

.form-right h2 {
  font-weight: 400;
}
@media (max-width: 768px) {
  .form-right {
    margin-top: 5rem;
  }
}

.location-card {
  background: var(--offWhite-color);
  padding: 24px;
  position: relative;
}
.location-card h3 {
  font-size: 32px;
  border-bottom: 1px solid rgba(3, 55, 72, 0.1019607843);
}
@media (max-width: 768px) {
  .location-card h3 {
    font-size: 24px;
  }
}

.badge-custom {
  border: 1px solid rgba(3, 55, 72, 0.1019607843);
  color: #555;
  font-size: 13px;
  padding: 4px 8px;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: 9%;
  right: 4%;
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991.5px) {
  .right-btns {
    display: none !important;
  }
  .left-btns .search-btn {
    display: none !important;
  }
}
/*hide lang button*/
.career-section {
  padding: 4rem 0;
}
@media (max-width: 500px) {
  .career-section {
    padding: 3rem 0;
  }
}/*# sourceMappingURL=style.css.map */