@import url(styles.css);
/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/* End Fonts */

:root {
    --main-color: #01062D;
    --sec-color: #FAA300;
    --bg-color: #757aa2;
    --th-color: #e9ecef;
}

* {
    box-sizing: border-box;
    text-transform: capitalize;
}

p,
a {
    text-transform: none;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", serif !important;
    background: #fff;
    text-align: start;
    /* color: #fff; */
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: #fff;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 8%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 0;
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #333;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #f0f3f8;
    text-align: start;
    text-transform: capitalize;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

.mobile-menu .lang-menu {
    /*margin-inline-end:auto;*/
    margin-inline-start: 0 !important;
}

.mobile-menu .lang-menu .lang-btn {
    color: var(--main-color);
    font-weight: 600;
    gap: 15px;
}

.mobile-menu .menu-box .navigation li a {
    color: var(--main-color);
    font-weight: 400;
}

.mobile-menu .sidebar-logo {
    display: flex;
    border-bottom: 1px solid #f0f3f8;
}

/* End Sidebar */

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}

.link-block {
    position: absolute;
    inset: 0;
}

.form-control {
    width: 100%;
    height: 54px;
    border-radius: 10px;
    padding: 0 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

/*** 

====================================================================
	End Search Popup
====================================================================

***/

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    /*center*/
    justify-content: left;
    align-items: left;
    -webkit-align-items: left;
    gap: 40px;
}

header.sticky {
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
    top: 0;
    align-content: center;
    z-index: 8;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: var(--dark-color);
    display: table;
    margin: 0 0 30px;
    margin-inline-start: auto;
    font-size: 24px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid var(--dark-color);
    line-height: 40.37px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    padding: 9px 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #393838;
}

.overlay {
    position: absolute;
    inset: 0;
    background: #0023793D;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,var(--main-color), white, var(--main-color));
    opacity: 0.5; 
    z-index: 1;
    pointer-events: none;
} */
.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(66%);
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    /* color: #fff; */
    /* text-decoration: underline; */
}

.mobile-menu .menu-box .navigation li.menu-item-has-children:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 8px;
    border-radius: 8px;
}

.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 166px;
    width: 100%;
    /* margin-inline-end: 47px; */
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--sec-color);
}

.header-med .head-inner ul li.current-menu-item .sub-menu a {
    color: var(--main-color);
}

.header-med .head-inner ul li .sub-menu li a.active {
    color: var(--sec-color);
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f0d7";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
    opacity: 0;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 300px;
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0000001A;
    border-radius: 8px;
    padding: 17px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 14px;
    font-weight: 300;
    line-height: 17.93px;
    padding: 11px 0;
    display: block;
    /* border-bottom: 1px solid #E1E1E1; */
    color: #333;
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: translateX(-22%) scale(1, 1);
    opacity: 1;
    visibility: visible;
    z-index:2000;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.header-end {
    border-top: 1px solid #cecece;
    padding-block: 1.25rem
}

.header-end .breadcrumb-title,
.header-end .breadcrumb .breadcrumb-item {
    font-weight: 500;
}

.header-end .breadcrumb .breadcrumb-item a {
    color: #757AA2;
}

.header-end .breadcrumb .breadcrumb-item.active {
    color: var(--main-color);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px 32px;
    padding-bottom: 5px;
}

.lang-h:hover {
    color: #fff;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 32px;
    overflow: hidden;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 100%;
    height: 4px;
    margin: 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    /*background: var(--main-color);*/
    background: #fff;
    transition: all .5s;
    top: 0;
}

.mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    width: 100%;
}

.mobile-nav-toggler .lines i:nth-child(1) {
    /* margin-inline-start: auto; */
}

.item.res-menu {
    display: none;
}

.mobile-menu .menu-outer ul li.menu-item-has-children>a::after {
    content: "\2b";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
    float: right;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: none;
    padding: 10px 16px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 174px;
    background: var(--sec-color);
    min-height: 40px;
    border-radius: 50px;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 24px;
    box-shadow: none !important;
    z-index: 1;
    /* border-bottom: 3px #E8E8E8 solid !important;
    border-inline-end: 1px #E8E8E8 solid !important; */
    font-weight: 500;
    gap: 11px;
}

header .btn {
    color: #fff;
    /* line-height: 18.23px; */
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
    display: none;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
    height: 80px;
}

.btn span::before,
.btn span::after {
    top: auto;
    bottom: 0;
}

.btn span::before {
    left: 25%;
}

.btn span::after {
    left: 75%;
}

.nav-inner {
    /* margin-inline-start: auto; */
}

.search-box-btn.search-box-outer {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.header-top {
    padding: 15px 0;
    background: var(--main-color);
}

.lang-menu {
    max-width: 260px;
    /* margin-inline-start: auto; */
    position: relative;
    display: flex;
    /*gap:35px*/
    /* padding: 0 32px; */
    padding-inline-end: 0;
}

.lang-menu .lang-btn {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    justify-content: end;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    position: relative;
}

.lang-menu .lang-btn .icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: relative;
}


.lang-menu .sub-menu {
    width: 190px;
    position: absolute;
    border: 1px solid #898787;
    background: #fff;
    top: 42px;
    border-radius: 4px;
    padding: 10px 0px;
    z-index: 9;
    left: 10px;
}

.lang-menu .sub-menu li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin: 15px 0;
    gap: 12px;
    color: var(--main-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 16px;
}

.lang-menu .sub-menu li a .icon {
    width: 18px;
    height: 18px;
    line-height: 18px;
}

.lang-menu .sub-menu li a span {
    width: calc(100% - 26px);
}

.header-med {
    height: 100%;
    padding: 11px 0 10px;
}

.logo-h a img {
    max-width: 80px;
    max-height: 80px;
}

.header-med .head-inner ul li a::before {
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    transition: all .4s;
    border-bottom: 1px var(--sec-color) solid;
    position: absolute;
}

.header-med .head-inner ul li a:hover::before {
    width: 100%;
}

.header-med .head-inner ul li:last-child a {
    /* color: var(--main-color); */
    cursor: pointer;
}

.btn:hover {
    color: #fff;
    background: var(--main-color);
}

.menu-left .fav-btn {
    width: 40px;
    height: 39px;
    border-radius: 4px;
    border: none !important;
    box-shadow: none;
    background: #757AA214;
    font-size: 19.5px;
    color: var(--sec-color);
}

/* End Header */

/* Start Banner-h */

.home-slider {
    position: absolute;
    inset: 0;
    /* z-index: -1; */
    overflow: hidden;
}

.banner-h {
    padding: 0 0 88px 0;
    color: #fff;
    /* overflow: hidden; */
    /*top:120px;*/
}

.banner-h::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to bottom,*/
    /*        rgba(0, 0, 0, 0.4) 0%,*/
    /*        rgba(0, 0, 0, 0.1) 40%,*/
    /*        rgba(0, 0, 0, 0.1) 60%,*/
    /*        rgba(0, 0, 0, 0.4) 100%);*/
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, -0.8) 13%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0.5) 85%);
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

/*section{*/
/*    top:120px;*/
/*}*/
.home-slider .ovaerlay-img {
    position: relative;
}

.home-slidear {
    overflow: hidden;
}

.home-slider .home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-slider .slick-list {
    padding: 0 !important;
}

/*.banner-h::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: #000;*/
/*    opacity: 0;*/
/*}*/

.banner-h .container {
    position: relative;
    z-index: 2;
}

.home-slider * {
    height: 100%;
}

.banner-item .banner-labels {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 27px;
}

.banner-item .banner-labels span {
    display: inline-flex;
    min-width: 226px;
    min-height: 50px;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    border-radius: 4px;
    padding: 8px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    text-align: center;
    backdrop-filter: blur(70px);
    background: rgb(255 255 255 / 20%);
    overflow: hidden;
}

.banner-item .banner-labels .white-banner {
    background: #fff;
    color: var(--main-color);
}

.banner-item .banner-labels .main-banner {
    background: var(--main-color);
    color: #fff;
}

.banner-item .banner-labels .white-banner,
.banner-item .banner-labels .main-banner {
    min-width: unset;
}

.banner-item .banner-labels .payment-plan {
    /* background: var(--sec-color); */
}

.banner-item .banner-labels .handover {
    backdrop-filter: blur(70px);
    background: rgb(255 255 255 / 20%);
    color: #fff;
}

.banner-item .banner-text h1 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 52px;
    line-height: 63.39px;
    max-width: 730px;
}

.banner-item .banner-text {
    /* max-width: 792px; */
}

.single_blog .banner-text {
    max-width: 100%;
}

.single_blog .banner-text h1 {
    max-width: 100%
}

.banner-item .banner-text h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 17px;
}

.banner-item .banner-text p {
    max-width: 702px;
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    font-family: "Montserrat", serif !important;
}

.banner-item .banner-text p span {
    max-width: 702px;
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    font-family: "Montserrat", serif;
}

.banner-text p i {
    color: var(--sec-color);
}

.banner-item .banner-text .btn {
    /* margin-top: 69px; */
    margin-top: 230px;
    border: none !important;
    min-width: 232px;
    padding: 13px 24px;
    font-size: 18px;
}

.banner-item .banner-spcial {
    display: flex;
    margin-top: 50px;
    gap: 8px;
}

.banner-item .banner-spcial .item {
    /* width: calc(25% - 8px); */
    background: #FFFFFF33;
    backdrop-filter: blur(30px);
    /* padding: 8px 10px; */
    padding: 12px 16px;
    border-radius: 8px;
}

.banner-item .banner-spcial .item .spcial-block-in {
    display: flex;
    align-items: baseline;
    -webkit-align-items: baseline;
}

.banner-item .banner-spcial .item .spcial-block-in .icon {
    color: var(--sec-color);
    margin-inline-end: 10px;
    width: 15px;
    font-size: 15px;
}

.banner-item .banner-spcial .item .spcial-block-in span {
    font-weight: 500;
    font-size: 13px;
    line-height: 29.26px;
}

.banner-item .banner-btns {
    display: flex;
    justify-content: end;
    height: 50px;
    margin-bottom: 27px;
    align-items: center;
    -webkit-align-items: center;
    gap: 16px;
}

.banner-item .banner-btns button {
    border: none !important;
    box-shadow: none;
    min-width: 94.98px;
    height: 36px;
    background: #FFFFFF0F;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    border-radius: 4px;
}

.banner-item .banner-btns button i {
    color: var(--sec-color);
    font-size: 20px;
}

.banner-item .banner-btns a {
    border: none !important;
    box-shadow: none;
    min-width: 94.98px;
    height: 36px;
    background: #FFFFFF0F;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    border-radius: 4px;
}

.banner-item .banner-btns a i {
    color: var(--sec-color);
    font-size: 20px;
}

.banner-form {
    background: #FAFAFA33;
    backdrop-filter: blur(120px);
    padding: 30px;
    border-radius: 10px;
}

.banner-form.general-form .form-group .form-control {
    background: #FAFAFA;
    border: 1px solid #B3B1B1;
}

.general-form {
    background: #fff;
    /* border: 1px solid #B3B1B1; */
}

.general-form .form-group>i {
    color: var(--sec-color);
}

.general-form .tab-btns .btn {
    min-width: unset;
}

.custom-date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: relative;
    z-index: 9;
}

.form-control.custom-date-input,
.form-control.custom-time-input {
    padding-inline-start: 30px !important;
    position: relative;
}

.date-input-container {
    position: relative;
    display: inline-block;
}

.custom-icon {
    position: absolute;
    inset-inline-start: 10px;
    /* حدد مكان الأيقونة يمين أو يسار حسب اللغة */
    top: 50%;
    transform: translateY(-50%);
    color: var(--sec-color);
    /* لون الأيقونة */
    cursor: pointer;
    filter: grayscale(1)
}

#headModalSchedule .flatpickr-input {
    padding: 0px 35px !important;
}



.banner-form h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
}

.banner-form .form-group {
    margin-bottom: 8px;
}

.banner-form .form-group .form-control {
    width: 100%;
    height: 54px;
    border-radius: 10px;
    padding: 0 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.banner-form .form-group .iti {
    width: 100%;
}

.banner-form .form-group .iti .iti__flag-container {
    background: transparent !important;
    color: #6A6767;
}

.banner-form .form-group .iti .iti__flag-container .iti__selected-flag {
    background: transparent;
    direction: ltr;
}

.banner-form .form-group .btn.btn-form {
    margin-top: 24px;
    width: 100%;
    border: none !important;
    min-width: 44px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.banner-form .form-group .agree-h label {
    display: flex;
    align-items: baseline;
    -webkit-align-items: baseline;
    position: relative;
    margin-bottom: 16px;
}

.banner-form .form-group .agree-h label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.banner-form .form-group .agree-h label span {
    position: relative;
    padding-inline-start: 23px;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
}

.banner-form .form-group .agree-h label span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 11px;
    height: 11px;
    border: 1px #fff solid;
    border-radius: 2px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.banner-form .form-group .agree-h label input:checked+span::before {
    background: var(--sec-color);
    border-color: var(--sec-color);
    content: "\f00c";
    font-family: 'Font Awesome 6 Pro';
    font-size: 8px;
    font-weight: bold;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    /*padding: 96px 0 100px;*/
    padding: 50px;
}

.title {
    margin-bottom: 41px;
}

.title h3 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 40px;
    line-height: 63.39px;
    text-transform: uppercase;
    /* border-inline-start: 6px solid var(--sec-color); */
    /* padding-inline-start: 32px; */
    margin: 0;
    letter-spacing: -.4px;

}

.most_popular .title h5 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    border-inline-start: 6px solid var(--sec-color);
    padding-inline-start: 32px;
    margin: 0;
}

.about-text {
    border: 1px solid #B3B1B1;
    padding: 37px;
    border-radius: 10px;
    /* height: 100%; */
    /*white-space: pre-line;*/
    max-height: 570px;
    overflow-y: auto;
    height: 650px;
    font-family: "Montserrat", serif !important;
}

.about-text p,
.about-text span {
    font-family: "Montserrat", serif !important;
}

.about-text::-webkit-scrollbar {
    width: 8px;
}

.about-text::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color);
}

.about-text::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 4px;
}

.about-text p {
    /*margin-bottom: 32px;*/
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #4E4E4E;
}

.about-h:has(.general-form) .about-text {
    max-height: 540px;
}

.about-table {
    padding: 24px 40px;
    background: var(--main-color);
    color: #fff;
    border-radius: 10px;
    height: 100%;
}

.about-table h3 {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 24px;
    line-height: 29.26px;
}

.about-table .about-items .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #FFFFFF4D;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.abut-btn {
    margin-top: 24px;
}

.abut-btn .btn {
    width: 100%;
    border: none !important;
    height: 50px;
}

/* End About-h */



/* Start Gallery-h */
.features-amenities-h {
    padding: 18px 0;
    background: #757AA214;
    margin-bottom: 50px;
}

.features-amenities-h .tab-content {
    background: #f4f5f7;
    padding: 8px 0;
}

.features-amenities-h .tab-content .features-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.features-amenities-h .tab-content li {
    width: calc(33% - 20px);
    position: relative;
    font-weight: 500;
    padding-block: 6px 8px;
    padding-inline-start: 2rem;
    font-size: 20px;
    display: flex;
    align-items: center;

}

.features-amenities-h .tab-content li::before {
    content: '';
    position: absolute;
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: url(../images/done-ring.png);
    background-size: contain;
    background-position: center;
    inset-inline-start: 0;

}

/* End About-h */


/* Start Gallery-h */

.gallery-h {
    padding-block: 30px 0;
}

.title h5 {
    color: var(--main-color);
    font-weight: 500;
    font-size: 24px;
    line-height: 29.26px;
    margin-top: 26px;
    text-transform: capitalize;
}

.gallery-h .title {
    margin-bottom: 26px;
}

.nav.nav-tabs {
    border: none;
    /* display: inline-flex; */
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 32px;

}

.nav.nav-tabs .nav-item .nav-link {
    min-width: 202px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    background: var(--th-color);
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--th-color);
    border-inline-start: 1px #B3B1B1 solid;
    box-shadow: none !important;
    min-height: 54px;
    border-radius: 0;
    margin: 0;
}

.nav.nav-tabs .nav-item .nav-link.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--th-color);
}

.nav.nav-tabs .nav-item:nth-child(1) .nav-link {
    border: none;
    border-start-start-radius: 10px;
    border-end-start-radius: 10px;
}

.nav.nav-tabs .nav-item:last-child .nav-link {
    border: none;
    border-start-end-radius: 10px;
    border-end-end-radius: 10px;
    border-inline-start: 0;
}

.gallery-items .gallery-item {
    height: 249.5px;
    display: block;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #B3B1B1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
}

.gallery-items.item-big .gallery-item {
    height: 515px;
}

.off-plan-slider .gallery-items.item-big .gallery-item {
    height: auto !important;
}

.col-md-7.jg-entry .row .gallery-items:nth-child(n + 5) {
    display: none;
}

.gallery-items .gallery-item .showMore {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #00000033;
    /*font-family: Montserrat;*/
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 58.51px;
    color: #fff;
    text-align: center;
}

.col-md-5.jg-entry.jg-entry-visible {
    width: 41.66666667% !important;
    height: auto !important;
}

.col-md-7.jg-entry.jg-entry-visible {
    width: 58.33333333% !important;
    height: auto !important;
}

/* End Gallery-h */


.calc-form {
    background: #757AA214;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 16px;
    padding: 2rem 1.75rem;
}

.calc-form .form-control {
    background: #FAFAFA;
}

.calc-form label {
    color: var(--main-color);
    margin-bottom: .5rem;
    font-weight: 500;
}

