@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");

/* csutom fonts */

@font-face {
    font-family: "PPNeueMontreal-Regular";
    src: url("../fonts/PPNeueMontreal-Regular.woff2");
}
@font-face {
    font-family: "PPNeueMontreal-Book";
    src: url("../fonts/PPNeueMontreal-Book.woff2");
}
@font-face {
    font-family: "PPNeueMontreal-Medium";
    src: url("../fonts/PPNeueMontreal-Medium.woff2");
}
@font-face {
    font-family: "PPNeueMontreal-Bold";
    src: url("../fonts/PPNeueMontreal-Bold.woff2");
}

* {
    box-sizing: border-box;
}
p,
a {
    text-transform: none;
    font-family: "Montserrat", serif !important;
}
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: "Montserrat", serif !important;
}
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;
    font-family: "Montserrat", serif !important;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", serif !important;
    background: #1a1a1a;
    text-align: start;
    /* color: #fff; */
}

/**** Header CSS ****/

.header-section,
.header-section .navbar {
    background: transparent;
}
.header-section {
    padding: 30px 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navigation-links {
    padding: 10px 20px;
}
.navigation-links ul li a {
    font-size: 14px;
    text-transform: capitalize;
    color: #fff !important;
    padding-right: 25px !important;
}
.header-section .button-wrapper {
    text-align: right;
}
.v-align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-section .button-wrapper .btn {
    background: #ffff;
    font-size: 16px;
    line-height: normal;
    border-radius: 10px;
    padding: 12px 25px !important;
}
.header-section .right-align {
    justify-content: right;
    padding-right: 72px;
}

.menu-colmn {
    padding-left: 50px;
}

a.nav-link.header-cta-btn {
    background: #fff;
    color: #000 !important;
    border-radius: 50px;
    text-transform: uppercase !important;
    padding: 10px 25px !important;
}
a.nav-link.header-cta-btn img {
    padding-left: 4px;
}
.navigation-links ul {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 10px 20px;
}
div#staticBackdrop {
    background: #01062d;
}
button.btn.btn-primary.toggle-menu-btn {
    background: transparent;
    border: none;
}
img.logo-img.img-fluid {
    height: 35px;
}
.menu-colmn nav {
    margin: 0 !important;
    padding: 0;
}
.container-fluid.inner-header-wrap.scrolled {
    background: #000;
    border-radius: 50px;
    padding-left: 20px;
}

/**** hero section ****/
button i {
    font-size: 15px;
}
.hero-section {
    background: url("../images/hero-img.jpg") #1a1a1a no-repeat;
    background-size: cover;
    background-position: top center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 100vh;
    padding-left: 40px;
    padding-right: 40px;
}
.hero-section .row,
.hero-section .container-fluid {
    height: 100%;
}
.col-md-4.d-flex.align-items-end.align-right-cnt {
    justify-content: flex-end;
    padding-bottom: 50px;
}
.hero-left-content {
    width: 80%;
}
.hero-title h1 {
    font-size: 44px;
    line-height: 50px;
    color: #fff;
    font-family: "PPNeueMontreal-Bold";
    text-transform: uppercase;
}
.hero-left-content .hero-desc p {
    color: #fff;
    font-size: 22px;
    line-height: normal;
    margin-top: 35px;
    font-family: "Montserrat", serif;
}
.hero-btns .btn {
    background: #01062d;
    color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: normal;
}
.hero-btns {
    margin-top: 38px;
}
.hero-right-content {
    float: right;
}
.circle-animate {
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #000;
    background-position: center center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-size: 100%;
}
.circle-animate span img {
    width: 30px;
}
.circle-animate span:after {
    content: "";
    background: url(../images/explore-circle.svg) no-repeat;
    animation: spin 12s linear infinite;
    background-size: 100%;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
}
/* rotation loop */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.button-wrapper.hero-btn button {
    background: #fff;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 12px;
    padding: 10px 30px;
    margin-top: 30px;
}
.button-wrapper.hero-btn button img {
    padding-left: 5px;
}

.mobile-hero-btn {
    display: none;
}
/***** About CSS *****/

.about-section.section {
    padding: 100px 0 100px 0;
}

