@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --brand: #173048;
  --brand-grey: rgba(3, 48, 55, 0.5);
  --brand-light: rgba(3, 48, 55, 0.10);
  --dark: #1f354c;
  --grey: #7B7B7B;
  --bg-light: #f5f8f7;
  --border-color: rgba(112, 112, 112, 0.431);
  --radius: .5rem;
  --body-text-color: #081f3c;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--body-text-color);
  padding-right: 0 !important;
}

b, strong {
  font-weight: 700;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #ededed !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: var(--bg-light) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: var(--radius);
}

.transition {
  transition: all 0.3s ease-in-out;
}

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

.fw-extrabold {
  font-weight: 800;
}

.border-primary {
  border-color: var(--brand) !important;
}

.text-golden {
  color: #9E742A !important;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-3 {
  letter-spacing: 3px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.h-40 {
  height: 2.5rem;
}

.bg-primary-gradient {
  background: linear-gradient(#308080 0%, #004E4F 100%);
}

.bg-light-primary {
  background-color: rgba(44, 116, 116, 0.06);
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 1rem;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  padding: 0.625rem 1.25rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
  letter-spacing: 0.6px;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-yellow {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--brand);
  text-transform: uppercase;
  border: 2px solid rgba(248, 211, 0, 0.6235294118);
}
.btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--yellow);
}