.calc-result {
    background: var(--main-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #fff;
    padding: 2rem 1.75rem;
}

.lable {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.val {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.val#monthly_payment {
    color: var(--sec-color);
    font-size: 20px;
}

/* Start Plan-h */

.title p {
    max-width: 1296px;
    color: #4E4E4E;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-top: 32px;
}

.plan-h .title {
    margin-bottom: 33px;
}

.tab-img {
    max-height: 702px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #CECECE;
}

.tab-img img {
    max-height: 702px;
    object-fit: contain !important;
    object-position: center;
}

.tab-btns {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.tab-btns .btn {
    border: none !important;
    min-width: 260px;
    min-height: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.btn.btn-dark {
    background: var(--main-color);
}

/* End Plan-h */

/* Start Payment-h */

.payment-h {
    padding: 50px 0;
}

.payment-h .title {
    margin-bottom: 60px;
}

.tab-block {
    margin-bottom: 24px;
    height: calc(100% - 24px);
    background: #757AA21A;
    padding: 24px;
    border-radius: 10px;
}

.tab-block .num {
    color: var(--sec-color);
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
}

.tab-block h4 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tab-block span {
    color: #757AA2;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

/* End Payment-h */

/* Start Features-h */

.features-h .title {
    margin-bottom: 60px;
}

.features-h .title p {
    margin-top: 16px;
}

.all-features {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.all-features .item {
    padding: 0 8px;
    width: 20%;
    flex: 0 0 auto;
}

.feat-block {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px 32px;
    transition: all .4s;
    border-radius: 10px;
}

.feat-block .icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 24px;
}

.feat-block .details h3 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.feat-block:hover {
    background: #757AA214;
}

.btn-center {
    text-align: center;
    margin-top: 36px;
}

.btn-center .btn {
    border: none !important;
    min-width: 232px;
    min-height: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.features-h {
    padding-bottom: 50px;
}

/* End Features-h */

/* Start Location-h */

.location-h {
    padding-bottom: 50px;
}

.location-h .title {
    margin-bottom: 32px;
}

.map-h {
    height: 651px;
}

.location-details {
    margin: 0;
    background: #757AA214;
    padding: 32px 17px;
    border-radius: 0 0 10px 10px;
}

.loct-block .title-blo {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    background: #757AA20F;
    padding: 4px 16px;
    margin-bottom: 24px;
}

.loct-block {
    background: #FFFFFF;
    padding: 16px 24px 28px;
}

.loct-block .title-blo .icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-inline-end: 16px;
}

.loct-block .title-blo h3 {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 29.26px;
    color: var(--main-color);
}

.loct-block ul li {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px;
    /* flex-wrap: wrap; */
    color: var(--main-color);
    line-height: 22px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.loct-block ul li i {
    font-size: 18px;
}

.loct-block ul li b {
    /*font-family: Montserrat;*/
    font-family: "Montserrat", serif;
    font-weight: 600;
    min-width: 54px;
    display: inline-block;
}

.loct-block ul li:last-child {
    margin: 0;
}

/* End Location-h */

/* Start About-h2 */

.about-h2 .title {
    margin-bottom: 60px;
}

.text-about p {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.btn-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.text-about .btn-flex {
    margin-top: 40px;
}

.btn-flex .btn {
    min-width: 212px;
    min-height: 50px;
    border: none !important;
    padding: 13px 15px !important;
    font-weight: 500;
    /* font-size: 18px; */
    font-size: 15px !important;
    line-height: 24px;
    text-align: center;
}

.img-about {
    max-width: 234px;
    margin-inline-start: auto;
}

/* End About-h2 */


/* Start explore-h */
.explore-h {
    padding-bottom: 50px;
}

.explore-h .card {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.explore-h .card .card-img {
    aspect-ratio: 18 / 7;
    object-fit: cover;
}

.explore-h .card-img-overlay {
    background: #01062D29 !important;
    padding: 0rem !important;
}

.explore-h .card-img-overlay .card-price,
.explore-h .card-img-overlay .card-content {
    padding: 1rem 1.5rem !important;

}

.explore-h .card-img-overlay .card-content {
    background: linear-gradient(351.91deg, rgba(0, 0, 0, 0.25) 7.28%, rgba(0, 0, 0, 0) 94.85%);
    backdrop-filter: blur(5px);
}

/* End explore-h */

/* Start contact-h */
.contact-img img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

/* End contant-h */

/* Start Project-h */

.projects-h {
    padding: 50px 0;
}

.project-block {
    border: 1px solid #B3B1B1;
    box-shadow: 0px 0px 20px 0px #0020481A;
    border-radius: 10px;
    overflow: hidden;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.item .btn {
    z-index: 4;
}

.projects-slider .item.slick-slide {
    display: block;
    padding: 0 12px;
}

.projects-slider .slick-list {
    overflow: visible;
    /* overflow-x: hidden visible; */
}

.project-block .img-block {
    position: relative;
    height: 262px;
    overflow: hidden;
}

.project-block .img-block .img {
    width: 100%;
    height: 100%;
    position: relative;
}

.slick-list,
.slick-track {
    height: 100%;
}

.project-block .img-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-block .img-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    top: auto;
    /*height: 72%;*/
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(102, 102, 102, 0) 100%);*/
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgb(96 84 84 / 0%) 100%);
    transform: scaleY(-1);
}

.property_card .img-block .img::after {
    height: 72%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(102, 102, 102, 0) 100%);

}

.project-block .img-block .labels-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    padding: 16px 18px;
    /* display: flex; */
    flex-direction: column;
    align-items: start;
    -webkit-align-items: start;
}

.project-block .img-block .labels-img span {
    background: rgb(255 255 255 / 20%);
    margin-bottom: 13px;
    padding: 10px 16px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
}

.project-block .img-block .fav-btn {
    border: none !important;
    box-shadow: none !important;
    margin: 16px;
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: var(--sec-color);
    border-radius: 50%;
    font-size: 19px;
}

.project-block .details {
    padding: 16px 24px 24px;
    text-transform: capitalize;
}

.project-block .details h3 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.project-block .details h4 {
    font-size: 19px;
    line-height: 24px;
    color: var(--main-color);
    font-weight: 600;
}

.project-block .details h4 i {
    color: var(--sec-color);

}

.project-block .details ul {
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-block .details ul li {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 4px;
    margin: 0 0 5px;
    color: #6A6767;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    padding-inline-end: 23px;
    font-size: 17px;
}

.project-block .details ul li:nth-child(1) {
    width: 100%;
}

.f_details p i,
.project-block .details ul li i {
    color: var(--sec-color);
}

.f_details p {
    font-size: 14px;
}

.f_details p:not(:first-child) {
    padding-inline-start: 18px;
    border-inline-start: 1px solid #CECECE
}

.f_details p span {
    padding-inline-start: 4px;
    text-transform: capitalize;
}

.btn.btn-border {
    color: var(--sec-color);
    background: transparent;
    border: 1px var(--sec-color) solid;
    min-width: 170px;
}

.btn.btn-border:hover {

    border-color: var(--sec-color) !important;

    color: #fff;

    background: var(--sec-color);
}



.labels-img .purpose {
    background: var(--sec-color) !important;
}

.labels-img .type {
    /* background: #01041E80 !important; */
}

.project-block .links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: .85rem 0;
}

.project-block .links a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    flex-grow: 1;
    height: 40px;
    flex-grow: 1;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    color: var(--main-color);
    background-color: transparent;
}

.project-block .links a:first-child {
    /* width: auto; */
    /* padding: 12px; */
    font-size: 20px;
    border: 1px solid #999999;
    color: #25D366 !important;
}

.project-block .links a:hover {
    border: 1px solid var(--sec-color);
    background-color: var(--sec-color);
    color: #FFF;
}

.owner {
    padding-top: 16px;
    border-top: 1px solid #CECECE;
}

.owner-info {
    font-weight: 500;
    width: 75%;
}

.owner img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
}

.owner .btn.btn-border {
    min-width: fit-content;
    padding-inline: 28px;
}

/* End Project-h */

/* Start Footer */

footer {
    /* background: #10102a; */
    /* border-top: 2px solid var(--main-color); */
    padding-bottom: 20px;
}

footer .overlay-img img {
    filter: none !important;
    object-fit: fill !important;
    opacity: 1;
}

.help-h {
    padding-top: 40px;
}


.help-form {
    background: #FFFFFF66;
    padding: 24px 42px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid var(--main-color);

}

.help-form h3 {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    /* color: #fff; */
    color: var(--main-color);

}

.help-form .form-inner .item {
    width: 27%;
    padding: 0 4px;
}

.help-form .form-inner .item .form-group .form-control {
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    background: #FFFFFF66;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.help-form .form-inner form.row {
    margin-left: -4px;
    margin-right: -4px;
}

.help-form .form-inner .item:last-child {
    width: 16%;
}

.help-form .form-inner .item .btn.btn-form {
    border: none !important;
    min-height: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    background-color: var(--sec-color);
    min-width: 100%;
    padding: 13px 10px;
    font-size: 14px;
}

.foot-block h3 {
    color: #fff;
    /* color: var(--main-color); */
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
}

.info-f ul li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #555870;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.info-f ul li a i {
    font-weight: bold;
}

.info-f ul li a strong {
    background: #FFFFFF1A;
    padding: 4px 16px;
    display: inline-block;
    border-radius: 4px;
    margin-inline-end: 16px;
}

.info-f ul li a u {
    text-decoration: none;
    display: inline-block;
    direction: ltr;
}

.s-h {
    margin-top: 10px;
    color: #fff;
    text-align: center;
}

.s-h span {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    display: block;
    color: var(--main-color);

}

.s-h a {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #FFFFFF;
    /* border: 1px solid var(--main-color); */
    margin-inline-end: 6px;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #fff;
    color: var(--main-color);
    font-size: 16px;
    transition: all .4s;
    background: #fff;
    border-radius: 50%;
}

.s-h a:hover {
    color: var(--sec-color);
    border-color: var(--sec-color);
}

.links-f ul li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 2px;
    color: #555870;
    text-transform: capitalize;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #ffffffb5;
    flex-wrap: wrap;
}

.links-f ul li a span {
       color: #878792;
    font-weight: 500;
    /*margin-left: 5px;*/
}

.links-f.links-color ul li a {
    color: var(--main-color);
}

.links-f ul li a:hover {
    color: var(--sec-color);
}
.links-f ul li a:hover span{
    color: var(--sec-color);
}

.readMore {
    display: none;
    color: var(--sec-color);
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
}

.gallery-res,
.text-about .readMore {
    display: none;
}

.slick-prev,
.slick-next {
    width: 42px;
    height: 42px;
    background: #00000033;
    backdrop-filter: blur(10px);
    /* margin: 0 41px; */
    margin: 0 35px;
    z-index: 6;
    border-radius: 50%;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.project-block .details .btn-flex {
    gap: 8px;
}

.project-block .details .btn-flex .btn {
    min-width: 159px;
    min-height: 45px;
    padding: 10px;
}

.plan-h .col-md-6 {
    width: 50% !important;
    height: auto !important;
}

.tab-img.gallery-items.item-big .gallery-item {
    border: none;
}

.justified-gallery>.jg-entry-visible.col-md-12 {
    width: 100% !important;
    height: auto !important;
}

c .gallery-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.lg-container .lg,
.lg-container .lg-group,
.lg-container .lg-thumb-outer {
    background: #fff !important;
}

.lg-sub-html {
    color: var(--main-color) !important;
}

.lg-toolbar .lg-icon {
    color: var(--main-color) !important;
    width: 42px;
    height: 42px;
    background: #00000033;
    backdrop-filter: blur(10px);
    /* margin: 0 41px; */
    /* margin: 0 35px; */
    z-index: 6;
    border-radius: 50%;
    line-height: 20px !important;
}

.banner-all_properties {
    margin-bottom: 0px !important;
}

/* End Footer */
/* Main Container */
.search-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    background: #B3B1B11A;
    backdrop-filter: blur(10px);
    /* padding: 24px 42px; */
    border-radius: 10px;
    margin-bottom: 24px;
    margin-top: 20px;
}

/* First Row: Radio Buttons & Reset */
.first-row {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

/* Toggle Radio Buttons */
.toggle-buttons {
    display: flex;
    gap: 12px;
    border-radius: 20px;
    background-color: #fff;
    padding: 4px;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.toggle-radio {
    display: none;
}

.toggle-label {
    padding: 5px 25px;
    border-radius: 20px;
    /*font-weight: bold;*/
    cursor: pointer;
    background: white;
    color: var(--main-color);
    /* border: 1px solid #ccc; */
    transition: background 0.3s, color 0.3s;
}

.toggle-radio:checked+.toggle-label {
    background: var(--main-color);
    color: white;
}

/* Reset Button */
.reset {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 10px;
    font-size: 18px;
}

.reset-icon {
    /* margin-right: 5px; */
}

/* Second Row: Search & Filters */
.second-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Search Input */
.input-container {
    position: relative;
    /* flex-grow: 1; */
}

.search-input {
    padding: 10px 20px 10px 35px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

/* Dropdowns */
.dropdown {
    padding: 10px 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    color: gray;
    cursor: pointer;
    z-index: 8;
    position: absolute;
}

/* Main Filter Container */
.property-filter {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    background-color: #757AA214;
    margin: 5px;
    margin-bottom: 20px;
}

/* Hide the radio inputs */
.property-radio {
    display: none;
}

/* Style Labels as Buttons */
.property-label {
    padding: 8px 12px;
    border-radius: 5px;
    /* font-weight: bold; */
    cursor: pointer;
    color: var(--main-color);
    border: 2px solid transparent;
    transition: background 0.3s, color 0.3s;
    text-transform: capitalize;
}

/* Active/Checked State */
.property-radio:checked+.property-label {
    background: var(--sec-color);
    color: white;
    border: 2px solid var(--sec-color);
    border-radius: 5px;
}

.view-more {
    color: var(--main-color);
    background-color: #757AA214;
    margin-top: 20px;
}


.fixed-icon {
    position: fixed;
    bottom: 40px;
    inset-inline-end: 56px;
    z-index: 11;
}

.fixed-icon a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #60D66A;
    color: #fff;
    backdrop-filter: blur(18px);
    border-radius: 50%;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
    transition: .5s;
    font-size: 28px;
    width: 60px;
    height: 60px;
    margin: 10px 0;
}


.whatsapp i::after {
    content: '';
    height: 54px !important;
    width: 54px !important;
    top: calc(50% - 27px) !important;
    inset-inline-start: calc(50% - 27px) !important;
    position: absolute;
    border: 3px solid #60D66A33;
    border-radius: 100%;
    box-shadow: 0 0 0 3px #60D66A33;
    z-index: 2;
}

.whatsapp i::after {
    -webkit-animation: 1s infinite ripple-out;
    animation: 1s infinite ripple-out;
}

@keyframes ripple-out {
    100% {
        transform: scale(1.5);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5)
    }
}

@-webkit-keyframes ripple-out {
    100% {
        transform: scale(1.5);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5)
    }
}

.cut-txt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.single-property .slick-arrow {
    /* display: none !important; */
    top: -30px;
    margin: 0 25px;
    background-color:var(--main-color);
}

.contact-img img {
    /*border-radius: 10px;*/
    /*-webkit-border-radius: 10px;*/
    /*-moz-border-radius: 10px;*/
    /*-ms-border-radius: 10px;*/
    /*-o-border-radius: 10px;*/
    /*height: 100%;*/
    /*object-fit: cover;*/
    /*aspect-ratio: 12 / 5;*/
}

.contact-img {
    position: relative;
    width: 100%;
    /* Adjust as needed */
    padding-top: 41.67%;
    /* (5 / 12) * 100 to maintain aspect ratio */
}

.contact-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.custom-time-input {
    user-select: none;
    -webkit-user-select: none;
    caret-color: transparent;
}

#calculator .gy-md-4 {
    justify-content: center;
}


/* developer page */
.banner-h.developer-banner .banner-text h1 {
    max-width: 760px;
}

.why-us {
    position: relative;
    background: url(../images/why-us.png);
    padding: 2.5rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    margin-top: 50px;
}

.why-us .overlay {
    background: #01062DC2;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.why-us .title h3 {
    color: #fff;
}