.about-section.section .left-txt-content {
    padding-left: 40px;
}
.about-img img {
    width: 100%;
    object-fit: cover;
}
.about-section.section .left-txt-content .before-title p {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase !important;
    font-family: "PPNeueMontreal-Book";
}
.about-section.section .left-txt-content .title h1 {
    color: #fff;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
    font-size: 50px;
    line-height: normal;
}
.about-section.section .left-txt-content .desc p {
    color: #fff;
    font-size: 18px;
    line-height: normal;
    padding-top: 20px;
    padding-right: 65px;
}
.about-section.section .left-txt-content .cta-wrapper a {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
.about-section.section .left-txt-content .cta-wrapper {
    margin-left: 115px;
    margin-top: 95px;
}
.about-section.section .left-txt-content .cta-wrapper a img {
    padding-left: 5px;
}

.about-stats {
    background: url("../images/binghatti-icon.png") no-repeat;
    background-position: top right;
    background-size: auto;
}
.milestones h2 {
    color: #fff;
    font-family: "PPNeueMontreal-Medium";
    text-transform: uppercase;
    margin-bottom: 20px;
}
.milestones {
    width: 60%;
    margin: 0 auto;
}
.milestones ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}
.milestones ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-align: center;
    align-items: center;
    padding: 10px;
    color: #fff;
    border: 1px solid #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.milestones ul li h3 {
    font-family: "PPNeueMontreal-Bold";
}
.milestones ul li a {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    display: flex;
    text-transform: capitalize;
}
.milestones ul li a img {
    padding-left: 5px;
    width: 10%;
}
li.about-cta-btn {
    background: #fff;
    text-align: center;
    justify-content: center;
    font-size: 18px;
}

li.about-cta-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
}

/**** Featured section *******/

.featured-section.section {
    padding: 0 40px;
}
h1.featured-title {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
    padding: 0 40px 50px 40px;
    text-align: center;
}
.featured-one .featured-colm-image {
    background: url("../images/binghatti-skyblade-2.webp") no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
}
.featured-two .featured-colm-image {
    background: url("../images/one-by.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
}
.featured-three .featured-colm-image {
    background: url("../images/binghati-twilight.webp") no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
}
.featured-four .featured-colm-image {
    background: url("../images/binghatti-hillside-1.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
}

.parallax-slide .content-wrapper .content h1 {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
}
.parallax-slide .content-wrapper .content{
    width: 100%;
}
.parallax-slide .content-wrapper .content p{
    color: #fff;
    font-size: 18px;
    width: 90%;
}
.featured-content {
    padding: 0 50px;
}
.featured-cta-btn button {
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #fff;
    border-radius: 0;
}
.featured-cta-btn button:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    border: 1px solid #fff;
}

ul.features-list {
    padding: 0;
    list-style: none;
    margin-bottom: 50px;
}
ul.features-list li {
    color: #fff;
    border: 1px solid #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: normal;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

/**** New launches CSS ****/

.new-laucnhes-section.section {
    background: #fff;
    padding-bottom: 100px;
}
.new-laucnhes-section.section .title {
    width: 65%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}
.new-laucnhes-section.section .title h1 {
    text-align: center;
    font-size: 50px;
    font-family: "PPNeueMontreal-Bold";
    line-height: 52px;
    text-transform: uppercase;
    width: 60%;
    margin: 0 auto;
}
.row.align-items-center.new-projects {
    padding: 0 100px;
}
.lauches-project.first-launch .pro-content,
.lauches-project.third-launch .pro-content {
    position: relative;
}
.lauches-project.first-launch .pro-content .txt-content,
.lauches-project.third-launch .pro-content .txt-content {
    position: absolute;
    bottom: 12%;
    right: 0%;
    width: 70%;
}
.lauches-project.first-launch .pro-content .txt-content h2,
.lauches-project.third-launch .pro-content .txt-content h2 {
    font-size: 55px;
    text-transform: uppercase;
    line-height: 60px;
    font-family: "PPNeueMontreal-Bold";
    margin-bottom: 20px;
}
.lauches-project.first-launch .pro-content .txt-content .launch-btn-cta,
.lauches-project.third-launch .pro-content .txt-content .launch-btn-cta {
    background: #fff;
    padding: 10px 20px;
}
.lauches-project.first-launch .pro-content .txt-content h2,
.lauches-project.second-launch .pro-content .txt-content h2,
.lauches-project.third-launch .pro-content .txt-content h2 {
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    padding: 20px;
}
.lauches-project.first-launch .pro-content .txt-content a,
.lauches-project.third-launch .pro-content .txt-content a {
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #000;
}
.lauches-project.first-launch .pro-content .txt-content a img,
.lauches-project.third-launch .pro-content .txt-content a img {
    padding-left: 10px;
    width: 8%;
}
.lauches-project.third-launch {
    padding-bottom: 100px;
}
.lauches-project.second-launch {
    text-align: right;
    padding-right: 0px;
    position: relative;
    overflow: hidden;
}
.lauches-project.second-launch .pro-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.lauches-project.second-launch .pro-content .txt-content {
    position: absolute;
    bottom: 12%;
    left: 0%;
    width: 70%;
}
.lauches-project.second-launch .pro-content .txt-content h2 {
    font-size: 55px;
    text-transform: uppercase;
    line-height: 60px;
    font-family: "PPNeueMontreal-Bold";
    text-align: left;
}
.lauches-project.second-launch .pro-content .txt-content .launch-btn-cta {
    text-align: left;
    padding: 10px 0px;
    background: #fff;
}
.lauches-project.second-launch .pro-content .txt-content a {
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #000;
}
.lauches-project.second-launch .pro-content .txt-content a img {
    padding-left: 10px;
    width: 8%;
}
.lauches-project.first-launch .pro-content .txt-content p,
.lauches-project.third-launch .pro-content .txt-content p {
    font-size: 14px;
    background: #fff;
    padding: 20px;
    margin-bottom: 0;
}
.lauches-project.second-launch .pro-content .txt-content p {
    font-size: 14px;
    background: #fff;
    padding: 20px 20px 20px 0;
    margin-bottom: 0;
    text-align: left;
}
.details-about-project ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 20px; /* space between items */
    text-align: center;
}
.details-about-project {
    padding: 0 70px;
}
.details-about-project ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-align: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #000;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    text-transform: none;
}
.details-about-project ul li img {
    width: 15%;
}
.launch-btn-cta button {
    background: #000;
    padding: 15px;
    text-align: center;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    display: block;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    width: 100%;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.launch-btn-cta button:hover{
      background: #000;
       color: #fff;
}
.launch-btn-cta button img {
    padding-left: 5px;
}
.lauches-project.second-launch  .pro-content .img {
    width: 450px;
    min-height: 750px;
    height: 100%;
    float: right;
}
.pro-content .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 750px;
}

