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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}


/*.container {
    max-width: 1170px;
}*/

@font-face {
    font-family: 'Eurostar Black Extended';
    src: url('../fonts/EurostarBlackExtended.eot');
    src: url('../fonts/EurostarBlackExtended.eot?#iefix') format('embedded-opentype'), url('../fonts/EurostarBlackExtended.woff2') format('woff2'), url('../fonts/EurostarBlackExtended.woff') format('woff'), url('../fonts/EurostarBlackExtended.ttf') format('truetype'), url('../fonts/EurostarBlackExtended.svg#EurostarBlackExtended') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #F5B800;
    --primary-color: #93292d;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2.0625rem;
    color: #6A6564;
}

h1,
h2,
h3,
h4 {
    font-family: 'Eurostar Black Extended';
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--theme-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme-color);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--black);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.91em 2.2em;
    border-radius: 6px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid var(--black);
    padding: 0.91em 1.5em;
    font-family: 'Eurostar Black Extended';
    font-size: 1.125rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.themeBtn:hover {
    background: var(--white);
    color: var(--black);
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* navigation css */

.top-bar {
    background: var(--black);
    padding: 1rem 0;
}

.loc-box {
    width: 265px;
    height: 66px;
    border: 1px solid var(--theme-color);
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    border-radius: 3px;
    justify-content: center;
    padding: 0 0.9375rem;
}

.loc-box figure {
    width: 38px;
    height: 38px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.loc-box p {
    color: var(--white);
    margin: 0;
    font-weight: 300;
    line-height: 1.4;
}

.email-content p {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 300;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.email-content p a {
    font-size: 1rem;
    color: var(--theme-color);
    font-weight: 500;
}

a.emlquote {
    width: 274px;
    height: 41px;
    border: 1px solid var(--theme-color);
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin: auto;
}

a.emlquote:hover {
    background: var(--theme-color);
}

.email-content {
    text-align: center;
    display: table;
    margin-left: auto;
}

.an-navbar {
    background: var(--theme-color);
    position: relative;
    z-index: 11;
    padding: 0.7rem 0;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 11;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.navbar .dropdown>a:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    padding-left: 5px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .dropdown ul li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

li.nav-item.center-logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    bottom: -11px;
    display: table;
}

.navbar-nav .d-flex {
    align-items: center;
    gap: 3rem;
}

.navbar .dropdown ul li a:hover {
    background: var(--theme-color);
    color: var(--white);
}


/* navigation css */


/* slider css */

.mainSlider {
    height: 1016px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.slideContent {
    text-align: left;
    margin-bottom: 10rem;
}

.slideContent h2 {
    font-size: 1.9375rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
}

.slideContent h3 {
    font-size: 4.4375rem;
    color: var(--white);
    text-transform: uppercase;
    line-height: 5.375rem;
}

.slideContent p {
    font-size: 1.125rem;
    margin: 0;
    color: var(--white);
    font-weight: 500;
}


/* slider css */

.search-main {
    padding: 0;
    margin-top: -6.5rem;
    position: relative;
    z-index: 11;
}

.search-card {
    background: var(--theme-color);
    padding: 3.07rem 3rem;
    border-radius: 8px;
}

.search-heading {
    font-size: 1.5625rem;
    text-transform: uppercase;
}

.search-card .search-heading {
    margin: 0 0 1.5rem;
}

.search-form span {
    position: relative;
}

.search-form span input {
    width: 100%;
    height: 51px;
    border: 0;
    border-radius: 4px;
    padding: 0 1rem 0 2.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.search-form span i {
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: inherit;
    color: #9C9C9C;
    font-size: 1.1rem;
}

.search-form img {
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: inherit;
    color: #9C9C9C;
    font-size: 1.1rem;
}

.search-form span input::placeholder {
    color: #979797;
}

.search-form select {
    width: 100%;
    height: 51px;
    border: 0;
    border-radius: 5px;
    padding: 0 1rem 0 2.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.search-form button {
    height: 51px;
    width: 54px;
    background: var(--black);
    color: var(--white);
    border: 0;
    border-radius: 4px;
}

.search-form button:hover {
    background: var(--white);
    color: var(--black);
}

.sub-heading {
    font-size: 1rem;
    color: #575757;
    text-transform: uppercase;
}

.heading {
    font-size: 2.3125rem;
    text-transform: uppercase;
    line-height: 2.8125rem;
}

.section-heading {
    font-size: 2.3125rem;
    text-transform: uppercase;
    line-height: 2.8125rem;
}

.about-content .para {
    width: 96%;
    margin: 0 0 4rem;
}

.easy-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.easy-box h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.easy-box p {
    line-height: 1.875rem;
    width: 70%;
    margin: 0;
}

.radius-img {
    position: relative;
    text-align: center;
    z-index: 1;
}

.radius-img:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -2rem;
    background: var(--theme-color);
    width: 90%;
    height: 100%;
    z-index: -1;
    border-radius: 25px;
}

.radius-img img {
    border-radius: 25px;
}

.feature-card figure {
    position: relative;
}

.feature-card figure img {
    width: 100%;
    border-radius: 14px;
}

.feature-card {
    background: #FAFAFA;
    border-radius: 21px;
    padding: 2rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

span.bg {
    background: url(../images/salebg1.webp) no-repeat;
    width: 93px;
    height: 33px;
    display: flex;
    justify-content: flex-end;
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    padding: 2px 10px;
    position: absolute;
    top: 1.5625rem;
    left: -5px;
}

span.bg.bg1 {
    top: 65px;
    background: url(../images/salebg2.webp) no-repeat;
    padding: 1px 1.1875rem 0 0;
}

.feature-content {
    padding-top: 1.3rem;
}

.feature-heading {
    font-size: 1.25rem;
    text-transform: uppercase;
    line-height: 1.9375rem;
    font-weight: 900;
}

.feature-main {
    padding: 4rem 0 5rem;
}

.feature-content h5 {
    font-size: 1rem;
    color: #6A6564;
    font-weight: 400;
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-content .feature-heading {
    margin: 0 0 1.1rem;
}

.feature-content h3 {
    font-size: 1.125rem;
    margin: 0 0 1.8rem;
}

ul.room-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid #000000;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

ul.room-info li a {
    font-size: 1.1875rem;
    color: #3A3A3C;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.room-info li a span strong {
    color: #3A3A3C;
    font-weight: 600;
}

.compre-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compre-list li a {
    font-size: 1.1875rem;
    color: #3A3A3C;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.compre-list li a span {
    color: var(--theme-color);
}

.compre-list li span {
    font-size: 1.1875rem;
    color: #3A3A3C;
    font-weight: 400;
}

.feature-card:hover {
    box-shadow: 0 5.37px 34.89px 0 rgb(66 71 76 / 8%);
    background: var(--white);
}

.process-main {
    background: #FAFAFA;
}

.process-card {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    padding: 4rem 3rem;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 3%);
    border: 1px solid transparent;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.process-card figure {
    height: 110px;
}

.process-card figure img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.process-card:hover figure img {
    filter: invert(70%) sepia(74%) saturate(2639%) hue-rotate(9deg) brightness(106%) contrast(104%);
}

.process-card h2 {
    font-size: 1.375rem;
    text-transform: uppercase;
}

.process-card p {
    color: #6A6564;
    line-height: 2.0625rem;
    margin: 0;
}

.process-card span {
    position: absolute;
    right: 2.5rem;
    top: 0;
    width: 73px;
    height: 108px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    font-size: 1.25rem;
    color: var(--white);
    font-family: 'Eurostar Black Extended';
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.process-card:hover span {
    background: var(--theme-color);
    color: var(--black);
}

.process-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

.provide-main {
    background: var(--theme-color);
    padding: 3rem 0;
}

.provide-main .section-heading {
    margin: 0 1.25rem 0 0;
}

.provide-main .d-flex {
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.themeBtn.borderBtn i {
    font-size: 1.2rem;
}

ul.explore-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5625rem;
}

.property-card figure {
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.property-card figure .overlay {
    position: absolute;
    left: 0;
    bottom: 2rem;
    right: 0;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.property-card figure .overlay h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.property-card figure .overlay span {
    font-size: 1.125rem;
    color: var(--white);
}

.property-card figure img {
    border-radius: 10px;
}

.property-card figure:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(10 7 8 / 0%), #0A0708);
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.property-card figure:hover:before {
    opacity: 50%;
}

.property-card:hover figure .overlay {
    opacity: 1;
}

ul.explore-list+ul.explore-list {
    margin-top: 1.5rem;
}

.themeBtn.yelowClr {
    background: var(--theme-color);
    color: var(--black);
}

.themeBtn.yelowClr:hover {
    background: var(--black);
    color: var(--white);
}

.property-main {
    background: #FAFAFA;
}

.review-card {
    background: #FAFAFA;
    border-radius: 10px;
    padding: 2.5rem 2.5rem;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
    border: 1px solid transparent;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    margin-bottom: 1.3rem;
}

.reviewSlider .swiper-slide.swiper-slide-next .review-card .review-user figure img {
    border-radius: 50%;
    box-shadow: 0 4px 0px 0px var(--theme-color);
}

.review-user h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.review-user h5 {
    font-size: 0.875rem;
    color: #575757;
    text-transform: uppercase;
    margin: 0;
}

.star {
    color: var(--theme-color);
    margin: 0 0 10px;
}

.review-card p {
    margin: 0;
}

.reviewSlider {
    padding: 1.875rem 13px;
}

.reviewSlider .swiper-slide.swiper-slide-next .review-card {
    border-color: var(--theme-color);
    box-shadow: -0.2px 3.76px 32.04px 0 rgb(200 200 200 / 35%);
}

.ready-main {
    position: relative;
    padding-bottom: 7rem;
}

.ready-main:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 427px;
    background: var(--theme-color);
    z-index: -1;
}

.sell-card {
    background: #FAFAFA;
    border-radius: 10px;
    position: relative;
    padding: 1.88rem 0;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
    border: 1px solid transparent;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-align: center;
}

.sell-card h2 {
    font-size: 1.875rem;
    margin: 1rem 0 7px;
}

.sell-card p {
    margin: 0;
}

.sell-card:hover {
    background: var(--white);
    border-color: var(--theme-color);
    box-shadow: -0.2px 3.76px 32.04px 0 rgb(200 200 200 / 35%);
}

a.area-card {
    text-align: center;
}

a.area-card span {
    display: table;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    color: var(--black);
    font-family: 'Eurostar Black Extended';
    text-transform: uppercase;
}

.areas-main {
    background: #FAFAFA;
}

.areaSlider .swiper-slide.swiper-slide-next+.swiper-slide a.area-card figure img {
    box-shadow: 0 9px 0px 0px var(--theme-color);
}

a.area-card figure img {
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a.partner-card {
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11.31px;
    height: 153px;
}

a.partner-card img {
    mix-blend-mode: luminosity;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.partnerLogo .swiper-slide.swiper-slide-next+.swiper-slide a.partner-card {
    background: var(--white);
    box-shadow: -0.2px 3.76px 32.04px 0 rgb(200 200 200 / 35%);
}

.partnerLogo .swiper-slide.swiper-slide-next+.swiper-slide a.partner-card img {
    mix-blend-mode: unset;
}

.partnerLogo {
    padding: 2rem 0;
}


/* footer css start */

footer {
    background: #0A0708;
    padding-top: 5rem;
}

.quickList h2 {
    font-size: 1.6875rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0 0 1.8rem;
}

.quickList ul li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.quickList ul li figure {
    font-size: 1.5rem;
    color: var(--theme-color);
    line-height: inherit;
}

.quickList ul li span {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 200;
    display: inline-block;
    width: 200px;
}

.quickList ul li a {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 200;
    display: inline-block;
}

.quickList ul li+li {
    margin-top: 1.7rem;
}

.footerLogo {
    text-align: center;
}

.footerLogo ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.footerLogo ul li a {
    width: 51px;
    height: 51px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.footerLogo ul li a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.quickList.subscribe h2 {
    margin: 0 0 0.9rem;
}

.quickList.subscribe p {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 200;
    margin: 0 0 1.5rem;
}

.subcribe-form input {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 6px;
    font-size: 15px;
    padding: 0 1.5rem;
    margin: 0 0 1.3rem;
}

.subcribe-form .themeBtn {
    background: var(--theme-color);
    border: 0;
    color: var(--black);
}

.copyRight {
    margin-top: 3.5rem;
    border-top: 1px solid rgb(255 255 255 / 50%);
    align-items: center;
    padding: 1rem 0;
}

.copyRight p {
    color: var(--white);
    font-weight: 200;
    margin: 0;
}

.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
}

.copyRight ul li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 200;
}

.foterImg {
    display: table;
    margin: auto;
}

.quickList ul li a:hover,
.copyRight ul li a:hover {
    color: var(--theme-color);
}


/* Inner Pages Css Start */

.innerBanner {
    background: url(../images/innerBan.webp)center/cover;
    display: flex;
    align-items: center;
    height: 590px !important;
}

.innerBanner .slideContent {
    margin: 0;
}

.aboutInner .row+.row {
    margin-top: 8.4375rem;
}

.aboutInner .flex-row-reverse .radius-img:before {
    right: inherit;
    left: 0;
}

.aboutInner .flex-row-reverse p {
    width: 92%;
}

.aboutInner .flex-row-reverse p+p {
    margin-top: 1.5rem;
}

.aboutInner {
    padding-bottom: 9.375rem;
}

.rentalInner {
    padding-top: 6.25rem;
}

.rentalInner .row {
    gap: 3.125rem 0;
}

.worksInner {
    padding-bottom: 3.5rem;
}

.contactInner {
    background: #FAFAFA;
    padding: 8.75rem 0 7.1875rem 0;
}

.contactInfo h2 span {
    display: block;
    font-size: 1.125rem;
    line-height: 1.1;
}

.contactInfo ul li a div {
    background: var(--white);
    width: 95px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 2rem;
    transition: 0.5s ease;
}

.contactInfo ul li a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.contactInfo ul li a:hover div {
    background: var(--theme-color);
}

.contactInfo ul li a:hover span small {
    color: var(--theme-color);
}

.contactInfo ul li a span {
    display: grid;
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-family: 'Eurostar Black Extended';
}

.contactInfo ul li a span small {
    font-family: 'Poppins';
    font-size: 1.25rem;
    text-transform: initial;
    transition: 0.5s ease;
}

.contactInfo ul li+li {
    margin-top: 2.5rem;
}

.contactInfo ul {
    margin-top: 2rem;
}

.contactBox {
    background: var(--white);
    border-radius: 30px;
    padding: 3.125rem 2.1875rem;
}

.contacForm input,
.contacForm select {
    height: 70px;
}

.contacForm .form-control,
.contacForm select {
    background: #F8F8F8;
    border-radius: 10px;
    width: 100%;
    outline: unset;
    box-shadow: unset;
    border: unset;
    padding-left: 1.5rem;
    color: #828282;
}

.contacForm .form-control::placeholder {
    color: #828282;
}

.contacForm textarea {
    padding-top: 1.5rem;
}

.contacForm .form-group {
    margin-bottom: 2rem;
}

.contacForm {
    margin-top: 2.1875rem;
}

.contacForm .themeBtn {
    background: var(--theme-color);
    border: unset;
    color: var(--black);
}

.leasingText h5 {
    color: var(--black);
    font-weight: 600;
}

.leasingText+.leasingText {
    margin-top: 3rem;
}

.leasingInner figure {
    margin-bottom: 2.5rem;
}

.leasingText p {
    width: 90%;
}

.leasingInner {
    padding-bottom: 2.5rem;
}

.leasingReady {
    padding-bottom: 1rem;
}

.rentailsContents .para {
    margin-bottom: 2.5rem;
}

.rentailsContents ul li span {
    background: var(--theme-color);
    width: 1rem;
    height: 1rem;
    display: block;
    border-radius: 50px;
    outline: 1px solid #DFDFDF;
    outline-offset: 5px;
}

.rentailsContents ul li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.1875rem;
}

.rentailsContents ul li p {
    margin: 0;
    width: 60%;
}

.rentailsContents .themeBtn {
    background: var(--theme-color);
    color: var(--black);
}

.rentalBox {
    background: #FAFAFA;
    border-radius: 33px;
    border: 1px solid #DFDFDF;
    padding: 6.25rem 5rem 5rem 5rem;
    max-width: 1300px;
    margin: auto;
}

.rentalBox p {
    border-bottom: 1px solid var(--black);
    padding-bottom: 1.875rem;
}

.applicationForm label {
    color: #6A6564;
    font-size: 1.125rem;
    margin: 0;
}

.applicationForm .form-control {
    border: 1px solid #DFDFDF;
    border-radius: 10px;
    height: 60px;
    outline: unset;
    box-shadow: unset;
    padding-left: 1.5rem;
    width: 100%;
    margin-bottom: 1.4375rem;
}

.applicationForm .d-flex {
    align-items: baseline;
    justify-content: space-between;
}

.applicationForm .d-flex .form-control {
    width: 210px;
}

.lstFile {
    width: 290px !important;
}

.checkWrap {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 1.5rem;
}

.checkWrap input {
    width: 1rem;
    height: 1rem;
    margin: 0 0 0 -2rem;
}

.checkWrap .form-check {
    padding: 0;
    display: flex;
    align-items: center;
}

.checkBoxes input {
    width: 25px;
    height: 25px;
}

.checkBoxes .form-check {
    display: flex;
    align-items: center;
    height: auto;
}

.checkBoxes .form-check label {
    margin-left: 1.2rem;
}

.checkBoxes .form-check+.form-check {
    margin-top: 1.25rem;
}

.checkBoxes {
    margin: 3.75rem 0 5rem 0;
}

.applicationForm .themeBtn {
    background: var(--theme-color);
    color: var(--black);
    border: unset;
    padding: 0.91em 5em;
    outline: unset;
}

.requestPage {
    height: 100vh;
}

/* Inner Pages Css End */