.why-us .why-reason .card {
    padding: 32px 26px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    background: #FFFFFF4D;
    height: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.why-us .why-reason .card .card-title h4 {
    font-size: 32px;
    font-weight: 600;
}

.why-us .why-reason .card .card-title .num {
    font-weight: 600;
    font-size: 52px;
    color: var(--sec-color);
}

.why-us .why-reason {
    display: flex;
    height: 100%;
}

.why-us .slick-slider .why-reason .card {
    display: block;
}

.why-us .slick-list {
    overflow: visible;
    align-items: stretch;
}

.why-us .slick-slide {
    display: flex;
    height: 100%;
    padding-inline-end: 8px;
}


/* .property-type{
    margin-bottom: 100px;
} */

.cards-wrapper .item {
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    height: 600px;
}

.cards-wrapper .item .card {
    height: 100%;
}

.cards-wrapper .card .card-img {
    transition: transform 0.4s ease-in-out;
    aspect-ratio: 10 / 7;
    object-fit: cover;
    height: 100%;
}

.cards-wrapper .item.active-card {
    flex: 6;
}

.cards-wrapper .small-card .card-content {
    opacity: 0;
}

.cards-wrapper .active-card .card-content {
    opacity: 1;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.cards-wrapper .card-content>div {
    width: calc(100% - 50px);
}

.cards-wrapper .card.active-card .card-img-overlay {
    background: rgba(1, 6, 45, 0.25) !important;
}

.cards-wrapper .card-img-overlay {
    transition: background 0.4s ease-in-out;
    background: #01062D29 !important;
    padding: 0rem !important;
}

.cards-wrapper .arrow-btn {
    transition: all 0.3s ease-in-out;
    background: #FFFFFF1A;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--sec-color);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.cards-wrapper .arrow-btn img {
    transition: transform 0.3s ease-in-out;
}

.cards-wrapper .card-content:hover .arrow-btn {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

/* .cards-wrapper .slick-list {
    overflow: visible;
} */




.attractions {
    margin-block: 50px;
}

.attractions.projects-container {
    margin-block: 0px !important;

}

.attractions .item.slick-slide {
    display: block;
    padding-inline-end: 12px;
}

.attractions .card {
    border: unset;
    height: 100%;
}

.attractions .card .card-img-top {
    height: 350px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

.attractions .card .card-body {
    border: 1px solid #B3B1B1;
    margin-top: 10px;
    padding: 1.5rem 1rem;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.attractions .card .card-body h3 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.attractions .card .card-body p {
    font-size: 17px;
}

.attractions .card .card-body .btn {
    position: absolute;
    top: 18px;
    inset-inline-end: 22px;
}

.arrow-btn {
    background: #FFFFFF1A;
    filter: blur(8);
    -webkit-filter: blur(8);
    -moz-filter: blur(8);
    -ms-filter: blur(8);
    -o-filter: blur(8);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--sec-color);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.FAQs {
    margin-block: 100px;
    padding-block: 50px;
    border-block: 1px solid #B3B1B1;
}

.FAQs .title h3 span {
    color: #6A6767;
    font-size: 36px;
}

.FAQs .accordion-item {
    border: 0 !important;
}

.FAQs .accordion-button {
    box-shadow: unset !important;
    border-bottom: 1px solid #BEC6CF;
    color: #4E4E4E;
    font-size: 32px;
    font-weight: 600;
    padding-block: 1.75rem;
}

.FAQs .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
}

.FAQs .accordion-body p {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 1rem;
}

.areas {
    margin-bottom: 50px;
    /*margin-top: 50px;*/
}

.areas .card {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.areas .card-img {
    aspect-ratio: 5 / 5;
    object-fit: cover;
}

.areas .card-content {
    background: linear-gradient(1.1deg, rgba(1, 1, 1, 0.7) 0.84%, rgba(103, 103, 103, 0) 98.96%);
    padding: 1rem;
    padding-top: 2rem;
}

.areas .card-content h3 {
    font-size: 17px;
    font-weight: 500;
}

.areas .card-content span {
    font-size: 16px;
    font-weight: 400;
}

.areas .card-content .card-text {
    transform: translateY(calc(100% + 1rem));
    opacity: 0;
    height: 0;
    -webkit-transform: translateY(calc(100% + 1rem));
    -moz-transform: translateY(calc(100% + 1rem));
    -ms-transform: translateY(calc(100% + 1rem));
    -o-transform: translateY(calc(100% + 1rem));
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -ms-transition: .5s all;
    -o-transition: .5s all;
}

.areas .card:hover .card-content .card-text {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
    height: auto;
}

.location-details li {
    display: flex;
    align-items: flex-start;
}


.location-details li span {
    display: block;
    /* Ensures each span is on a new line */
}

.location-text {
    display: flex;
    flex-direction: column;
    /* Stack spans vertically */
}

.location-details-li i {
    font-size: 24px;

    margin-right: 5px;
    /* Adjust spacing */
    margin-top: 3px;
    /* Align with text */

}

.slick-initialized .slick-slide {
    height: 100% !important;
    /* margin:0 10px; */
}

.no_result {
    text-align: center;
    color: var(--main-color);
}


.select2-container--default .select2-selection--single {
    padding-right: 40px !important;
    /* Adjust as needed */
}

.select2-container--default .select2-selection__arrow {
    right: 10px !important;
    /* Moves arrow further to the right */
}

.select2-container--default .select2-selection__clear {
    right: 30px !important;
    /* Move the "X" away */
}

.not_capatalize {
    text-transform: none !important;
}

.calculator-h {
    padding-bottom: 50px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.details-sec {
    margin-bottom: 50px;
}

.details-sec .features-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Controls spacing between list items */
    padding: 0;
    /* Remove padding */
}

.details-sec .features-list ul li {
    display: table;
    width: calc(33.33% - 20px);
    /* Three columns */
    text-align: left;
    /* Ensure text starts from left */
}

.details-sec .features-list ul li i {
    display: table-cell;
    width: 30px;
    /* Keep icon width fixed */
    text-align: left;
    /* Align icons to the left */
    vertical-align: middle;
    font-size: 22px;
    color: #ff9800;
    padding: 0;
    /* Remove any extra spacing */
}

.details-sec .features-list ul li div {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    /* Controls spacing between icon and text */
}

.details-sec .features-list ul li span,
.details-sec .features-list ul li p {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    /* Remove extra padding */
    margin: 0;
    /* Remove margin */
}

.details-sec .features-list ul li p {
    font-size: 18px;
    font-weight: bold;
    padding-left: 10px;
    /* width: 50%; */

}

.details-sec .features-list ul li span {
    font-size: 18px;
    /* width: 50%; */
}

.margin-bottom-none {
    margin-bottom: 0px !important;
}

/* Start Index */



.h8_course-active {
    overflow-x: scroll;
    border-radius: 16px;
    max-width: 100%;
    overflow: hidden;
}

.h8_course-wrap {
    /* white-space: nowrap; */
    /* width: 100%; */
    /* padding: 0; */
    /* justify-content: center; */
    /* gap: 16px; */
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.h8_course-item {
    display: inline-flex;
    overflow: hidden;
    position: relative;
    height: 549px;
    margin-inline-end: 16px;
    border-radius: 10px;
    overflow: hidden;
}

.h8_course-item.expand {
    width: 962px;
    flex: 0 0 962px;
}

.h8_course-m-title {
    /* width: 151px; */
    z-index: 50;
    cursor: pointer;
    background-color: var(--bg-color2);
    flex-shrink: 0;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
    align-items: center;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.h8_course-item.expand .h8_course-m-title {
    background-color: var(--main-color);
    display: none;
}

.h8_course-item.expand .h8_course-m-count svg {
    color: #fff;
}

.h8_course-m-title-vertical {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1.2;
    /* transform: rotate(270deg); */
}

.h8_course-item.expand .h8_course-m-title-vertical {
    color: #fff;
}

.h8_course-content-3 {
    position: relative;
    height: 100%;
    padding: 0;
    background-color: var(--bg-color3);
    width: 100%;
}

.h8_course-item.h8_course_common .h8_course-content-3 {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6.25vw);
}

.h8_course-item.expand .h8_course-content-3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.h8_course-wrap .accordion-body-img {
    position: relative;
    z-index: 1;
    margin-bottom: 3.9018952062430325vh;
    height: 41.583054626532885vh;
    overflow: hidden;
    border-radius: 0.78125vw;
}

.img,
img {
    max-width: 100%;
    position: relative;
}

.h8_course-wrap .accordion-body-img img {
    width: 100%;
    z-index: -2;
    position: relative;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.h8_course-wrap .accordion-body-img span {
    border-radius: 10px;
    background: #395BDF;
    color: #FFF;
    text-align: center;
    font-size: 2.5vw;
    font-weight: 600;
    line-height: 1;
    width: 10.546875vw;
    display: inline-grid;
    place-items: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 9.47603121516165vh;
}

.h8_course-wrap .accordion-body-img span::before {
    position: absolute;
    left: -15px;
    top: 0;
    width: calc(100% + 1.171875vw);
    height: calc(100% + 1.6722408026755853vh);
    content: "";
    background: #fff;
    z-index: -1;
    border-radius: 0;
    border-end-end-radius: 0.78125vw;
}

.h8_course-wrap .accordion-body-bottom {
    display: grid;
    grid-template-columns: 1fr 8.984375vw;
    grid-gap: 3.515625vw;
}

.h8_course-wrap .accordion-body-right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.h8_course-wrap .accordion-body-content h4 {
    color: #021936;
    font-size: 2.03125vw;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.4492753623188406vh;
}

.h8_course-wrap .accordion-body-content p {
    color: #021936;
    font-size: 1.171875vw;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.1148272017837235vh;
}

.h8_course-wrap .accordion-body-content-rating {
    display: flex;
    align-items: end;
    gap: 1.1148272017837235vh 0.78125vw;
    margin-top: 3.5674470457079153vh;
}

.h8_course-wrap .accordion_left_img {
    display: flex;
    align-items: center;
    margin-bottom: 0.5574136008918618vh;
}

.h8_course-wrap .accordion_left_img span {
    min-width: 30px;
    min-height: 30px;
    border-radius: 3.90625vw;
    background: #FFF;
    box-shadow: 0px 6px 30px 0px rgba(25, 35, 53, 0.15);
    display: grid;
    place-items: center;
    color: #021936;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1;
    margin-inline-start: -0.78125vw;
    height: 3.3444816053511706vh;
    width: 2.34375vw;
}

.h8_course-wrap .accordion_left_rating {
    display: flex;
    gap: 0.5574136008918618vh 0.390625vw;
}

.h8_course-wrap .accordion_left_rating li {
    color: #F2A22A;
    font-size: 1.171875vw;
}

.h8_course-wrap .accordion_right h2 {
    color: #021936;
    font-size: 4.6875vw;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -0.15625vw;
}

.h8_course-wrap .inner-info {
    text-align: center;
    width: 95px;
    display: grid;
    place-items: center;
    padding: 10px 10px 15px;
    position: relative;
    z-index: 99;
}

.h8_course-wrap .inner-info::before {
    position: absolute;
    right: -1.5625vw;
    bottom: -3.3444816053511706vh;
    content: "";
    min-width: 70px;
    min-height: 80px;
    border-radius: 0.78125vw;
    opacity: 0.7;
    background: linear-gradient(143deg, #F14D5D 0%, rgba(241, 77, 93, 0) 100%);
    z-index: -2;
    width: 5.46875vw;
    height: 8.918617614269788vh;
}

.h8_course-wrap .inner-info h3 {
    color: #021936;
    font-size: 3.90625vw;
    font-weight: 500;
    margin-bottom: 0.5574136008918618vh;
    line-height: 1.1;
}

.h8_course-wrap .inner-info span {
    color: #021936;
    font-size: 1.171875vw;
    font-weight: 500;
    line-height: 1;
}

.h8_course-wrap .inner-info::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 6px 50px 0px rgba(25, 35, 53, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid #FFF;
    border-radius: 10px;
    z-index: -1;
}

.h8_course-wrap .inner-info {
    text-align: center;
    width: 95px;
    display: grid;
    place-items: center;
    padding: 1.1148272017837235vh 10px 15px;
    position: relative;
    z-index: 99;
    width: 7.421875vw;
}

.h8_course-wrap .inner-info-2::before {
    background: linear-gradient(143deg, #2F57EF 0%, rgba(47, 87, 239, 0) 100%);
}

.h8_course-wrap .inner-info::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 6px 50px 0px rgba(25, 35, 53, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid #FFF;
    border-radius: 10px;
    z-index: -1;
}

.h8_course-wrap .inner-info h3 {
    color: #021936;
    font-size: 3.90625vw;
    font-weight: 500;
    margin-bottom: 0.5574136008918618vh;
    line-height: 1.1;
}

.h8_course-wrap .inner-info span {
    color: #021936;
    font-size: 1.171875vw;
    font-weight: 500;
    line-height: 1;
}

.h8_course-item.small {
    width: 151px;
    flex-shrink: 0;
    flex: 0 0 151px;
}

h6.h8_course-m-count svg {
    transform: scaleX(-1);
    width: 1.875vw;
    height: 1.875vw;
}

html.a-html {
    position: inherit !important;
}

.a-body {
    overflow-y: visible !important;
}

canvas.a-canvas.a-grab-cursor {
    position: absolute !important;
    max-width: 100%;
    max-height: 100%;
}

div#app {
    height: 100%;
}

.h8_course-m-title .h8_course-m-count {
    font-size: 24px;
    font-weight: 700;
    line-height: 33.6px;
    color: #000;
    margin: 0;
}

.h8_course-item.expand .h8_course-m-title .h8_course-m-count {
    color: #fff;
}

.report-inner .title-report {
    margin-bottom: 28px;
}

.report-inner .title-report span {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
    display: inline-block;
}

.report-inner .title-report h3 {
    max-width: 544px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #000;
}

.report-inner {
    /* white-space: normal; */
    width: 100%;
    height: 100%;
    position: relative;
}

.report-inner .video-block a {
    display: block;
    height: 432px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.report-inner .video-block a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.report-inner .video-block a::after {
    transition: all .4s;
    content: "\f04b";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: var(--main-color);
    border-radius: 50%;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    align-items: center;
    display: flex;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.report-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    padding-top: 9px;
}

.report-controls .report-arrows {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 33px;
    flex-direction: row-reverse;
}

.report-controls .report-arrows .arrow {
    font-size: 16px;
    color: var(--main-color);
    transform: scaleX(-1);
    cursor: pointer;
    margin: 0 20px;
    color: #fff;
    width: 34px;
    height: 34px;
    background: #00000066;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    text-align: center;
    align-content: center;
    transform: scaleX(1);
}

.report-controls .report-count {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
}

.report-controls .report-count span {
    color: #2D4A56;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    display: inline-flex;
}

.report-controls .report-count span.active {
    width: 43.94px;
    height: 37.8px;
    border: 1px solid #2D4A56;
    border-radius: 4px;
    align-items: center;
    -wekit-align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.banner-h2 .banner-item .banner-text {
    /* max-width: 100%; */
}

.banner-h2 .banner-item .banner-text h1 {
    max-width: 916px;
    font-weight: 600;
    font-size: 52px;
    line-height: 62px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.banner-counter.row {
    align-items: center;
    -webkit-align-items: center;
}

.banner-counter .banner-counter-in {
    background: #FFFFFF1A;
    backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 40px;
}

.banner-counter-item {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.banner-counter-item h3 {
    margin: 0;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    direction: ltr;
    display: inline-block;
    border-inline-end: 1px solid #FFFFFF;
    padding-inline-end: 17px;
}

.banner-counter-item span {
    max-width: 137px;
    /*font-family: Montserrat;*/
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    /* border-inline-end: 1px solid #FFFFFF; */
    text-transform: uppercase;
    padding-inline-end: 16px;
    margin: 0 16px;
}

.banner-btn {
    text-align: end;
}

.banner-btn .btn {
    min-height: 50px;
}

.banner-h2 .banner-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: end;
}

.banner-h2 .banner-item .banner-form {
    /* background-color: rgba(var(--styleguide-color-rgb-neutral-10, 0, 0, 0), .2); */
    /* backdrop-filter: blur(.4rem); */
    /* max-width: 1000px; */
    /* width: 100%; */
    /* margin: auto auto 0; */
    /* padding: 2.4rem 1.6rem 1.6rem; */
    /* backdrop-filter: blur(20px); */
    /* border-radius: 40px; */
    /* padding: 24px; */
    /* text-align: center; */
    /* height: auto; */
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0;
    backdrop-filter: none;
    /* max-width: 976px; */
    position: relative;
    gap: 0;
}

.banner-h2 .banner-item .banner-form .form-tabs {
    display: inline-flex;
    align-items: center;
    /* gap: 50px; */
    margin-bottom: 0;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
}

.banner-h2 .banner-item .banner-form .form-tabs .nav.nav-tabs {
    margin: 0;
    background: #fff;
    /* border-radius: 24px; */
    padding: 4px;
    padding: 0;
}

.banner-h2 .banner-item .banner-form .form-tabs .nav.nav-tabs .nav-item .nav-link {
    border-radius: 0;
    background: transparent;
    min-width: 151px;
    min-height: 32px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    text-transform: uppercase;
    border-inline-end: 1px solid #ccc !important;
    height: 32px;
}

.banner-h2 .banner-item .banner-form .form-tabs .nav.nav-tabs .nav-item .nav-link.active {
    background: #011E65;
    color: #fff;
}

.banner-h2 .banner-item .banner-form .form-tabs .btn-reset {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    border: none !important;
    border-bottom: 1px solid #FFFFFF !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--main-color);
    padding: 2px;
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    min-width: 151px;
    min-height: 32px;
    justify-content: center;
}

.banner-form .form-content .tab-inner .item {
    width: 14%;
    padding: 0;
}

.banner-form .form-content .tab-inner .item:nth-child(1),
.banner-form .form-content .tab-inner .item:nth-child(2) {
    width: 24%;
}

.banner-h2 .container>.row {
    height: calc(100vh - 88px);
}

.banner-form .form-content .tab-inner .item .form-group {
    margin: 0;
    height: 48px;
    position: relative;
}

.banner-form .form-content .tab-inner .item .form-group .form-control {
    min-height: 48px;
    width: 100%;
    background: #fff;
    border: none !important;
    padding: 14px 11px;
    color: #6A6767;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    height: 48px;
    border-inline-end: 1px solid #ccc !important;
    border-radius: 0;
}

.banner-form .form-content .tab-inner .item .form-group .niceSelect::after {
    left: auto;
    right: 18px;
    content: "\f0d7";
    top: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 12px;
}

.banner-form .form-content .tab-inner {
    margin-left: -4px;
    margin-right: -4px;
    align-items: center;
    -webkit-align-items: center;
}

.banner-form .form-content .tab-inner .item:last-child {
    width: 12%;
    padding: 0;
}

.banner-form .form-content .tab-inner .item .btn {
    min-width: 100%;
    min-height: 48px;
    border-radius: 0;
    border-end-end-radius: 50px;
    border-start-end-radius: 50px;
}

.banner-form .form-content .tab-inner .item .form-group i {
    position: absolute;
    left: 16px;
    top: 17px;
    color: #B3B1B1;
}

.banner-form .form-content .tab-inner .item:nth-child(1) .form-control {
    padding-inline-start: 42px;
    border-start-start-radius: 50px;
    border-end-start-radius: 50px;
}

.prop-slider .slick-list {
    /* overflow: visible; */
}

.prop-h {
    padding: 50px 0;
}

.prop-slider .item {
    padding: 0 8px;
}

.project-block.prop-block .img-block .img img {
    height: 262px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.project-block.prop-block .img .item {
    padding: 0;
}

.project-block.prop-block .img-block .labels-img span {
    background: var(--sec-color);
    /* display: table; */
}

.project-block.prop-block .img-block .labels-img span:nth-child(2) {
    background: #01041E80;
}

.project-block.prop-block .img-block .price-img {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 21px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}

.prop-slider .prop-inner-slider .slick-arrow {
    width: 36px;
    top: 55%;
    height: 36px;
    margin: 0 47px;
    background: #00000033;
    backdrop-filter: blur(10px);
    border: none;
}

.project-block.prop-block .details ul li:nth-child(1) {
    display: flex;
    padding: 0;
    color: #6A6767;
    border: none;
    margin-bottom: 16px;
    height: 50px;
}

.project-block.prop-block .details ul li {
    border-inline-end: 1px solid #CECECE;
}

.project-block.prop-block .details ul li:nth-child(4),
.project-block.prop-block .details ul li:last-child {
    border: none;
}

.project-block.prop-block .details .btn-flex {
    margin: 16px 0;
}

.project-block.prop-block .details .btn-flex .btn {
    background: transparent;
    border-radius: 4px;
    width: calc(33.33% - 8px);
    min-height: 38px;
    padding: 6px !important;
    border-color: var(--main-color) !important;
    color: var(--main-color);
    font-weight: 500;
    font-size: 16px !important;
    line-height: 22px;
    min-width: auto;
}

.project-block.prop-block .details .btn-flex .btn.btn-whats {
    border: 1px #999999 solid !important;
    color: #60D66A;
    font-size: 20px !important;
}

.project-block.prop-block .details .foot-block {
    border-top: 1px solid #CECECE;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.project-block.prop-block .details .foot-block .user-name {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    max-width: 60%;
}

.project-block.prop-block .details .foot-block .user-name .img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
}

.project-block.prop-block .details .foot-block .user-name .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-block.prop-block .details .foot-block .user-name h4 {
    margin: 0;
    max-width: calc(100% - 42px);
    padding-inline-start: 16px;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.project-block.prop-block .details .foot-block .foot-btn .btn {
    min-width: 112px;
    min-height: 43px;
    padding: 5px !important;
    font-weight: 500;
    font-size: 18px !important;
    line-height: 24px;
}

.project-block.prop-block .details .btn-flex .btn:hover {
    background: var(--main-color) !important;
    color: #fff !important;
}

.prop-slider .slick-arrow {
    margin: 0 -60px;
    background: transparent;
    backdrop-filter: none;
    width: 32px;
    height: 32px;
    border: 1px solid #B3B1B1;
    z-index: 5;
}

.prop-slider .slick-arrow::before {
    color: var(--main-color);
    font-size: 12.97px;
}

.prop-slider .prop-inner-slider .slick-arrow::before {
    color: #fff;
}

.prop-h .btn-center {
    margin-top: 41px;
}

.prop-h .btn-center .btn.btn-boder {
    background: transparent;
    border: 1px solid var(--main-color) !important;
    color: var(--main-color);
}

.prop-h .btn-center .btn.btn-boder:hover {
    background: var(--sec-color);
    border-color: var(--sec-color) !important;
    color: #fff;
}

.deals-item {
    height: 486px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 34px 30px 30px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.deals-item .deal-text {
    max-width: 710px;
    background: #FFFFFF1A;
    backdrop-filter: blur(120px);
    padding: 32px;
    border-radius: 10px;
    overflow: hidden;
}

.deals-item .deal-text h2 {
    color: #fff;
    font-weight: 600;
    font-size: 52px;
    line-height: 63px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.deals-item .deal-text p {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.deals-item .deal-text .btns-flex {
    margin-top: 42px;
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
}

.deals-item .deal-text .btns-flex .btn {
    min-height: 50px;
    min-width: 202px;
    padding: 13px 24px;
}

.deals-slider .slick-dots {
    bottom: 0;
    width: auto;
    right: 0;
    margin: 14px 21px;
}

.deals-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.deals-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50px;
    transition: all .3s;
    margin: 0 3px;
}

.deals-slider .slick-dots li button::before {
    display: none;
}

.deals-slider .slick-dots li.slick-active button {
    width: 64px;
}

.deals-slider {
    margin: 0 !important;
}

.latest-projects-h {
    padding: 50px 0;
}

.h8_course-m-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.report-inner .img {
    width: 100%;
    height: 100%;
}

.report-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.h8_course-content-3 .course-accordion-wrap {
    width: 100%;
    height: 100%;
}

.report-inner .report-price {
    margin: 32px 35px;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0;
}

.report-inner .report-price h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    margin: 0;
}

.report-inner .report-title {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    background: linear-gradient(351.91deg, rgba(0, 0, 0, 0.2) 7.28%, rgba(0, 0, 0, 0) 94.85%);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
}

.report-inner .report-title .title-inner h3 {
    margin-bottom: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}

.report-inner .report-title .title-inner h4 {
    display: inline-flex;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    margin: 0;
    gap: 8px;
}

.report-inner .report-title .btn {
    min-width: 206px;
    min-height: 50px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.report-controls .report-arrows {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    justify-content: space-between;
    /* flex-direction: row; */
}

.overlay-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.areas-block {
    height: 376px;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.areas-block .img,
.areas-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.areas-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    padding: 15px 20px;
}

.areas-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(1.1deg, rgba(1, 1, 1, 0.7) 0.84%, rgba(103, 103, 103, 0) 98.96%);
    height: 40%;
    top: auto;
}

.areas-block .details h3 {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    margin: 0;
}

.areas-block .details h3 span {
    margin: 0 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.areas-block .details h3 i {
    font-size: 13.33px;
    color: var(--sec-color);
    margin-inline-start: 5px;
}

.areas-h {
    padding-bottom: 100px;
}

.contact-h {
    padding-bottom: 50px;
}

.contact-video a {
    display: block;
    position: relative;
    height: 464px;
    overflow: hidden;
    border-radius: 10px;
}

.contact-video a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-video a::before,
.contact-video a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.contact-video a::before {
    background: #0023793D;
}

.contact-video a::after {
    width: 104px;
    height: 104px;
    color: #fff;
    margin: auto;
    border-radius: 50%;
    content: "\f144";
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 104px;
    line-height: 104px;
}

.contact-form {
    border: 1px solid #999999;
    backdrop-filter: blur(120px);
    padding: 32px 50px;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    /* Lower than select dropdown */
}

.contact-form .nice-select .list {
    height: 130px;
    overflow-y: auto;
}

.contact-form .nice-select .list::-webkit-scrollbar {
    width: 8px;
}

.contact-form .nice-select .list::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color);
}

.contact-form .nice-select .list::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 4px;
}

.contact-form h3 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
}

.contact-form form .form-group {
    margin-bottom: 8px;
}

.contact-form form .form-group .form-control {
    background: #FAFAFA;
    border: 1px solid #B3B1B1;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    box-shadow: none !important;
}

.iti {
    width: 100%;
}

.contact-form form .form-group .iti__selected-flag {
    background: transparent !important;
}

.nice-select::after {
    left: auto;
    right: 18px;
    top: 12px;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 0;
    color: #35373c;
    font-size: 14px;
    margin: 13px;
}

.contact-form form .form-group .form-control .nice-select {
    z-index: 99999 !important;
}

.contact-form form .form-group .form-control .current {
    color: #6A6767;
}

.contact-form form .form-group .form-control::after {
    content: "\f0d7";
    top: 0;
    bottom: 0;
    align-content: center;
    font-size: 12px;
}

.contact-form form .form-group .btn {
    margin-top: 42px;
    display: table;
    margin-inline-start: auto;
    min-width: 163px;
    min-height: 50px;
    font-size: 18px;
}

.justified-gallery .gallery-slider2 {
    width: auto !important;
    height: auto !important;
}

.off-plan-h {
    /*padding: 100px 0;*/
}

.off-plan-inner {
    background: #757AA21A;
    padding: 50px 0;
}

.off-plan-h .title {
    margin-bottom: 32px;
}

.off-plan-title {
    text-align: center;
    min-height: 80px;
    margin-bottom: 36px;
    align-content: center;
    max-width: 85%;
    margin: 0 auto;
}

.off-plan-title h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.off-plan-slider .slick-arrow {
    top: 42px;
    width: 80.19px;
    height: 80px;
    border-radius: 20px;
    background: #0000001A;
    backdrop-filter: blur(10px);
}

.off-plan-slider .slick-arrow::before {
    color: #000;
    font-size: 33.33px;
    font-weight: 300;
}

.off-plan-block .off-plan-tabs .nav.nav-tabs {
    justify-content: center;
    margin: 36px 0;
    gap: 46px;
}

.off-plan-block .off-plan-tabs .nav.nav-tabs .nav-item .nav-link {
    border: none;
    background: transparent;
    padding: 0;
    min-width: auto;
    min-height: auto;
    color: var(--main-color);
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
}

.off-plan-block .off-plan-tabs .nav.nav-tabs .nav-item .nav-link.active {
    /* color: var(--sec-color); */
}

.text-with-imgs {
    margin: 0;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E1E1E1;
    overflow: hidden;
    max-height: 430px;
}

.text-with-imgs .col-md-5,
.text-with-imgs .col-md-7 {
    padding: 0;
}

.off-plan-text {
    padding: 40px 42px;
}

.off-plan-text p {
    /*font-family: Montserrat;*/

    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #4E4E4E;
}

.off-plan-text ul {
    margin: 48px 0 0;
}

.off-plan-text ul li {
    margin-bottom: 8px;
    color: #4E4E4E;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.off-plan-text ul li span {
    color: var(--sec-color);
    margin-inline-start: 8px;
}

.off-plan-text .btn {
    margin-top: 38px;
    min-width: 227px;
    min-height: 50px;
    font-size: 18px;
    line-height: 24px;
}

.off-plan-img {
    max-width: 706px;
    margin-inline-start: auto;
    min-height: 428px;
    height: 100%;
}

.off-plan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tab-inner .slick-slider .item {
    padding: 0 10px;
}

.tab-inner .slick-slider .item .tab-img.gallery-items.item-big {
    background: #fff;
}

.partners-h {
    padding: 80px 0;
    /* margin-top: 50px; */
}

.partners-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #01062D99;
}

.partners-h .row {
    /* margin: 0; */
    /* background: #FFFFFF; */
    /* padding: 66px 72px 50px; */
    /* border-radius: 10px; */
}

.partners-h .title {
    margin-bottom: 43px;
}

.partner-block img {
    /*max-width: 196.08px;*/
    max-width: 110.08px;
    max-height: 80px;
    object-fit: contain;
    object-position: center;
}

.partner-block {
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.blogs-h {
    padding: 0 0 50px;
    padding-top: 50px;
}

.blog-block-h {
    margin-bottom: 16px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid #B3B1B1;
    border-radius: 10px;
}

.blog-block-h .img-block {
    height: 223px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.blog-block-h .img-block .img,
.blog-block-h .img-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-block-h .img-block .img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog-block-h .img-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000033;
}

.blog-block-h .img-block .title-block {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: #3F3C5133;
    backdrop-filter: blur(10px);
    padding: 12px 22px 16px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.blog-block-h .img-block .title-block h3 {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    max-width: calc(100% - 42px);
}

.blog-block-h .img-block .title-block .icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--sec-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #fff;
    background: #FFFFFF1A;
    font-size: 14px;
}

.blog-block-h .details {
    padding: 16px 0 8px;
}

.blog-block-h .details p {
    color: #4E4E4E;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-block-h.big-block .img-block {
    height: 602px;
}

.blog-block-h.big-block .img-block .title-block {
    padding-bottom: 22px;
}

.blog-block-h.big-block .img-block .title-block h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
}

.blog-block-h.big-block .img-block .title-block .icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
}

.blog-block-h.big-block .details p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.whatsappIcon {
    display: flex;
    width: 82px;
    height: 82px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 3;
    color: #fff !important;
    border-radius: 50%;
    background: #60D669;
    font-size: 34px;
    margin: 57px;
    animation: pulse-animation 2s infinite;
}

.whatsappIcon i {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(96, 214, 105, 0.3);
    }

    100% {
        box-shadow: 0 0 0 25px rgb(96, 214, 105, 0);
    }
}

.res-only,
.blogs-h .title .btn {
    display: none;
}

.btn-reset .icon svg path {
    stroke: var(--main-color);
}

.btn-reset .icon svg {
    width: 16px;
    height: 16px;
}

.banner-h2 .form-content {
    margin-top: 1.6rem;
    background: #fff;
    text-align: start;
    border-radius: 50px;
    /* overflow: hidden; */
}

.banner-form .form-content .tab-inner .item:nth-last-child(2) .form-group .form-control {
    border: none !important;
}

.banner-form .form-content .tab-inner .item:nth-last-child(2) {
    width: 12%;
}

.banner-form .form-content .tab-inner .item .form-group .form-control .current {
    max-width: 90%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.packages-inner {
    position: relative;
}

.packages-inner .report-controls .report-arrows {
    width: 110%;
    left: -5%;
}

.filterModal .modal-body {
    padding: 40px;
}

.filterModal button.btn-close {
    /*margin: -18px -18px 35px;*/
    margin: -20px 0px;
    margin-inline-start: auto;
    display: table;
    padding-top: 15px;
}

.filterModal h3 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
}

.filterModal .form-control {
    height: 54px;
    background: #FAFAFA;
    border: 1px solid #B3B1B1;
    align-content: center;
    color: #6A6767;
    padding: 0 16px !important;
    outline: none !important;
    box-shadow: none !important;
}

.filterModal .form-group {
    margin-bottom: 8px;
}

.filterModal .form-group button.btn {
    display: table;
    height: 50px;
    font-size: 18px;
    margin-inline-start: auto;
    margin-top: 32px;
    min-width: 122px;
}

.project-block.prop-block .img .item.slick-slide.slick-cloned {
    opacity: 0 !important;
}

.tab-banner-inner {
    /*width: 92vw;*/
}

.prop-slider {
    /*direction: ltr;*/
    direction: rtl;
}

.prop-slider .slick-prev {
    left: auto;
    right: 0;
}

.prop-slider .slick-next {
    left: 0;
    right: auto;
}

.prop-slider .slick-prev:before,
.prop-slider .slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f105";

}

.prop-slider .slick-next:before {
    content: "\f104";

}

.prop-inner-slider {
    direction: ltr;
}

.prop-slider .slick-next.slick-arrow {
    /*margin: 0 8vw;*/
}

.prop-slider .prop-inner-slider .slick-next.slick-arrow {
    margin: 0 47px;
}

.project-block.prop-block {
    direction: ltr;
}

.filterModal .form-control.phone {
    padding-inline-start: 90px !important;
}

.banner-form .form-content .tab-inner.tab-banner-3 .item {
    width: 18%;
}

.banner-form .form-content .tab-inner.tab-banner-3 .item:nth-child(1) {
    width: 30%;
}

.banner-form .form-content .tab-inner.tab-banner-3 .item:last-child {
    width: 16%;
}

.project-block.prop-block .details ul li img {
    max-width: 21px;
}

.project-block .details .price-h i {
    color: var(--sec-color);
}

.project-block .details .price-h {
    margin-bottom: 20px;
}

/* End Index */




.gallery-res2 {
    display: block;
}

.gallery-res2 .gallery-items {
    margin-inline-start: -6px;
    max-width: calc(100% - calc(var(--bs-gutter-x) * .5));
    border: none;
}


.gallery-res2 .item.slick-slide.slick-current.slick-active .gallery-items {
    margin: 0;
}

.gallery-res2>div {
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
}

.gallery-res2.all-features {
    display: block;
}

.gallery-slider2 .item {
    padding: 0 10px;
}

.gallery-slider2 .slick-list {
    margin-left: -10px;
    margin-right: -10px;
    border: none;
}

.projects-h .gallery-slider .slick-slide .project-block {
    margin: 0 10px;
}

.gallery-slider2 .slick-arrow {
    top: 50%;

}

.contact-sec {
    margin-top: 50px;
}

/* Add this to your CSS to prevent scroll jumps */
body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}


.cityBtn {
    /* display: flex; */
    display: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
}

.cityBtn>.cityHeader:hover .sub-menu {
    display: block;
    /* Disable this if using only JS control */
}

.cityBtn .lang-btn span {
    padding-top: 5px;
}

.cityBtn .lang-btn {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    justify-content: end;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    /*line-height: 16px;*/
    cursor: pointer;
    padding: 5px;

}

.cityBtn .lang-btn.active,
.cityBtn .sub-menu .lang-btn:hover {
    color: var(--main-color);
    background-color: var(--th-color);
    padding: 10px;
    border-radius: 5px;
}

.cityBtn a.cityHeader:before {
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    transition: all .4s;
    border-bottom: 1px var(--sec-color) solid;
    position: absolute;

}

.cityBtn a.cityHeader:after {
    content: "\f0d7";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;

}


.cityBtn>.cityHeader:hover::after {
    transform: rotate(180deg);
}

.cityBtn .lang-btn.active .icon img {
    filter: none;

}

.cityBtn .lang-btn .icon {
    width: 22px;
    height: 22px;
    /*line-height: 18px;*/
}

.cityBtn .lang-btn .icon img {
    filter: brightness(0) invert(1);

}

.cityBtn .mainUae .icon img {
    filter: none !important;

}

.cityBtn .sub-menu .lang-btn .icon img {
    filter: none !important;
}

.menu-item-has-children .lang-btn .icon {
    display: inline;

}

.menu-item-has-children .lang-btn .icon img {
    width: 22px;
    height: 22px;
}

.mobile-menu .menu-box .navigation li a.active {
    /*color: var(--sec-color);   */
    /*color:#fff;*/
    background-color: var(--th-color);
    padding: 10px;
    border-radius: 5px;
}

.mobile-menu .menu-box .navigation li a.active img {
    /*filter: brightness(0) invert(1);*/
}

.sub-menu li {
    margin-left: 10px;
}

#projects .item {
    margin-bottom: 10px;
}

/* area page */
.area-about {
    /* font-size: 15px; */
    /* white-space: pre-line; */
    /* margin-top: -25px; */
    height: 550px;
    /*padding-top: 0px;*/
}

.area-about p {
    white-space: pre-line;

}

.area-slider .home-img img {
    height: 550px;
    border-radius: 20px;
}

.area-about-sec {
    margin-top: 50px;
}

.attractions-slider-area .card .card-body p {
    height: 125px !important;

}

.contact-area {
    margin-top: 50px;
    background-color: var(--main-color);
}

.btn.all-projects {
    color: var(--main-color);
    background: transparent;
    border: 1px var(--main-color) solid !important;
    min-width: 170px;
}

.project-area {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.input-search-block .input-search {
    height: 36px;
    overflow: hidden;
}

p:has(> strong:only-child > br:only-child),
p:empty {
    display: none;
}

.most_popular .blog-block-h .img-block {

    height: 90px;
}

.most_popular .item .blog-block-h .img-block {
    height: 200px;
}

.most_popular .blog-block-h.big-block .img-block {
    height: 465px;
}

.related_articles .blog-block-h.big-block .img-block {
    height: 727px;
}



/*.blog_details h1 {*/
/*    color: var(--main-color);*/
/*    font-size: 28px;*/
/*    border-bottom: 2px solid #eaeaea;*/
/*    padding-bottom: 10px;*/
/*    margin-bottom: 20px;*/
/*}*/
/*.blog_details h2 {*/
/*    color: var(--main-color);*/
/*    font-size: 22px;*/
/*    margin-top: 30px;*/
/*}*/
/*.blog_details h3 {*/
/*    color: var(--sec-color);*/
/*    font-size: 18px;*/
/*}*/
/*.blog_details p {*/
/*    margin-bottom: 15px;*/
/*}*/
/*.blog_details ul {*/
/*    margin: 15px 0;*/
/*    padding-left: 20px;*/
/*}*/
/*.blog_details li {*/
/*    margin-bottom: 8px;*/
/*    position: relative;*/
/*    padding-left: 20px;*/
/*}*/
/*.blog_details li:before {*/
/*    content: "✔";*/
/*    color: var(--sec-color);*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/
/*.blog_details .highlight-box {*/
/* background-color: #f8f9fa; */
/* border-left: 4px solid var(--main-color); */
/* padding: 15px; */
/*    margin: 20px 0;*/
/*}*/

.blogs-h .show-blogs a {
    color: #0000ff;
    /*text-decoration:underline !important;*/
}

.blogs-h .show-blogs a:hover {
    color: var(--sec-color);
    text-decoration: underline !important;
}

.attraction-blog .res-only {
    display: block !important;
}

.cityBtn .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cityBtn:hover .sub-menu {
    display: block;
}

.blog_details ul li {
    display: list-item;
    list-style: disc;
    margin-left: 40px;
}

.developerFilter .card .card-img-top {
    object-fit: contain;
    height: 180px;
}

#share-modal button.btn-close {
    margin-bottom: 0px;
}

#share-modal h2 {
    margin-bottom: 20px;
}

#share-modal {
    margin-top: 10%;
}

/* Share Button */
.share-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #006169;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

.share-button svg {
    width: 20px;
    height: 20px;
}

/* Dropdown Menu */
.share-dropdown {
    display: none;
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    min-width: 180px;
    top: 50px;

}

.share-dropdown.active {
    display: block;
}

.share-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-options li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px !important;
    color: var(--main-color) !important;
    text-decoration: none;
}

.share-options li:hover {
    background: #e6e6e6 !important;
    /*color:#fff !important;*/
}

.share-options svg {
    width: 20px;
    height: 20px;
}

.developerFilter .blog-block-h .img-block .title-block {
    visibility: hidden;
    opacity: 0;
}

.developerFilter .blog-block-h .img-block .title-block h3 {
    max-height: 60px;
    color: #0d0d0f;

}

.developerFilter .blog-block-h .img-block:hover .title-block {
    visibility: visible;
    opacity: 1;
}

.developerFilter .blog-block-h .img-block .img::after {
    background: none;
}

.developerFilter .blog-block-h .img-block .img img {
    object-fit: contain;
}

.grecaptcha-badge {
    display: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    padding: 0 !important;
    margin: 0 !important;
    text-indent: 0 !important;
}


.sidebar-section {
    /*font-family: Arial, sans-serif;*/
    font-family: "Montserrat", serif;
    font-size: 14px;
}

.section-block {
    margin-bottom: 20px;
}

.section-title {
    margin-top: 10px;
    background-color: #f5f5f5;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 4px;
}

.section-block ul {
    margin-top: 10px;
    padding-left: 0;
}

.section-block li {
    margin: 10px;
    padding: 5px;
}

.section-block a {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
    line-height: 1.2;
}

.section-block a:hover {
    color: var(--sec-color);
    /* لون hover */
}

.view-more {
    font-weight: bold;
    color: var(--main-color);
}



.about-text ul,.prop-text ul
.about-text ol ,.prop-text ol{
    list-style-position: inside;
    padding-left: 20px;
    /* or use margin depending on design */
}
.prop-text ul,.prop-text ol{
      list-style-position: inside;
    padding-left: 20px;
}

.about-text ul li ,.prop-text ul li{
    margin-bottom: 5px;
    list-style: disc;
    /* Or 'decimal' for numbered lists */
    display: list-item !important;
    /* Ensure it's a list item */
}


.about-text ol li, .prop-text ol-li{
    margin-bottom: 5px;
    list-style: decimal;
    /* Or 'decimal' for numbered lists */
    display: list-item !important;
    /* Ensure it's a list item */
}

.blog_details ul li {
    display: list-item;
    list-style: disc;
    margin-left: 40px;
}

.blog_details ol li {
    display: list-item;
    list-style: decimal;
    margin-left: 40px;
}

.about-text p,
.about-text span,
.blog_details p,
.blog_details span {
    font-family: "Montserrat", serif !important;
    text-transform: none !important;
}


.about-text a,
.blog_details a {
    color: #0000ff !important;
    /*text-decoration:underline !important;*/
}

.about-text a:hover,
.blog_details a:hover {
    color: var(--sec-color) !important;
    text-decoration: underline !important;
}


/* New Style */


.cd-intro {
    text-align: left;
}

.cd-headline {
    font-size: 20px;
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    /* text-align: left; */
}

.cd-words-wrapper b {
    /* display: inline-block; */
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-weight: inherit;
    /* font-family: 'Roboto Condensed', sans-serif; */
    /* font-size: 32px; */
    /* font-weight: 700; */
}

.cd-words-wrapper b.is-visible {
    /* position: relative; */
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

/* --------------------------------
  
  xslide
  
  -------------------------------- */

.cd-headline.slide span {
    display: inline-block;
    /* padding: .2em 0; */
    /* letter-spacing: 1px; */
    margin: 0;
    height: 70px;
}

.cd-headline.slide .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
    margin-inline-start: 12px;
}

.cd-headline.slide b {
    opacity: 0;
    top: .2em;
}

.cd-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in 0.6s;
    -moz-animation: slide-in 0.6s;
    animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
    -webkit-animation: slide-out 0.6s;
    -moz-animation: slide-out 0.6s;
    animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
}

