@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-family: "Jost", sans-serif;
  position: relative;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

.no-padding {
  padding: 0px !important;
}

.container-fluid {
  padding: 0 100px;
}
@media (max-width: 1599px) {
  .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1499px) {
  .container-fluid {
    padding: 0 12px;
  }
}

@keyframes topToBottom {
  0% {
    top: -50px;
  }
  100% {
    top: 0;
  }
}
header {
  transition: all 0.3s ease-in-out;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
}
header .inner-full-header-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  header .header-inner-wrapper {
    display: none;
  }
}
header .header-inner-wrapper .header-desktop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .left-side-logo {
  min-width: 172px;
}
header .header-inner-wrapper .header-desktop .left-side-logo a {
  display: block;
}
header .header-inner-wrapper .header-desktop .left-side-logo a img {
  width: 100%;
  max-width: 172px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1399px) {
  header .header-inner-wrapper .header-desktop .left-side-logo a img {
    max-width: 140px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul {
  margin: 0;
  padding: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 30px;
}
@media (max-width: 1800px) {
  header .header-inner-wrapper .header-desktop .right-side-menu ul li {
    margin: 0 25px;
  }
}
@media (max-width: 1399px) {
  header .header-inner-wrapper .header-desktop .right-side-menu ul li {
    margin: 0 15px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li:last-child {
  margin-right: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #656667;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 0 0 6px 0;
}
@media (max-width: 1399px) {
  header .header-inner-wrapper .header-desktop .right-side-menu ul li a {
    padding-bottom: 5px;
    font-size: 16px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a::before {
  background-color: #fd7126;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a:hover {
  color: #fd7126;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a:hover::before {
  opacity: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a.active {
  color: #fd7126;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul li a.active::before {
  opacity: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown {
  position: relative;
  z-index: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown-link span {
  font-weight: 700 !important;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu {
  background-color: #ffffff;
  position: absolute;
  top: 35px;
  left: 0;
  padding: 15px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 15px;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  transform: translateY(10px);
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu li {
  margin: 0;
  list-style: none;
  display: block;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu li a {
  padding: 5px 0;
  display: block;
  font-size: 15px;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown .dropdown_menu li a::before {
  display: none;
}
header .header-inner-wrapper .header-desktop .right-side-menu ul .dropdown:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .header-inner-wrapper .header-desktop .right-side-book-button a {
  font-size: 16px;
  color: #fd7126;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  border: 1px solid #fd7126;
  padding: 12px 30px;
}
header .header-inner-wrapper .header-desktop .right-side-book-button a:hover {
  color: #ffffff;
  background-color: #fd7126;
}
header .header-mobile-section {
  display: none;
}
@media (max-width: 1199px) {
  header .header-mobile-section {
    display: block;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
  max-width: 200px;
}
@media (max-width: 1199px) {
  header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
    max-width: 110px;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li {
  list-style: none;
  display: inline-block;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon {
  position: relative;
  z-index: 1;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon img {
  width: 18px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon span {
  width: fit-content;
  position: absolute;
  right: -8px;
  top: -8px;
  padding: 2px;
  font-size: 9px;
  min-width: 18px;
  min-height: 18px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .mobile-menu-btn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 24px;
  color: #fd7126;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 20px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas {
  background: rgba(0, 0, 0, 0.9);
  min-height: 100vh;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header {
  padding: 25px;
  margin-bottom: 50px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header h5 a img {
  max-width: 110px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close {
  background-image: unset;
  color: #fd7126;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body {
  padding: 16px 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul {
  margin: 0;
  padding: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li {
  list-style: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li a {
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  padding: 8px 0;
  display: block;
  color: #ffffff;
  opacity: 0.9;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li a:hover {
  opacity: 1;
  color: #fd7126;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li a.active {
  opacity: 1;
  color: #fd7126;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion {
  background-color: transparent;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item {
  background-color: transparent;
  border: none !important;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header {
  background-color: transparent;
  padding: 10px 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header button {
  padding: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 17px;
  color: #000000;
  border: none;
  box-shadow: none;
  outline: none;
  opacity: 0.8;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body {
  padding: 0 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body ul li a {
  padding: 4px 0;
  font-size: 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button::after {
  background-image: unset;
  content: "\e145";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Icons";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000000;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed)::after {
  content: "\e15b";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner {
  text-align: left;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner h6 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper {
  margin-bottom: 25px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a {
  color: #ffffff;
  padding: 0 5px;
  font-size: 17px;
  transition: 0.3s ease-in-out;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a:first-child {
  padding-left: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

.sticky {
  background: rgb(255, 255, 255);
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1499px) {
  .sticky {
    padding: 15px 0;
  }
}
.sticky .left-side-logo a img {
  max-width: 140px !important;
}
@media (max-width: 1499px) {
  .sticky .left-side-logo a img {
    max-width: 100px !important;
  }
}
.sticky .right-side-menu ul .dropdown {
  position: relative;
  z-index: 1;
}
.sticky .right-side-menu ul .dropdown .dropdown-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sticky .right-side-menu ul .dropdown .dropdown-link span {
  font-weight: 700 !important;
}
.sticky .right-side-menu ul .dropdown .dropdown_menu {
  background-color: #ffffff;
  position: absolute;
  top: 35px;
  left: 0;
  padding: 15px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 15px;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  transform: translateY(10px);
}
.sticky .right-side-menu ul .dropdown .dropdown_menu li {
  margin: 0;
  list-style: none;
  display: block;
}
.sticky .right-side-menu ul .dropdown .dropdown_menu li a {
  padding: 5px 0;
  display: block;
  font-size: 15px;
}
.sticky .right-side-menu ul .dropdown .dropdown_menu li a::before {
  display: none;
}
.sticky .right-side-menu ul .dropdown:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.hero-section .hero-section-inner .hero-slider .carousel-indicators {
  justify-content: flex-start;
  margin-left: 100px;
  margin-bottom: 100px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .hero-section .hero-section-inner .hero-slider .carousel-indicators {
    margin-left: 12px;
    margin-bottom: 30px;
  }
}
.hero-section .hero-section-inner .hero-slider .carousel-indicators button {
  transition: 0.3s ease-in-out;
  width: 8px;
  height: 8px;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border: none;
  display: none;
}
.hero-section .hero-section-inner .hero-slider .carousel-indicators .active {
  background-color: #ffffff;
  width: 30px;
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item {
  position: relative;
  z-index: 1;
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item img {
    height: 500px;
  }
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 40%;
  right: unset;
  bottom: unset;
  width: 100%;
  text-align: center;
  padding: 0 12px;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption {
    top: 48%;
  }
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption h1 {
  font-size: 27px;
  font-weight: 400;
  color: #fd7126;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption p {
  font-size: 17px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption p br {
    display: none;
  }
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption .link-wrapper a {
  border: 1px solid #656667;
  font-size: 16px;
  color: #656667;
  padding: 12px 30px;
  display: block;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
.hero-section .hero-section-inner .hero-slider .carousel-inner .carousel-item .carousel-caption .link-wrapper a:hover {
  background-color: #fd7126;
  color: #ffffff;
  border-color: #fd7126;
}
.hero-section .hero-section-inner .hero-slider .carousel-control-next {
  position: absolute;
  bottom: 100px;
  align-items: flex-end;
  height: fit-content;
  top: unset;
  opacity: 1;
  font-size: 18px;
  color: #fff;
  z-index: 2;
}
@media (max-width: 1199px) {
  .hero-section .hero-section-inner .hero-slider .carousel-control-next {
    bottom: 30px;
    font-size: 16px;
    right: 12px;
  }
}

.center-section-wrapper {
  padding: 100px 0;
}
.center-section-wrapper .center-section-inner {
  text-align: center;
}
.center-section-wrapper .center-section-inner .top-points {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 991px) {
  .center-section-wrapper .center-section-inner .top-points {
    flex-direction: column;
    gap: 5px;
  }
}
.center-section-wrapper .center-section-inner .top-points h3 {
  font-size: 19px;
  color: #fd7126;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .center-section-wrapper .center-section-inner .top-points h3 {
    margin-bottom: 0;
  }
}
.center-section-wrapper .center-section-inner .top-points span {
  color: #fd7126;
}
@media (max-width: 991px) {
  .center-section-wrapper .center-section-inner .top-points span {
    display: none;
  }
}
.center-section-wrapper .center-section-inner p {
  font-size: 16px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .center-section-wrapper .center-section-inner p {
    margin-top: 10px;
  }
  .center-section-wrapper .center-section-inner p br {
    display: none;
  }
}

/* Residence Office Slider */
.residence-office-slider {
  background-color: #f8f8f8;
}

.slider-container {
  display: flex;
  gap: 1px;
  cursor: pointer;
  height: 800px;
}

.slider-item {
  position: relative;
  width: 10%;
  height: 100%;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
  flex-shrink: 0;
}

.slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all 0.6s ease-in-out;
  pointer-events: none;
}

.slider-item.active::before {
  background: rgba(0, 0, 0, 0);
}

.slider-item.active {
  width: 80%;
}
.slider-item.active .overlay {
  padding-left: 304px;
  text-align: left;
}
@media (max-width: 1199px) {
  .slider-item.active .overlay {
    padding-left: 15px;
  }
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-in-out;
  filter: grayscale(100%);
}

.slider-item:hover img {
  transform: scale(1.05);
}

.overlay {
  text-align: center;
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: fit-content;
  transition: all 0.6s ease-in-out;
  min-height: 110px;
  z-index: 3;
}

.overlay-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  white-space: nowrap;
  transition: all 0.6s ease-in-out;
}

.overlay-text {
  font-size: 16px;
  margin: 0;
  line-height: 22px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.slider-item.active .overlay-text {
  opacity: 1;
  max-height: 100px;
}

.slider-item.active img {
  filter: grayscale(0%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }
  .slider-item {
    width: 20%;
  }
  .slider-item.active {
    width: 60%;
  }
  .overlay {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .slider-container {
    height: 250px;
  }
  .slider-item {
    width: 33.33%;
  }
  .slider-item.active {
    width: 100%;
  }
  .overlay {
    padding: 12px;
  }
}
.above-footer-section {
  padding: 100px 0;
}
.above-footer-section .above-footer-inner-wrapper {
  text-align: center;
}
.above-footer-section .above-footer-inner-wrapper h2 {
  font-size: 20px;
  font-weight: 400;
  color: #fd7126;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .above-footer-section .above-footer-inner-wrapper h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.above-footer-section .above-footer-inner-wrapper p {
  font-size: 17px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .above-footer-section .above-footer-inner-wrapper p br {
    display: none;
  }
}
.above-footer-section .above-footer-inner-wrapper .link-wrapper a {
  border: 1px solid #656667;
  font-size: 16px;
  color: #656667;
  padding: 12px 30px;
  display: block;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
.above-footer-section .above-footer-inner-wrapper .link-wrapper a:hover {
  background-color: #fd7126;
  color: #ffffff;
  border-color: #fd7126;
}

.value-proposition-section {
  padding: 100px 0;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .value-proposition-section {
    padding: 60px 0;
    min-height: auto;
    background-attachment: scroll;
  }
}
.value-proposition-section .value-proposition-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 100%;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card {
  background-color: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 450px;
}
@media (max-width: 1199px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card {
    padding: 40px;
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card {
    padding: 30px;
    min-height: auto;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.left-card {
  background-color: rgba(255, 255, 255, 0.902);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.left-card .inner-content {
  background-color: #ffffff;
  padding: 25px;
  width: 193px;
  height: 193px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.left-card .inner-content {
    background-color: transparent;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.left-card .inner-content h3 {
  font-size: 19px;
  font-weight: 400;
  color: #fd7126;
  line-height: 22px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.left-card .inner-content h3 {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.left-card .inner-content h3 br {
    display: none;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.center-card {
  justify-content: center;
  padding: 65px;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.center-card {
    padding: 50px 15px;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.center-card p {
  font-size: 15px;
  color: #656667;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.center-card p {
    text-align: center;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.center-card p:last-child {
  margin-bottom: 0;
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.right-card {
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.right-card {
    background-color: #fd7126;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.right-card .stats-box {
  background-color: #fd7126;
  color: #ffffff;
  padding: 40px;
  text-align: center;
  padding: 25px;
  width: 193px;
  height: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.right-card .stats-box {
    padding: 30px;
    padding: 20px 15px;
    width: 100%;
    height: 100%;
  }
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.right-card .stats-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
}
.value-proposition-section .value-proposition-inner-wrapper .value-card.right-card .stats-box p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 22px;
}
@media (max-width: 991px) {
  .value-proposition-section .value-proposition-inner-wrapper .value-card.right-card .stats-box p br {
    display: none;
  }
}

.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  padding: 30px;
  border-top: 1px solid #dfdfdf;
}
@media (max-width: 1399px) {
  .footer-section .footer-inner {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-inner {
    padding: 30px 0;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-inner {
    flex-direction: column;
  }
}
.footer-section .footer-inner .left-logo-section {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 30px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .left-logo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.footer-section .footer-inner .left-logo-section a {
  display: block;
}
.footer-section .footer-inner .left-logo-section a img {
  width: 100%;
  max-width: 129px;
}
@media (max-width: 1399px) {
  .footer-section .footer-inner .left-logo-section a img {
    max-width: 110px;
  }
}
.footer-section .footer-inner .left-logo-section p {
  color: #656667;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 20px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .left-logo-section p br {
    display: none;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box h4 {
  font-size: 16px;
  font-weight: 400;
  color: #fd7126;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .links-address-wrapper .links-box h4 {
    margin-bottom: 12px;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 46px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .links-address-wrapper .links-box .footer-links p {
    font-size: 16px;
    margin-top: 15px;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul {
    gap: 3px;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li {
  list-style: none;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #656667;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ul li a:hover {
  color: #fd7126;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ol {
  margin: 0;
  padding: 0;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ol li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-bottom: 8px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ol li span {
  font-weight: 600;
  font-size: 22px;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-links ol li a {
  font-size: 15px;
  font-weight: 400;
  color: #373737;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group {
  display: grid;
  grid-template-columns: 1fr 46px;
  background-color: #383838;
  border-radius: 10px;
  padding: 9px 12px 9px 16px;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group {
    padding: 7px 12px;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 20px;
  color: #fff;
  font-weight: 500;
  background-color: transparent;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group .submit_btn {
  width: 46px;
  height: 46px;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: none;
  transition: 0.3s ease-in-out;
  opacity: 0.9;
}
@media (max-width: 1199px) {
  .footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group .submit_btn {
    width: 40px;
    height: 40px;
  }
}
.footer-section .footer-inner .links-address-wrapper .links-box .footer-form-wrapper form .form-group .submit_btn:hover {
  opacity: 1;
}
.footer-section .copyright-section {
  border-top: 1px solid #dfdfdf;
  padding: 15px 30px;
}
@media (max-width: 1199px) {
  .footer-section .copyright-section {
    padding: 15px 0;
  }
}
.footer-section .copyright-section p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px;
  color: #656667;
}
@media (max-width: 1199px) {
  .footer-section .copyright-section p {
    font-size: 14px;
  }
}
.footer-section .whatsapp-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  right: 50px;
  bottom: 80px;
  z-index: 999;
}
@media (max-width: 1199px) {
  .footer-section .whatsapp-contact-wrapper {
    gap: 10px;
    right: 20px;
  }
}
.footer-section .whatsapp-contact-wrapper a {
  z-index: 9;
  background-color: #972d1d;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .footer-section .whatsapp-contact-wrapper a {
    width: 45px;
    height: 45px;
  }
}
.footer-section .whatsapp-contact-wrapper a:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}
.footer-section .whatsapp-contact-wrapper a:last-child {
  background-color: #7dda45;
}
.footer-section .whatsapp-contact-wrapper a img {
  width: 38px;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .footer-section .whatsapp-contact-wrapper a img {
    width: 22px;
  }
}

.modal-backdrop.show {
  opacity: 0.88;
}

.principles-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 99;
  padding-bottom: 250px;
}
@media (max-width: 991px) {
  .principles-inner-wrapper {
    grid-template-columns: 1fr;
  }
}

.principles-inner-wrapper .box-wrapper:first-child {
  position: relative;
}
.principles-inner-wrapper .box-wrapper:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 220px;
  background-color: #d6d6d6;
}
@media (max-width: 991px) {
  .principles-inner-wrapper .box-wrapper:first-child::after {
    display: none;
  }
}

.principles-inner-wrapper .box-wrapper:last-child {
  position: relative;
}
.principles-inner-wrapper .box-wrapper:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 220px;
  background-color: #d6d6d6;
}
@media (max-width: 991px) {
  .principles-inner-wrapper .box-wrapper:last-child::before {
    display: none;
  }
}

.principles-inner-wrapper .box-wrapper:nth-child(3) {
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.principles-inner-wrapper .box-wrapper:nth-child(3) .inner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #f1f1f1 0%, #ffffff 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .principles-inner-wrapper .box-wrapper:nth-child(3) .inner-background {
    display: none;
  }
}

.principles-inner-wrapper .box-wrapper:nth-child(3).active .inner-background {
  animation: revealFromTop 3s ease-out forwards;
}

.principles-inner-wrapper .box-wrapper:nth-child(3) h3,
.principles-inner-wrapper .box-wrapper:nth-child(3) p {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-out;
}

.principles-inner-wrapper .box-wrapper:nth-child(3).active h3,
.principles-inner-wrapper .box-wrapper:nth-child(3).active p {
  opacity: 1;
}

.swipe-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
  z-index: 10;
}

.swipe-animation img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: top 3s ease-out;
  z-index: 10;
}

@keyframes revealFromTop {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.principles-inner-wrapper .box-wrapper:nth-child(3).active .swipe-animation img {
  top: 97%;
}

@keyframes revealTextFromTop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .principles-section {
    margin-top: 40px;
  }
}
.principles-section .principles-inner-wrapper .box-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 20px;
}
@media (max-width: 991px) {
  .principles-section .principles-inner-wrapper .box-wrapper {
    padding: 0;
    padding-top: 50px;
    text-align: center;
  }
}
.principles-section .principles-inner-wrapper .box-wrapper .icon-wrapper {
  width: 75px;
  min-height: 75px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .principles-section .principles-inner-wrapper .box-wrapper .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.principles-section .principles-inner-wrapper .box-wrapper .icon-wrapper img {
  width: 75px;
  max-width: 75px;
}
.principles-section .principles-inner-wrapper .box-wrapper h3 {
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 500;
}
.principles-section .principles-inner-wrapper .box-wrapper p {
  font-size: 15px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 0;
  min-height: 44px;
}

@media (max-width: 991px) {
  .principles-inner-wrapper .box-wrapper:nth-child(3) {
    order: 5;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    margin-top: 50px;
    padding-top: 0;
  }
  .principles-inner-wrapper .box-wrapper:nth-child(3) .icon-wrapper {
    display: none !important;
  }
}
.principles-inner-wrapper .box-wrapper:nth-child(3) h3 {
  color: #fd7126;
}

.specialisations-section {
  padding: 100px 0;
  background-color: #efefef;
}
.specialisations-section .specialisations-inner-wrapper .top-section {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .top-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.specialisations-section .specialisations-inner-wrapper .specialisations-header {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .specialisations-header {
    margin-bottom: 0;
  }
}
.specialisations-section .specialisations-inner-wrapper .specialisations-header h2 {
  font-size: 19px;
  font-weight: 400;
  color: #fd7126;
  margin-bottom: 15px;
}
.specialisations-section .specialisations-inner-wrapper .specialisations-header p {
  font-size: 16px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .specialisations-header p br {
    display: none;
  }
}
.specialisations-section .specialisations-inner-wrapper .specialisations-features {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  padding-top: 28px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .specialisations-features {
    padding-top: 0;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.specialisations-section .specialisations-inner-wrapper .specialisations-features .feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.specialisations-section .specialisations-inner-wrapper .specialisations-features .feature-item .checkmark {
  font-size: 24px;
  color: #fd7126;
  font-weight: bold;
  min-width: 26px;
}
.specialisations-section .specialisations-inner-wrapper .specialisations-features .feature-item p {
  font-size: 15px;
  color: #3d3d3d;
  margin-bottom: 0;
  font-weight: 500;
}
.specialisations-section .specialisations-inner-wrapper .bottom-section {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section .left-logo-wrapper {
    display: none;
  }
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .left-logo-wrapper img {
  width: 100%;
  max-width: 240px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section .left-logo-wrapper img {
    max-width: 170px;
  }
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-number {
  min-width: 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #616365;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content h4 {
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 500;
  margin-bottom: 0;
  min-width: 200px;
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content p {
  font-size: 15px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content p {
    padding-left: 0;
  }
}
.specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content p::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #656667;
  width: 20px;
  height: 1px;
}
@media (max-width: 991px) {
  .specialisations-section .specialisations-inner-wrapper .bottom-section .specialisations-services .service-item .service-content p::before {
    display: none;
    transform: unset;
    top: 11px;
  }
}

/* Consultation Modal Styles */
#consultationModal .modal-dialog {
  max-width: 500px;
}

#consultationModal .modal-content {
  border: none;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

#consultationModal .modal-header {
  padding: 25px;
}

#consultationModal .modal-title {
  font-size: 30px;
  font-weight: 500;
  color: #656667;
}

#consultationModal .modal-body {
  padding: 30px 25px;
}

#consultationModal .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
  margin-bottom: 8px;
}

#consultationModal .form-control {
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#consultationModal .form-control:focus {
  border-color: #fd7126;
  box-shadow: 0 0 0 0.2rem rgba(253, 113, 38, 0.25);
  outline: none;
}

#consultationModal .btn-primary {
  background-color: #fd7126;
  border-color: #fd7126;
  font-weight: 600;
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

#consultationModal .btn-primary:hover {
  background-color: #e85e0c;
  border-color: #e85e0c;
  transform: translateY(-2px);
  box-shadow: 0px 5px 15px rgba(253, 113, 38, 0.3);
}

#consultationModal .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(253, 113, 38, 0.25);
  outline: none;
}

#consultationModal .btn-close {
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
}

#consultationModal .btn-close:hover {
  opacity: 1;
}

.residence-office-mobile-slider {
  display: none;
}
@media (max-width: 991px) {
  .residence-office-mobile-slider {
    display: block;
  }
}
.residence-office-mobile-slider img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .residence-office-mobile-slider .overlay {
    justify-content: unset !important;
  }
}
.residence-office-mobile-slider .overlay .overlay-text {
  display: block !important;
  opacity: 1 !important;
  overflow: unset !important;
}

@media (max-width: 991px) {
  .residence-office-slider {
    display: none;
  }
}

.box-wrapper-pricipes-mobile {
  padding: 20px 0 25px 0;
  text-align: center;
  display: none;
}
@media (max-width: 991px) {
  .box-wrapper-pricipes-mobile {
    display: block;
  }
}
.box-wrapper-pricipes-mobile h3 {
  color: #fd7126;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.box-wrapper-pricipes-mobile p {
  font-size: 15px;
  color: #656667;
  line-height: 22px;
  margin-bottom: 0;
}

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

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

/*# sourceMappingURL=style.css.map */

.error{
  color: red;
}

#consultationModal .btn-primary{
    margin-top: 23px;
}

.g-recaptcha div{
    margin-bottom: -10px;
}