.lauches-project.first-launch {
    text-align: left;
    padding-right: 0px;
    position: relative;
    overflow: hidden;
}
.lauches-project.first-launch .pro-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lauches-project.first-launch .pro-content .img {
    width: 450px;
    min-height: 750px;
    height: 100%;
    float: left;
}
/***** Features Stats ******/

.features-stats-section.section {
    background: url("../images/stats-bg.jpg") no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    padding: 100px 40px;
}

.features-stats-section .center-content {
    text-align: center;
}
.features-stats-section .stats-cta button {
    background: #fff;
    border-radius: 0;
    padding: 10px 20px;
    text-transform: capitalize;
    margin-top: 100px;
}
.features-stats-section .stats-cta button:active,
.features-stats-section .stats-cta button:hover {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.left-stats hr,
.right-stats hr {
    border: 1px solid #fff;
    opacity: 1;
    width: 70%;
}
.left-stats .txt-content p.title {
    color: #fff;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 0;
}
.left-stats .txt-content p.desc {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
}
.right-stats .txt-content p.title {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 0;
}
.right-stats .txt-content p.desc {
    color: #fff;
    font-size: 28px;
}
.mobile-stats-cta {
    display: none;
}
.right-stats hr:first-child {
    display: none;
}
.featured-content {
    padding: 0 50px;

}
.featured-one, .featured-three{
    background: url("../images/binghatti-icon.png") no-repeat;
    background-position: bottom right;
    background-size: auto;
}
 .featured-two{
    background: url("../images/binghatti-icon.png") no-repeat;
    background-position: 25% bottom;
    background-size: auto;
}

 .featured-four{
    background: url("../images/binghatti-icon.png") no-repeat;
    background-position: 25% bottom;
    background-size: auto;
}

/***** marquee text ******/
.property-type-section.section {
    background: #1a1a1a;
}
.scrolling-text {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    background-image: linear-gradient(to top, rgba(26, 26, 26, 1), rgba(0, 0, 0, 1));
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee span {
    font-size: 72px;
    font-weight: bold;
    margin-right: 120px; /* space between duplicates */
    white-space: nowrap;
    color: #fff;
    font-family: "PPNeueMontreal-Bold";
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.property-type-content.penthouse-content {
    background: url(../images/penthouse.png) no-repeat;
    background-position: center right;
    background-size: 35%;
    padding: 50px 0 150px 0;
}
.property-type-content.penthouse-content .content {
    width: 60%;
    padding-left: 40px;
}
.property-type-content.penthouse-content .content h1 {
    color: #fff;
    font-size: 52px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
}
.property-type-content.penthouse-content .content p {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    width: 70%;
}
.property-type-content.penthouse-content .content button.btn {
    color: #000;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0;
    padding: 8px 23px;
    font-size: 22px;
    margin-top: 50px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.property-type-content.penthouse-content .content button.btn:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid #fff;
    color: #000;
}
.property-type-content.penthouse-content .content button.btn img {
    padding-left: 10px;
}
.property-type-content.penthouse-content .content .img-gallery {
    margin-top: 50px;
    display: flex;
    column-gap: 20px;
}

.property-type-content.apartment-content {
    background: url("../images/apartment-img.png") no-repeat;
    background-position: bottom left;
    background-size: 35%;
    padding: 0 0 50px 0;
}
.property-type-content.apartment-content .content {
    width: 60%;
    padding-left: 40px;
    float: right;
}
.property-type-content.apartment-content .content h1 {
    color: #fff;
    font-size: 52px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
}
.property-type-content.apartment-content .content p {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    width: 70%;
}
.property-type-content.apartment-content .content button.btn {
    color: #000;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0;
    padding: 8px 23px;
    font-size: 22px;
    margin-top: 50px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.property-type-content.apartment-content .content button.btn:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid #fff;
    color: #000;
}
.property-type-content.apartment-content .content button.btn img {
    padding-left: 10px;
}
.property-type-content.apartment-content .content .img-gallery {
    margin-top: 50px;
    display: flex;
    column-gap: 20px;
}

.property-type-content.skyvilla-content {
    background: url("../images/skyvilla-img.png") no-repeat;
    background-position: bottom right;
    background-size: 35%;
    padding: 100px 0 100px 0;
}
.property-type-content.skyvilla-content .content {
    width: 60%;
    padding-left: 40px;
}
.property-type-content.skyvilla-content .content h1 {
    color: #fff;
    font-size: 52px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
}
.property-type-content.skyvilla-content .content p {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    width: 70%;
}
.property-type-content.skyvilla-content .content button.btn {
    color: #000;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0;
    padding: 8px 23px;
    font-size: 22px;
    margin-top: 50px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.property-type-content.skyvilla-content .content button.btn:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid #fff;
    color: #000;
}
.property-type-content.skyvilla-content .content button.btn img {
    padding-left: 10px;
}
.property-type-content.skyvilla-content .content .img-gallery {
    margin-top: 50px;
    display: flex;
    column-gap: 20px;
}

/****** Location CSSS ****/
.location-section.section {
    background: #fff;
    padding: 100px 40px 0px 40px;
}
.location-section.section .title h1 {
    font-size: 50px;
    font-family: "PPNeueMontreal-Bold";
    line-height: 52px;
    color: #000;
    text-transform: uppercase;
}
.location-section.section .desc {
    padding-left: 66px;
}
.location-section.section .desc p {
    font-size: 20px;
    line-height: normal;
}
.location-section.section .desc a {
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #000;
    text-transform: capitalize;
}
.map-img {
    margin-top: 50px;
}
.map-img img {
    width: 100%;
}
.map-img hr {
    opacity: 1;
    margin: 50px 0;
}

/**** footer CSS ***/

.footer-section.section {
    background: url("../images/footer-bg.jpg") no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 40px;
}
.footer-section.section .main-row {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid #fff;
    padding: 50px;
}
.footer-form-col h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Regular";
}
.footer-section.section .left-content h1 {
    font-size: 50px;
    font-family: "PPNeueMontreal-Bold";
    line-height: 52px;
    padding-right: 50px;
}
.footer-section.section .left-content p {
    font-size: 18px;
    margin-top: 25px;
}
.footer-form-col form.footer-form input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
}
.footer-form-col form.footer-form input:focus,
.footer-form-col form.footer-form textarea:focus {
    border-bottom: 1px solid #000;
    outline: none;
    box-shadow: none;
}
.footer-form-col form.footer-form label {
    color: #000;
}
.footer-form-col form.footer-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
    height: 200px;
}
form.footer-form select {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-bottom: 10px;
    border-radius: 0;
    color: #fff;
      text-transform: none;
}
form.footer-form select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 1);
}
.footer-form-col form.footer-form textarea label {
    padding-left: 0;
}
form.footer-form .row.form-btn {
    margin-top: 32px;
}
form.footer-form .row.form-btn button {
    background: #000;
    border: none;
    border-radius: 0;
    font-size: 18px;
    text-transform: uppercase;
    padding: 12px 25px;
    width: 210px;
}
.footer-bottom {
    padding: 20px 40px;
}
.footer-bottom .footer-logo {
    width: 30%;
}
.footer-bottom p {
    color: #fff;
    text-align: right;
    font-size: 16px;
    margin-bottom: 0;
}
.inquiry-scrolling-txt.section .scrolling-text {
    background: #fff;
}
.inquiry-scrolling-txt.section .scrolling-text span {
    color: #000;
}
ul.footer-links li {
    list-style: none;
    display: inline-block;
}
ul.footer-links li,
ul.footer-links li a {
    color: #fff;
    font-size: 14px;
}
ul.footer-links {
    list-style: none;
    text-align: right;
    margin-bottom: 0;
    padding: 0;
}
ul.footer-links li a:hover {
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

/*******Modal CSS******/
.modal-xl {
    background: rgba(0, 0, 0, 0.7);
}
.modal .modal-content {
    background: rgba(233, 230, 225, 1);
}
.modal-xl .carousel-item {
    height: 400px;
}
.modal-xl .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
div#generalForm .modal-header,
div#projectForm .modal-header {
    position: absolute;
    z-index: 2;
    right: 0;
}
.general-popup-form-section.section button.btn i {
    color: #fff;
}
.modal button.carousel-control-next {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.modal button.carousel-control-prev {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.modal .modal-content .carousel-inner img {
    border-radius: 0px;
}
div#popslider,
div#popslider .carousel-inner,
div#popslider .carousel-item,
div#popslider .carousel-item img,
div#popslider2,
div#popslider2 .carousel-inner,
div#popslider2 .carousel-item,
div#popslider2 .carousel-item img {
    height: 100%;
}
div#generalForm .modal-body,
div#projectForm .modal-body {
    padding: 0;
}
div#generalForm .modal-body .form-content,
div#projectForm .modal-body .form-content {
    padding: 25px;
}
.modal-dialog.modal-xl.modal-dialog-centered {
    background: transparent;
}
/**** General Form CSS ****/