@-moz-keyframes slide-out {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
        -ms-transform: translateY(120%);
        -o-transform: translateY(120%);
        transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 14px;
    padding-bottom: 4px;
}

.header-med .head-inner ul li .sub-menu .sub-inner {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(7, 35, 75, .16), 0 0 2px rgba(0, 0, 0, .16), 0 1px 2px rgba(0, 0, 0, .08);
    gap: 0;
    padding: 32px;
    margin: 0;
    min-width: 800px;
}

.header-med .head-inner ul li .sub-menu {
    background: transparent;
    padding: 40px 0;
    box-shadow: none;
    border-radius: 0;
}

.header-med .head-inner ul li .sub-menu .sub-inner h3 {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.header-med .head-inner ul li .sub-menu .sub-inner.row ul {
    flex-wrap: wrap;
    gap: 7px 0;
}

.header-med .head-inner ul li .sub-menu .sub-inner.row ul.devList {
    width: 50%;
}

.header-med .head-inner ul li .sub-menu .sub-inner.row ul li {
    width: 50%;
    flex: 0 0 auto;
    margin: 0;
}

.nav-full-width li,
.devList li {
    width: 100% !important;
}

.header-med .head-inner ul li .sub-menu .sub-inner.row ul li a {
    padding: 0;
    color: var(--main-color);
    font-size: 14px;
    letter-spacing: .01em;
    line-height: 160%;
    margin-top: 4px;
    white-space: nowrap;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu .sub-inner .img-menu {
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.header-med .head-inner ul li .sub-menu .sub-inner .img-menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-med .head-inner ul li .sub-menu .sub-inner .img-menu::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), hsla(0, 0%, 83%, 0) 50%/cover no-repeat;
}

.header-med .head-inner ul li .sub-menu .sub-inner .img-menu .txet-block {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    -webkit-align-items: start;
    padding: 32px;
}

.header-med .head-inner ul li .sub-menu .sub-inner .img-menu .txet-block h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .18px;
    line-height: 140%;
    margin-bottom: 8px;
    text-transform: none;
    /* Add these properties for text wrapping */
    overflow-wrap: break-word;
    /* or 'normal' if you don't want wrapping */
    word-wrap: break-word;
    /* for older browsers */
    white-space: normal;
    /* ensures text will wrap */
}

.header-med .head-inner ul li .sub-menu .sub-inner .img-menu .txet-block h4 span {
    display: block;
    font-weight: 400;
}

.header-med .head-inner ul li .sub-menu.sub-menu2 {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(7, 35, 75, .16), 0 0 2px rgba(0, 0, 0, .16), 0 1px 2px rgba(0, 0, 0, .08);
    gap: 0;
    padding: 32px;
    margin: 0;
    min-width: 214px;
}

.lang-menu .lang-btn .icon img {
    display: none;
}

.lang-menu .lang-btn .icon::after {
    content: "\f57d";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 200;
    font-size: 20px;
}

.lang-btn span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .14px;
    line-height: 140%;
    /* text-decoration-line: underline; */
}

.lang-menu .lang-btn::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
}

.lang-menu::before {
    content: "";
    background-color: #e1e8ed;
    content: "";
    height: 24px;
    left: 0;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 1px;
    opacity: 0;
}

.lang-menu .lang-menu::before {
    display: none;
}