.btn-gradient {
  background: linear-gradient(#1C5351 0%, #318484);
  border: 0;
  color: var(--white);
}
.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active {
  background: linear-gradient(#318484 0%, #318484);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}
.btn-white.light {
  background-color: #fff5ff;
  border-color: #fff5ff;
}

.btn-light {
  background-color: #EDEDED;
  border-color: #EDEDED;
  color: var(--brand);
}
.btn-light:hover, .btn-light:focus {
  background-color: #ddd;
  border-color: #ddd;
  color: var(--dark);
}

.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.title__line {
  font-weight: 700;
  position: relative;
}
.title__line::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  bottom: 0.25rem;
  left: 0%;
  background-color: #484848;
  opacity: 0.38;
  z-index: -1;
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  :root {
    --radius: .75rem;
  }
  html {
    font-size: 87.5%;
  }
  .mobile__full {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
  }
  .container {
    max-width: calc(100% - 20px);
  }
  .mobile__full__width {
    border-radius: 0% !important;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}
.search__box {
  height: 0px;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  top: -80px;
  z-index: 9999;
}

.search__box.active {
  top: 0px;
  height: 80px;
}

.search__box .form-control {
  height: 80px;
  font-size: 1.45rem;
  transition: all 0.45s ease-in-out;
}

.search__box .form-control::placeholder {
  color: #aaa;
}

.search__box .form-control:focus {
  background-color: #fcf8f2;
}

.search__box .btn-primary {
  font-size: 1.5rem;
  background-color: #f8f0e1;
  border-color: #f8f0e1;
  color: var(--brand) !important;
}

.search__box .btn-primary:focus, .search__box .btn-primary:hover, .search__box .btn-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.searchBtn.active {
  transform: rotate(100deg);
}

@media (max-width: 575px) {
  .search__box {
    top: -60px;
  }
  .search__box.active {
    height: 60px;
  }
  .search__box .form-control {
    height: 60px;
    font-size: 1.125rem;
  }
  .search__box .btn-primary {
    height: 60px;
    font-size: 1.125rem;
  }
}
.navbar {
  z-index: 999;
}
.navbar .navbar-brand img {
  height: 3rem;
}
.navbar .nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}
.navbar .nav-link .sub-arrow {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.35s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7L86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
}
.navbar .nav-link:hover {
  color: var(--white);
}
.navbar .nav-link.active {
  color: var(--white);
}
.navbar .dropdown-menu {
  background-color: var(--brand);
}
.navbar .dropdown-menu a {
  color: var(--white);
  opacity: 0.85;
  display: block;
  padding: 0.25rem;
  position: relative;
}
.navbar .dropdown-menu a:hover, .navbar .dropdown-menu a.active {
  background-color: transparent;
  text-decoration: underline;
}
.navbar .megamenu {
  top: 90%;
  left: 0;
}
.navbar.white__theme .navbar-brand img {
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}
.navbar.white__theme .nav-link {
  color: var(--dark);
}
.navbar.white__theme .search__btn {
  color: var(--dark) !important;
}
.navbar.white__theme .navbar-toggler svg path {
  fill: var(--dark);
}
.navbar.white__theme .navbar-toggler svg path:last-child {
  fill: none;
}
.navbar.white__theme.fixed-top {
  background-color: #fff;
}
.navbar .btn-primary .icon {
  width: 3rem;
  height: 3rem;
  background-color: #fff9cf;
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
  position: relative;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--brand);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media (min-width: 1200px) {
  .divider__border__start {
    border-left: 1px solid var(--white);
  }
  .navbar .dropdown .dropdown-menu {
    display: block;
    transform: scaleY(0);
    opacity: 0;
    transition: all 0.3s ease;
    visibility: hidden;
  }
  .navbar .dropdown .dropdown-menu .dropdown .dropdown-menu {
    right: -100%;
    left: auto;
    top: 0%;
  }
  .navbar .dropdown .dropdown-menu .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown:hover .nav-link .sub-arrow {
    transform: rotate(180deg);
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    height: auto;
    background-color: var(--brand);
    padding: 1rem;
    text-align: center;
  }
  .navbar .navbar-collapse .nav-item .nav-link {
    color: var(--white);
  }
  .navbar .navbar-collapse .dropdown-menu {
    text-align: center;
    border: 0 !important;
    padding: 0%;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    height: 2.5rem;
  }
}
.footer__wrapper {
  background-color: #192035;
  color: #bdcdd1;
}
.footer__wrapper__top {
  background-color: #00071f;
}
.footer__wrapper .logo img {
  height: 2.5rem;
  width: auto;
}
.footer__wrapper .newsletter__form {
  background-color: #30364e;
  padding: 0.125rem;
}
.footer__wrapper .newsletter__form .form-control {
  height: 3.5rem;
}
.footer__wrapper .newsletter__form .btn-primary {
  background-color: #acacac;
  width: 3.25rem;
}
.footer__wrapper a {
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cccccc;
}
.footer__wrapper a:hover {
  text-decoration: underline;
  color: var(--white);
}
.footer__wrapper .social__box {
  margin-left: -1.5rem;
}
.footer__wrapper .social__box a {
  width: 3rem;
  height: 3rem;
  background-color: #30364e;
}
.footer__wrapper .social__box a svg path {
  fill: var(--white);
}
.footer__wrapper .social__box a:hover {
  background-color: rgba(255, 255, 255, 0.0862745098);
}
.footer__wrapper a.text-golden {
  font-weight: 600;
}
.footer__wrapper a.text-golden:hover {
  text-decoration: underline;
}

.contact__action__box {
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  width: 4rem;
  background-color: #0f1f34;
  border-color: #bdcdd1 !important;
}
.contact__action__box a svg {
  width: 2rem;
  height: 2rem;
}
.contact__action__box a.call svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact__action__box a:hover svg {
  animation: bunceIn 0.5s ease-in-out infinite;
}
@media (max-width: 767.99px) {
  .contact__action__box {
    border: 0 !important;
  }
  .contact__action__box a {
    width: 3rem;
    height: 3rem;
    background-color: #0f1f34;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .contact__action__box .call {
    position: fixed;
    left: 1rem;
    bottom: 3rem;
  }
  .contact__action__box .whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 3rem;
  }
}

@keyframes bunceIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 30%;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}
@media (max-width: 767.99px) {
  .backTop {
    height: 4rem;
    width: 2.5rem;
    right: 1rem;
    border-radius: 1rem !important;
  }
  .backTop svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer {
    padding-bottom: 8rem;
  }
}
img {
  max-width: 100%;
  height: auto;
}

