/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); font-family: 'Poppins', sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap");

body {
  font-family: "Nunito", sans-serif;
}
img {
  width: 100%;
  height: auto;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f26841;
  --bs-btn-border-color: #f26841;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d85935;
  --bs-btn-hover-border-color: #c54e2d;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c54e2d;
  --bs-btn-active-border-color: #c54e2d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f26841;
  --bs-btn-disabled-border-color: #f26841;
}

.btn-outline-primary {
  --bs-btn-color: #f26841;
  --bs-btn-border-color: #f26841;
  --bs-btn-hover-color: #f26841;
  --bs-btn-hover-bg: #fef0ec;
  --bs-btn-hover-border-color: #f26841;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #f26841;
  --bs-btn-active-bg: #fef0ec;
  --bs-btn-active-border-color: #f26841;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f26841;
  --bs-btn-disabled-bg: #fef0ec;
  --bs-btn-disabled-border-color: #f26841;
  --bs-gradient: none;
  --bs-btn-bg: #fff;
  --bs-btn-font-weight: 500;
}

.btn-light.outline{
  border-color: #3A536C;
}



.pagination {
  --bs-pagination-color: #FA4616;
  --bs-pagination-hover-color: #FA4616;
  --bs-pagination-hover-bg: #F6F6F6;
}
.page-link:focus {
  z-index: 3;
  color: #FA4616;
  background-color: #fed9d9;
  outline: 0;
  box-shadow: none;
}
.active>.page-link, .page-link.active{
  background-color: #FA4616;
  border-color: #FA4616;
}







.breadcrumb {
  --bs-breadcrumb-divider: ">";
  --bs-breadcrumb-item-active-color: #f26841;
  --bs-breadcrumb-item-padding-x: 1rem;
  --bs-breadcrumb-padding-y: 0.75rem;
}
.primary_bg {
  background-color: #f26841 !important;
}
.primary_light_bg{
  background-color: #fefbf9 !important;
}

.secondary_bg {
  background-color: #365069 !important;
}
.secondary_light_bg {
  background-color: #F4F4F4 !important;
}


.primary_clr {
  color: #f26841 !important;
}

.secondary_clr {
  color: #365069 !important;
}

.text_justify {
  text-align: justify !important;
}

.navbar-nav {
  --bs-nav-link-color: #fff;
  --bs-nav-link-font-size: 1rem;
  --bs-nav-link-font-weight: 800;
  --bs-nav-link-color: rgb(51 51 51);
  --bs-navbar-active-color: rgb(51 51 51);

}

.navbar {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  height: 112px;
  background-color: #184E7D;
  line-height: 1.5;
  padding: 0;
}

.wrapper {
  padding-top: 112px;
}

.nav_link_btn {
  font-size: 1rem;
  font-weight: 800;
  height: 38px;
  min-width: 70px;
  border-radius: 6px;
  padding: 12px 3px 12px 15px;
  border: 1px solid #F26E24;
  background-color: #F26E24;
  color: #fff;
}

.nav_link_btn > img {
  vertical-align: middle;
}

/* .nav_link_btn:hover > img{
  filter: brightness(0) saturate(100%) invert(21%) sepia(76%) saturate(1202%) hue-rotate(180deg) brightness(91%) contrast(85%);
} */

.sub_menu {
  background-color: rgb(239 239 239);
}

.sub_menu_link {
  padding-right: 25px !important;
  position: relative;
}

    .sub_menu_link::after,
    .sub_menu_list_title::after {
        /* content: "";
  width: 20px;
  height: 20px;
  background-image: url("../icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.5s; */
        content: "";
        display: inline-block;
        position: absolute;
        top: 36%;
        right: 5px;
        transform: rotate( 315deg);
        width: 10px;
        height: 10px;
        border: 2px solid currentcolor;
        border-radius: 0 3px 0 0;
        border-width: 2px 2px 0 0;
        transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
        background-image: none;
    }

.collapsed.sub_menu_link::after,
.collapsed.sub_menu_list_title::after {
   transform: rotate(135deg);
}

ul.sub_menu_list {
  list-style: none;
  padding-left: 30px;
}