.lang-menu .lang-menu {
    padding: 0;
}

.menu-left .btn.btn-border {
    color: #fff;
    border-color: #fff;
    min-width: 180px;
    border-radius: 4px;
    min-height: 48px;
    /*font-size: 14px;*/
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .01em;
}

.banner-h2 .banner-item .banner-text h1 {
    /* font-size: 64px; */
    font-size: 45px;
    letter-spacing: -.64px;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

section.banner-h.banner-h2 {}

.toggle-buttons .toggle-label {
    background: transparent;
    border: 2px solid #fff;
    border: 1px solid hsla(0, 0%, 100%, .4);
    border-radius: 8px;
    color: #fff;
    flex: none;
    padding: 0 32px;
    font-size: 14px;
    height: 46px;
    align-content: center;
}

.toggle-buttons .toggle-radio:checked+.toggle-label {
    border: 2px solid #fff;
    font-weight: 400;
    background: transparent;
}

.head-content-dropdown .form-head {
    margin-bottom: 24px;
}

.banner-h2 .banner-item .banner-form .filters {
    display: flex;
    width: 100%;
    gap: 16px;
    margin: 0;
}

.banner-h2 .banner-item .banner-form .filters .form-inner-2 {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 1px 2px rgba(0, 0, 0, .08));
    flex: 1 1;
    flex-direction: row;
    height: 46px;
    overflow: hidden;
}

.banner-h2 .banner-item .banner-form .filters .form-inner-2 .input-search-block,
.banner-h2 .banner-item .banner-form .filters .form-inner-2 .main-dropdown-toggle {
    padding: 10px 16px;
    height: 100%;
    border-radius: 0;
    border: none;
    text-align: start;
    background: #ffff;
    color: #33333382;
    color: #35373c;
    font-size: 14px;
    font-weight: normal;
}

.main-dropdown-toggle i::before {
    content: "\f107";
}

.banner-h2 .banner-item .banner-form .filters .form-inner-2 .input-search-block .select2-selection {
    padding: 0 !important;
    align-content: center;
    color: #35373c;
    opacity: 1;
    font-size: 14px;
    line-height: 140%;
}

.banner-h2 .banner-item .banner-form .filters .form-inner-2 .input-search-block .select2-selection ::placeholder {
    color: #35373c;
}

.banner-h2 .banner-item .banner-form .filters .btn {
    min-height: 46px;
    border-radius: 4px;
    min-width: 114px;
    padding: 0 32px;
    font-size: 14px;
    letter-spacing: .01em;
    background: linear-gradient(86.28deg, #d75718, #ee7133);
    color: #fff;
}

.banner-h2 .banner-item .banner-form .filters .btn i {
    display: none;
}

.banner-h2 .banner-item .banner-form .text-form p {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 32px;
}

.form-new-h .form-tabs {}

.form-new-h .form-tabs2 .nav.nav-tabs {
    margin: 0 0 24px;
    gap: 12px;
}

.form-new-h .form-tabs2 .nav.nav-tabs .nav-item .nav-link {
    background: transparent;
    border: 2px solid #fff;
    border: 1px solid hsla(0, 0%, 100%, .4);
    border-radius: 8px;
    color: #fff;
    flex: none;
    padding: 0 32px;
    min-width: auto;
    min-height: 46px;
    font-size: 14px;
    z-index: 1002;
}

.form-new-h .form-tabs2 .nav.nav-tabs .nav-item .nav-link.active {
    border: 2px solid #fff;
    font-weight: 400;
}

.form-content2 .form-inner-h {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .16)) drop-shadow(0 1px 2px rgba(0, 0, 0, .08));
    flex: 1 1;
    flex-direction: row;
    height: 46px;
    width: auto;
    /* max-width: calc(100% - 217px); */
    padding: 0;
    max-width: max-content;
}

.tab-inner-new form {
    max-width: 976px;
    display: flex;
    gap: 16px;
}

.tab-inner-new form.row {
    flex-wrap: inherit;
    gap: 16px;
    margin: 0;
}

.form-content2 .btn-from {
    width: 114px;
    padding: 0;
}

.dropdownList {
    display: none;
}

.form-content2 .form-inner-h .form-group:nth-child(1) {
    /*width: 386px;*/
    width: 450px;
}

.form-content2 .form-inner-h .form-group .form-control {
    border: none;
    border-radius: 0;
    height: 100%;
    padding: 10px 16px;
    color: #35373c;
    font-size: 14px;
    position: relative;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
    align-content: center;
    white-space: nowrap;
    /* overflow: hidden; */
    text-overflow: ellipsis;
}

.form-content2 .form-inner-h .form-group {
    position: relative;
    margin: 0;
}

.form-content2 .form-inner-h .form-group i {
    position: absolute;
    left: 0;
    margin: 15px 10px;
    height: 16px;
    margin-right: 8px;
    width: 16px;
    color: var(--main-color);
    z-index: 3;
}

.form-content2 .form-inner-h .form-group textarea.select2-search__field {
    padding: 0 37px;
    height: 47px !important;
    margin: 0;
    align-content: center;
    background: transparent;
    position: absolute;
    inset: 0;
}

.form-content2 .form-inner-h .form-group span {
    /* background: transparent; */
    /* height: 46px !important; */
    display: block;
    color: #000;
}

.form-content2 .form-inner-h .form-group:nth-child(2) {
    width: 100px;
    border-inline-start: 1px solid #f0f3f8;
}

.form-content2 .form-inner-h .form-group:nth-child(3) {
    width: 160px;
    border-inline-start: 1px solid #f0f3f8;
}

.form-content2 .btn-from .btn {
    min-width: 100%;
    border-radius: 4px;
    background: var(--sec-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: 1px solid #9399a4;
    font-weight: 400;
    height: 36px;
    max-width: 164px;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 180px;
    background: #f0f3f8;
    color: var(--main-color);
    padding: 0 16px;
    align-content: center;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice button.select2-selection__choice__remove {
    left: auto;
    right: 0;
    border: none;
    color: inherit;
    height: 100%;
    margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice span {
    height: auto !important;
    color: inherit;
}

.form-content2 .form-inner-h .form-group span.select2-selection.select2-selection--multiple.select2-selection--clearable {
    padding-inline-start: 30px;
}

.form-content2 .form-inner-h .form-group:nth-child(3) .input-select-h {
    border-radius: 8px;
    overflow: hidden;
}

.form-content2 .form-inner-h .form-group .input-select-h {
    position: relative;
    height: 100%;
}

.form-content2 .form-inner-h .form-group .input-select-h::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 0;
    color: #35373c;
    font-size: 14px;
    margin: 13px;
}

.form-content2 .btn-from .btn:hover {
    background: var(--main-color);
}

div#dropdownList2 {
    padding: 20px;
    min-width: 340px;
}

div#dropdownList2 .row-inner {
    width: 100%;
}

.dropdownList .row-inner .niceSelect {
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    color: #35373c;
    padding: 13px 12px;
    margin-top: 8px;
    min-width: 140px;
    height: 47px;
    min-height: auto;
    line-height: normal;
}

.dropdownList .row-inner .niceSelect::after {
    font-weight: 300;
    font-size: 16px;
    top: 15px;
}

.dropdownList .row-inner label {
    font-size: 12px;
    white-space: nowrap;
    color: #35373c;
    font-weight: 400;
}

div#dropdownList3 {
    min-width: 500px;
    padding: 20px;
}

.filterModal .form-group {
    margin-bottom: 12px;
}

.filterModal .form-group .form-control {
    background: #fff;
    border: 1px #777 solid;
    border-radius: 4px;
    height: 45px;
    font-size: 14px;
}

.filterModal .form-group .btn {
    width: 100%;
    border-radius: 4px;
    font-size: 15px !important;
    margin-top: 16px !important;
}

.header-med .head-inner ul li .sub-menu.sub-thr {
    min-width: 480px;
    /* min-width: auto; */
}

.header-med .head-inner ul li .sub-menu .sub-inner h4 {
    color: #9399a4;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 16px;
    text-transform: none;
    white-space: nowrap;
    letter-spacing: .12em;
}

.header-med .head-inner ul li .sub-menu.sub-thr ul {
    flex-wrap: wrap;
    gap: 0;
    align-items: start;
    -webkit-align-items: start;
}

.header-med .head-inner ul li .sub-menu.sub-thr ul li {
    width: 50%;
    flex: 0 0 auto;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu.sub-thr .sub-inner {
    min-width: 100%;
}

.header-med .head-inner ul li .sub-menu.sub-thr ul li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    color: #07234b;
    font-size: 14px;
    letter-spacing: .01em;
    line-height: 160%;
    margin-top: 4px;
    white-space: nowrap;
    padding: 0;
    margin: 2px 0;
    padding-inline-end: 3px;
}

.header-med .head-inner ul li .sub-menu ul li a .icon {
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.header-med .head-inner ul li .sub-menu.sub-thr ul li a::before {
    display: none;
}

.header-med .head-inner ul li .sub-menu {
    transform: scale(0) translateX(-22%);
}

.header-med .head-inner ul li .sub-menu.sub-two .sub-inner ul li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    padding: 0;
    margin: 2px 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.header-med .head-inner ul li .sub-menu.sub-two .sub-inner ul li a::before {
    display: none;
}

.header-med .head-inner ul li .sub-menu .sub-inner ul+h4 {
    margin-top: 24px;
}

.multi-select-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ccc;
    padding: 5px;
    min-height: 40px;
    background-color: #fff;
    cursor: pointer;
}

.multi-select-input .selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    position: absolute;
    inset: 0 28px;
}

.multi-select-input .tag {
    background-color: #f0f3f8;
    color: var(--main-color);
    padding: 2px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    border: 1px solid #9399a4;
    font-weight: 400;
    height: 36px;
    align-items: center;
    -webkit-align-items: center;
    margin: 6px 0;
}

.multi-select-input .tag .remove-tag {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
}

.form-content2 .form-inner-h .form-group .form-control .tag-input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 20px;
}

.item-sub {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.item-sub .icon i {
    position: relative;
    font-size: inherit;
    color: inherit;
    font-weight: 300;
    margin: 0;
}

.item-sub .details {
    width: calc(100% - 25px);
}

.item-sub h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--main-color);
    line-height: 26px;
    text-align: start;
}

.item-sub span {
    font-size: 14px;
    line-height: 24px;
}

div#dropdownList {
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
}

.form-content2 .form-inner-h .form-group .multi-select-input.inputBox.form-control {
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
}

.form-new-h .form-tabs2 .nav.nav-tabs .nav-item {
    position: relative;
    z-index: 1005;
}

.form-new-h .form-tabs2 .nav.nav-tabs .nav-item input {
    position: absolute;
    inset: 0;
    z-index: 1001;
    cursor: pointer;
    opacity: 0;
}

.form-new-h .form-tabs2 .nav.nav-tabs .nav-item input:checked~.nav-link {
    border: 2px solid #fff;
    font-weight: 600;
}

span.select2-selection.select2-selection--single.select2-selection--clearable {
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    color: #35373c;
    padding: 13px 12px;
}

.btn-search-res {
    display: none;
}

.project-block2 {
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .08), 0 0 2px 0 rgba(0, 0, 0, .16), 0 -12px 24px 0 transparent;
    height: calc(100% - 30px);
    overflow: hidden;
    margin-bottom: 30px;
}

.project-block2 .img-block {
    height: 312px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.project-block2 .img-block .img-inner {
    width: 100%;
    height: 100%;
}

.project-block2 .img-block .img-inner .prop-inner-slider {
    margin: 0;
    height: 100%;
}

.project-block2 .img-block .img-inner .prop-inner-slider .item,
.project-block2 .img-block .img-inner .prop-inner-slider .item * {
    width: 100%;
    height: 100% !important;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    /*margin: 0 10px;*/
    margin: 0 7%;
}

.tab-banner-inner .project-block2 .img-block .img-inner .prop-inner-slider .slick-arrow {
    margin: 0 10px !important;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-arrow::before {
    font-size: 24px;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-dots {
    bottom: 35px;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-dots li button {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    margin: 0 3px;
    padding: 0;
    transition: all .4s;
    opacity: .8;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-dots li button::before {
    display: none;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    opacity: 1;
}

.project-block2 .img-block .icon-imgs {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    padding: 2px 5px;
    position: absolute;
    margin: 15px;
    z-index: 1;
    flex-direction: row-reverse;
}

.project-block2 .img-block .labels-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    margin: 8px;
    display: flex;
    gap: 10px;
}

.project-block2 .img-block .labels-img span {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, .4);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    padding: 10px 16px;
    position: relative;
    text-transform: capitalize;
    top: 0;
    index: 1;
}

.project-block2 .details {
    padding: 24px;
}

.project-block2 .details .title-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.project-block2 .details .title-block .name-pro {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
    display: inline-flex;
}

.project-block2 .details .title-block .btn-fav button {
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0;
    color: var(--sec-color);
    font-size: 20px;
}

.project-block2 .details .title-block .btn-fav button i {
    font-weight: 300;
}

.project-block2 .details .content-block>p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #35373c;
    display: -webkit-box;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
}

.project-block2 .details .content-block .location-in {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 4px;
    min-height: 40px;
    color: #a3a3a3;
    gap: 4px;
}

.project-block2 .details .content-block .location-in span {
    max-width: calc(100% - 20px);
}

.name-prop-inner-h .location-in {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 4px;
    min-height: 40px;
    color: #212529;
    gap: 4px;
}

.name-prop-inner-h .location-in span {
    max-width: calc(100% - 20px);
}

.project-block2 .details .content-block .content-in {
    display: flex;
    flex-wrap: wrap;
    padding-top: 16px;
}

.project-block2 .details .content-block .content-in .item {
    padding: 0;
    font-size: 14px;
    align-items: center;
    color: var(--main-color);
    display: flex;
    font-weight: 600;
    margin-inline-end: 12px;
    gap: 6px;
}

.project-block2 .details .content-block .content-in .item:nth-child(1)::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #e1e8ed;
    margin-inline-start: 12px;
}

.project-block2 .details .content-block .btns-block {
    display: flex;
    padding-top: 20px;
    gap: 8px;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.project-block2 .details .content-block .btns-block>*:only-child {
    margin: 0 auto;
}

.project-block2 .details .content-block .btns-block:only-child {
    justify-content: center;
}

.project-block2 .details .content-block .btns-block>*:only-child .btn {
    width: 100% !important;
}

.project-block2 .details .content-block .btns-block:only-child .btn {
    width: 100% !important;
}

.project-block2 .details .content-block .btns-block .btn {
    align-items: center;
    background-color: #f0f3f8;
    border-radius: 6px;
    color: #07234b;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 46px;
    justify-content: center;
    padding: 0 16px;
    width: 33.33%;
    min-width: auto;
    gap: 6px;
}

/* When there's only one button, make it full width */
.project-block2 .details .content-block .btns-block>.btn:only-child {
    width: 100% !important;
    /* Override to full width */
}

.project-block2 .details .content-block .btns-block .btn i {
    font-size: 14px;
}

.project-block2 .details .content-block .btns-block .btn-call i {
    color: var(--sec-color);
}

.project-block2 .details .content-block .btns-block .btn-whats i {
    color: rgb(42, 211, 102);
}

.form-content2 .form-inner-h .form-group .form-control.subInputBox {
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    color: #35373c;
    padding: 10px 12px;
    height: auto;
}

.dropdownList .row-inner .dropdown.dropdownList {
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: 150px;
    overflow: hidden;
    overflow-y: auto;
}

.dropdownList .row-inner .col-md-6 {
    position: relative;
}

.form-content2 .form-inner-h .form-group .form-control .current {
    font-size: 14px;
    max-width: 90%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: "Montserrat", serif !important;

}

header.sticky.active {
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(15px);
}

header.sticky.active {
    /* background: rgb(0 0 0 / 10%); */
    /* backdrop-filter: blur(15px); */
    /* position: fixed; */
}

.title2 {
    margin-block-end: 24px;
}

.title2 h3 {
    margin: 0;
    font-size: 40px;
    /*font-size: 20px;*/
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 110%;
    color: var(--main-color);
    text-transform: uppercase;

}

.prop-more-details-inner .title2 h3 {
    font-size: 17px;

}

.tabs-style2 {
    margin-bottom: 56px;
}

.nav.nav-tabs.tabs-style2 .nav-item .nav-link {
    height: 48px;
    padding: 0 24px;
    background: #fff;
    border-radius: 6px;
    border: 1px #e1e8ed solid;
    min-width: auto;
    min-height: auto;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--main-color);
}

.nav.nav-tabs.tabs-style2 {
    gap: 16px;
}

.nav.nav-tabs.tabs-style2 .nav-item .nav-link.active {
    border-color: var(--main-color);
    border-width: 2px;
}

.prop-slider .slick-list {
    height: auto;
}

.prop-slider .slick-list .slick-track {
    height: auto;
    display: flex;
}

.prop-slider .slick-list .slick-track .item {
    height: auto !important;
}

.project-block2 .img-block .img-inner .prop-inner-slider .slick-list,
.project-block2 .img-block .img-inner .prop-inner-slider .slick-list .slick-track {
    height: 100%;
}

.project-block2 .img-block .icon-year {
    bottom: 8px;
    left: auto;
    right: 8px;
    top: auto;
    position: absolute;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    /* background: rgb(250 163 0 / 65%); */
    background: rgb(1 6 45 / 65%);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    position: absolute;
    text-transform: capitalize;
    z-index: 1;
}

.project-block2.project-block-sec .details .title-block {
    flex-direction: column;
    align-items: start;
    -webkit-align-items: start;
}

.project-block2.project-block-sec .details .title-block .name-pro {
    font-weight: 700;
}

.project-block2.project-block-sec .details .title-block .name-dev {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 5px;
    color: #35373c;
}

.project-block2.project-block-sec .details .title-block .name-dev span {
    font-weight: 700;
    color: var(--main-color);
}

.project-block2.project-block-sec .details .title-block .pro-price {
    font-size: 16px;
    margin-top: 5px;
}

.project-block2.project-block-sec .details .title-block .pro-price strong {
    font-size: 18px;
    color: var(--main-color);
}

.project-block2.project-block-sec .details .content-block .content-in.more-info {
    padding: 0;
    align-items: center;
    column-gap: 24px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: start;
}

.project-block2.project-block-sec .details .content-block .content-in.more-info .item {
    align-items: center;
    display: flex;
    font-size: 14px;
    margin: 0;
    color: #35373c;
    font-weight: 400;
    /* width: 33.33%; */
    flex: 0 0 auto;
}

.modal-backdrop.show {
    opacity: .8;
}

.modal-backdrop {
    background: var(--main-color);
}

emailModal .form-modal {}

.emailModal .modal-body {
    padding: 0;
    border-radius: 0;
}

.emailModal .form-modal {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .16), 0 1px 2px 0 rgba(0, 0, 0, .08);
    padding: 32px 40px 12px;
    width: 711px;
    margin: 0 auto;
}

.emailModal .modal-dialog {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.emailModal .modal-content {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.emailModal button.btn-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 20px;
    background: transparent;
    opacity: 1;
}

.form-modal .form-group {
    margin-bottom: 24px;
}

.form-modal .form-group label {
    font-size: 12px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 8px;
}

.form-modal .form-group .form-control {
    font-size: 14px;
    height: 48px;
    align-items: center;
    border: 1px solid #e1e8ed;
    border-radius: 2px;
    box-shadow: none;
    color: #35373c;
    display: flex;
    padding: 0 16px;
}

.form-modal .form-group .iti__selected-flag {
    background: transparent;
    border-inline-end: 1px solid #e1e8ed;
}

.form-modal .form-group .iti__selected-flag .iti__selected-dial-code {
    display: none;
}

.form-modal .form-group .form-control.phone {
    padding-inline-start: 60px !important;
}

.form-modal .form-group textarea.form-control {
    height: 140px;
    padding: 16px;
}

.form-modal .form-group .agree-h label {
    margin: 0;
    font-weight: 400;
    line-height: 160%;
    font-size: 12px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    text-transform: none !important;
}

.form-modal .form-group .agree-h label input {
    width: 16px;
    height: 16px;
    accent-color: var(--sec-color);
}

.form-modal .form-group .btn {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    font-size: 14px;
}

.form-modal .form-group .text-terms p {
    font-size: 12px;
    margin-top: 16px;
    color: #35373c;
    font-weight: 400;
}

.form-modal .form-group .text-terms p a {
    text-decoration: underline !important;
}

.form-modal .form-group .text-terms p a:hover {
    text-decoration: none !important;
}

.phoneModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    -webkit-align-items: start;
    padding: 0;
    border: none;
}

