@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

hr {
    opacity: 1 !important;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

/* ========== Variable Define =========== */

:root {
    --primary-color: #E8191C;
    --secondry-color: #E02428;
    --thrid-color: #F1E4E4;
    --light-pink-color: #FFF0F0;
    --white-color: #FFFFFF;
    --text-color: #463C3C;
    --text-gray: #999;
    --secondry-gray-color: #E9E9E9;
    --black-color: #1E1919;
    --black-secondry-color: #000000;
    --primary-font: 'Poppins', sans-serif;
    --secondry-font: 'Quicksand', sans-serif;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font) !important;
    font-size: 100%;
    font-weight: 400;
}

body>* {
    animation-timeline: view() !important;
}

/* @@@@@@@@@@@@ */
.navbar {
    position: absolute !important;
    z-index: 2;
    background-color: transparent !important;
    padding: 0 5% !important;
    width: 100%;
}

.nav-item {
    margin: 0 .6rem;
}

.nav-item .active {
    color: var(--white-color) !important;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 0;
    line-height: 1.3rem;
    margin: .5rem 0;
}

.nav-item a {
    color: var(--white-color);
}

.search-icon-btn {
    color: var(--white-color);
    width: 1.5rem;
    padding: 0 !important;

}

.phone-whatapp-icon {
    display: flex;
    flex-direction: column;
    width: 50px;
    position: fixed;
    right: 2%;
    bottom: 15%;
    z-index: 9;
}

/* 
=======================
    home-section Design
=======================
*/

#home-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../assets/images/home-banner-img.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#agra-site-project-section h1,
#agra-site-project-section p,
#residential-project-section h1,
#residential-project-section p,
#home-section h1,
#home-section p {
    font-family: var(--primary-font);
    color: var(--white-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
}

#agra-site-project-section p,
#residential-project-section p,
#home-section p {
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    margin: 0 20%;
}

#home-section h1 {
    text-transform: uppercase;
}

/* 
=======================
    about-section Design
=======================
*/

#testimonial,
#our-nationwide-presence,
#our-projects,
#about-us {
    background-color: var(--thrid-color);
    position: relative;
    padding-top: 85px !important;
}

.about-us-top-banner {
    position: absolute;
    width: 92.4% !important;
    top: -15%;
}

.about-us-top-banner .about-us-top-box:nth-child(1) {
    margin-right: 15%;
}

.about-us-top-banner .about-us-top-box:nth-child(2) {
    position: absolute;
    top: -40%;
}

.about-us-top-box:hover {
    z-index: 3;
    transform: scale(1.05);
}


.about-us-top-box {
    background-color: var(--white-color);
    border-radius: 30px;
    box-shadow: 0 0 2rem .2rem rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
}

.about-us-top-box img {
    width: 20%;
}

.about-us-top-box h6 {
    color: var(--secondry-color);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    margin: 0;
}

.about-us-top-box p {
    color: var(--black-secondry-color);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 25px 15px;
}

.heading-content h1 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 1.2rem;
    position: relative;
}

.heading-content h1::after {
    content: '';
    width: 20rem;
    height: 1px;
    position: absolute;
    left: -96px;
    bottom: -10px;
    background-color: var(--primary-color);
}

.heading-content-disable h1::after {
    display: none;
}


.heading-content p {
    color: var(--black-color);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    display: inline-block;
}

.heading-content hr {
    display: none;
    position: absolute;
    top: 19%;
    left: 0;
    border: none;
    border-top: 1px solid var(--primary-color);
    width: 26%;
}

.about-content ul {
    padding-left: 0;
}

.about-content li {
    list-style: none;
}

.main-btn {
    background-color: var(--secondry-color);
    color: var(--white-color);
    border: 0;
    padding: 10px;
    border-radius: 50px;
    font-family: Poppins;
    font-size: 18px;
    margin-top: 20px !important;
    font-weight: 300;
    line-height: 24px;
}

.btn-img {
    width: 20%;
}


.about-us-img-sub-box-1 {
    display: flex;
    justify-content: center;
}

.about-us-img-sub-box-1 img {
    width: 90% !important;
}

.about-us-img-sub-box-2 img,
.about-us-img-sub-box-1 img {
    width: 100%;
    padding: 1rem;
}

.about-us-img-sub-box-2 img,
.about-us-img-sub-box-1 img,
.about-us-img-sub-box-1 img {
    transition: transform .9s ease-in-out;
}