ul.sub_menu_list > li {
  margin-bottom: 12px;
  position: relative;
  color: rgb(51 51 51);
}

ul.sub_menu_list > li > a {
  text-decoration: none;
  /* font-size: 0.875rem; */
  line-height: 1.25rem;
  color: rgb(51 51 51);
  font-weight: 400;
}

ul.sub_menu_list > li > a:hover {
  color: rgb(242 104 65);
}



.sub_menu_list_title {
    position: relative;
    padding: 0.5rem 0.5rem 0.5rem 30px;
    pointer-events: all;
}

.sub_menu_list_wrapp {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sub_menu_list_wrapp > a {
  text-decoration: none;
  color: rgb(51 51 51);
  font-weight: 600;
  padding: 0.5rem;
  display: inline-block;
  width: 100%;
}

.sub_menu_list_title.collapsed:last-child {
  border-bottom: none !important;
}

.sub_menu_list_title .nav_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 8px;
}
ul.sub_menu_with_icon{
  padding-left: 0;
}
ul.sub_menu_with_icon li{
  margin-bottom: 0;
}

.sub_menu_list_title .nav_icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav_with_icon{
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 30px;
}
.nav_with_icon .nav_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}
ul.sub_menu_list > li > a.nav_with_icon{
  font-size: 16px;
  display: inline-block;
}

.custom-logo-link {
  width: 108px;
  height: 58px;
  display: inline-block;
  margin-top: -4px;
}

.custom-logo-link > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

 .navbar-collapse {
  background-color: transparent;
} 

.hamburger {
  flex-wrap: wrap;
  display: inline-flex;
  justify-content: center;
  padding: 5px;
  align-items: center;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #ffffff;
}

.hamburger .line {
  width: 30px;
  height: 2px;
  background-color: #ecf0f1;
  margin: 0 !important;
}

.body_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

.footer_logo {
  display: inline-block;
  max-width: 90px;
}
.footer_logo > img {
  width: 100%;
  height: auto;
}
footer .link {
  text-decoration: none;
  color: #fff;
}
footer .border-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}
footer .footer_nav_links {
  list-style: none;
  padding: 0;
}
footer .footer_nav_links li {
  margin-bottom: 0.5rem;
}
footer .footer_nav_links li > .title {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
  width: 100%;
}
footer .footer_nav_links li > a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 300;
}
.social_link {
  display: inline-block;
  width: 2.5rem;
  height: auto;
  margin: 0 3rem;
}
.social_link > img {
  width: 100%;
  height: auto;
}