div#generalForm .modal-content,
div#projectForm .modal-content, 
div#privacypolicy .modal-content, div#privacypolicy .modal-content {
    background: #000 !important;
    border-radius: 0px;
}
.privacy-ploicy-section.section h1, .privacy-ploicy-section.section h2, .privacy-ploicy-section.section h3, .privacy-ploicy-section.section h4{
    color: #fff;
    font-size: 26px;
}
.privacy-ploicy-section.section p {
    color: #fff;
    font-size: 18px;
}
.privacy-ploicy-section.section ul li{
     color: #fff;
    font-size: 18px;
}
div#privacypolicy .modal-header{
    color: #fff;
    font-size: 26px;
}
.generalform-title {
    color: #ffff;
    font-size: 22px;
    position: relative;
    padding-bottom: 5px;
    font-family: "PPNeueMontreal-Bold";
    text-transform: uppercase;
}
/* .generalform-title:after {
    content: "";
    position: absolute;
    left: 0;
    width: 25%;
    height: 2px;
    background-color: #fff;
    bottom: 0;
} */
.general-popup-form-section.section button.btn.pop-close {
    text-align: right;
    float: right;
    position: relative;
    z-index: 2;
}
h2.generalform-desc {
    font-size: 14px;
    color: #fff;
    padding-top: 10px;
    margin-bottom: 50px;
    text-transform: none;
}
.iam-row-m{
    margin-top: -8px;
}
.popup-form-wrapper input,
.popup-form-wrapper textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-bottom: 10px;
    border-radius: 0;
    text-transform: none;
}
.popup-form-wrapper select {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-bottom: 10px;
    border-radius: 0;
    color: #fff;
    text-transform: none;
}