.about-us-img-sub-box-2 img:hover,
.about-us-img-sub-box-1 img:hover,
.about-us-img-sub-box-1 img:hover {
    transform: scale(1.02);
}

.about-us-img-box {
    display: flex;
}

.about-us-img-sub-box-2 img:nth-child(1) {
    height: 55%;
}

.about-us-img-sub-box-2 img:nth-child(2) {
    height: 45%;
}

.about-us-img-sub-box-2 {
    width: 100%;
}

/* 
=======================
    our-projects-section Design
=======================
*/
#our-projects {
    background-color: var(--white-color);
    padding-top: 5.63rem !important;
    padding-bottom: 5.63rem !important;
}

.our-projects-heading {
    padding: 0 .7rem;
}

.our-projects-heading p {
    margin-top: 10px;
}

#our-projects .owl-nav {
    bottom: -3.78rem;
}


.slide-box {
    display: flex;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
    transform-origin: bottom;
    margin: 20px;
    width: 75%;
}


.slide-box:hover {
    transform: scaley(1.025);
}

.slide-box img:nth-child(1) {
    border-radius: 20px;
}

#our-projects .owl-item {
    display: flex;
    justify-content: center;
}

#our-projects .owl-carousel .owl-item img {
    display: block;
    height: auto !important;
}

.slide-title {
    position: absolute;
    z-index: 3;
    left: 2rem;
    bottom: 1rem;
}

.slide-title h3 {
    color: var(--white-color);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    text-align: left;
    margin-bottom: 0;
}

.slide-title a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white-color);
    font: 300 1rem var(--primary-font);
    line-height: 28.5px;
    text-align: left;
}

.slide-title a img {
    margin-left: 5px !important;
}

.slide-title a:hover {
    color: var(--white-color) !important;
}

.slide-title img {
    width: 10% !important;
}

/* 
=======================
    our-nationwide-presence Section Design
=======================
*/

#our-nationwide-presence {
    padding-top: 48px !important;
}

.our-nationwide-presence-heading hr {
    width: 24%;
    top: 10%;
}

.our-nationwide-presence-box {
    display: flex;
    align-items: center;
    margin: 0px 0px 0px 20px;
    border: 1px solid var(--secondry-color);
    padding: 0 1rem;
}

.our-nationwide-presence-sub-heading h1 {
    color: var(--secondry-color);
    font-family: Poppins;
    font-size: 50px;
    font-weight: 500;
    line-height: 84px;
    margin: 0 5px 0 5px;
    text-align: left;
}

.our-nationwide-presence-sub-heading p {
    color: #000000;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin: 0 10px 0 0;
    text-align: center;
}

.cities-box {
    height: 300px;
    overflow-y: scroll;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--thrid-color);
    margin-left: 5px !important;
    padding: 20px;
    padding-right: 0px;
}



::-webkit-scrollbar {
    width: 0.625rem;
    border-radius: 20%;
}

::-webkit-scrollbar-track {
    background: #C0C0C0;
    border-radius: 25px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

.cities-box-ul {
    display: flex;
    justify-content: center;
    height: auto;
    padding: 0px;
}

.cities-box-ul li {
    list-style: none;
    text-align: center;
    position: relative;
    background-color: #DDB3B3;
    height: 40px;
    margin: 0px 20px;
    width: 20%;
}

.cities-box-ul li:before {
    content: '';
    z-index: 2;
    position: absolute;
    clip-path: polygon(26px 0%, 136px 0%, 118px 100%, 0px 100%);
    background-color: #DDB3B3;
    width: 27px;
    height: 41px;
    top: -1px;
    left: -26px;
}

.cities-box-ul li:after {
    content: '';
    z-index: 2;
    position: absolute;
    clip-path: polygon(0px 2%, 150px 0%, 56px -103%, 0px 98%);
    background-color: #DDB3B3;
    width: 27px;
    height: 42px;
    top: -1px;
    right: -26px;
}

.cities-box-ul li:first-child::before {
    clip-path: polygon(0px 2%, 150px 0%, 56px 103%, 0px 98%);
}

.cities-box-ul li:last-child::after {
    clip-path: polygon(0px 2%, 150px 0%, 56px 103%, 0px 98%);
}

.cities-box-ul li a {
    font-size: 12px;
    padding: 0px 8px;
    margin: 10px 0px;
    display: block;
    text-decoration: none;
    color: var(--black-secondry-color);
}

.cities-box-ul li:hover {
    background-color: var(--secondry-color);
    color: var(--white-color);
}

.cities-box-ul li:hover a {
    text-decoration: none;
    color: var(--white-color);
}

.cities p {
    padding: 5px 0;
    margin: 0;
    transform: skew(35deg);
}

.cities-box-ul li:hover::after,
.cities-box-ul li:hover::before {
    background-color: var(--secondry-color);
}

/* 
=======================
    featured Section Design
=======================
*/
#featured {
    padding-top: 6.5rem !important;
    padding-bottom: 7.5rem !important;
}