.phoneModal .modal-dialog {}

.phoneModal .modal-content {
    padding: 30px 24px;
}

.phoneModal .modal-header button.btn-close {
    margin: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    background-size: 12px;
}

.phoneModal .modal-header h3 {
    font-size: 32px;
    line-height: 110%;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
}

.phoneModal .modal-body {
    padding: 0;
}

.form-modal .modal-des {
    margin-block: 12px 24px;
}

.form-modal .modal-des p {
    font-size: 13px;
    line-height: 22px;
    color: #35373c;
    font-weight: 400;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.title-flex .btn {
    border-radius: 4px;
    min-width: 139px;
    padding: 0 32px;
    width: auto;
    height: 48px;
    font-size: 14px;
}

.prop-slider .item {
    direction: ltr;
}

.project-block2 .img-block .labels-img .type2 {
    background-color: rgb(233 233 233 / 80%);
    color: var(--main-color);
}

.form-content2 .form-inner-h .form-group .select2-selection__rendered {
    padding: 0 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    position: relative;
    right: 0;
    top: 0;
    color: #35373c;
    font-size: 14px;
    margin: 0;
}

.banner-h .select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 8px;
}

.item-sub {
    display: flex;
}

.form-new-h {
    position: relative;
}

.select2-container--default .select2-results__option {
    padding: 5px 20px;
    margin: 0;
}

.container-modal .row {
    align-items: center;
    -webkit-align-items: center;
}

.text-modal-in {
    max-width: 435px;
}

.text-modal-in h2 {
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 16px;
}

.text-modal-in p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .16px;
    line-height: 24px;
}

.text-modal-in .mang-block {
    display: flex;
    padding: 16px 0 0;
    align-items: center;
    -webkit-align-items: center;
}

.text-modal-in .mang-block .img {
    height: 104px;
    width: 96px;
    padding: 10px;
    background-color: #fff;
}

.text-modal-in .mang-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.text-modal-in p a {
    display: inline-block;
    color: inherit;
    font-weight: bold;
}

.text-modal-in p a u {
    text-decoration: none;
    display: inline-block;
    direction: ltr;
}

.text-modal-in .mang-block .details {
    max-width: calc(100% - 24px - 96px);
    margin-inline-start: 24px;
}

.text-modal-in .mang-block .details h3 {
    color: #fff;
    font-size: 16px;
    letter-spacing: .01em;
    line-height: 160%;
    font-weight: 700;
    margin: 0;
}

.text-modal-in .mang-block .details span {
    color: #fff;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

.text-modal-in .mang-block .details a {
    display: table;
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
}

.text-modal-in .mang-block .details a u {
    display: inline-block;
    direction: ltr;
    text-decoration: none;
}

.project-block2.project-block-sec .details .title-block .name-dev.othername {
    justify-content: space-between;
    width: 100%;
    color: var(--main-color);
}

.project-block2.project-block-sec .details .title-block .name-dev.othername .logo-small {
    width: 30px;
}

.form-content2 .form-inner-h .form-group select.form-control option {
    display: none;
}

.project-block2.project-block-sec .details .content-block .content-in.more-info .item:nth-child(1) {
    /* width: 100%; */
}

.project-block2.project-block-sec .details .title-block .name-pro.othername {
    justify-content: space-between;
    width: 100%;
}

.project-block2.project-block-sec .details .title-block .name-pro.othername .logo-small {
    max-width: 60px;
    width: 60px;
    height: 30px;
    margin-top: -15px;
}

.project-block2 .details .content-block .btns-block.btns-pro .btn {
    width: 50%;
    flex: 0 0 auto;
}

header.nav_pages {
    position: relative;
    background: #fff;
    height: unset;
}

header.nav_pages .container {}

.nav_pages .header-med .head-inner ul li a {
    color: #35373c;
}

.nav_pages .header-med .head-inner ul li.current-menu-item a,
.nav_pages .header-med .head-inner ul li a:hover,
.nav_pages .header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--sec-color);
}

.nav_pages .header-med .head-inner ul li.current-menu-item .btn {
    color: var(--main-color);
}

.nav_pages .header-med .head-inner ul li.current-menu-item .btn:hover {
    color: var(--sec-color);
}

.nav_pages .menu-left .btn.btn-border {
    background: #fff;
    border-color: #e1e8ed;
    color: #07234b;
}

.search-inner-h {
    background: #fff;
    /* border-bottom: 1px solid #e1e8ed; */
    border-top: 1px solid #e1e8ed;
    padding-bottom: 12px;
    padding-top: 12px;
}

.search-inner-h .tab-inner-new form {
    max-width: 100%;
}

.search-inner-h .tab-inner-new form .form-inner-h {
    box-shadow: none !important;
    border: none;
    border-radius: 0;
    filter: none;
    gap: 12px;
}