.dropdown-label{
     color: rgba(255, 255, 255, 0.521);
}
.popup-form-wrapper label{
       color: rgba(255, 255, 255, 0.521);
}
.popup-form-wrapper input {
    height: 45px !important;
    min-height: 45px !important;
}
.popup-form-wrapper form.popup-form input,
.popup-form-wrapper form.popup-form textarea {
    color: #fff;
}
.popup-form-wrapper textarea {
    height: 100px !important;
    min-height: 100px !important;
}
.popup-form-wrapper input:focus,
.popup-form-wrapper textarea:focus,
.popup-form-wrapper select:focus {
    background: transparent;
    outline: none;
    box-shadow: none;
    border-color: #fff;
}
.popup-form-wrapper .form-floating label {
    color: #fff;
    left: auto;
    top: -8px;
}
#generalForm .modal-header,
#generalForm .modal-footer,
#projectForm .modal-header,
#projectForm .modal-footer {
    border: none;
}
#generalForm .popup-form-wrapper .row.pop-form-btn button,
#projectForm .popup-form-wrapper .row.pop-form-btn button {
    background: #fff;
    border: none;
    color: #000 !important;
    text-transform: uppercase;
    width: 100%;
    padding: 10px;
    border-radius: 0;
}
.modal .modal-header button i {
    color: #fff;
}
#btn-back-to-top {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: none;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    border: 1px solid #000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    height: 70px;
    width: 70px;
}