.home__header__wrapper__content {
  height: 100vh;
  max-height: 1080px;
  padding-top: 15rem;
  padding-bottom: 8rem;
}
.home__header__wrapper .overlay {
  background: #000;
  opacity: 0.57;
}
.home__header__wrapper .carousel-control-next,
.home__header__wrapper .carousel-control-prev {
  width: 10%;
  z-index: 999;
}
.home__header__wrapper .slider__counter {
  bottom: 4rem;
  right: 10%;
  z-index: 99;
}

@media (max-width: 991px) {
  .home__header__wrapper__content {
    height: 700px;
  }
  .home__header__wrapper .carousel-control-next,
  .home__header__wrapper .carousel-control-prev {
    display: none;
  }
  .home__header__wrapper.teampage .container {
    min-height: 700px;
    padding-top: 10rem;
  }
}
@media (max-width: 575px) {
  .header__wrapper {
    padding-top: 7rem;
    min-height: 500px;
  }
  .header__wrapper.subpage {
    min-height: 400px;
  }
  .header__wrapper.teampage .container {
    min-height: 500px;
    padding-top: 10rem;
  }
}
/*
Source - https://stackoverflow.com/a
Posted by Kyle, modified by community. See post 'Timeline' for change history
Retrieved 2025-11-18, License - CC BY-SA 4.0
*/
.strokeme {
  color: white;
  background-color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.services__wrapper {
  margin-top: -4rem;
}

.service__card {
  border-radius: var(--radius);
}
.service__card .thumbnail, .service__card .overlay {
  aspect-ratio: 1;
  -webkit-mask-image: var(--maskFrame);
  mask-image: var(--maskFrame);
  mask-size: 100%;
  mask-repeat: no-repeat;
}
.service__card .description {
  opacity: 0;
  visibility: hidden;
}
.service__card .link__box {
  width: 5rem;
  height: 5rem;
  border-top-left-radius: var(--radius);
}
.service__card .link__box .link {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--dark);
}
.service__card .link__box .link svg {
  transition: all 0.3s ease-in-out;
}
.service__card .link__box .link:hover {
  background-color: var(--brand);
}
.service__card .link__box .link:hover svg {
  transform: rotate(45deg);
}
.service__card:hover .description {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .service__card .link__box {
    width: 4rem;
    height: 4rem;
  }
  .service__card .link__box .link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--dark);
  }
  .service__card .link__box .link svg {
    transition: all 0.3s ease-in-out;
  }
}
.swiper-horizontal > .swiper-scrollbar {
  height: 10px;
  background-color: #e3e3e3;
  border-radius: 40px;
  overflow: hidden;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #bfbebe;
}

.service__card__content {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1137254902), rgba(0, 0, 0, 0.4784313725));
}
.service__card__content .title a {
  color: var(--white);
}
.service__card__content .title a:hover {
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: underline;
}
.service__card:hover img {
  transform: scale(1.2);
}

.service__tabs .nav-link {
  background-color: var(--white);
  border-radius: var(--radius);
  color: var(--dark);
}
.service__tabs .nav-link.active {
  background-color: #fff4ff;
}

.tab__btn {
  top: -4rem;
}

.testimonial__card__text {
  color: #647993;
}
.testimonial__card__designation {
  color: #7d92ad;
}
.testimonial__card__img {
  width: 3.5rem;
  height: 3.5rem;
}

.teamSwiper {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.teamSwiper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.teamSwiper .overlay::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(6px);
  background-color: rgba(64, 64, 64, 0);
}

.teamSwiper .swiper-slide {
  width: 320px;
  background-color: red;
  transition: 0.4s;
  text-align: center;
  position: relative;
  z-index: 11;
}

.teamSwiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.teamSwiper .swiper-slide-prev {
  transform: scale(0.85) translateX(80px);
  opacity: 0.5;
}

.teamSwiper .swiper-slide-next {
  transform: scale(0.85) translateX(-180px);
  z-index: 2;
}

.teamSwiper .swiper-slide-next + .swiper-slide {
  transform: scale(0.65) translateX(-480px);
  z-index: 1;
}

@media (max-width: 575px) {
  .teamSwiper {
    max-width: 250px;
  }
  .teamSwiper .swiper-slide {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .teamSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
  .teamSwiper .swiper-slide-prev {
    transform: scale(0.85) translateX(0);
    opacity: 1;
  }
  .teamSwiper .swiper-slide-next {
    transform: scale(1) translateX(0);
    z-index: 2;
  }
  .teamSwiper .swiper-slide-next + .swiper-slide {
    transform: scale(1) translateX(0);
    z-index: 1;
  }
}
.blog__card__category {
  background-color: #acacac;
  border-radius: 0 2rem 2rem 0;
  bottom: -1rem;
}
.blog__card__category a {
  color: var(--white);
  font-weight: 600;
}
.blog__card__title a {
  color: var(--dark);
}
.blog__card__title a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.blog__card .read__more {
  color: var(--dark);
  padding-left: 2.5rem;
  position: relative;
}
.blog__card .read__more::before {
  content: "";
  width: 2rem;
  height: 1.5px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark);
}

.cms__page .content__wrapper {
  border-radius: 9rem 9rem 0 0;
  margin-top: -10rem;
  background-color: #fff;
  position: relative;
  z-index: 99;
}

@media (max-width: 575px) {
  .cms__page .content__wrapper {
    margin-top: 0;
    border-radius: 0%;
  }
}
.header__wrapper {
  height: 100vh;
  max-height: 1080px;
  padding-top: 6rem;
}
.header__wrapper .hero__contact__info {
  max-width: 200px;
}
.header__wrapper .hero__contact__info.center__align {
  max-width: 270px;
}
.header__wrapper.subpage .btn-white {
  background-color: #fff4ff;
  border-color: #fff4ff;
}
.header__wrapper.subpage .btn-white:hover {
  color: var(--white);
  background-color: var(--brand);
  border-color: var(--brand);
}
@media (max-width: 991px) {
  .header__wrapper {
    height: 460px;
    padding-bottom: 7rem;
  }
  .header__wrapper.aboutpage {
    height: 700px;
  }
}

.service__page {
  text-align: justify;
}
.service__page .content__wrapper {
  margin-top: -10rem;
  position: relative;
  z-index: 99;
}
.service__page .content__wrapper__contents {
  border-radius: 4rem 4rem 0 0;
}
@media (max-width: 575px) {
  .service__page .content__wrapper {
    margin-top: -8rem;
  }
  .service__page .content__wrapper__contents {
    border-radius: 2rem 2rem 0 0;
  }
}
.service__page .form-control {
  background-color: #edf1f1;
  border-color: #edf1f1;
  height: 2.5rem;
  padding: 0.25rem 1.25rem;
}
.service__page .form-control::placeholder {
  color: #afc5e1;
  font-weight: 300;
}
.service__page textarea.form-control {
  height: auto;
}
.service__page .submit__btn {
  height: 2.5rem;
}
@media (max-width: 575px) {
  .service__page .submit__btn {
    width: 100%;
    max-width: 200px;
  }
}
.service__page .nav-tabs .nav-link {
  border-radius: 0%;
  color: var(--white);
  opacity: 0.75;
}
.service__page .nav-tabs .nav-link.active {
  color: var(--white);
  background-color: transparent;
  opacity: 1;
  font-weight: 600;
}
@media (max-width: 575px) {
  .service__page .fs-5 {
    font-size: 1rem !important;
  }
  .service__page p {
    text-align: justify;
  }
  .service__page .practice__area__btns {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  .service__page .check__list.lead-sm {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .service__page .related__link__list {
    display: none !important;
  }
  .service__page .related__link__list.active {
    display: block !important;
  }
}

.check__list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}
.check__list li::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%231f354c'%3E%3Cpath d='M10.243 16.314L6 12.07l1.414-1.414l2.829 2.828l5.656-5.657l1.415 1.415z'/%3E%3Cpath fill-rule='evenodd' d='M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m11 9a9 9 0 1 1 0-18a9 9 0 0 1 0 18' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
}