.article-slide-box .owl-nav,
#featured .owl-nav {
    display: inline !important;
    position: relative;
    bottom: -11%;
    left: 85% !important;
}

#featured .owl-carousel {
    height: auto;
}

#article .heading-content h1,
.featured-content h1 {
    margin-bottom: .4rem !important;
}

.owl-dots {
    display: none;
}

.featured-slide {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.featured-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 28px !important;
    transition: background .9s ease;
}

.featured-slide:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) !important;
}

.featured-img-title {
    position: absolute;
    width: 90%;
    bottom: 20px;
    left: 20px;
    color: var(--white-color);
    z-index: 2;
}

.featured-img-title h5 {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.featured-img-title p {
    display: none;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    text-align: center;
}

.featured-slide {
    position: relative;
    display: inline-block;
}

.featured-slide img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.featured-img-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
}

.featured-slide:hover img {
    filter: grayscale(80%);
    transition: filter 2s ease;
}

.featured-slide:hover .featured-img-title {
    opacity: 1;
    transition: transform 0.9s ease, color 0.9s ease;
    transform: translateY(-100%);
    display: flex;
    align-items: center;
}

.featured-slide:hover h5 {
    color: var(--secondry-color);
    text-align: center;
    text-transform: uppercase;
}


.featured-slide .featured-img-title p {
    display: none;
}

.featured-slide:hover i {
    display: none;
}

.featured-slide:hover p {
    display: block;
}

.featured-slide img .featured-slide:hover .featured-img-title {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.owl-nav {
    display: block !important;
    position: absolute;
    right: 25px !important;
    bottom: -35px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    border-radius: 8px !important;
    background-color: var(--white-color) !important;
    padding: 0 20px !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    margin: 0 20px !important;
}

.owl-nav .owl-prev {
    rotate: -45deg;
}

.owl-nav .owl-next {
    rotate: 45deg;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: var(--secondry-color) !important;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
    border-radius: 5px;
    background-color: transparent !important;
    color: var(--secondry-color) !important;
}

.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
    background-color: transparent !important;
    color: var(--white-color) !important;
}

.owl-nav .owl-prev i {
    rotate: 45deg
}

.owl-nav .owl-next i {
    rotate: -45deg
}

/* 
=======================
    featured Section Design
=======================
*/

#chairman {
    background-color: var(--thrid-color);
}

.chairman-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chairman-content h1,
.chairman-content,
h6 {
    margin: 0 !important;
}

.chairman-content h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #413535;
}

.chairman-content h6 {
    color: #413535;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.chairman-content p {
    color: #413535;
}

.chairman-content p:nth-child(4) {
    margin-top: 10px;
}

.chairman-content .main-btn {
    width: 155px !important;
    margin-top: 20px !important;
}

.chairman-img-box {
    display: flex;
    justify-content: end;
}

.chairman-img-box img {
    width: 90%;
    transition: transform 2s ease-in-out;
}

.chairman-img-box:hover img {
    transform: scale(1.05);
}

/* 
=======================
    article Section Design
=======================
*/

.article-slide-box {
    height: auto;
}

.article-slide-box .owl-carousel {
    height: 100%;
}

.article-slide-box .owl-nav {
    bottom: -0.2rem;
}

.article-slide-box .owl-stage {
    padding-bottom: 2rem;
}

.article-slide-box .item {
    padding-top: 18px;
    height: 60% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.article-slide-box .owl-nav .owl-prev,
.article-slide-box .owl-nav .owl-next {
    background-color: #d9d9d9 !important;
}

.article-slide-box .owl-nav .owl-prev:hover,
.article-slide-box .owl-nav .owl-next:hover {
    background-color: var(--secondry-color) !important;
}

.card {
    border: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    width: 80%;
}

.card-body {
    padding: 10px 25px 10px 25px !important;
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    transition: transform 1s ease-in-out;
}

.card-img-top:hover {
    transform: scale(1.02);
}

.card-text {
    padding: 0;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8rem;
    text-align: left;
}

/* 
=======================
    testimonial Section Design
=======================
*/
#testimonial {
    height: fit-content;
    padding-bottom: 5rem !important;
}