.search-inner-h .tab-inner-new form .form-inner-h textarea.select2-search__field,
.search-inner-h .tab-inner-new form .form-inner-h .form-control {
    background-color: #fff;
    background: #fff;
    border: 1px solid #e1e8ed !important;
    height: 45px !important;
    border-radius: 6px;
    width: 100% !important;
    text-align: start;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group:nth-child(1) {
    width: 535px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group:nth-child(2) {
    min-width: 146px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group:nth-child(3) {
    width: 88px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group:nth-child(4),
.search-inner-h .tab-inner-new form .form-inner-h .form-group:nth-child(5) {
    width: 88px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group:nth-child(6) {
    width: 95px;
}

.search-inner-h .tab-inner-new form .btn-from {
    width: 106px;
}

.search-inner-h .tab-inner-new form .btn-from .btn.form-search-submit {}

.form-content2 .form-inner-h .form-group span.irs-grid {
    display: none;
}

.form-content2 .form-inner-h .form-group span.irs-line {
    top: 13px;
}

div#dropdownList4 {
    top: 11px;
    transform: translateX(-50%);
    width: 290px;
}

.irs--round .irs-handle {
    background-color: #fff;
    border: 2px solid var(--main-color);
    border-radius: 999px;
    height: 16px;
    position: relative;
    width: 16px;
    top: auto;
    box-shadow: none;
    bottom: 11px;
}

.irs--round .irs-bar {
    height: 6px;
    background: var(--main-color);
}

.irs--round .irs-handle.from {
    top: 4px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    top: 52px;
    background: transparent;
    color: var(--main-color);
    padding: 0;
    font-size: 13px;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    display: none;
}

.filterModal .modal-dialog {
    /* max-width: 500px; */
}

.filterModal .modal-body {
    padding: 24px 32px;
}

.filterModal .modal-header {
    height: 78px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f3f8;
}

.filterModal .modal-content {
    border-radius: 8px;
}

.filterModal .modal-header .modal-title {
    color: #35373c;
    font-weight: 400;
    font-size: 18px;
}

.filterModal .btn-close {
    padding: 0;
}

.filterModal form .form-group {
    padding: 24px 0;
    border-bottom: 1px #f0f3f8 solid;
}

.filterModal form .form-group:first-child {
    padding-top: 0;
}

.filterModal form .form-group:last-child {
    border: none;
    padding-bottom: 0;
}

.filterModal form .form-group>label {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
}

.form-group .check-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 0;
    margin-top: 12px;
}

.form-group .check-inputs .item {
    padding-inline-end: 12px;
    width: 50%;
    flex: 0 0 auto;
}

.form-group .check-inputs .item label {
    position: relative;
}

.form-group .check-inputs .item label span {
    font-size: 14px;
    line-height: unset;
    /* margin-left: 10px; */
    white-space: nowrap;
    padding-inline-start: 30px;
    position: relative;
}

.form-group .check-inputs .item label input {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 4;
}

.form-group .check-inputs .item label span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px #eee solid;
    border-radius: 4px;
    font-family: 'Font Awesome 6 Pro';
    align-content: center;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.form-group .check-inputs .item label input:checked+span::before {
    content: "\f00c";
}

.filterModal form .form-group .input-with-btn {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.filterModal form .form-group .input-with-btn .btn {
    width: 56px;
    min-width: auto;
    margin: 0 !important;
    min-height: 40px !important;
    padding: 6px !important;
    height: auto;
}

.filterModal form .form-group .input-with-btn .form-control {
    border: 1px solid #e1e8ed !important;
    border-radius: 4px;
    box-shadow: 0 0 0;
    font-size: 12px;
    height: 40px;
    /* margin-top: 12px; */
    outline: 0;
    padding: 0 12px;
    width: 100%;
}

.filterModal form .form-group.btns-form {
    display: flex;
    gap: 10px;
    margin: 0 !important;
    padding: 10px 0 0;
}

.filterModal form .form-group.btns-form .btn {
    margin: 0 !important;
    font-size: 14px;
    height: 46px;
}

.btn.btn-clear {
    background: #f0f3f8;
    color: var(--main-color);
}

.breadcrumb-text {
    padding: 16px 0 0;
    border-top: 1px solid #e1e8ed;
}

.breadcrumb-text .breadcrumb {
    align-items: center;
    -webkit-align-items: center;
}

.breadcrumb-text .breadcrumb a,
.breadcrumb-text .breadcrumb li {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .12px;
    line-height: 140%;
    white-space: nowrap;
    display: flex;
    padding: 0;
    align-items: center;
    -webkit-align-items: center;
}

.breadcrumb-text li::before {
    font-size: inherit !important;
    content: "" !important;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjEwIiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgNSAxMCI+PHBhdGggZmlsbD0iI0NEQ0RDRCIgZD0iTS4wMiA5LjIgMy40Ljk2aC44N0wuODkgOS4ySC4wMloiLz48L3N2Zz4=);
    background-size: 12px 12px;
    display: inline-block;
    float: none;
    height: 12px;
    margin-left: 8px;
    margin-right: 8px;
    padding: 0;
    position: relative;
    width: 12px;

}

.banner-single-project-h .breadcrumb-text li::before {
    font-size: inherit !important;
    /* content: "" !important; */
    /* background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjEwIiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgNSAxMCI+PHBhdGggZmlsbD0iI0NEQ0RDRCIgZD0iTS4wMiA5LjIgMy40Ljk2aC44N0wuODkgOS4ySC4wMloiLz48L3N2Zz4=); */
    /* background-size: 12px 12px; */
    /* content: ""; */
    background: none;
    display: inline-block;
    float: none;
    height: 12px;
    margin-left: 8px;
    margin-right: 8px;
    padding: 0;
    position: relative;
    width: 12px;
    content: "|" !important;
    height: auto;
    line-height: 140%;
}

.breadcrumb-text li:nth-child(1)::before {
    display: none;
}

.fillter-inner-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.fillter-page-h {
    padding: 16px 0 0;
}

.fillter-inner-h .filter-text {}

.fillter-inner-h .filter-text h3 {
    font-size: 16px;
    line-height: 160%;
    color: var(--main-color);
    margin: 0;
}

.fillter-inner-h .filter-text p {
    line-height: 100%;
    margin-top: 8px;
    font-size: 13px;
    color: #35373c;
}

.fillter-inner-h .filter-form-in {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.fillter-inner-h .filter-form-in .btn-filter {
    margin-inline-start: 12px;
    height: 46px;
    align-items: center;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    display: flex;
    padding: 12px 16px;
    width: auto;
    gap: 8px;
    color: var(--main-color);
}

.fillter-inner-h .filter-form-in .btn-filter.grid-btns button {
    gap: 6px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: inline-flex;
    color: var(--main-color);
    align-items: center;
    -webkit-align-items: center;
    font-family: "Montserrat", serif !important;

}

.fillter-inner-h .filter-form-in .btn-filter.grid-btns button.grid-btn {
    display: none;
}

.fillter-inner-h .filter-form-in .btn-filter.grid-btns button.grid-btn.active {
    display: flex;
}

.fillter-inner-h .filter-form-in .links-inner {
    display: flex;
    align-items: center;
}

.fillter-inner-h .filter-form-in .links-inner::before,
.fillter-inner-h .filter-form-in .sort-inner::before {
    background: #d9d9d9;
    height: 24px;
    margin: 0 24px;
    width: 1px;
    content: "";
}

.fillter-inner-h .filter-form-in .links-inner .btn-tab {
    align-items: center;
    align-self: stretch;
    border-right: 1px solid #e1e8ed;
    color: #35373c;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    gap: 8px;
    justify-content: center;
    padding: 14px 10px;
    width: 80px;
    background: #f4f8fb;
}

.fillter-inner-h .filter-form-in .links-inner .btn-tab:first-child {
    border-start-start-radius: 6px;
    border-end-start-radius: 6px;
}

.fillter-inner-h .filter-form-in .links-inner .btn-tab:last-child {
    border-start-end-radius: 6px;
    border-end-end-radius: 6px;
    border: none;
}

.fillter-inner-h .filter-form-in .links-inner .btn-tab.active {
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 6px;
}

.fillter-inner-h .filter-form-in .sort-inner {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.fillter-inner-h .filter-form-in .sort-inner label {
    align-items: center;
    /*color: #35373c;*/
    color:var(--main-color);
    display: flex;
    font-size: 14px;
    font-weight: 500;
}

.fillter-inner-h .filter-form-in .sort-inner .nice-select.niceSelect {
    align-items: center;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    display: flex;
    margin-left: 12px;
    padding: 12px 16px;
    min-height: auto;
    height: auto;
    line-height: normal;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    padding-inline-end: 30px;
}

.fillter-inner-h .filter-form-in .btn-filter .icon {
    height: 18px;
    align-content: center;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
}

.fillter-inner-h .filter-form-in .btn-filter span {
    line-height: 14px;
    display: inline-block;
    font-weight: 500;
}

.search-project-h .tab-inner-new form .form-inner-h .form-group:nth-child(5) {
    width: 114px;
}

.form-content2 .form-inner-h .form-group .list {
    /*max-height: 300px;*/
    max-height: 235px;
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 0;
    min-width: 145px;
}

.form-content2 .form-inner-h .form-group .list .option:hover {
    background: #e1e8ed;
    color: var(--main-color);
}

.form-content2 .form-inner-h .form-group div#dropdownList2 {
    min-width: 500px;
    transform: translateX(-50%);
    left: 50%;
}

.form-content2 .form-inner-h .form-group .dropdownList .row-inner.row .col-md-6:nth-child(1) {
    padding-inline-start: 0;
}

.form-content2 .form-inner-h .form-group .dropdownList .row-inner.row {
    margin: 0;
}

.form-content2 .form-inner-h .form-group .dropdownList .row-inner.row .col-md-6:nth-child(2) {
    padding-inline-end: 0;
}

.form-content2 .form-inner-h .form-group .dropdownList .dropdown {
    padding: 0;
    border-radius: 0;
    max-width: calc(100% - calc(var(--bs-gutter-x) * .5));
    max-height: 300px;
}

.form-content2 .form-inner-h .form-group .dropdownList .row-inner.row .col-md-6 {
    position: relative;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group .nice-select .option {
    font-size: 13px;
    line-height: 23px;
    align-content: center;
    min-height: 38px;
}

.form-content2 .form-inner-h .form-group .dropdownList .dropdown .item-sub2 {
    cursor: pointer;
    font-weight: 400;
    list-style: none;
    outline: none;
    padding: 0 10px;
    text-align: start;
    transition: all 0.2s;
    color: var(--main-color);
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 23px;
    align-content: center;
    min-height: 38px;
}

.form-content2 .form-inner-h .form-group .dropdownList .dropdown .item-sub2.selected {
    background: var(--main-color);
    color: #fff;
}

.form-content2 .form-inner-h .form-group .dropdownList .dropdown .item-sub2:hover {
    background: #e1e8ed;
    color: var(--main-color);
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList4 {
    width: 340px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList4 .row {
    margin: 0;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList4 .row .col-md-6:nth-child(1) {
    padding-inline-start: 0;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList4 .row .col-md-6:nth-child(2) {
    padding-inline-end: 0;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList4 .row .col-md-6 {
    padding: 0 10px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList4 .row .col-md-6 {
    position: relative;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group div#dropdownList5 {
    width: 290px;
    transform: translateX(-50%);
    left: 50%;
    padding-bottom: 25px;
}

.rangeInput span.irs.irs--round.js-irs-0.irs-with-grid {
    height: 36px;
}

.irs--round .irs-bar {
    top: 13px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    top: 33px;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group .dropdownList label {
    font-size: 12px;
    white-space: nowrap;
}

.search-project-h .tab-inner-new form .form-inner-h .form-group:nth-child(5) .list {
    width: 180px;
    height:125px;
}

.fillter-inner-h .filter-form-in .btn-filter button.toggle-btn.grid-btn {
    display: none;
}

.fillter-inner-h .filter-form-in .btn-filter.active button.toggle-btn.grid-btn {
    display: flex;
}

.fillter-inner-h .filter-form-in .btn-filter.active button.toggle-btn.grid-btn.active {
    display: none;
}

.chosse-prop-h {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    margin-top: 12px;
}

.chosse-prop-h::-webkit-scrollbar {
    height: 0;
}

.chosse-prop-h label {
    position: relative;
}

.chosse-prop-h label input {
    position: absolute;
    inset: 0;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.chosse-prop-h label span {
    font-size: 14px;
    height: 48px;
    padding: 0 16px;
    align-items: center;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.chosse-prop-h label input:checked+span {
    background-color: #f0f3f8;
    border-color: var(--main-color);
    color: var(--main-color);
}


.chosse-prop-h.chosse-prop-h2 {
    background: #f4f8fb;
    border-radius: 6px;
    display: flex;
    /* height: 46px; */
    display: inline-flex;
}

.chosse-prop-h.chosse-prop-h2 label span {
    align-items: center;
    align-self: stretch;
    border: none;
    border-inline-end: 1px solid #e1e8ed;
    color: #35373c;
    display: flex;
    /*font-family: Plus Jakarta Sans;*/
    font-family: "Montserrat", serif;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    padding: 14px 10px;
    width: 80px;
    border-radius: 0;
}

.chosse-prop-h.chosse-prop-h2 label:last-child span {
    border: none;
}

.chosse-prop-h.chosse-prop-h2 label input:checked+span {
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 6px;
}

.fillter-inner-h .filter-form-in .chosse-prop-h.chosse-prop-h2 {
    margin: 0;
}

.fillter-inner-h .filter-form-in .chosse-prop-h.chosse-prop-h2 {
    margin: 0;
}

.list-view .project-block2 {
    display: flex;
}

.list-view .project-block2 .img-block {
    width: 367px;
    height: 301px;
}

.list-view .project-block2 .details {
    padding: 24px;
    max-width: calc(100% - 367px);
    width: 100%;
}

.list-view .project-block2 .details p {
    margin-top: 4px;
}

.list-view .project-block2 .details .content-block .btns-block {
    margin-top: auto;
}

.list-view .project-block2 .details .content-block .btns-block .btn.btn-whats span {
    /* display: none; */
}

.list-view .project-block2 .details .content-block .btns-block .btn.btn-whats {
    /* padding: 0; */
    /* min-width: 48px; */
    /* width: auto; */
}

.list-view .project-block2 .details .content-block .btns-block .btn {
    /* width: 43.33%; */
}

.form-content2 .form-inner-h .form-group.selected-parent>.form-control,
.form-content2 .form-inner-h .form-group.selected-parent .input-select-h>.form-control {
    background-color: #f0f3f8;
    border: 1px solid #1e3f71;
}

.search-inner-h .tab-inner-new form .form-inner-h .inputBox {
    overflow: hidden;
}

.search-inner-h .tab-inner-new form .form-inner-h .inputBox::placeholder,
.search-inner-h .tab-inner-new form .form-inner-h .inputBox::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", serif !important;
    color: #212529ed;
}

.banner-search-page-h {
    padding-block: 12px 0;
}

.banner-develp {
    position: relative;
    z-index: 3;
    padding: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.banner-develp .text-banner-devlp {
    width: 100%;
}

.banner-develp .text-banner-devlp h3 {
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    line-height: 24px;
    margin-bottom: 25px;
}

.banner-develp .text-banner-devlp form {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.banner-develp .text-banner-devlp form>i {
    position: absolute;
    left: 0;
    top: 0;
    margin: 14px 16px;
    z-index: 3;
}

.banner-develp .text-banner-devlp form .select2-selection.select2-selection--multiple {
    width: 100%;
    height: 36px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    outline: 0;
    padding: 0 15px 0 32px;
    color: #000;
}

.banner-develp .text-banner-devlp form .select2-selection.select2-selection--multiple .select2-search.select2-search--inline {
    display: block;
    height: 100%;
    align-content: center;
}

.banner-develp .text-banner-devlp form .select2-selection.select2-selection--multiple .select2-search.select2-search--inline .select2-search__field {
    margin: 0;
    height: 100% !important;
    align-content: center;
}

.banner-develp .text-banner-devlp form .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 5px;
    border: none;
    padding: 0;
    font-size: 16px;
    background: var(--sec-color);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    transition: background .3s ease-in-out;
    color: #fff;
}

.banner-develp .text-banner-devlp form .btn-search i {
    font-weight: 300;
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group .select2.select2-container.select2-container--default.select2-container--below.select2-container--focus textarea.select2-search__field {
    background: transparent;
    /* z-index: -1; */
}

.search-inner-h .tab-inner-new form .form-inner-h .form-group .select2-selection__rendered {
    z-index: 3;
    position: relative;
    border: 1px solid #e1e8ed;
    height: 45px !important;
    border-radius: 6px;
    width: 100% !important;
    text-align: start;
    padding: 0 34px;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.banner-develp .text-banner-devlp form .select2-selection.select2-selection--multiple .select2-search.select2-search--inline {}

.banner-develp .text-banner-devlp form .select2-selection__rendered {
    position: absolute;
    inset: 0;
    padding-inline-start: 33px;
    padding-inline-end: 47px;
}

.banner-develp .text-banner-devlp form .select2-selection__rendered li.select2-selection__choice {
    margin-top: 0;
}

.list-view .col-md-4 {
    width: 100% !important;
}

section#start-filter .row .col-xs-12 {
    padding: 0 16px;
}

.list-view .project-block2 .details .content-block {
    height: calc(100% - 54px);
    display: flex;
    flex-direction: column;
}

.project-block2.project-block-sec.project-block-thr {
    display: none;
}

.list-view.active .project-block2.project-block-sec {
    display: none;
}

.list-view.active .project-block2.project-block-sec.project-block-thr {
    display: flex;
}

.project-block2.project-block-sec.project-block-thr .img-block {
    width: 571px;
}

.project-block2.project-block-sec.project-block-thr .details {
    max-width: calc(100% - 571px);
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: grid;
    flex: 1 1;
    gap: 2px;
    grid-template-columns: 66.6fr 33.3fr;
    height: 332px;
    height: 100%;
    width: 100%;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img:first-of-type {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 50%;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 166px;
}

.project-block2.project-block-sec.project-block-thr {
    display: none;
}

.list-view.active .project-block2.project-block-sec {
    display: flex;
}

.list-view.active .project-block2.project-block-sec.project-block-thr {
    display: flex;
}

.project-block2.project-block-sec.project-block-thr .img-block {
    width: 571px;
}

.project-block2.project-block-sec.project-block-thr .details {
    max-width: calc(100% - 571px);
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: grid;
    flex: 1 1;
    gap: 2px;
    grid-template-columns: 66.6fr 33.3fr;
    height: 332px;
    height: 100%;
    width: 100%;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img:first-of-type {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 301px;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 149px;
}

.project-block2.project-block-sec.project-block-thr .img-block .img-inner .img img:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 149px;
}

.list-view .project-block2 .details .content-block p {
    /*-webkit-line-clamp: 3;*/
}

.list-view .project-block2 .details .content-block p a {
    margin: 0 5px;
    color: var(--sec-color);
    border-bottom: 1px var(--sec-color) solid;
}

.project-block2 .details .content-block .btns-block.btns-pro .btn {
    padding: 0 4px;
    font-size: 11px;
}

.logo-h a img {
    filter: brightness(0) invert(1);
}

.nav_pages .logo-h a img,
.mobile-menu .logo-h a img {
    filter: none;
}

.banner-single-project-h .row {
    height: 100vh;
    align-items: end;
    -webkit-align-items: end;
    padding-block: 120px 88px;
}

.banner-single-project-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 35, 75, .6), hsla(0, 0%, 100%, 0) 20%);
}

.banner-single-project-h .overlay-img::before {
    background: linear-gradient(180deg, rgba(7, 35, 75, 0), rgba(7, 35, 75, .9));
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
}



.banner-single-text .banner-single-title {
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
    /* justify-content: space-between; */
    margin-bottom: 40px;
}

.banner-single-text .banner-single-title h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 400;
    line-height: 58px;
    text-transform: uppercase;
    max-width: calc(100% - 100px);
    margin: 0;
}

.banner-single-text .banner-single-title .logo-small {
    width: 90px;
    height: 90px;
    line-height: 90px;
}

.banner-single-text .banner-single-btn {
    display: flex;
    gap: 24px;
}

.banner-single-text .banner-single-btn .btn {
    font-size: 14px;
    height: 46px;
    border-radius: 4px;
    min-width: 240px;
    font-weight: 700;
}

.banner-single-text .banner-single-btn .btn i {
    display: none;
}

.banner-single-text .banner-single-btn .btn:nth-child(2) {
    background: #f0f3f8;
    color: var(--main-color);
}

.downloadModal .modal-dialog {
    max-width: 696px;
}

.downloadModal .modal-dialog .modal-header,
.downloadModal .modal-dialog .modal-body {
    padding: 0;
}

.downloadModal .modal-content {
    padding: 48px 56px;
}

.downloadModal .modal-content .modal-header {
    margin-bottom: 32px;
    border: none;
    justify-content: space-between;
    align-items: start;
    -webkit-align-items: start;
}

.downloadModal .modal-content .modal-header .modal-header-in {
    max-width: calc(100% - 50px);
}

.downloadModal .modal-content .modal-header .modal-header-in h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--main-color);
}

.downloadModal .modal-content .modal-header .modal-header-in p {
    font-size: 14px;
    margin-top: 12px;
    color: #35373c;
}

.downloadModal .modal-content .modal-header button.btn-close {
    margin: 0;
    padding: 0;
}

.banner-single-text .breadcrumb-text {
    border: none;
    padding: 0;
    margin-top: 32px;
}

.banner-single-text .breadcrumb-text ul {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.banner-single-text .breadcrumb-text ul li {
    align-items: center;
    display: flex;
    font-size: 16px;
}

.banner-single-text .breadcrumb-text ul li,
.banner-single-text .breadcrumb-text ul li a,
.banner-single-text .breadcrumb-text ul li span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .12px;
    line-height: 140%;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
}

.banner-single-text .breadcrumb-text ul li a:hover {
    border-color: #fff;
}

.banner-single-text .breadcrumb-text ul li span {
    border-color: #fff;
}

.single-blog-inner {
    /*padding-block: 64px 0;*/
    max-width: 864px;
    /* margin: 0 auto; */
}

.single-blog-inner2 {
    max-width: 90% !important;

}

.single-blog-inner .single-blog-text h1 {
    font-size: 30px !important;
}

.single-blog-inner .single-blog-text {
    /* text-align: center; */
    margin-bottom: 40px;
}

.single-blog-inner .single-blog-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    letter-spacing: -.01em;
    line-height: 110%;
    margin: 0;
}

.single-blog-inner .single-blog-text ul {
    align-items: center;
    display: flex;
    /* justify-content: center; */
    margin-top: 24px;
    overflow-x: auto;
}

.single-blog-inner .single-blog-text ul li {
    font-size: 16px;
    white-space: nowrap;
    color: #35373c;
    margin: 0 6px;
}

.single-blog-inner .single-blog-text ul li:nth-child(2) {
    color: #cdcdcd;
}

.single-blog-inner .img {
    height: 560px;
    overflow: hidden;
    border-radius: 8px;
}

.single-blog-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-single-text .banner-single-title .developer {
    display: inline-flex;
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
    text-transform: capitalize;
    gap: 5px;
}

.banner-single-text .banner-single-title .developer strong {
    transition: all .3s ease-in-out;
}

.banner-single-text .banner-single-title .developer strong:hover {
    color: var(--sec-color);
}

.single-area-page-h {
    padding: 15px 0 0;
}

.single-area-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    overflow: hidden;
    height: 50vh;
    min-height: 440px;
}

.single-area-inner .text-inner {
    flex: 0 0 500px;
    padding: 70px 50px 50px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: start;
    -webkit-align-items: start;
}

.single-area-inner .text-inner h1 {
    font-size: 35px;
    line-height: 48px;
    margin: 0;
    font-weight: 700;
}

.single-area-inner .text-inner .btn {
    margin-top: 40px;
    display: inline-flex;
    width: auto;
    padding: 8px 48px 8px 24px;
    font-size: 16px;
    height: 40px;
    min-width: calc(50% - 5px);
    border-radius: 8px;
}

.single-area-inner .text-inner .btn i {
    transition: all .2s ease-in-out;
    position: relative;
}

.single-area-inner .text-inner .btn:hover i {
    transform: translateX(10px);
}

.single-area-inner .text-inner .btn:hover {
    background: #faa300;
}

.jg-entry .row .gallery-items:nth-child(n + 5) {
    display: none;
}

.gallery_property .jg-entry .row .gallery-items:nth-child(n + 3) {
    display: none;
}

.gallery-items.item-big .gallery-item {
    height: 66vh;
}

.gallery-items .gallery-item {
    height: 32.1vh;
}

.name-prop-inner-h h2 {
    font-size: 27px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 50px;
}

.name-prop-inner-h .banner-spcial {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0 20px;
}

.name-prop-inner-h .banner-spcial .spcial-block-in {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px;
    font-size: 16px;
}

.name-prop-inner-h .banner-spcial .spcial-block-in .icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    filter: grayscale(1);
    color: var(--sec-color);
}

.name-prop-inner-h .banner-spcial .spcial-block-in .icon img {
    max-height: 18px;
    object-fit: contain;
    object-position: center;
}

.name-prop-inner-h h1 {
    font-size: 17px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.banner-single-text .breadcrumb-text ul li a i {
    margin-inline-end: 8px;
}

.banner-single-text .breadcrumb-text ul li:first-child a i {
    margin: 0;
}

.sidebar-h.fixed {
    position: fixed;
}

.banner-single-text .breadcrumb-text.mt-3 {
    margin-top: 30px !important;
}

.banner-single-text .breadcrumb-text.mt-3 ul li::before {
    display: none;
}

.banner-single-text .breadcrumb-text.mt-3 ul {
    gap: 20px;
}

.sidebar-h {
    /* max-width: 393px; */
    position: relative;
    transition: top 0.3s ease;
    border: 1px solid #9999992d;
    backdrop-filter: blur(120px);
    padding: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

section.prop-more-details-inner .container {
    position: relative;
}

.col-fixed {
    position: relative;
}

.sidebar-h.fixed {
    position: fixed;
    top: 60px;
    margin-inline-start: 15px;
}

.sidebar-h.stopped {
    position: absolute;
    top: auto !important;
    bottom: 0;
    margin-inline-start: 15px;
}

.prop-inner-related-h .projects-slider .slick-list {
    overflow: hidden;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
}

.prop-text {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    /* عدد الأسطر التي تظهر */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.prop-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.prop-features-list-h {
    margin: 50px 0 30px;
}

.prop-features-list-h .features-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}

.prop-features-list-h .features-list ul li {
    width: 50%;
    flex: 0 0 auto;
    display: flex;
    padding-inline-end: 20px;
}

.prop-features-list-h .features-list ul li i,
.prop-features-list-h .features-list ul li img {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.prop-features-list-h .features-list ul li div {
    width: calc(100% - 20px);
    padding: 0 10px;
    color: #343434;
    display: flex;
    /* justify-content: space-between; */
    /* width: 100%; */
    padding-left: 0px;
    /* flex: 0 1; */
    /* width: 100%; */
}

.prop-features-list-h .features-list ul li div p {
    display: inline-block;
    font-weight: bold;
    color: var(--main-color);
    font-size: 16px;
    flex: 0 0 auto;
    width: 50%;
}

.prop-features-list-h .features-list ul li div span {
    font-size: 16px;
    flex: 0 0 auto;
    width: 50%;
    padding-inline-end: 10px;
}

.prop-des-inner-h .prop-text h3 {
    font-size: 20px;
    margin: 0 0 18px;
}

.prop-des-inner-h .prop-text p {
    /* font-weight: 300; */
    line-height: 26px;
    font-size: 16px;
    color: #000;
}

.prop-des-inner-h .morelink {
    font-size: 20px;
    margin: 20px 0;
    /* font-weight: bold; */
    /*color: blue;*/
    color: var(--sec-color);
}

.prop-des-inner-h .morelink:hover {
    color: var(--sec-color);
    text-decoration: underline !important;
}

.prop-inner-features-h {
    margin: 50px 0;
    /* margin: 30px 0; */
}

.calculator-h {
    margin: 50px 0;
    margin-bottom: 0px;

}

.prop-inner-contact-h {
    margin: 50px 0;

}

.prop-inner-features-h .features-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}

.prop-inner-features-h .features-list ul li {
    width: 20%;
    flex: 0 0 auto;
    display: flex;
    font-size: 14px;
}

.prop-inner-features-h .features-list ul li .icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.prop-inner-features-h .features-list ul li span {
    width: calc(100% - 20px);
    padding: 0 10px;
}

.prop-inner-features-h .container {
    max-width: 100%;
    padding: 0;
}

.prop-content-inner-h .name-prop-inner-h {
    /* margin-top: 50px; */
    margin-bottom: 50px;
}

.prop-content-inner-h .prop-des-inner-h {
    margin-top: 50px;
    margin-bottom: 50px;
}

.prop-content-inner-h .container {
    max-width: 100%;
    padding: 0;
}

.prop-inner-contact-h .contact-h.contact-sec {
    margin: 0;
    padding: 0;
}

.prop-inner-contact-h .contact-h.contact-sec .contact-form {
    padding: 30px;
}

.sidebar-h .sidebar-user {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -webkit-align-items: center;
}

.sidebar-h .sidebar-user .user-img {
    height: 72px;
    width: 60px;
    border-radius: 0;
    overflow: hidden;
}

.sidebar-h .sidebar-user .user-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
    object-position: center;
}

.sidebar-h .sidebar-user .user-name {
    max-width: calc(100% - 60px);
    padding-inline-start: 24px;
}

.sidebar-h .sidebar-user .user-name h3 {
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
    margin: 0;
    line-height: 20px;
}

.sidebar-h .sidebar-user .user-name span {
    line-height: 22px;
    display: inline-block;
    color: #9399a4;
    font-size: 12px;
    margin-top: 4px;
}

.sidebar-h .sidebar-user .user-btns {
    display: flex;
    margin-top: 0;
    gap: 15px;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid #e1e8ed;
}

.sidebar-h .sidebar-user .user-btns .btn {
    width: calc(50% - 7.5px);
    min-width: auto;
    border-radius: 4px;
    background: var(--sec-color);
    border: 1px solid var(--sec-color);
    color: #fff;
    font-size: 16px;
    min-height: 46px;
    padding: 0 10px;
    font-size: 13px;
    gap: 8px;
}

.sidebar-h .sidebar-user .user-btns .btn:nth-child(2) {
    background-color: #25d366;
    color: #fff;
    border-color: #25d366;
}

.sidebar-h .sidebar-user .user-btns .btn:nth-child(2) i {
    /* color: #3fb36a; */
    font-size: 16px;
}

.sidebar-h .sidebar-form .form-group {
    margin: 12px 0;
}

.sidebar-h .sidebar-form .form-group .form-control {
    height: 45px;
    border-radius: 4px;
    font-size: 12px;
}
.sidebar-h .sidebar-form .form-group textarea{
    height: 90px !important;

}

.sidebar-h .sidebar-form .form-group .iti__selected-flag {
    background: transparent;
    border-right: 1px #ced4da solid;
}

.sidebar-h .sidebar-form .form-group .iti__selected-dial-code {
    display: none;
}

.sidebar-h .sidebar-form .tab-btns.flex-nowrap {
    margin: 0;
}

.sidebar-h .sidebar-form .tab-btns.flex-nowrap .form-group.col {
    margin: 0;
}

.sidebar-h .sidebar-form .tab-btns.flex-nowrap .form-group.col .btn {
    height: 45px;
    border-radius: 4px;
    font-size: 14px;
    min-height: auto;
    background: var(--sec-color);
}

.sidebar-h .sidebar-form .d-flex.gap-2 {
    gap: 0 !important;
    display: block !important;
}

.prop-inner-related-h {
    margin: 30px 0 0;
}

.calc-new-h {
    margin: 0;
    /* background: #f4f5f8; */
}

.calc-new-h .calc-form {
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
    padding-inline-start: 20px;
}

.calc-new-h .form-group {
    min-height: 75px;
    align-content: center;
    /* text-align: center; */
    margin: 0 0 20px;
}

.calc-new-h .calc-form .form-group {
    /* text-align: start; */
}

.calc-new-h .form-group label {
    font-size: 12px;
}

.calc-form .form-control {
    height: 45px;
    font-size: 12px;
    border-radius: 4px;
}

.calc-new-h .form-group input[type="range"] {
    display: block;
    -webkit-appearance: none;
    background-color: #bdc3c7;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    margin: 0 auto;
    outline: 0;
    margin-top: 30px;
}

.calc-new-h .form-group #input-loan_amount {
    /*border-radius: 5px;*/
    /*background: #ddd;*/
    /*opacity: 0.6;*/
}

.calc-new-h .form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: var(--main-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: .3s ease-in-out;
}

​ .calc-new-h .form-group input[type="range"]::-webkit-slider-thumb:hover {
    background-color: white;
    border: 2px solid var(--main-color);
}

.calc-new-h .form-group input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.6);
}

.calc-result2 {
    background: #e9ecef;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
}

.calc-result2 .text-center {
    text-align: start !important;
}

.calc-result2 span.lable {
    font-size: 12px;
    margin-bottom: 14px;
    color: var(--main-color);
}

.calc-result2 #monthly_payment {
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 20px;
}

.calc-result2 .lable {
    font-size: 12px;
    margin-bottom: 3px;
}

.calc-result2 .val {
    color: var(--main-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    margin-block: 0 20px;
}

.calc-result2 .btn {
    width: 100%;
    border-radius: 4px;
    background: var(--main-color);
}

.downloadModal2 .row {
    align-items: initial;
    -webkit-align-items: initial;
    background: #fff;
    border-radius: 13px;
    overflow: hidden;
}

.downloadModal2 .row .modal-img,
.downloadModal2 .row .form-modal {
    height: 100%;
}

.emailModal .form-modal {}

.downloadModal2 .row .col-md-6 {
    padding: 0;
}

.downloadModal2 .row .form-modal {
    width: 100%;
    padding: 40px;
    max-width: 100%;
}

.downloadModal2 .row .form-modal h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.calc-new-h {
    border: 1px #e9ecef solid;
    border-radius: 15px;
    box-shadow: 0 0 30px rgb(0 0 0 / 5%);
}

.calc-new-h .col-md-4 {
    padding-inline-start: 0;
}

.calc-new-h .col-md-5 {
    padding-inline-end: 0;
}

.blog-card-h {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 48px;
    padding-right: 50%;
    /* height: 100%; */
    box-shadow: 0 .5rem 3rem 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    position: relative;
    /* height: calc(100% - 47px); */
    padding-inline-end: 50%;
    z-index: 1;
    margin-bottom: 47px;
}

.blog-card-h .img {
    width: 294px;
    position: absolute;
    left: 55.75%;
    right: -11%;
    height: 264px;
}

.blog-card-h .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-h .details .sub-title {
    border-radius: 3px;
    background-color: #e6e7e8;
    position: absolute;
    top: -16px;
    left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 7px 18px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    font-size: 10px;
    line-height: 1.82;
    letter-spacing: 1px;
    text-align: center;
    color: #404042;
    text-transform: uppercase;
}

.blog-card-h .details>span {
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--main-color);
    text-transform: uppercase;
}

.blog-card-h .details h3 {
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: -.5px;
    color: #000;
    font-weight: bold;
    margin-block: 16px;
}

.blog-card-h .details p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: #000;
    margin-bottom: 16px;
}

.blog-card-h .details .date-h {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #a7a9ab;
}

.blog-card-h .btn-block {
    width: 100%;
    flex: 0 0 auto;
}

.blog-card-h .btn-block .readMore {
    display: flex;
    margin-top: 60px;
    margin-bottom: 0;
    min-width: max-content;
    font-weight: 700;
    font-size: 16px;
    color: #404042;
    gap: 10px;
    align-items: center;
    -webkit-align-items: center;
}

.blog-card-h .btn-block .readMore i {
    color: var(--sec-color);
}

.blog-card-h .btn-block .readMore::before {
    content: "";
    display: inline-block;
    height: 2px;
    width: 0;
    transition: width .4s ease-in-out;
    vertical-align: middle;
    background-color: var(--sec-color);
    margin-left: -10px;
}

.blog-card-h .btn-block .readMore:hover::before {
    width: 51px;
    margin-inline-end: 8px;
}

.all-pages {
    text-align: center;
    margin-top: 30px;
}

.all-pages .pagination {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
}

.all-pages .pagination .page-item .page-link {
    margin: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    align-content: center;
    color: #404042;
    font-size: 12px;
    border: none;
}

.all-pages .pagination .page-item.active .page-link {
    background: var(--main-color);
    color: #fff;
}

.all-pages .pagination .page-prev {
    margin-inline-end: 12px;
}

.all-pages .pagination .page-next {
    margin-inline-start: 12px;
}

.all-pages .pagination .page-prev .page-link,
.all-pages .pagination .page-next .page-link {
    font-size: 18px;
}

#emailModalInterst {
    margin-top: 100px;
}

.g-recaptcha {
    margin-bottom: 20px !important;
}

.prop-text h3,
.prop-text h2,
.prop-text h1,
.prop-text p,
.prop-text span,
.prop-text h4,
.prop-text h5,
.prop-text h6 {
    font-family: "Montserrat", serif !important;
}

.area-block {
    position: relative;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.area-block .img {
    height: 365px;
}

.area-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.area-block .img .alert-h {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    padding: 10px 17px;
    color: #fff;
    font-family:
        'Lato', 'Open Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.area-block .details {
    padding-top: 16px;
}

.area-block .details .name {
    display: block;
    color: #232323;
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.area-block .details span {
    display: table;
    display: block;
    line-height: 24px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.area-block .details i {
    display: block;
    line-height: 24px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    font-style: normal;
}

.area-block:hover .details .name {
    color: var(--sec-color);
}

.swiper-deals {
    height: 80vh;
}

.swiper-deals .image-outer {
    width: 100%;
    height: 100%;
}

.swiper-deals .image-outer .bannerimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-deals .details-section {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    min-height: 218px;
    display: flex;
    align-items: end;
}

.swiper-deals .details-section .content .title {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    line-height: 40px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 24px;
}

a.btn.theme-btn-white {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    display: inline-flex;
    align-items: center;
    transition: all 0.5s ease;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    color: white;
    min-width: auto;
}

a.btn.theme-btn-white:hover {
    color: var(--sec-color);
    border-bottom: 2px solid var(--sec-color);
}

.swiper-deals .details-section .content .title i {
    font-weight: 300;
}

.swiper-deals .details-section .content .proj-category {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 48px;
}

.swiper-deals .details-section .content .proj-category li {
    display: flex;
    align-items: center;
    border: 1px solid white;
    padding: 4px 8px;
    border-radius: 5px;
}

.swiper-deals .details-section .content .proj-category li span {
    font-size: 13px;
    font-style: normal;
    line-height: 24px;
    color: #fff;
}

.swiper-areas .swiper-wrapper {
    max-width: 100vw;
}

.swiper-areas .swiper-wrapper .swiper-slide {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    transition: width 0.7s ease-in-out;
}

.card.destination-card {
    height: 640px;
    position: relative;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}

.card.destination-card .image-outer {
    width: 100%;
    height: 100%;
}

.card.destination-card .image-outer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card.destination-card .category-title {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    padding-top: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    color: white;
    text-align: center;
    height: 170px;
    transition: all 0.7s ease-in-out;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.card.destination-card .category-title .category {
    font-size: 24px;
    font-style: normal;
    line-height: 30px;
}

.card.destination-card .more-details {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 8px;
}

.card.destination-card .detailed-view {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    padding: 48px 40px;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.card.destination-card:hover .category-title {
    height: 100%;
}

.card.destination-card:hover .more-details {
    display: flex;
}

.card.destination-card .more-details i {
    font-size: 24px;
}

.swiper-areas .swiper-wrapper .swiper-slide.active {
    width: 70%;
    transition: width 0.7s ease-in-out;
}

.swiper-areas .swiper-wrapper.anim .swiper-slide:not(:has(.active)) {
    width: 10%;
}

.card.destination-card.active .category-title {
    display: none;
    transition: all 0.5s ease;
}

.card.destination-card.active .more-details {
    top: 24px;
    bottom: auto;
    left: auto;
    right: 24px;
    z-index: 2;
    display: flex;
}

.card.destination-card .more-details.less span {
    display: none;
}

.card.destination-card .more-details.less span.icon {
    display: block;
    height: 32px;
    width: 32px;
    margin-left: 0;
    transform: none;
    transform: rotate(45deg);
}

.card.destination-card .more-details.less span.icon i {
    font-size: 30px;
}

.card.destination-card.active .detailed-view {
    display: flex;
    transition: all 0.5s ease;
}

.card.destination-card .detailed-view .category {
    font-size: 24px;
    font-style: normal;
    line-height: 30px;
    margin-bottom: 20px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.card.destination-card .detailed-view .category.show {
    opacity: 1;
}

.card.destination-card .detailed-view .desc {
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    width: 60%;
}

.card.destination-card .detailed-view .desc.show {
    opacity: 1;
}

.card.destination-card .detailed-view .latest-project {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.card.destination-card .detailed-view .latest-project.show {
    opacity: 1;
}

.card.destination-card .detailed-view .latest-project .proj-list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.card.destination-card .detailed-view .latest-project .proj-list a {
    display: block;
    position: relative;
    width: 160px;
    height: 160px;
}

.card.destination-card .detailed-view .latest-project .proj-list a img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.card.destination-card .detailed-view .latest-project .proj-list a span {
    position: absolute;
    top: 49%;
    color: white;
    left: 0;
    width: 100%;
    font-size: 13px;
    line-height: 18px;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
}

.card.destination-card .detailed-view .latest-project .proj-list a:hover::before {
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.card.destination-card .detailed-view .latest-project .proj-list a:hover span {
    display: flex;
}

.card.destination-card .detailed-view .theme-btn-white {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.card.destination-card .detailed-view .theme-btn-white.show {
    opacity: 1;
}

.swiper-areas .swiper-wrapper.anim .swiper-slide:not(:has(.active)) .card.destination-card .category-title {
    display: none;
}

.card.destination-card .detailed-view .btns-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.swiper-areas .swiper-wrapper.anim .swiper-slide:not(:has(.active)) .card.destination-card .more-details {
    opacity: 0;
}

.area-new-h {
    /* padding: 100px 0; */
    padding-top: 100px;
}

.form-group {
    position: relative;
}

.iti__country-list {
    max-height: 185px !important;
    max-width: 350px;
    width: 350px;
    /* position: relative !important; */
}


.iti__country-list {
    /* top: 100% !important; */
    /* left: 0 !important; */
    /* right: 0 !important; */
}

@media screen and (min-width: 1400px) {
    header .container {
        max-width: 100%;
        padding: 0 48px !important;
    }

    .container {
        /* max-width: 1140px; */
        /* max-width: 1260px; */
    }
}

@media screen and (min-width: 744px) {
    header {
        height: 88px;
        z-index: 999;
    }
}

@media (min-width: 576px) {
    .emailModal .modal-dialog {
        max-width: 100%;
    }

    .phoneModal .modal-dialog {
        max-width: 440px;
    }
}

@media (min-width: 1200px) {
    .tab-inner-new .form-h-res {
        display: none;
    }

    .projects-page-h .row .col-md-4.col-lg-4.col-xl-4.col-sm-7.col-xs-12 {
        width: 50%;
    }

}

@media (min-width: 991px) {

    .calc-form .res-only {
        display: none !important;
    }

}

/* End Style */
#customInstallPrompt {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 10px;
    min-width: 320px;
    max-width: 95%;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
    font-family: sans-serif;
    position: relative;
}

.custom-install-logo {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}

.custom-install-content {
    flex: 1;
}

.custom-title {
    font-weight: 500;
    font-size: 13px;
}

.custom-url {
    font-size: 12px;
    color: #555;
}

#customInstallBtn {
    /*background: #007bff;*/
    color: #01062D;
    background: none;
    /*border: 1px solid #01062D;*/
    padding: 6px;
    border-radius: 6px;
    border: none !important;
    cursor: pointer;
}

.custom-close {
    position: absolute;
    top: 6px;
    right: 8px;
    cursor: pointer;
    font-size: 20px;
    color: #000;
}

.form-group .form-control {
    text-transform: none;
}

.linksArea li {
    display: inline-flex;
    width: 100%;
}

.media-new-h {
    padding: 100px 0;
}

.media-new-h .title2 {
    margin: 0;
}

.media-new-h .title-flex {
    margin-bottom: 32px;
    padding-inline-end: 150px;
}

.media-new-all .item {
    padding: 0 10px;
}

.media-new-all .slick-prev,
.media-new-all .slick-next {
    margin: 0;
    top: -57px;
    margin: 0 10px;
    right: 0;
    left: auto;
    width: 40px;
    height: 40px;
    border: 1.5px solid #e9e9e9 !important;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: none;
}

.media-new-block {
    /* height: 100%; */
    overflow: hidden;
    background: #fff;
    color: #222;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
}

.media-new-block .img-block {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.media-new-block .img-block .img {
    width: 100%;
    height: 100%;
}

.media-new-block .img-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.media-new-block .img-block::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #333 0, #333 40%, rgba(51, 51, 51, 0) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
}

.media-new-block:hover .img-block::after {
    opacity: 1;
}

.media-new-block .img-block .hover-img {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 25px;
    transition: margin .3s, opacity .4s;
    opacity: 0;
    z-index: 22;
}

.media-new-block .img-block .hover-img p {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
}

.media-new-block:hover .img-block .hover-img {
    opacity: 1;
}

.media-new-block .details {
    position: relative;
    padding: 20px 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.media-new-block .details h3 {
    font-size: 18px;
    line-height: 120%;
    color: #222;
    margin-bottom: 0;
    transition: color .2s ease-out;
}

.media-new-block .details .foot-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9e9e9;
}

.media-new-block .details .foot-block .text-inner {
    display: flex;
    align-items: center;
}

.media-new-block .details .foot-block .text-inner .logo-small {
    width: 50px;
    height: 50px;
    margin-inline-end: 15px;
    overflow: hidden;
    text-align: center;
}

.media-new-block .details .foot-block .text-inner .logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.media-new-block .details .foot-block .text-inner .text-logo-h {
    width: calc(100% - 65px);
}

.media-new-block .details .foot-block .text-inner .text-logo-h h4 {
    font-size: 14px;
    line-height: 180%;
    margin-bottom: 0;
    font-weight: bold;
}

.media-new-block .details .foot-block .text-inner .text-logo-h p {
    font-size: 12px;
    line-height: 160%;
    color: #8f8f8f;
    margin-bottom: 0;
}

.media-new-block .details .foot-block .review-block span {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: #8f8f8f;
    padding-inline-end: 25px;
    background-image: url(../images/acticle-views.svg);
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: right center;
    vertical-align: middle;
}

.select2-container--default .select2-search--inline .select2-search__field {
    top: 7px;
    /* display: table; */
    /* margin: auto; */
    height: 18px !important;
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    min-width: auto;
    width: auto;
}

.select2-container--default .select2-selection--multiple .select2-search--inline {
    flex-grow: 1;
    min-width: 230px;
    /* Or any reasonable minimum */
    display: inline-flex;
}

/*.select2-container--default .select2-selection--multiple {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    align-items: center;*/
/*}*/

.select2-container--default .select2-results__option--highlighted[aria-selected] h3 {
    color: inherit;
}

.select2-container--default .select2-search--inline .select2-search__field,
.select2-container--default .select2-search--inline {
    height: 100%;
    top: 0;
}

.select2-container--default .select2-search--inline .select2-search__field,
.select2-container--default .select2-search--inline {
    height: 100%;
    top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: absolute;
}

.cursor-pointer {
    cursor: pointer;
}

.media-new-all .slick-prev {
    right: 55px;
}

.media-new-all .slick-prev::before,
.media-new-all .slick-next::before {
    font-size: 16px;
    color: #333;
    transition: all .4s;
}

.media-new-all .slick-prev:hover::before,
.media-new-all .slick-next:hover::before {
    color: var(--sec-color);
}

.header-med .head-inner ul {
    gap: 30px;
}

.lang-menu .lang-menu .sub-menu {
    display: block;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    min-width: 164px;
    white-space: nowrap;
    border: 1px #EEF0F1 solid;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
    z-index: 1001;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 0 -1px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-height: 291px;
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
    transform: scale(0) translateX(-22%);
}

.lang-menu .lang-menu:hover .sub-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.lang-menu .lang-menu .sub-menu li {
    margin: 0;
}

.lang-menu .lang-menu .sub-menu li a {
    color: #2B2D2E;
    font-weight: normal;
    line-height: 1.43;
    font-size: 14px;
    display: flex;
    padding: 12px 16px 8px 16px;
    margin: 0;
    justify-content: space-between;
    border-bottom: 1px #EEF0F1 solid;
    border-radius: 0 !important;
}

.lang-menu .lang-menu .sub-menu li a:hover {
    background: #F6F7F8;
    color: #2B2D2E;
}

.lang-menu .lang-menu .sub-menu li a::before {
    display: none;
}

.lang-menu .lang-menu .sub-menu li a .icon {
    opacity: 0;
    color: var(--sec-color);
}

.lang-menu .lang-menu .sub-menu li a.active .icon {
    opacity: 1;
}

.lang-menu .lang-menu .sub-menu li a.active {
    font-weight: bold;
}

.lang-menu .lang-menu::after {
    content: "";
    position: fixed;
    background-color: #2B2D2E;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: all .4s;
    visibility: hidden;
    pointer-events: none;
}

.lang-menu .lang-menu:hover::after {
    visibility: visible;
    opacity: .7;
}

.nav_pages .lang-menu .lang-btn {
    color: #35373c;
}

header.nav_pages .header-med {
    background: #fff;
}

.lang-menu-res {
    display: none;
}

.form-content2 .form-inner-h .form-group .select2 {
    height: 100%;
}

.form-content2 .form-inner-h .form-group .select2 .selection,
.form-content2 .form-inner-h .form-group .select2 .selection .select2-selection,
.form-content2 .form-inner-h .form-group .select2 .selection .select2-selection .select2-selection__rendered {
    height: 100%;
}

.form-content2 .form-inner-h .form-group .select2 .selection .select2-selection .select2-selection__rendered {
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
}

.form-content2 .form-inner-h .form-group .select2 .selection .select2-selection .select2-selection__rendered .select2-search__field {
    margin-top: 0;
    position: relative;
    max-width: 200px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-search.select2-search--inline {
    max-width: 100%;
    /* width: 100%; */
}

.res-menu {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    height: 56px;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgb(238, 240, 241);
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    box-shadow: rgba(43, 45, 46, 0.06) 0px -2px 12px 0px;
    /* gap: 12px; */
    flex: 0  1;
    justify-content: space-between;
    align-items: start;
    display: none;
}

.res-menu .item {
    display: block;
    align-content: center;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, padding-top 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    max-width: 168px;
    color: #626465;
    font-weight: normal;
    white-space: nowrap;
    min-width: unset;
    padding: 5px 10px;
    text-align: center;
    width: auto;
    flex: 0 0 auto;
    height: 55px;
}

.res-menu .item .icon path {
    stroke: #333;
}

.res-menu .item .icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin: 0 auto;
    font-size: 15px;
}

.res-menu .item .icon svg {
    width: 100%;
    height: 100%;
}

.res-menu .item .mobile-nav-toggler, .res-menu .item a {
    display: block;
    width: 100%;
    height: 55px;
    line-height: normal;
}

.res-menu .item span {
    font-size: 0.75rem;
    opacity: 1;
    -webkit-transition: font-size 0.2s, opacity 0.2s;
    transition: font-size 0.2s, opacity 0.2s;
    transition-delay: 0.1s;
    display: inline-block;
}

.res-menu .item.item-center .icon {
    background: var(--sec-color);
    border-radius: 50%;
    color: #fff;
}
.select2-dropdown {
z-index:5;
}
.nice-select.open .list
{
    overflow-y:auto !important;
}

.partners-h .overlay-img {
    display: none;
}

.sidebar-h {
    padding: 0;
    overflow: hidden;
}

.sidebar-user-in {
    display: flex;
    padding: 24px 24px 0;
}

.sidebar-h .sidebar-form.general-form {
    padding: 25px;
}

.project-card-h {
    margin-top: 73px;
    border: 0 solid #e1e8ed;
    border-radius: 8px;
    height: 236px;
    overflow: hidden;
}

.project-card-h .content-block {
    padding: 24px;
}

.project-card-h .content-block h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .18px;
    line-height: 140%;
    margin-bottom: 8px;
}

.project-card-h .content-block p {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .14px;
    line-height: 140%;
    color: #fff;
}

.project-card-h .content-block .btn {
    font-size: 14px;
    min-height: 46px;
    min-width: auto;
    padding: 0 16px;
}

.prop-inner-related-h .project-block2 .img-block {
    height: 260px;
}

.prop-inner-related-h .project-block2 .details {
    padding: 15px;
}

.prop-inner-related-h .project-block2 .details .title-block .name-pro {
    font-size: 15px;
}

.prop-inner-related-h .project-block2 .details p {
    font-size: 12px;
    line-height: 22px;
}

.prop-inner-related-h .project-block2 .details .location-in {
    font-size: 12px;
    line-height: 22px;
}

.prop-inner-related-h .project-block2 .details .content-in {
    padding-top: 10px;
}

.prop-inner-related-h .project-block2 .details .content-in .item {
    font-size: 11px;
    padding-inline-end: 5px;
    margin-inline-end: 5px;
}

.prop-inner-related-h .project-block2 .details .btns-block {
    padding-top: 15px;
    gap: 5px;
}

.prop-inner-related-h .project-block2 .details .btns-block .btn {
    min-height: 35px;
    height: auto;
    font-size: 9px;
    padding: 2px 10px;
    gap: 3px;
}

.prop-inner-related-h .projects-slider .item.slick-slide {
    padding: 0 8px;
}

.prop-inner-related-h .project-block2 .details .btns-block .btn i {
    font-size: 11px;
}

.help-form {
    max-width: 1155px;
    margin: 40px auto;
    background: transparent;
    border: 2px #ffffff40  solid;
}

.help-form h3 {
    text-align: center;
    color: #ffffff7a;
    margin: 0 auto 26px;
    margin-top: -42px;
    background: #10102a;
    display: table;
    padding: 2px 15px;
}
.help-form .form-inner .item .form-group .form-control
{
    border:none;
}
.help-form .form-inner .item .form-group .form-control::placeholder {
    color: #ffffffb5;
}

.help-form .form-inner .item .iti__selected-dial-code {
    color: #ffffffb5;
}

.logo-f {
    display: block;
    text-align: center;
    filter: brightness(0) invert(1);
}

.links-f-bottom {
    border-top: 1px #FFFFFF66 solid;
    padding-top: 20px;
    margin-top:20px;
}

.links-f-bottom ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.links-f-bottom ul li {
    padding: 0 20px;
    position: relative;
    color: #fff;
    display: inline-flex;
    list-style: none;
}

.links-f-bottom ul li::after {
    content: "|";
    position: absolute;
    right: -2px;
    top: 0;
    font-weight: bold;
    font-size: 14px;
    bottom: 0;
    align-content: center;
}

.links-f-bottom ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;

}

footer .overlay-img {
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom center;
    background-color: #10102a;
}

.links-f-bottom ul li:first-child {
    padding-inline-start: 0;
}

.links-f-bottom ul li:last-child {
    padding-inline-end: 0;
}

.links-f-bottom ul li:last-child::after {
    display: none;
}

.single-property button.slick-prev.slick-arrow {
    left: auto !important;
    right: 30px;
}
.footer-top .foot-block2{
margin-left: -8%;
}
@media (min-width: 991px){
.links-f ul {
    /* display: flex;
    flex-wrap: wrap; */
}

.links-f ul li {
    /* width: 50%;
    padding-inline-end: 10px;
    margin-bottom: 10px; */
}

.help-form .form-inner .item.item-btn {
    width: 19%;
}
}