.breadcrumb .breadcrumb-item {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.breadcrumb .breadcrumb-item > a {
  text-decoration: none;
  color: rgb(102 102 102);
}


.banner{
  height: 30vw;
  min-height: 350px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

}
.small_banner {
  height: 240px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.container.container_space {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.carousel-indicators {
  bottom: -45px;
  opacity: 1;
}
.carousel-indicators [data-bs-target] {
  background-color: #868686;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: #f26841;
}

.paragraph p {
  font-size: 1.1rem;
  margin-top: 1rem;
}
.paragraph a {
  color: #f26841;
}
.paragraph h1,
.paragraph h2,
.paragraph h3,
.paragraph h4,
.paragraph h5,
.paragraph h6 {
  font-weight: 700;
}




/*Blog CSS Start*/

ul.blogManu {
    margin: 0;
    display: flex;
    width: 100%;
    max-width: 100%;
    vertical-align: top;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    padding-top: 8px;
    list-style: none;
    justify-content: space-between;
  }
  
  ul.blogManu li {
    padding: 0;
    margin:0 10px;
    position: relative;
    text-align: center;
    width: 100%;
  }
  
  ul.blogManu li:before {
    content: "";
    width: 2px;
    height: 15px;
    position: absolute;
    left: -12px;
    top: 50%;
    background-color: #283645;
    transform: translateY(-50%);
    pointer-events: none;
  }
  
  ul.blogManu li:first-child::before,
  ul.blogManu li:has(> a.active)::before,
  ul.blogManu li:has(> a.active) + li::before {
    display: none;
  }
  
  ul.blogManu li a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 24px;
    color: #283645;
    text-decoration: none !important;
    cursor: pointer;
    -webkit-transition: all ease 0.15s;
    transition: all ease 0.15s;
    border-radius: 6px;
    width: 100%;
  }
  
  ul.blogManu li a:hover {
    background: #efefef;
  }
  
  ul.blogManu li a.active {
    background: #ef4023;
    color: #fff !important;
  }
  
  ul.blogManu li a.active {
    cursor: default;
  }
  
  ul.blogManu li:first-child {
    margin-left: 0;
  }
  
  ul.blogManu li:first-child a {

  }
  
  ul.blogManu li .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-align: center;
    list-style: 48px;
  }
  
  ul.blogManu li .icon > img {
    width: 40%;
    height: 40%;
    object-fit: contain;
    object-position: center center;
  }
  
  ul.blogManu li .active .icon > img {
    filter: brightness(100);
  }
  
  .blogSearch {
    width: 90%;
    max-width: 840px;
    margin: auto;
    padding: 30px 0;
  }
  
  .searchIcon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
    z-index: 3;
  }
  
  .searchIcon::after {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 22px;
    line-height: 46px;
    color: #908d8d;
    vertical-align: middle;
    padding-left: 14px;
  }
  
  .blogSearch .form-control {
    padding-left: 3rem;
    background-color: #f6f6f6;
    border-color: #f6f6f6;
  }
  
  .blogSection_title {
    padding: 20px 0 10px 0;
  }
  
  .linkCard {
    text-decoration: none !important;
    cursor: pointer;
    background-position: center;
    transition: background 0.8s;
  }
  
  .blogCard {
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 1rem;
    padding: 0;
    margin-left: 3px;
    margin-right: 3px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
  }
  
  .blogCard:hover {
    background: #f7f7f7;
    box-shadow: 0px 2px 7px #0000005e;
  }
  
  .blogCard .image {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    height: 200px;
  }
  
  .blogCard .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blogCard .image .blogCateg {
    background: #ee5339;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 6px 12px 6px 12px;
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-weight: 600;
  }
  
  .blogCard .figcaption {
    width: 100%;
    padding: 16px;
    position: relative;
  }
  
  .blogCard .figcaption .title {
    color: #283645;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 56px;
  }
  
  .blogCard:hover .figcaption .title {
    color: #ee5339;
  }
  
  .blogCard .figcaption .text {
    color: #000;
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
  }
  
  .blogCard .figcaption .cardInfo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .blogCard .figcaption .cardInfo .date {
    font-size: 14px;
    color: #000;
    font-weight: 300;
  }
  
  .cardInfo .blogBtn > span {
    display: block;
    border-radius: 10px;
    border: none;
    padding: 6px 10px;
    color: #ee5339;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
  }
  
  .cardInfo .blogBtn > span::after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding-left: 8px;
  }
  
  .cardInfo .blogBtn > span:hover {
    background-color: #0b1d2d;
    color: #fff;
    box-shadow: none;
  }
  
  .blogSection_last {
    color: #fff;
    padding: 30px 0 50px 0;
  }
  
  .blogSection_last .section_title {
    padding-bottom: 30px;
  }
  
  .blogBottom_carousel.owl-carousel .owl-stage {
    display: flex;
  }
  
  .blogBottom_carousel.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
  }
  
  .blogBottom_carousel .owl-dots {
    right: 50px;
  }
  
  .blogBottom_carousel .blogCard {
    margin-left: 30px;
    margin-right: 30px;
  }
  
  /* ------- Blog Ctategory Page CSS --------- */
  
  .blogFilterWrap,
  .blogCategWrap {
    padding: 15px 0;
  }
  
  .blogFilterWrap .container,
  .blogCategWrap .container {
    width: 100%;
  }
  
  .blogCategWrap {
    padding: 30px 0;
  }
  
  .blogCategWrap .blogCard {
    margin-bottom: 40px;
  }
  
  .blogFilter {
    display: -webkit-flex;
    display: flex;
    align-items: center;
  }
  
  .blogFilter > .button-group {
    margin: 0;
    display: -webkit-flex;
    display: flex;
    width: auto;
    max-width: 100%;
    vertical-align: top;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    /* padding-top: 8px;
      padding-bottom: 8px; */
  }
  
  .blogFilter > .button-group button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 19px;
    border-radius: 0;
    color: #283645;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    background-color: transparent;
    border-right: 1px solid #dee2e6;
  }
  
  .blogFilter > .button-group button:last-child {
    border-right: none;
  }
  
  .blogFilter > .button-group button:hover {
    text-decoration: underline !important;
  }
  
  .blogFilter > .button-group button:focus {
    outline: 0 dotted;
    outline: 0 auto -webkit-focus-ring-color;
  }
  
  .blogFilter > .button-group button.is-checked {
    color: #ef4023;
    cursor: default;
  }
  
  .blogFilter > .button-group button.active:hover {
    text-decoration: none !important;
  }
  
  .object_over {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
  }
  
  .object_over.left {
    object-position: left center;
  }
  
  .article_card {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 2px 2px 12px #21252929;
    background: #fff;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #000;
  }
  
  .article_card .article_caption {
    padding: 1rem;
  }
  
  .blog_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
    line-height: 1.3;
    font-weight: 400 !important;
    color: #333333;
    font-size: 1.3rem;
    font-weight: 600 !important;
  }
  
  .article_card .article_caption p {
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .article_card .tags {
    width: 100%;
    display: inline-block;
  }
  
  .article_card .tag {
    font-size: 14px;
    padding: 8px 10px;
    font-weight: 600;
    display: inline-block;
    color: #ffffff;
    background: #f26841;
    border-radius: 6px;
    float: left;
    margin-right: 8px;
  }
  
  .article_card .article_img .tags {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 100%;
    padding: 10px;
  }
  
  .article_card .article_img .tags .tag {
    font-size: 10px;
    padding: 6px 8px;
  }
  
  .article_card .btn.btn-link {
    background: none !important;
    text-decoration: none;
    border: none;
    color: #f26841;
    font-size: 18px;
    padding: 0;
    box-shadow: none !important;
    font-weight: bold;
  }
  
  .article_card.horizontal {
    display: flex;
    align-items: center;
  }
  
  .article_card.horizontal .article_img {
    width: 35%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
  }
  
  .article_card.horizontal .article_caption {
    width: 65%;
  }

  

  .builders_card {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 2px 2px 12px #21252929;
    background: #fefbf9;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
  }
  
  .builders_card .builders_card_caption {
    margin-bottom: 1rem;
    width: 100%;
  }

  .builders_card .builders_card_img{
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    margin-top: auto;
  }
  .builders_card .builders_card_img .caption{
      padding: 1rem;
      color: #fff;
  }
  
  .trending_articles {
    padding: 12px;
    background: #fff;
    box-shadow: 2px 2px 12px #21252929;
    border-radius: 1rem;
  }
  
  .shadow_none {
    box-shadow: none !important;
  }
  
  .clr_dark {
    color: #333333 !important;
  }
  
  .gradient_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    );
    z-index: 6;
  }
  
  .card.bg_card {
    border: none;
    border-radius: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .tag_btn {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 24px;
    color: #365069;
    cursor: pointer;
    border: 1px solid #365069;
    background-color: #ffffff;
    -webkit-transition: all ease 0.15s;
    transition: all ease 0.15s;
    border-radius: 25px;
    float: left;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    text-decoration: none !important;
    font-weight: 600;
  }
  
  .tag_btn:hover {
    color: #365069;
    background-color: #eff6ff;
  }
  
  .tag_btn.active {
    background-color: #365069;
    color: #ffffff;
  }
  
  .story_card {
    padding: 70% 0;
    position: relative;
  }
  
  .story_card * {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /*Blog CSS End*/

  .text-primary{
    color: #F26841 !important
  }

.icon_card{
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 1px 4px 2px rgba(0, 0, 0, .2);
  text-decoration: none;
}
.icon_card:hover{
  background-color: #ffe2da;
}

.icon_card .pv_icon{

}
.icon_card .caption{

}

.pv_icon{
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  -webkit-flex-shrink: 0 !important;
  flex-shrink: 0 !important;
}
.pv_icon.bordered{
  border: 1px solid #dddddd;
}
.pv_icon.xxxl{
  width: 100px;
  height: 100px;
}
.pv_icon.xxl{
  width: 70px;
  height: 70px;
}
.pv_icon.xl{
  width: 60px;
  height: 60px;
}
.pv_icon.lg{
  width: 50px;
  height: 50px;
}
.pv_icon.md{
  width: 30px;
  height: 30px;
}
.pv_icon.sm{
  width: 22px;
  height: 22px;
}
.pv_icon.xs{
  width: 16px;
  height: 16px;
}

.pv_icon > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: none;
  vertical-align: top;
}


.horizontal_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
}
.horizontal_list>li{
  margin: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
}