#testimonial hr {
    top: 22.5%;
    width: 30%;
    transform: translate(-50%, -0%);
}

.testimonial-slide-box .testimonial {
    height: auto;
}

.testimonial h6 {
    color: #000000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    margin-top: .6rem !important;
}

#testimonial .heading-content p {
    font-size: 1.2rem;
}

.testimonial-slide-box .item {
    margin: 0 20px !important;
}

.testimonial-slide-box .owl-nav {
    display: inline !important;
    position: relative !important;
    left: 30% !important;
    bottom: -30px !important;
}

.testimonial-slide-video {
    cursor: pointer;
}

.testimonial-slide-img {
    position: relative;
}

.slide-img {
    height: 100% !important;
}

.slide-img img {
    width: 100%;
    height: 100% !important;
    transition: filter 0.5s ease;
}

.disable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88% !important;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    border-radius: 20px;
}

.testimonial-slide-img:hover .slide-img img {
    filter: grayscale(60%);
}


.disable p {
    display: inline-block;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    margin: 0 7%;
}

.disable i {
    color: var(--secondry-color);
}


.testimonial-slide-box .owl-nav .owl-prev,
.testimonial-slide-box .owl-nav .owl-next {
    background-color: #d9d9d9 !important;
}

.testimonial-slide-box .owl-nav .owl-prev:hover,
.testimonial-slide-box .owl-nav .owl-next:hover {
    background-color: var(--secondry-color) !important;
}

/* 
=======================
    footer Section Design
=======================
*/
footer,
#footer {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

.footer-box-2 h4,
.footer-box-3 h4,
.footer-box-1 h4 {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 500;
    line-height: 44px;
    text-align: left;
}

.footer-box-3 p,
.footer-box-1 p {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.footer-box-1 p {
    max-width: 300px;
}

.call-mail-us h4 {
    margin-top: 5px;
}

#footer a {
    text-decoration: none;
    color: var(--white-color);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

#footer a:hover {
    color: var(--white-color) !important;
}

.footer-box-2 {
    display: flex;
    flex-direction: column;
}

.footer-box-2>* {
    margin: 2px;
}

.footer-box-3 img {
    width: 40px;
    margin-right: 10px;
}

.form-box label {
    display: none;
}

.form-box input {
    margin: 5px 0;
    border-radius: 50px;
    padding: 10px;
    height: 100% !important;
}

.form-box input::placeholder {
    color: var(--primary-color);
}

.email-box {
    position: relative;
    width: 70%;
}

.email-box img {
    width: 40%;
    position: absolute;
    right: -50px;
    bottom: 12%;
    color: #000000;
}

.copyright-box p {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
}

/* 
    =======================
        residential-project-section Section Design
    =======================
    */
#agra-site-project-section,
#residential-project-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../../assets/images/residential-project-home-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#residential-project-section h2 {
    font-family: Poppins;
    font: 600 1.5rem var(--primary-font) !important;
    line-height: 35px;
    text-align: center;
    color: var(--white-color);
}

.article-section {
    background-color: var(--thrid-color) !important;
}

.testimonial-section {
    background-color: var(--white-color) !important;
}

.search-bar {
    background-color: var(--white-color);
    border-radius: 50px;
    padding: 0 !important;
    margin-top: 1rem !important;
    align-items: center !important;
}

.search-bar,
.search-bar>* {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.search-bar>* {
    flex-direction: column;
    padding: .3rem 1.5rem;
}

.main-btn-box {
    padding: .6rem !important;
}

.main-btn-box .main-btn {
    padding: .8rem 3.8rem;
    margin: 0 !important;
}

#city-projects .main-btn.about-btn .btn-img {
    width: 1rem;
}

#city-projects .main-btn.about-btn {
    padding: 0.2rem 0.8rem !important;
}

.select-state {
    background-color: var(--secondry-gray-color);
    border-radius: 50px;
    padding: .8rem 2rem;
}

.select-property label,
.select-state label,
.select-city label {
    font: 300 .7rem var(--primary-font);
}

.select-options .option,
.custom-select input::placeholder {
    font: 300 .8rem var(--primary-font) !important;
}

.select-property {
    /* margin-right: 20px; */
    border: 1px solid #d0d0d0;
    border-top: 0;
    border-bottom: 0;
}