.hero__contact__info {
  max-width: 270px;
}
.hero__contact__info .icon {
  width: 2.75rem;
  height: 2.75rem;
}
.hero__contact__info .icon.meeting {
  background-color: #10233c;
}
.hero__contact__info .icon img {
  width: 2.75rem;
  height: 2.75rem;
}
.hero__contact__info .col .content {
  background-color: #a1a1a1;
  height: 3rem;
  color: var(--white);
}
.hero__contact__info .col .content.meeting {
  background-color: #10233c;
}
.hero__contact__info.footer {
  max-width: 360px;
  margin-left: auto;
}
.hero__contact__info.footer .content {
  background-color: #eef1f1;
  color: #334860;
}
.hero__contact__info.dark .icon {
  background-color: #000000;
}
.hero__contact__info.dark .icon.meeting {
  background-color: var(--white);
}
.hero__contact__info.dark .icon.meeting img {
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}
.hero__contact__info.dark .content {
  background-color: #000000;
}
.hero__contact__info.dark .content.meeting {
  background-color: var(--white);
  color: #000000;
}

.related__link__list li:not(:last-child) {
  border-bottom: 1px solid #d5d7d7;
}
.related__link__list li a {
  font-size: 1.35rem;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  color: #000;
  display: block;
}
.related__link__list li a:hover {
  color: var(--brand);
  background-color: #d5d7d7;
}

.partner__list {
  color: #343232;
}
.partner__list .thumbnail {
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  background-color: #edf1f1;
  padding-top: 0.5rem;
  text-align: center;
}
.partner__list .thumbnail img {
  height: 6.5rem;
}

@media (max-width: 992px) {
  .blog__lg__padding {
    padding: 0% 2rem;
  }
}
.firm__wrapper {
  position: relative;
  z-index: 11;
}
.firm__wrapper .thumbnail__box {
  border-radius: 4rem;
  padding: 0.75rem;
}
.firm__wrapper .thumbnail__box img {
  border-radius: 4rem;
}

@media (min-width: 992px) {
  .firm__wrapper {
    margin-top: -5rem;
  }
}
@media (max-width: 991px) {
  .firm__wrapper .thumbnail__box {
    border-radius: 1rem;
    padding: 0;
  }
  .firm__wrapper .thumbnail__box img {
    border-radius: 1rem;
  }
}
.contact__promo__wrapper .content__wrapper {
  background-color: rgba(255, 255, 255, 0.87);
  border-radius: 3rem;
}