.horizontal_list>li:first-child{
  margin-left: 0;
}
.horizontal_list.large_space >li{ margin:0 3rem 3rem 0;}

.propertyListing{
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}
.propertyListing .swiper-slide{
  padding: 1rem;
}

.swiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background-color: #F26842;
  opacity: 0.4;
}
.swiper .swiper-pagination-bullet-active{
  background-color: #F26842 !important;
  opacity: 1 !important;
}

.swiper .static.swiper-pagination{
  position: relative;
  margin-top: 1rem;
}



.s_tabs_wrapper > .s_tabs {
}
.s_tabs_wrapper > .s_tabs > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: auto;
  white-space: nowrap;
  display: -webkit-flex;
  display: flex;
  border-radius: 6px;
  padding-bottom: 14px;
}
.s_tabs_wrapper > .s_tabs > ul > li {
  display: inline-block;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: auto;
  text-align: center;
  padding: 0 4px;
}
.s_tabs_wrapper > .s_tabs  ul > li:first-child{
padding-left: 0;
}
.s_tabs_wrapper > .s_tabs  ul > li:last-child{
  padding-right: 0;
  }

.s_tabs_wrapper > .s_tabs.inline > ul > li{
  -webkit-flex: inherit;
  flex: inherit;
  position: relative;
  margin-right: 0.5rem;
}
.s_tabs_wrapper > .s_tabs.inline > ul > li::before{
  content: '';
  width: 1px;
  height: 10px;
  background-color: #000;
  position: absolute;
  left:-0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.s_tabs_wrapper > .s_tabs.inline > ul > li:first-child::before{
  display: none;
}


.s_tabs_wrapper > .s_tabs > ul > li > .s_tab {
  display: inline-block;
  font-size: 15px;
  padding: 6px 16px;
  border: 1px solid transparent;
  width: 100%;
  text-decoration: none;
  border-radius: 6px;
  color: #000;
  position: relative;
}
.s_tabs_wrapper > .s_tabs > ul > li > .s_tab:hover {
  background: #ffe2da;
  border-color: #ffe2da;
}
.s_tabs_wrapper > .s_tabs > ul > li > .s_tab.active {
  background: #F26841;
  color: #ffffff;
  border-color: #F26841;
}


.s_tabs_content {
  margin-top: 12px;
  border-radius: 6px;
  overflow: hidden;
}
.s_tabs_content > .s_tab_content {
  display: none;
}
.s_tabs_content > .s_tab_content:first-child {
  display: block;
}


.s_tabs_wrapper.bordered{
  
}
.s_tabs_wrapper.bordered > .s_tabs{
  border-bottom: 1px solid #E6E6E6;
}
.s_tabs_wrapper.bordered > .s_tabs > ul{
  padding-bottom: 0;
  border-radius: 0;
}
.s_tabs_wrapper.bordered > .s_tabs > ul > li > .s_tab{
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
}
.s_tabs_wrapper.bordered > .s_tabs > ul > li > .s_tab:hover{
  background-color: transparent;
  border-bottom-color: #ffc2b1;
}
.s_tabs_wrapper.bordered > .s_tabs > ul > li > .s_tab.active{
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #F26841;
  color: #F26841;
}
.s_tabs_wrapper.bordered > .s_tabs.inline > ul > li::before{
display: none;
}

.fs-7{
  font-size: 0.75rem;
  line-height: 1.3;
}
.property_image_gallery{
background-color: rgba(0, 0, 0, .2);
}


.sticy_section{

  position: sticky;
  top: 112px;
  z-index: 9;
  box-shadow:0 1px 4px rgba(0,0,0,0.05);
}

.label_card{
  background-color: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 0.5rem;
  width:300px;
  font-size: 0.8rem;
}
.label_card>*{
  flex-shrink: 0;
}
.horizontal_scroll{
  width: 100%;
  position: relative;
}
.horizontal_scroll > ul{
  list-style: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  padding: 12px 0;
}
.horizontal_scroll > ul > li{
  margin-right: 0.5rem;
}
.horizontal_scroll > ul > li:last-child{
  margin-right: 0;
}

.horizontal_scroll > .left-arrow,.horizontal_scroll > .right-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1);
  position: absolute;
  right: -12.5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  
  cursor: pointer;
}
.horizontal_scroll > .left-arrow > img,.horizontal_scroll > .right-arrow > img{
  width: 45%;
}
.horizontal_scroll > .left-arrow{
  right: inherit;
  left:  -12.5px;
  transform: translateY(-50%) rotate(-180deg);
}