.custom-select-container,
.custom-select {
    position: relative;
}

.select-state .custom-select input {
    width: 100%;
    padding: 0px;
    background-color: var(--secondry-gray-color);
    border: 0;
    outline: none;
    box-sizing: border-box;
}

.custom-select input {
    width: 100%;
    padding: 0px;
    background-color: var(--white-color);
    border: 0;
    outline: none;
    box-sizing: border-box;
}

.select-state .select-options {
    background-color: var(--secondry-gray-color);
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 0;
    border-top: none;
    background-color: var(--white-color);
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
}

.select-options .option {
    padding: 10px;
    cursor: pointer;
}

.select-state .select-options .option:hover {
    background-color: var(--secondry-gray-color);
}

.select-options .option:hover {
    background-color: var(--white-color);
}

.custom-breadcrumb ol {
    background-color: var(--thrid-color) !important;
    margin: 0;
    padding: 10px;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb a {
    text-decoration: none;
    color: var(--black-secondry-color) !important;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    text-align: left;
}

.breadcrumb-item.active {
    cursor: pointer;
}

/* 
    =======================
        residential-projects-container-section Section Design
    =======================
    */
#residential-projects-container {
    background-color: var(--thrid-color);
}

.residential-projects-box {
    position: relative;
    /* height: 200px     !important; */
    border-radius: 20px;
    order: 1;
    cursor: pointer;
}

.residential-projects-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px !important;
    pointer-events: none;
}

.residential-projects-box img {
    border-radius: 10px;
    width: 100% !important;
    position: relative;
    /* Make sure image is below the overlay */
    z-index: 0;
}

.residential-projects-box-title,
.logo-img-box {
    position: relative;
    z-index: 2;
    /* Make sure text and logos are above the overlay */
}


.logo-img-box {
    width: 20%;
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 2;
    background-color: var(--white-color);
    border-radius: 10px;
}

.logo-img-box img {
    width: 100% !important;
}

.residential-projects-box-title {
    position: absolute;
    bottom: 0 !important;
    left: 6%;
    color: var(--white-color);
    z-index: 1;
}

.residential-projects-box-title h4 {
    font: 600 18px Poppins;
    line-height: 31.5px;
    margin: 0;
    text-transform: uppercase;
}

.residential-projects-box-title p {
    font: 400 14px Poppins;
    line-height: 21px;
}

.residential-projects-box-title hr {
    margin: 0;
    width: 35px;
    bottom: 0;
    border-bottom: 5px solid var(--primary-color);
    /* color: var(--primary-color); */
}

.explore-more-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    order: 2;
}

.explore-more-box a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.explore-more-box i {
    color: var(--primary-color);
}

/* 
    =======================
        residential-projects-container-section Section Design
    =======================
    */

.sustainability-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sustainability-sub-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--black-secondry-color);
    margin: 10px 10px;
    padding: 0 8px;
}

.sustainability-sub-box img {
    width: 60px !important;
    height: 60px !important;
    margin: 8px;
}

.sustainability-box .sustainability-sub-box p {
    font-size: 12px !important;
    line-height: 20px;
    margin: 0;
}

/* 
    =======================
        residential-projects-container-section Section Design
    =======================
    */

#agra-site-project-section {
    background-image: url("../images/residential-projects-agra-page-banner.webp");
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

#agra-site-project-section h1 {
    text-align: left;
}

#agra-site-project-section p {
    text-align: left !important;
    margin: 0;
}

.project-site-breaddcrumb ol {
    background-color: var(--white-color) !important;
}

.city-project-box .residential-projects-box {
    height: auto !important;
}

.bg-pink-img-txt {
    background-color: var(--thrid-color);
}

.about-agra {}

.bg-pink-img-txt .residential-projects-box {
    order: 1;
}

.bg-pink-img-txt .heading-content {
    order: 2;
}

.city-project-box .heading-content p:nth-child(2) {
    margin: 0 !important;
}

#our-commitment {
    background-color: var(--thrid-color);
}

#our-commitment h1 {
    color: var(--primary-color);
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    line-height: 49.68px;
}

.our-commitment-box img {
    width: 60px;
    height: 60px;
}

.our-commitment-box p {
    color: var(--primary-color);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

/* 
    =======================
        parsvnath-la-tropicana-delhi-top-banner page Design
    =======================
    */

.parsvnath-la-tropicana-delhi-top-banner {
    background-image: url("../images/Parsvnath-la-tropicana-delhi-banner-img.jpg") !important;
}

#luxurious-retreted {
    background-color: var(--thrid-color) !important;
}