@media (max-width: 575px) {
  .contact__promo__wrapper {
    padding-bottom: 7rem !important;
  }
  .contact__promo__wrapper .content__wrapper {
    min-height: 8rem;
    border-radius: 2rem;
  }
  .contact__promo__wrapper .content__wrapper .btn-primary {
    position: absolute;
    bottom: -7rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.biography__page .biography__wrapper {
  padding: 2rem 0 0rem 0;
  background-image: linear-gradient(0deg, #4c5d70 0%, #565b5c 100%);
}
.biography__page .biography__wrapper .social__box a {
  width: 2.5rem;
  height: 2.5rem;
}
.biography__page .biography__wrapper .social__box a:hover {
  background-color: #f9f9f9;
}
.biography__page .link__box {
  background-color: #e6e6e7;
  max-width: 700px;
  position: sticky;
  top: 5rem;
  z-index: 99;
}
.biography__page .link__box a {
  color: var(--dark);
}
.biography__page .link__box a.active {
  font-weight: 500;
  background: linear-gradient(to right, #596e72, #112f35);
  color: var(--white);
}

@media (min-width: 768px) {
  .biography__page .biography__wrapper .hero__icons img {
    filter: contrast(0) brightness(10);
  }
}
@media (max-width: 767px) {
  .biography__page .biography__wrapper {
    margin-bottom: 40% !important;
  }
  .biography__page .biography__wrapper .bg-white {
    background-color: var(--brand) !important;
  }
  .biography__page .biography__wrapper .biography__content {
    position: absolute;
    background-image: linear-gradient(180deg, #e6e6e3 0%, #bfbdbd 100%);
    border-radius: 2rem;
    padding: 2rem !important;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 9;
  }
  .biography__page .biography__wrapper .biography__content .text-white {
    color: var(--primary) !important;
  }
}
/*---------- Contact page styles -----------*/
.contact__page .office__wrapper {
  margin-top: -10rem;
  position: relative;
  z-index: 99;
}
.contact__page .address__list {
  border-radius: 2rem;
}
.contact__page .address__list .bg-light {
  background-color: #eef1f1 !important;
}
.contact__page .address__list .title {
  color: #8f8f8f;
}
.contact__page .address__list .address {
  color: #a2a3a4;
  min-height: 5rem;
}
.contact__page .address__list .phone__number {
  color: #a2a3a4;
}
.contact__page .address__list .phone__number:hover {
  color: var(--dark);
  text-decoration: underline;
}
.contact__page .form-control, .contact__page .form-select {
  background-color: #eef1f1;
  padding: 0.75rem 1.25rem;
  border-color: #eef1f1;
}

@media (max-width: 575px) {
  .contact__page .office__wrapper {
    margin-top: -8rem;
  }
  .contact__page .search__form {
    background-color: #eef1f1;
  }
}
.blog__card .thumbnail {
  aspect-ratio: 4/2.5;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center center;
}
.blog__card .title a {
  color: var(--brand);
}
.blog__card .title a:hover {
  text-decoration: underline;
  color: var(--dark);
}
.blog__card .date {
  color: #797979;
  font-size: 12px;
}
.blog__card .btn-outline-primary {
  font-size: 12px;
  border-radius: 4px;
}

.pagination .page-link {
  border: 0;
  color: #7e7e7e;
  font-weight: 500;
  border-radius: 50% !important;
  padding: 0%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-link.active {
  background-color: #e6e6e7;
}

.connect__form .form-control {
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 10px;
  height: 40px;
}
.connect__form textarea.form-control {
  height: auto;
}

.white__links__list li {
  position: relative;
  padding-left: 1.5rem;
}
.white__links__list li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' d='m7.5 14.5l4-4l-4-4m4 8l4-4l-4-4' stroke-width='1'/%3E%3C/svg%3E");
}
.white__links__list li a {
  color: var(--white);
  font-weight: 300;
  font-size: 0.875rem;
}
.white__links__list li a:hover {
  text-decoration: underline;
}

.contact__card {
  border-radius: 2rem;
  box-shadow: 0px 11px 11px rgba(0, 0, 0, 0.25);
}

.step__card {
  background-image: linear-gradient(0deg, #e6e6e3 0%, #bfbdbd 100%);
  border-radius: 2rem;
}

.career__page .accordion {
  background-color: #edf1f1;
}

html[dir=rtl] .border-start {
  border-left: 0 !important;
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
html[dir=rtl] .border-start.department__box {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  border-right: 0;
}
html[dir=rtl] .text-start {
  text-align: right !important;
}
@media (min-width: 992px) {
  html[dir=rtl] .ps-lg-5 {
    padding-left: 0 !important;
    padding-right: 3rem !important;
  }
}/*# sourceMappingURL=style.css.map */