/**** Footer v2 *****/

.footer-v2-section.section .left-colmn {
    background: url("../images/footer-bg.jpg") no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 40px;
}
.footer-v2-section.section .right-colmn {
    background: #1a1a1a;
    padding: 50px 40px 100px 40px;
}
.footer-v2-section .left-content h1 {
    font-size: 50px;
    font-family: "PPNeueMontreal-Bold";
    line-height: 52px;
    padding-right: 50px;
}
.footer-v2-section .left-content p {
    font-size: 18px;
    margin-top: 25px;
}
.footer-v2-section .footer-form-col form.footer-form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    color: #fff;
    text-transform: none;
}
.footer-v2-section .footer-form-col form.footer-form input:focus,
.footer-v2-section .footer-form-col form.footer-form textarea:focus {
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: none;
}
.footer-v2-section .footer-form-col form.footer-form label {
    color: #fff;
}
.footer-v2-section .footer-form-col form.footer-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    color: #fff;
    height: 200px;
}
.footer-v2-section .footer-form-col h3 {
    font-size: 42px;
    text-transform: uppercase;
    font-family: "PPNeueMontreal-Bold";
    color: #fff;
    margin-bottom: 20px;
}

.footer-v2-section form.footer-form .row.form-btn {
    margin-top: 32px;
}
.footer-v2-section form.footer-form .row.form-btn button {
    background: #fff;
    border: none;
    border-radius: 0;
    font-size: 18px;
    text-transform: uppercase;
    padding: 12px 25px;
    width: 210px;
    color: #000;
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
    background-color: transparent;
}

/* For most modern browsers (Chrome, Firefox, Opera) */
.form-control::placeholder,
.form-select::placeholder {
    color: rgba(255, 255, 255, 0.521);
    opacity: 1;
}

/* For Internet Explorer 10, 11 */
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.521);
}

/* For Microsoft Edge */
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.521);
}
.form-select option[selected][disabled] {
    color: rgba(255, 255, 255, 0.521);
}
.form-select option:checked {
    color: white;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 10px;
}
span.iti__country-name {
    display: none;
}
.iti__selected-dial-code {
    color: rgba(255, 255, 255, 0.521);
}

.before-footer {
    background: #2c2c2c;
    padding: 20px;
    text-align: center;
}
.before-footer p {
    width: 50%;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
}

.status.success {
    color: green;
    border: 1px solid green;
    padding: 5px;
    margin-bottom: 10px;
}
.status.error{
    color: red;
    border:1px solid red;
    padding: 5px;
    margin-bottom: 10px;
}