.horizontal_scroll > .left-arrow.disabled,.horizontal_scroll > .right-arrow.disabled{
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.two_line_para{
  width: 215px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 37px;
  white-space: normal;
}

.icon_box{
  display: inline-block;
  width: 100px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.3;
}
.icon_box .pv_icon{
  margin-bottom: 0.5rem;
}

.accordion {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
.accordion .accordion-item{
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}
.accordion .accordion-item:last-child{
  border-bottom: none !important;
}
.accordion .accordion-button{
  color: #000;
  padding: 1.5rem 1.25rem;
}

.accordion .accordion-button:not(.collapsed), .accordion .accordion-button:focus{
background-color: transparent !important;
box-shadow: none !important;
}
.accordion .accordion-button:not(.collapsed){
  font-weight: 700;
}

img.cover{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.download_card{
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.download_card > .caption{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.download_card img{
  transition: all ease 0.3s;
}
.download_card:hover img{ opacity: 0.6;}

.property_image_gallery{
  background-color: #F6F6F6;
  position: relative;
  height: 350px;
}
.property_image_gallery:after {
  content: 'No Property Images Available';
  width: 200px;
  height: 200px;
  background-image: url(../icons/property-color.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 54%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(0, 0, 0, .5);
  z-index: 0;
}

.gallery_items {
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  background-color: #ffffff;
}
.gallery_items .items_wrap {
  position: relative;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  left: -5px;
  top: -5px;
}
.gallery_items .items_wrap .item {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: none;
  padding: 5px;
}
.gallery_items .items_wrap .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: opacity ease 0.25s;
}
.gallery_items .items_wrap .item img:hover {
  opacity: 0.8;
}
.gallery_items .items_wrap .item:first-child {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 66.66%;
  height: 100%;
}
.gallery_items .items_wrap .item:nth-child(2) {
  display: block;
  position: absolute;
  left: 66.66%;
  right: inherit;
  top: 0;
  width: 33.33%;
  height: 50%;
}
.gallery_items .items_wrap .item:nth-child(3) {
  display: block;
  position: absolute;
  left: 66.66%;
  right: inherit;
  top: 50%;
  bottom: inherit;
  width: 33.33%;
  height: 50%;
}
.gallery_items:not(.items-1):not(.items-2):not(.items-3) .items_wrap .item:nth-child(3):after {
  content: 'More';
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  pointer-events: none;
}
.gallery_items.items-2 .items_wrap .item:nth-child(2) {
  height: 100%;
}
.gallery_items.items-1 .items_wrap .item:first-child {
  width: 100%;
}

.gallery_cta {
  position: absolute;
  top: 0;
  left: -2px;
  width: 66.66%;
  z-index: 4;
  padding: 14px;
}
.gallery_items.items-2 .gallery_cta{
  width: 50%;
}
.gallery_items.items-1 .gallery_cta{
  width: 100%;
}

.floor_img{
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.navbar-toggler-icon{
  /* filter: invert(1); */
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}




.navbar-nav .nav-link {
    position: relative;

}

.navbar-nav .nav-link sup {
    position: absolute;
    bottom: 32px;
    justify-content: center;
    align-items: center;
    background-color: #41C66E;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: .625rem;
    font-weight: 700;
    height: 1.1pc;
    line-height: 9pt;
    padding: 0 4px;
    text-decoration: none;
    width: fit-content;
    top:unset;
}

ul.sub_menu_list > li > a > sup {
    content: "New";
    position: relative;
    background-color: #41C66E;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1rem;
    padding: 4px 10px;
    margin-left: 8px;
    /* bottom: -3px;
    left: 155px; */
    text-transform: capitalize;
    top: unset;
}









@media (min-width: 1200px) {

  .sub_menu_list.collapse:not(.show) {
    display: block;
  }

  .navbar-nav{
    padding-top: 20px;
  }
  .navbar-text{
    padding-top: 20px;
    padding-bottom: 0;
  }

  .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    padding: 8px;
  }
  /* .sub_menu_link::after,
  .sub_menu_list_title::after {
    background-image: url("../icons/arrow-white.svg");
  } */

  .download_card > .caption{
    visibility: hidden;
    opacity: 0;
  transition: all ease 0.3s;
  }
  .download_card:hover > .caption{
    opacity: 1;
    visibility: visible;
    
  }

  .sub_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .sub_menu_list_title::after {
    display: none !important;
  }

  .sub_menu_list_title {
    pointer-events: none;
  }

  .sub_menu_list_wrapp {
    border-bottom: 0;
  }

  .navbar-nav .nav-item {
    margin-right: 1rem;
  }






  ul.sub_menu_list > li:last-child {
    margin-bottom: 0;
  }

  .sub_menu_link:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #f26841;
    transition: all ease 0.3s;
  }

  .sub_menu_link.collapsed:before {
    width: 0;
  }
  .footer_logo {
    max-width: 150px;
  }
}

@media (max-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1160px;
  }

  .navbar-nav .nav-item {
    margin-right: 0.75rem;
  }
  .social_link {
    width: 1.5rem;
    margin: 0 1rem;
  }

  .custom-logo-link {
    width: 84px;
    height: 44px;
  }
  .nav_link_btn{
    font-size: 13px;
  }

  .nav_with_icon{
    position: relative;
    padding: 1rem 1rem 1rem 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block !important;
  }


  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(250 250 250);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sub_menu {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: rgb(250 250 250);
  }

  .sub_menu {
    background-color: #fff;
  }

  .sub_menu_list {
    background-color: #fff;
  }



  .navbar-nav {
    --bs-nav-link-padding-y: 1rem;
  }

  li.nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .sub_menu_list_title {
    font-size: 0.875rem;
  }

  .navbar {
    height: 72px;
  }

  .wrapper {
    padding-top: 72px;
  }

  .navbar-brand {
    max-width: 90px;
  }

  .sub_menu_list_title {
    position: relative;
    padding: 1rem 1rem 1rem 30px;
    pointer-events: all;
  }

  .sub_menu_list_title .nav_icon, .nav_with_icon .nav_icon {
    top: 14px;
    width: 18px;
    height: 18px;
  }

  .article_card .btn.btn-link{
    font-size: 16px;
  }


  .navbar-nav .nav-link sup{
    position: relative;
    display: inline-flex;
    bottom: unset;
    margin-right: 5px;
  }
    ul.sub_menu_list > li > a.nav_with_icon {
        font-size: 14px;
    }
}






.container,
.container-lg,
.container-md,
.container-sm,
.main_carousel .swiper-pagination {
  max-width: 1240px !important;
  width: calc(100% - 20px) !important;

}

@media screen and (min-width:1201px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .main_carousel .swiper-pagination {
    max-width: 1240px !important;
    width: calc(100% - 20px) !important;
    padding-left: 0;
    padding-right: 0;
  }

}

@media screen and (max-width:1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .main_carousel .swiper-pagination {
    max-width: 1240px !important;
  }

}