a.read-more-btn {
    color: var(--black-color);
    font: 400 1.1rem var(--primary-font);
    line-height: 1.4rem;
    text-decoration: none;
}

a.read-more-btn i {
    color: var(--black-color);
    font-size: .9rem;
}

a.read-more-btn:hover i {
    color: var(--primary-color);
    font-size: .9rem;
}

.bg-light-pink,
.project-site-breaddcrumb.bg-light-pink ol,
.project-site-breaddcrumb.bg-light-pink {
    background-color: var(--thrid-color) !important;
}

#luxurious-retreted {
    padding-bottom: 7rem !important;
}

.luxurious-box {
    background-color: var(--light-pink-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.luxurious-sub-boxes {
    padding-top: 2rem;
    position: relative;
    top: 5rem;
}

.luxurious-sub-boxes .luxurious-sub-box {
    background-color: var(--white-color);
    border-radius: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxurious-sub-boxes .luxurious-sub-box img {
    position: relative;
    bottom: 3.8rem;
    right: 5rem;
}

.luxurious-sub-boxes .luxurious-sub-box h3 {
    font: 500 1.5rem var(--primary-font);
    position: absolute;
    line-height: 2.5rem;
    text-align: center;
    color: var(--text-color);
}

/* ============================
unmatched-amenities-section
============================== */

.unmatched-amenities-section {
    position: relative;
}

.heading-content.unmatched-amenities-box-txt hr {
    top: 6rem;
}

.unmatched-amenities-box {
    background-color: var(--thrid-color);
    position: relative;
    height: 11rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem 1.5rem 0 1.5rem;
    border-bottom: 2px solid #DF212C;
    opacity: .6;
    transition: opacity 1s ease-in-out;
}

.unmatched-amenities-box:hover {
    opacity: 1;
}

.unmatched-amenities-circle {
    position: absolute;
    background-color: #FFACAE;
    left: -2rem;
    bottom: -4.8rem;
    padding: 7rem;
    border-radius: 100%;
}

.unmatched-amenities-circle span {
    display: none;
}

.unmatched-amenities-sub-box-txt {
    position: relative;
}

.unmatched-amenities-sub-box-txt h5 {
    font: 400 1.1rem var(--primary-font);
}

.our-masterpieces-slide .our-masterpieces-slide-box {
    border-radius: 1rem;
    border: 1px solid #373737;
    padding: 0.6rem;
}

.our-masterpieces-slide-box-img {
    position: relative;
    cursor: zoom-in;
}

.our-masterpieces-slide-box-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 18px !important;
    transition: background 3.9s ease-in-out;
}

.our-masterpieces-slide-box-img:hover::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) !important;
}

.our-masterpieces-slide-container .uk-container {
    padding: 0rem !important;

}

.tropicana-our-master-pieces-slider-btn {
    position: relative;
    left: 80%;
    padding: 2rem;
}

.tropicana-our-master-pieces-slider-btn .tropicana-our-master-pieces-slider-arrow-btn {
    border-radius: 8px;
    background: #D9D9D9;
    width: 40px;
    height: 40px;
    rotate: 45deg;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tropicana-our-master-pieces-slider-btn .tropicana-our-master-pieces-slider-arrow-btn:hover {
    background-color: var(--primary-color);
}

.tropicana-our-master-pieces-slider-btn .tropicana-our-master-pieces-slider-arrow-btn i {
    rotate: -45deg;
    color: var(--primary-color);
}

.tropicana-our-master-pieces-slider-btn .tropicana-our-master-pieces-slider-arrow-btn:hover i {
    color: var(--white-color);
}

.heading-content.prime-location p {
    /* padding-right: 3.5rem !important; */
    width: 85%;

}

.prime-location-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 1.4rem;
}


.tropicana-paramount-img-box {
    position: relative;
}

.tropicana-paramount-img-box .tropicana-paramount-img {
    width: 100%;
}

.tropicana-img-logo {
    position: absolute;
    top: 1rem;
    right: 1.6rem;
}

.tropicana-paramount-txt-box h4 {
    font: 600 1.5rem var(--primary-font);
    color: var(--primary-color);
}

.tropicana-paramount-txt-box p {
    font: 300 1.05rem var(--primary-font);
    line-height: 1.6rem;
    color: var(--black-color);
}

.assistance-hub-txt-box h1 {
    margin-bottom: 1rem !important;
}


/* ################################### */
