body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  transition: all 0.5s ease;
  background-color: #ffffff;
  letter-spacing: 0.3px;
  padding-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #F97316;
}

p {
  font-size: clamp(15px, 2vw, 16px);
  color: #596980;
  transition: all 0.5s ease;
}
p:last-child {
  margin-bottom: 0 !important;
}

h2.title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
}

li {
  font-size: 16px;
  color: #596980;
  transition: all 0.5s ease;
}

.rounded__lg {
  border-radius: 15px;
  overflow: hidden;
}

.m__tb {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.m__tb--t {
  margin-top: 4rem;
}
.m__tb--b {
  margin-bottom: 4rem;
}

.p__tb {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.p__tb--t {
  padding-top: 4rem;
}
.p__tb--b {
  padding-bottom: 4rem;
}

.l__container {
  width: 95%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 15px;
}

input {
  outline: none !important;
  box-shadow: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control::placeholder,
input.form-control::placeholder {
  color: #797373;
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

.hr__custom {
  border-top: 2px solid #ffffff;
  margin: 48px 0;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.section__title {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}
.section__title h5 {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.section__title h1,
.section__title h2 {
  text-transform: capitalize;
  color: #000000;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.section__title .l__button--secondary {
  padding: 0.625rem 1rem;
}

.l__button {
  text-transform: capitalize;
  border: 2px solid #000;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  padding: 0.75rem 2rem;
  background-color: #ffffff;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.5s ease;
  text-decoration: none;
  text-align: center;
}
.l__button--border {
  border-color: #000000;
  color: #000000;
}
.l__button--border:hover {
  background-color: #000000;
  color: #ffffff;
}
.l__button--primary {
  color: #ffffff;
  background-color: #45B34A;
  border-color: #45B34A;
}
.l__button--primary:hover {
  background-color: #F97316;
}
.l__button--secondary {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #F97316;
  transition-property: color;
  transition-duration: 0.3s;
  color: #ffffff;
  border-color: #F97316;
}
.l__button--secondary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ea580c;
  border-color: #ea580c;
  border-radius: 6px;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.l__button--secondary:hover {
  color: #ffffff;
}
.l__button--secondary:hover::before {
  transform: scale(1);
}
.l__button--btnColor {
  color: #ffffff;
  background-color: #190E0E;
  border-color: #190E0E;
}
.l__button--btnColor:hover {
  background-color: #ffffff;
  color: #190E0E;
}
.l__button--transparent {
  border: 1px solid #c4cfdd;
  background-color: transparent;
  color: #596980;
}
.l__button--transparent:hover {
  background-color: #45B34A;
  color: #ffffff;
}

.social__icon {
  gap: 1rem;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}
.social__icon li {
  list-style: none;
}
.social__icon li:first-child {
  margin-left: 0;
}
.social__icon li a {
  display: block;
  transition: all 0.5s ease;
}

.owl-nav {
  margin: 0 !important;
  width: 100%;
}
.owl-nav button {
  height: 32px;
  width: 32px;
  overflow: hidden;
  border-radius: 50% !important;
  background-color: #334155 !important;
  color: #ffffff !important;
}

.pagebanner {
  position: relative;
  padding: 130px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}
.pagebanner::before {
  content: "";
  background: rgba(64, 57, 57, 0.42);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.pagebanner .section__title {
  width: 90%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  z-index: 2;
}
.pagebanner .section__title h1 {
  color: #ffffff;
}

.breadcrumb {
  align-items: center;
  margin-bottom: 0;
}
.breadcrumb-item {
  font-size: 0.875rem;
  font-weight: 400;
}
.breadcrumb-item a {
  color: #334155 !important;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none !important;
  text-transform: capitalize;
}
.breadcrumb-item.active {
  text-transform: capitalize;
  color: #F97316 !important;
}
.breadcrumb__custom {
  margin-top: 1rem;
}
.breadcrumb__custom a {
  color: #334155 !important;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none !important;
  text-transform: capitalize;
}
.breadcrumb__custom a.active {
  text-transform: capitalize;
  color: #F97316 !important;
}

.form__group {
  margin-bottom: 35px;
  position: relative;
}
.form-label {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.form-label sup {
  color: #e72828;
}
.form-select, .form-control {
  border-radius: 10px;
  border: 1px solid #cacaca;
  background-color: transparent;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}
.form-select[type=file], .form-control[type=file] {
  padding-left: 10px;
}
.form textarea {
  height: 100px;
}

.pagination nav {
  float: right;
}
.pagination nav .page-link {
  color: #F97316;
}
.pagination nav .page-link:focus {
  box-shadow: none;
}

.page-item.active .page-link {
  background-color: #F97316 !important;
  color: #ffffff;
  border-color: #F97316;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.header__top {
  background-color: #1E293B;
  padding: 0.75rem 0;
}
.header__top--right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
.header__top--right .box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
.header__top--right .box span {
  color: #ffffff;
}
.header__top--right .box a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.header__top--left .social__icon {
  justify-content: flex-end;
}
.header__top--left .social__icon a i {
  color: #ffffff;
  font-size: 22px;
}
.header .navbar__custom {
  background-color: #E2E8F0 !important;
  padding-left: 20px;
  padding-right: 20px;
}
.header .navbar-brand {
  position: relative;
  padding: 0;
}
.header .navbar-brand span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.header .navbar-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.header .navbar .nav-link {
  color: #000000 !important;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0;
}
.header .navbar .nav-link:focus, .header .navbar .nav-link:hover {
  font-weight: 500;
  color: #F97316 !important;
}
.header .navbar-nav {
  gap: 32px;
  align-items: center;
}
.header .navbar-nav .dropdown-toggle::after {
  border: none;
  font: var(--fa-font-solid);
  content: "\f078";
  vertical-align: inherit;
}
.header .navbar-nav .dropdown-menu {
  padding: 0;
  display: block;
  top: 125%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  min-width: 240px;
}
.header .navbar-nav .dropdown-menu li {
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}
.header .navbar-nav .dropdown-menu li .dropdown-item {
  padding: 8px 16px;
  color: #000000;
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 500;
}
.header .navbar-nav .dropdown-menu li .dropdown-item:hover {
  color: #F97316;
}
.header .navbar-nav .dropdown-menu li .sub_menu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #ddd;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 240px;
}
.header .navbar-nav .dropdown-menu li:hover .sub_menu {
  visibility: visible;
  opacity: 1;
}
.header .navbar-nav .dropdown:hover .dropdown-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.header .navbar-nav .nav-item.active .nav-link {
  color: #F97316 !important;
}
.header .navbar-toggler {
  border: 2px solid #ffffff;
  padding: 5px;
  background-color: #ffffff;
  box-shadow: none !important;
}
.header .navbar-toggler-icon {
  height: auto !important;
  background-image: none;
  text-align: center;
  line-height: normal;
}
.header .navbar .group__btn {
  gap: 10px;
}
.header .navbar .group__btn .left .dropdown-toggle {
  background-color: transparent;
  border: none;
}
.header .navbar .group__btn .left .dropdown-toggle span {
  height: 2.1875rem;
  width: 2.1875rem;
  overflow: hidden;
  display: block;
  object-fit: contain;
}
.header .navbar .group__btn .left .dropdown-toggle::after {
  display: none;
}
.header .navbar .mb__lang--btn {
  border: none;
  background-color: #ffffff;
  height: 2.6875rem;
  width: 2.6875rem;
  overflow: hidden;
  border-radius: 0.25rem;
}
.header .navbar .mb__lang--btn::after {
  display: none;
}
.header__mb {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: #E2E8F0;
  width: 100%;
}
.header__mb .nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
}
.header__mb .nav li .icon {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  overflow: hidden;
  margin: auto;
}
.header__mb .nav li .icon svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.header__mb .nav li a {
  text-align: center;
  color: #000000;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
}
.header__mb .nav li.active .icon svg path {
  fill: #F97316;
}
.header__mb .nav li.active a {
  color: #F97316;
}

.offcanvas-header {
  border-bottom: 1px solid #ededed;
}
.offcanvas-header img {
  height: 32px;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}

.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.5s;
  z-index: 9;
  width: 100%;
  transition: all 0.5s ease;
  background-color: transparent;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
.footer {
  background-color: #1e293b;
  padding: 5.9375rem 0 2.8125rem 0;
}
.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer .box {
  margin-bottom: 24px;
}
.footer .box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer .box h4 i {
  margin-right: 0.5rem;
}
.footer .box a,
.footer .box span {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
  text-decoration: none;
}
.footer .subscribe {
  border-bottom: 1px solid #27303D;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.footer .subscribe .form__group {
  margin: 1.75rem 0 0 0;
}
.footer .subscribe .form__group input {
  background-color: #E2E8F0;
  border-radius: 1.875rem 0 0 1.875rem;
}
.footer .subscribe .form__group .l__button--secondary {
  border-radius: 0 1.875rem 1.875rem 0;
  border: none;
}
.footer__link ul {
  padding: 0;
  margin: 0;
}
.footer__link ul li {
  list-style: none;
  margin-bottom: 1rem;
}
.footer__link ul li a {
  color: #64748B;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  text-decoration: none;
}
.footer__copyright {
  background-color: #1A2433;
  padding: 1.375rem 0;
}
.footer__copyright p {
  margin-bottom: 0;
  color: #DAD6D6;
}
.footer__about img {
  background-color: #ffffff;
  border-radius: 0.3125rem;
  height: 2.8125rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  padding: 0.3125rem;
  margin-bottom: 1rem;
}

.mb__whatsapp {
  position: fixed;
  bottom: 10%;
  right: 3%;
  z-index: 9999;
}
.mb__whatsapp a {
  color: green;
  display: block;
}
.mb__whatsapp a img {
  height: 3.75rem;
  width: 3.75rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}

.owl-carousel .owl-dots {
  margin-top: 2rem !important;
}
.owl-carousel .owl-dot span {
  background-color: #b6c1d0 !important;
}
.owl-carousel .owl-dot.active span {
  background-color: #1b4b83 !important;
}

.propertyCard {
  position: relative;
  border-radius: 0.3125rem;
  background: #fff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.propertyCard a {
  text-decoration: none;
}
.propertyCard__img {
  height: 18.75rem;
  width: 100%;
  overflow: hidden;
}
.propertyCard__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.propertyCard__content {
  padding: 1rem;
}
.propertyCard__content .type {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
}
.propertyCard__content .title {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.propertyCard__content .location {
  color: #64748b;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.propertyCard__content .price {
  color: #F97316;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.propertyCard__content .info {
  padding: 0;
  margin: 0;
}
.propertyCard__content .info li {
  list-style: none;
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
}
.propertyCard__content .info li img {
  height: 1.1875rem;
  width: 1.1875rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  display: inline-block;
}
.propertyCard__content .info li span {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 400;
}
.propertyCard__content .l__button {
  padding: 0.5rem 2rem;
  margin-top: 0.4375rem;
}
.propertyCard:hover img {
  transform: scale(1.05);
}
.propertyCard:hover .title {
  color: #F97316;
}

.iconCard {
  text-align: center;
}
.iconCard__card {
  border-radius: 0.625rem;
  text-align: center;
}
.iconCard__card--img {
  height: 5.5rem;
  width: 5.5rem;
  overflow: hidden;
  min-width: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-radius: 50%;
  margin: auto;
}
.iconCard__card--img img {
  height: 2.8125rem;
  width: 2.8125rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.iconCard__card--content h3 {
  margin: 1rem 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.banner {
  position: relative;
}
.banner__carousel--item {
  height: 41.25rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner__carousel--item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.banner__carousel--item::before {
  content: "";
  background: rgba(27, 77, 136, 0.6);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__carousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  border-radius: 5px 0px 0px 0px;
  background: #fff;
  padding: 0 1.75rem;
}
.banner .search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}
.banner .search h1 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
.banner .search form {
  max-width: 35.5rem;
  border-radius: 5px;
  border: 1px solid #596f88;
  background: rgba(217, 217, 217, 0.86);
  display: flex;
  margin: auto;
  padding: 0.5rem 1rem 0.5rem 0;
}
.banner .search form .form-select {
  border-right: 1px solid #9d9c9c;
  border-radius: 0;
  color: #504b4b;
  font-size: 14px;
  font-weight: 400;
  margin-right: 16px;
}
.banner .search form input {
  padding: 0;
  background-color: transparent;
  margin-right: 32px;
}
.banner .search form .form-select,
.banner .search form .form-control {
  height: auto;
  line-height: normal;
  color: #504b4b;
}
.banner .search form .form-select:focus,
.banner .search form .form-control:focus {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
}
.banner .search form .l__button--secondary {
  padding: 0.625rem 1rem;
}
.banner .banner__item {
  height: 25rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner .banner__item::after {
  content: "";
  background: rgba(27, 77, 136, 0.6);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.banner .banner__item h2,
.banner .banner__item h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 1;
  margin-bottom: 0;
}
.banner .banner__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  object-position: center;
}

.category {
  background-color: #1b4d88;
  padding: 0.5rem 0;
  position: relative;
}
.category .tags {
  background-color: #ffffff;
  padding: 0.75rem 1.75rem;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  color: #334155;
  font-size: 1rem;
  font-weight: 500;
}
.category__carousel {
  background-color: #ffffff;
  border-radius: 0.3125rem;
}
.category__carousel--item {
  padding: 20px 0;
  text-align: center;
}
.category__carousel--item a {
  text-decoration: none;
}
.category__carousel--item img {
  height: 3.625rem;
  width: 3.625rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.category__carousel--item h3 {
  color: #1e293b;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0.5rem 0 0 0;
}
.category__carousel .owl-item:nth-child(odd) {
  background-color: #d7e2f2;
}

.featured {
  background-color: rgba(241, 245, 249, 0.8980392157);
}

.about .section__title {
  margin-bottom: 8px;
}
.about .absolute {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about__img {
  border-radius: 0.625rem;
  overflow: hidden;
}
.about__img img {
  height: 24rem;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.about__content {
  border-radius: 0.625rem;
  background: #f1f5f9;
  height: 100%;
  padding: 6rem;
  padding-left: 9.375rem;
}
.about__content .content {
  margin-bottom: 2rem;
}

.cta {
  border-radius: 15px;
  background: linear-gradient(90deg, #1b4d88 0%, #071322 100%);
  padding: 4rem 0;
}
.cta .section__title h2,
.cta .section__title h5 {
  color: #ffffff;
}
.cta p {
  color: #ffffff;
}

.area__card {
  position: relative;
}
.area__card img {
  height: auto;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.area__card div {
  padding: 2.5rem 2.8125rem;
  position: absolute;
  top: 0;
  left: 0;
}
.area__card div h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  text-transform: capitalize;
}
.area__card div .l__button {
  padding: 0.625rem 1rem;
}
.area__first .area__card {
  position: relative;
}
.area__first .area__card::before {
  content: "";
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.area__first .area__card img {
  height: 20.8125rem;
}
.area__second .area__card img {
  height: 23.25rem;
}
.area__second .area__card div {
  top: auto;
  bottom: 0;
}
.area__second div:nth-child(2) div {
  bottom: auto;
  top: 0;
}
.area__second div:nth-child(3) div {
  left: auto;
  right: 0;
}

.article__box {
  background-color: #f1f5f9;
  padding: 50px;
  border-radius: 15px;
}
.article__card {
  position: relative;
}
.article__card a {
  display: block;
}
.article__card--img {
  height: 15.5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.article__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.article__card--content {
  margin: 0 1.5rem;
  background-color: #1b4d88;
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: -4.125rem;
  position: relative;
}
.article__card--content .date,
.article__card--content .text {
  color: #e2e8f0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article__card--content .date {
  font-size: 14px;
  font-weight: 400;
}
.article__card--content .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article__card--content .l__button--secopndary {
  padding: 0.5rem 0.75rem;
}

.testimonial__home {
  background: #f1f5f9;
}
.testimonial .section__title {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonial__card {
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.03);
  padding: 36px 28px;
}
.testimonial__card--content {
  margin-bottom: 22px;
}
.testimonial__card--content p {
  color: #5a5858;
}
.testimonial__card--profile {
  border-top: 1px solid #45B34A;
  padding-top: 16px;
  position: relative;
}
.testimonial__card--profile img {
  height: 52px;
  width: 52px !important;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  right: 0;
  background-color: #ffffff;
  padding: 10px;
}
.testimonial__card--profile h6 {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.testimonial__card--profile span {
  color: #7c7f81;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-transform: capitalize;
}
.testimonial__carousel .owl-dots {
  bottom: -45px;
}

.blog__card {
  border-radius: 10px;
  background: #f1f5f9;
}
.blog__card--img {
  height: 18.125rem;
  width: 100%;
  overflow: hidden;
}
.blog__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.blog__card--content {
  padding: 1rem;
}
.blog__card--content h3 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__card--content p {
  color: #475569;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__card--content a {
  color: #1e293b;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.blog__card:hover img {
  transform: scale(1.05);
}
.blog__detail--img {
  height: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  max-height: 31.25rem;
}
.blog__detail--img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.blog__detail--content table tbody th,
.blog__detail--content table tbody td,
.blog__detail--content table thead th,
.blog__detail--content table thead td {
  border: 1px solid #000;
  padding: 8px;
}
.blog__detail--content video,
.blog__detail--content img {
  height: auto !important;
  width: 100% !important;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.blog__detail--content .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.blog__detail--content .meta small {
  color: #0e0e0e;
  font-size: 0.875rem;
  font-weight: 400;
}
.blog__detail--content .meta span {
  color: #0e0e0e;
  font-size: 11px;
  font-weight: 500;
}
.blog__detail--content h1 {
  font-size: clamp(26px, 3vw, 32px);
}
.blog__detail--content h2 {
  font-size: clamp(24px, 3vw, 30px);
}
.blog__detail--content h3 {
  font-size: clamp(22px, 3vw, 28px);
}
.blog__detail--content h4 {
  font-size: clamp(20px, 3vw, 26px);
}
.blog__detail--content h5 {
  font-size: clamp(18px, 3vw, 24px);
}
.blog__detail--content h6 {
  font-size: clamp(16px, 3vw, 22px);
}
.blog__detail aside .blog__card--img {
  height: 10rem;
}

.faq .section__title {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.faq__accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.faq__accordion .accordion__item {
  display: block;
  margin-bottom: 15px;
  border-radius: 5px 5px 0px 0px;
}
.faq__accordion .accordion__item:last-child {
  margin-bottom: 0;
}
.faq__accordion .accordion__title {
  padding: 20px 60px 17px 20px;
  background: #f1f5f9;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0e0e0e;
  border-radius: 0.5rem;
}
.faq__accordion .accordion__title i {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  text-align: center;
  line-height: 40px;
  background-color: transparent;
}
.faq__accordion .accordion__title.active i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 15px;
}
.faq__accordion .accordion__content {
  display: none;
  position: relative;
  margin-top: -5px;
  padding: 14px 20px 27px 20px;
  border-radius: 0px 0px 5px 5px;
  background: #f1f5f9;
  margin-top: 5px;
  border-radius: 0.5rem;
}
.faq__accordion .accordion__content.show {
  display: block;
}
.faq__accordion .accordion__content p {
  line-height: 1.8;
}
.faq__accordion .accordion__content p:last-child {
  margin-bottom: 0;
}

.sort {
  margin: 38px 0;
}
.sort .search {
  border-radius: 10px;
  background: #f1f5f9;
  padding: 0.875rem 0.375rem;
}
.sort .search form .l__buttom--secondary {
  padding: 0.625rem 1rem;
}
.sort .search form .form__group {
  background-color: #dce4ee;
  border-radius: 0.625rem;
}
.sort .search form .dropdown-menu {
  width: 100%;
  padding: 0;
  max-height: 12.5rem;
  overflow-y: auto;
  z-index: 1;
}
.sort .search form .dropdown-item {
  padding: 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem;
}
.sort .search form .dropdown-item:last-child {
  border-bottom: 0;
}
.sort .search form .dropdown-toggle::after {
  font: var(--fa-font-solid);
  content: "\f078";
  border: none;
  vertical-align: 0;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  font-size: 0.8125rem;
}
.sort .form-select:focus {
  box-shadow: none;
  border-color: #cacaca;
}
.sort .offcanvas {
  position: relative;
  z-index: 2;
  visibility: visible;
  background-color: transparent;
  border: none;
}
.sort .offcanvas-end {
  width: 100%;
  transform: translateX(0);
}
.sort .offcanvas-body {
  overflow: unset;
}

.banner__collection {
  margin-top: 7.3125rem;
}
.banner__collection--img {
  height: 29rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner__collection--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.banner__collection--img .more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-decoration: none;
}
.banner__collection .row > .col:nth-child(n+5) {
  display: none;
}
.banner__collection .row > .col .banner__collection--img {
  height: 14.5rem;
}

.propertyCard__detail {
  margin-top: 2rem;
}
.propertyCard__detail .tag {
  background-color: #F97316;
  display: inline-block;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.25rem 1.25rem;
  border-radius: 0.3125rem;
  margin-bottom: 1rem;
}
.propertyCard__detail .title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.375rem;
}
.propertyCard__detail .location {
  font-size: 1rem;
  font-weight: 400;
  color: #334155;
}
.propertyCard__detail .space {
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}
.propertyCard__detail .price {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 600;
  color: #F97316;
}
.propertyCard__detail .box {
  border-radius: 10px;
  background: #e2e8f0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  padding: 1.375rem 1.25rem;
  margin-top: 1.5rem;
}
.propertyCard__detail .box h3 {
  color: #334155;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.propertyCard__detail .box.detail ul {
  padding: 0;
  margin: 0;
}
.propertyCard__detail .box.detail ul li {
  list-style: none;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.3125rem;
  padding-bottom: 0.3125rem;
}
.propertyCard__detail .box.detail ul li strong {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
}
.propertyCard__detail .box.video iframe {
  height: 25rem;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.propertyCard__detail .overview__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
  background-color: #ffffff;
  height: 100%;
  border-radius: 0.3125rem;
  text-align: center;
  padding: 1rem;
}
.propertyCard__detail .overview__box span {
  color: #334155;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 500;
}
.propertyCard__detail .overview__box img {
  height: 1.5rem;
  width: 1.5rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.propertyCard__detail--enquiry {
  border-radius: 10px;
  background: #1b4b83;
  padding: 2rem 1.5rem;
  position: sticky;
  top: 90px;
}
.propertyCard__detail--enquiry .head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.propertyCard__detail--enquiry .head .logo {
  height: 5.5rem;
  width: 5.5rem;
  overflow: hidden;
  border-radius: 50%;
  min-width: 5.5rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.propertyCard__detail--enquiry .head .logo img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.propertyCard__detail--enquiry .head .text h5 {
  color: #f5f5f5;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.propertyCard__detail--enquiry .head .text span {
  color: #d0d3d8;
  font-size: 0.875rem;
  font-weight: 400;
}
.propertyCard__detail--enquiry .body .call {
  background-color: #143964;
  color: #ffffff;
  display: block;
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.3125rem;
  margin-bottom: 1.5rem;
}
.propertyCard__detail--enquiry .body .call a {
  color: #ffffff;
  text-decoration: none;
}
.propertyCard__detail--enquiry .body .form-control {
  background-color: #ffffff;
}
.propertyCard__detail .similar h3 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
}

.about__content .box__card {
  text-align: center;
}
.about__content .box__card--img {
  background-color: #1b4b83;
  height: 3.5rem;
  width: 3.5rem;
  overflow: hidden;
  border-radius: 50%;
  min-width: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: auto;
}
.about__content .box__card h3 {
  margin-top: 0.3125rem;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 500;
}

.mission__card {
  margin-bottom: 1.5rem;
}
.mission__card h3 {
  color: #060a17;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mission img {
  height: auto;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  max-height: 31.25rem;
  border-radius: 0.9375rem;
}

.process {
  background: linear-gradient(90deg, #1b4d88 0%, #071322 100%);
}
.process .section__title {
  display: block;
  text-align: center;
}
.process .section__title h5,
.process .section__title h2 {
  color: #ffffff;
}
.process .iconCard__card {
  padding: 2rem 1.5rem;
  background: #22599a;
}
.process .iconCard__card--img {
  background-color: #ffffff;
}
.process .iconCard__card--content h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
.process .iconCard__card--content p {
  color: #bec1c6;
}

.provide .iconCard__card {
  background-color: #f1f5f9;
  padding: 20px;
}
.provide .iconCard__card--img {
  height: 4.5rem;
  width: 4.5rem;
  overflow: hidden;
  border-radius: 0;
}
.provide .iconCard__card--img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.provide .iconCard__card--content h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
}

.team {
  background: #f1f5f9;
}
.team__box {
  border-radius: 10px;
}
.team__card {
  border-radius: 0.9375rem;
  background: #f0e9e9;
  overflow: hidden;
}
.team__card--img {
  height: auto;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.team__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.team__card--content {
  text-align: center;
  padding: 1rem;
}
.team__card--content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0;
}
.team__card--content span {
  font-size: 1rem;
  font-weight: 400;
  color: #334155;
}

.contact {
  border-radius: 15px;
  border: 1px solid #96e2e5;
  background: #fff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 11px 0;
  margin-bottom: 11px;
}
.contact__content {
  padding: 104px 53px 94px 0;
}
.contact__content .title {
  color: #151b30;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 26px;
  text-transform: capitalize;
}
.contact__content .title span {
  color: #F97316;
}
.contact__content p {
  color: #0e0e0e;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 37px;
}
.contact__content ul {
  padding: 0;
  margin: 0;
}
.contact__content ul .info {
  margin-top: 0;
  background-image: none;
  padding: 0;
  padding-left: 3px;
}
.contact__content ul .info::before {
  display: none;
}
.contact__content ul .info_card {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 19px;
  margin-bottom: 24px;
}
.contact__content ul .info_card .icon {
  height: 58px;
  width: 58px;
  overflow: hidden;
  border-radius: 50%;
  min-width: 58px;
  line-height: 58px;
  text-align: center;
  background-color: #F97316;
}
.contact__content ul .info_card .info h6 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
.contact__content ul .info_card .info span {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.contact__content ul .info_card .info span a {
  text-decoration: none;
  color: #000000;
}
.contact__content form h2 {
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 31px;
}
.contact__content form .form-floating {
  margin-bottom: 34px;
}
.contact__content form .form-floating .form-control {
  border-radius: 3px;
  border: 1px solid #ededed;
  background: #fff;
}
.contact__content form .form-floating label {
  font-size: 14px;
  font-weight: 400;
  color: #1e1818;
}
.contact__content form .form-floating label span {
  color: #eb5757;
}
.contact__content form .form-floating textarea {
  height: 166px;
}
.contact__content form .l__button--primary {
  padding: 9px 36px;
  border-radius: 5px;
}

.map iframe {
  height: 398px;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 15px;
}

.custom {
  padding: 1.25rem 0.625rem;
}

.price-input {
  width: 100%;
  margin-top: 0.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.price-input input {
  width: 50%;
  border: none;
}
.price-input input[type=number]::-webkit-outer-spin-button, .price-input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input input.input-max {
  text-align: right;
}

.slider {
  height: 5px;
  position: relative;
  background: #F97316;
  border-radius: 5px;
}
.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #F97316;
}

.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #F97316;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.range-input input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #F97316;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.share ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
  position: relative;
}
.share ul li.msg {
  width: 100%;
  height: auto;
  border: none;
  display: none;
}
.share ul li.msg .custom__alert {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: normal;
  border: none;
}
.share ul li.msg .custom__alert::before {
  font: var(--fa-font-solid);
  content: "\f0d7";
  position: absolute;
  bottom: -0.5625rem;
  right: 1.375rem;
  color: #d1e7dd;
}
.share ul li a {
  height: 2rem;
  width: 2rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: #1b4b83;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: #ffffff;
  text-decoration: none;
}
.share ul li a i {
  color: #ffffff;
}

.properties__search form {
  border-radius: 10px;
  background: #f1f5f9;
  padding: 0.875rem;
  margin: auto;
}
.properties__search form .form-select,
.properties__search form .form-control {
  border-radius: 10px;
  border: 1px solid #cacaca;
  background-color: #dce4ee;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
}

.breadcrumb {
  margin-top: 5rem;
}

.video__card {
  position: relative;
}
.video__card--img {
  height: 31.25rem;
  width: 100%;
  overflow: hidden;
}
.video__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  display: block;
}
.video__card .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F97316;
  height: 5rem;
  width: 5rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 1px solid #F97316;
}
.video__card .icon i {
  color: #F97316;
  font-size: 2.5rem;
}

.audio__box {
  display: none;
}
.audio__card {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  padding: 3.125rem 6.25rem;
}
.audio__card .icon {
  background-color: #ffffff;
  height: 6.8125rem;
  width: 6.8125rem;
  overflow: hidden;
  min-width: 6.8125rem;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.audio__card .sound {
  width: 100%;
  background-color: #ffffff;
  padding: 1.5rem;
}
.audio__card .sound audio {
  width: 100%;
}

@media (max-width: 1260px) {
  .about__content {
    padding-right: 3rem;
    padding-left: 7rem;
  }
  .article__box {
    padding: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .header .navbar-nav {
    gap: 1.25rem;
  }
  .header .right .l__button--secondary {
    padding-inline: 1.125rem;
  }
}
@media (max-width: 1100px) {
  .process .iconCard__card {
    padding: 1rem;
  }
  .propertyCard__detail--enquiry .head {
    flex-direction: column;
  }
  .article__box {
    padding: 1.875rem;
  }
}
@media all and (max-width: 1024px) {
  .m__tb {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .m__tb--t {
    margin-top: 60px;
  }
  .m__tb--b {
    margin-bottom: 60px;
  }
  .p__tb {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p__tb--t {
    padding-top: 60px;
  }
  .p__tb--b {
    padding-bottom: 60px;
  }
  .header .navbar-nav {
    gap: 1.25rem;
  }
  .article__box {
    padding: 1.5rem;
  }
}
@media all and (max-width: 991px) {
  body {
    font-size: 15px;
  }
  .header .navbar {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3019607843);
  }
  .header .navbar-nav {
    gap: 10px;
    align-items: flex-start;
  }
  .header .navbar .nav-item {
    width: 100%;
  }
  .header .navbar .nav-link {
    color: #000000 !important;
    padding: 0;
  }
  .header .navbar .nav-link.accordion-button::after {
    border: none;
    font: var(--fa-font-solid);
    content: "\f078";
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .header .navbar .nav-link.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none;
  }
  .header .navbar .nav-item ul {
    padding-left: 20px;
  }
  .header .navbar .nav-item ul li {
    list-style: none;
    margin: 5px 0;
  }
  .about .absolute {
    position: relative;
    transform: translateY(0);
  }
  .about__content {
    padding: 3rem;
  }
  .cta {
    padding: 4rem;
  }
  .cta p {
    margin-bottom: 1rem !important;
  }
  .area__second .area__card img {
    height: 17rem;
  }
  .contact__content {
    padding: 25px;
  }
  .sort .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
  .sort .offcanvas-end {
    width: 400px;
    transform: translateX(100%);
  }
  .sort .offcanvas-end.show {
    transform: none;
  }
  .sort .offcanvas-body .dropdown-toggle {
    border: none;
    background-color: #ffffff;
    border-radius: 0;
    padding: 0;
    height: auto;
    line-height: normal;
    font-weight: 600;
  }
  .sort .offcanvas-body .dropdown-menu {
    position: relative;
    display: block;
    border: none;
    border-radius: 0;
    padding-left: 1rem !important;
  }
  .sort .offcanvas-body .dropdown-item {
    padding: 0.5rem 0 !important;
    border: 0;
  }
  .banner__collection {
    margin-top: 4rem;
  }
  .video__card--img {
    height: 100%;
  }
  .audio__card {
    padding: 3.125rem;
  }
  .audio__card .icon {
    display: none;
  }
}
@media (max-width: 850px) {
  .m__tb {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .m__tb--t {
    margin-top: 45px;
  }
  .m__tb--b {
    margin-bottom: 45px;
  }
  .m .p {
    padding: 30px;
  }
  .m .p__tb {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .m .p__tb--t {
    padding-top: 45px;
  }
  .m .p__tb--b {
    padding-bottom: 45px;
  }
  .m .section__title {
    margin-bottom: 20px;
  }
  .m .academic__bg {
    padding: 30px 20px;
  }
  .p__tb {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .p__tb--t {
    padding-top: 45px;
  }
  .p__tb--b {
    padding-bottom: 45px;
  }
  .p .p__tb {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p .p__tb--t {
    padding-top: 50px;
  }
  .p .p__tb--b {
    padding-bottom: 50px;
  }
  .p p {
    text-align: justify;
  }
  .p .header__top {
    flex-direction: column;
  }
  .p .header .navbar-nav .dropdown .icon.panel + .dropdown-menu {
    display: block;
  }
  .p .header .navbar-nav .dropdown-menu li .sub_menu {
    position: relative;
    left: 0;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  .p .header .navbar-nav .dropdown-menu li .icon.panel + .sub_menu {
    display: block;
  }
  .p .header .dropdown-toggle::after {
    display: none;
  }
  .p .banner__card--img::before {
    width: 100%;
  }
  .p .news .sidemenu {
    margin-top: 0;
  }
  .p .news .sidemenu__body .info__card p {
    text-align: center;
  }
  .section__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .m__tb {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .m__tb--t {
    margin-top: 50px;
  }
  .m__tb--b {
    margin-bottom: 50px;
  }
  .p__tb {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p__tb--t {
    padding-top: 50px;
  }
  .p__tb--b {
    padding-bottom: 50px;
  }
  p {
    text-align: justify;
  }
  .section__title h1,
  .section__title h2 {
    line-height: 32px;
  }
  .header__top {
    flex-direction: column;
  }
  .header .navbar__custom {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header .navbar .nav-item {
    width: 100%;
  }
  .header .navbar-nav .dropdown .icon.panel + .dropdown-menu {
    display: block;
  }
  .header .navbar-nav .dropdown-menu li .sub_menu {
    position: relative;
    left: 0;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  .header .navbar-nav .dropdown-menu li .icon.panel + .sub_menu {
    display: block;
  }
  .header .dropdown-toggle::after {
    display: none;
  }
  .footer {
    padding: 2rem 0;
  }
  .footer .subscribe {
    padding-bottom: 0;
  }
  .footer .box {
    margin-bottom: 0.75rem;
  }
  .footer .box h4 {
    margin-bottom: 0.5rem;
  }
  .banner .search form {
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem;
  }
  .banner .search form .form-control,
  .banner .search form .form-select {
    height: 3.125rem;
    line-height: 3.125rem;
    border: 1px solid #504b4b;
    border-radius: 6px;
    padding: 0 10px;
    margin-right: 0;
  }
  .banner .search form .form-control:focus,
  .banner .search form .form-select:focus {
    border: 1px solid #504b4b;
  }
  .about__img img {
    height: 14rem;
  }
  .about__content {
    padding: 1rem;
  }
  .cta {
    padding: 2rem;
  }
  .area__card img {
    height: 17rem;
  }
  .area__second .area__card div {
    top: 0;
    bottom: auto;
  }
  .area__second div:nth-child(3) div {
    right: auto;
    left: 0;
  }
  .article__box {
    padding: 2rem;
  }
  .contact__content {
    padding: 20px;
  }
  .contact__content .title {
    font-size: 24px;
  }
  .banner__collection--img {
    height: 20rem;
  }
  .banner__collection .row > .col .banner__collection--img {
    height: 10rem;
  }
  .propertyCard__detail .price {
    text-align: left;
  }
  .propertyCard__detail .box {
    padding: 1rem;
  }
  .propertyCard__detail .box.video iframe {
    height: 14rem;
  }
  .mb__whatsapp {
    bottom: 4%;
  }
  .mb__whatsapp a img {
    height: 3rem;
    width: 3rem;
    overflow: hidden;
  }
  .testimonial {
    padding-bottom: 3.125rem;
  }
  .team__carousel {
    padding-inline: 1rem;
  }
  .video__card--img {
    height: auto;
  }
  .audio__card {
    padding: 1.125rem;
    gap: 1rem;
  }
  .audio__card .sound {
    padding: 1rem;
  }
  .audio__card .icon {
    height: 5.75rem;
    width: 5.75rem;
    overflow: hidden;
    min-width: 5.75rem;
  }
  .audio__card .icon svg {
    height: 3.125rem;
    width: 3.125rem;
    object-fit: contain;
    transition: all 0.5s ease;
    display: block;
  }
}
@media (max-width: 650px) {
  .article__box {
    padding: 1rem;
    padding-bottom: 2.1875rem;
  }
}
@media (max-width: 575px) {
  .header .navbar-brand img {
    height: 1.75rem;
    width: 150px;
  }
  .header .navbar-toggler,
  .header .navbar .mb__lang--btn {
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .banner__collection--img {
    height: 16rem;
  }
  .banner__collection .row > .col .banner__collection--img {
    height: 8rem;
  }
  .article__card--content {
    margin-inline: 0.9rem;
    padding: 0.9rem;
  }
}
@media (max-width: 436px) {
  .m__tb {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .m__tb--t {
    margin-top: 35px;
  }
  .m__tb--b {
    margin-bottom: 35px;
  }
  .p__tb {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .p__tb--t {
    padding-top: 35px;
  }
  .p__tb--b {
    padding-bottom: 35px;
  }
}
@media (max-width: 350px) {
  .m__tb {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .m__tb--t {
    margin-top: 35px;
  }
  .m__tb--b {
    margin-bottom: 35px;
  }
  .p__tb {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .p__tb--t {
    padding-top: 35px;
  }
  .p__tb--b {
    padding-bottom: 35px;
  }
}

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