/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?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');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Google Font */
    --roboto: "Roboto", sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #027A48;
    --dark: #1E1E1E;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--roboto);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: var(--white);
    text-rendering: optimizeLegibility;
    color: var(--black);
    overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a,
a:hover,
button {
    outline: none;
    box-shadow: none;
    border: none;
}

button {
    background: unset;
}

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

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    border: none;
    box-shadow: none;
}

*+address,
*+dl,
*+fieldset,
*+figure,
*+ol,
*+p,
*+pre,
*+ul {
    margin: 0;
    padding: 0;
}

.btn,
.btn-main,
.btn-borderd,
.btn-trans {
    height: 48px;
    font-family: var(--roboto);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    text-transform: capitalize;
    padding: 8px 20px;
    border-radius: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
    transition: all .3s ease-in-out;
}

.btn-main {
    background-color: var(--primary);
}

.btn-borderd {
    background-color: var(--white);
    color: var(--black);
}

.btn-trans {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}

.btn-trans-2 {
    padding: 0;
    height: auto;
    border: none;
    background-color: transparent;
}

.btn-trans-2 span {
    margin-top: -1px;
    padding-left: 10px;
    transition: all .3s ease-in-out;
}

.btn:hover,
.btn-borderd:hover,
.btn-trans:hover {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.btn-trans-2:hover {
    background-color: transparent;
    border: none;
}

.btn-trans-2:hover span {
    padding-left: 14px;
}

.text-md {
    font-size: 18px;
}

.section-padding {
    padding: 110px 0;
}

.section-padding-top {
    padding-top: 110px;
}

.opacity-05 {
    opacity: .5;
}



/* Custom Bootstrap CSS Start */
.fs-1,
.main-heading {
    font-size: 56px !important;
    line-height: 1.2;
}

.fs-2 {
    font-size: 48px !important;
    line-height: 1.2;
}

.fs-3 {
    font-size: 40px !important;
    line-height: 1.2;
}

/* Custom Bootstrap CSS End */



/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.logo img {
    width: 41px;
    height: 41px;
}

.header-menu ul li {
    margin-right: 32px;
}

.header-menu ul li a {
    color: var(--black);
}

.header-menu ul li:hover>a {
    color: var(--primary);
}

.header-menu ul li a span {
    padding-left: 10px;
    margin-top: -2px;
}

.heder-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 35px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    min-width: 285px;
}

.header-menu ul>li:hover a~.heder-submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 24px;
}

.header-menu .heder-submenu li {
    margin-right: 0;
}

.heder-submenu li a {
    padding: 10px 16px;
}

.heder-submenu li a:hover {
    background-color: rgba(2, 122, 72, 0.1);
}

.header-btns .btn {
    height: 40px;
}

.page-mobile-number {
    font-weight: 700;
    color: var(--black);
    margin-right: 30px;
}

.page-mobile-number:hover {
    color: var(--primary);
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero-section {
    min-height: 670px;
    background-color: var(--dark);
}

.hero-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.index-1-hero-bg {
    background-image: url("../imgs/bg-imgs/hero-bg.jpg");
}

.hero-wrapper {
    max-width: 770px;
}

.hero-btns .btn-main {
    border-color: var(--primary);
}

.hero-btns .btn-main:hover {
    border-color: var(--black);
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Development Section CSS Start */
/* =============================== */
.development-text {
    max-width: 770px;
}

.moder-townhomes-btns .btn {
    color: var(--black);
    border-color: var(--black);
}

.moder-townhomes-btns .btn-learn-more:hover {
    color: var(--white);
}

/* =============================== */
/* :: 6.0 Development Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 IndexFloorPlans Section CSS Start */
/* =============================== */
.index-floor-plans-section {
    background: url("../imgs/bg-imgs/index-floor-plans-bg.jpg") no-repeat center / cover;
    min-height: 720px;
    padding: 160px 0 50px;
}
.ifp-content {
    max-width: 555px;
    padding: 30px 80px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.84);
}
.ifp-title, .ifp-subtitle {
    margin-bottom: 6px;
}
.ifp-title {
    font-size: 40px;
}
.ifp-para {
    font-size: 18px;
}
/* =============================== */
/* :: 7.0 IndexFloorPlans Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 ModernTownhomes Section CSS Start */
/* =============================== */
.modern-townhomes-content {
    max-width: 620px;
    padding: 40px 0;
}

.modern-townhomes-para {
    max-width: 525px;
}

.modern-townhomes-thumb {
    overflow: hidden;
}

.modern-townhomes-thumb video {
    width: 100%;
    height: 640px;
    transform: scale(1.8);
}

/* =============================== */
/* :: 8.0 ModernTownhomes Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Footer Area CSS Start */
/* =============================== */
.footer-area {
    padding: 80px 0;
}

.footer-logo img {
    width: 41px;
    height: 41px;
}

.index-3-footer-nav {
    margin-left: 125px;
}

.footer-area .page-mobile-number {
    margin-right: 90px;
}

.footer-nav ul {
    gap: 30px;
}

.footer-nav ul li a {
    color: var(--black);
}

.footer-nav ul li a:hover {
    color: var(--primary);
}

.footer-mobile {
    font-weight: 700;
    color: var(--black);
    margin-right: 90px;
}

.footer-mobile:hover {
    color: var(--primary);
}

.footer-social-links {
    gap: 10px;
}

.social-link {
    width: 24px;
    height: 24px;
}

.social-link img {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    opacity: .8;
}

.footer-top {
    padding-bottom: 80px;
    border-bottom: 1px solid var(--black);
}

.footer-bottom {
    padding-top: 30px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 14px;
    color: var(--black);
}

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

.copyright-text img {
    height: 18px;
    margin-top: -4px;
    margin-right: 2px;
}

/* =============================== */
/* :: 9.0 Footer Area CSS End */
/* =============================== */






/* ----------------------contact.html CSS Start---------------------- */

/* =============================== */
/* :: 9.0 Hero Area CSS Start */
/* =============================== */
.contact-page-hero-section {
    min-height: 470px;
    background-color: #0F0F0F;
}

.gallery-slider-wrapper .section-head {
    padding-bottom: 80px;
}

.single-gallery-slide {
    height: 740px;
}

.single-gallery-slide img {
    width: 100%;
    height: 100%;
}

.gallery-slider-content .swiper-button-next::after,
.gallery-slider-content .swiper-button-prev::after {
    display: none;
}

.gallery-slider-content .swiper-button-next,
.gallery-slider-content .swiper-button-prev {
    width: auto;
    height: auto;
    margin-top: 0;
}

.gallery-slider-btn span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--black);
    transition: all .3s ease-in-out;
}

.gallery-slider-btn span:hover {
    background-color: #000;
}

.gallery-slider-btn span img {
    width: 14px;
    transition: all .3s ease-in-out;
}

.gallery-slider-btn span:hover img {
    filter: brightness(0) invert(1);
}

.gallery-slider-content .swiper-button-prev {
    left: -28px;
}

.gallery-slider-content .swiper-button-next {
    right: -28px;
}

.gallery-slider-content .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -65px;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

.gallery-slider-content .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}

.gallery-slider-content .swiper-pagination-bullet-active {
    background-color: #000;
    transition: all .3s ease-in-out;
}

/* =============================== */
/* :: 9.0 Hero Area CSS End */
/* =============================== */

/* =============================== */
/* :: 2.0 Contact Section CSS Start */
/* =============================== */
.contact-section {
    padding-bottom: 60px;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    margin-top: -1px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--black);
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-section-wrapper {
    padding-bottom: 80px;
}

.contact-map map iframe {
    height: 740px;
    width: 100%;
}

/* =============================== */
/* :: 2.0 Contact Section CSS End */
/* =============================== */
.discover-content {
    max-width: 616px;
}

.discover-wrapper-top .contact-btn:hover {
    color: #fff !important;
}


/* ----------------------contact.html CSS End---------------------- */


/* ----------------------index-3.html CSS Start---------------------- */
/* =============================== */
/* :: 1.0 Roadmap Section CSS Start */
/* =============================== */
.roadmap-title {
    width: 50%;
    padding: 64px 0;
    text-align: right;
}

.roadmap-title h3 {
    padding-right: 94px;
}

.roadmap-title h3::after {
    content: '';
    width: 47px;
    height: 47px;
    background-color: #000;
    border: 16px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: -25px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.roadmap-content {
    width: 50%;
    padding: 0 94px 130px;
    padding-right: 0;
}

.single-roadmap:last-child .roadmap-content {
    padding-bottom: 65px;
}

.roadmap-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #000;
}

.roadmap-content .moder-townhomes-btns {
    margin: 32px 0 64px;
}

.roadmap-thumb img {
    transition: all 1s;
}

.roadmap-thumb:hover img {
    transform: scale(1.1);
}

.roadmap-area-bottom h2 {
    font-size: 36px;
    padding: 12px 0 20px;
}

.roadmap-area-bottom p {
    padding-bottom: 20px;
}

/* =============================== */
/* :: 1.0 Roadmap Section CSS End */
/* =============================== */

/* =============================== */
/* :: 2.0 Testimonial Section CSS Start */
/* =============================== */
.testimonial-section {
    padding-bottom: 70px;
}

.tesimonial h4 {
    font-size: 24px;
    margin: 32px auto;
    max-width: 768px;
}

.client-info img {
    width: 56px;
    margin-bottom: 16px;
}

.client-info h5 {
    font: 16px;
    line-height: 150%;
}

/* =============================== */
/* :: 2.0 Testimonial Section CSS End */
/* =============================== */


/* ----------------------index-3.html CSS End---------------------- */


/* ----------------------Index-Home Page CSS End---------------------- */
.home-hero-bg {
    background-image: url("../imgs/bg-imgs/home-hero-bg.png");
    background-color: var(--white);
    background-position: bottom;
}

.home-page .hero-section {
    min-height: 1250px;
}

.hero-para {
    max-width: 485px;
}

.home-page .development-section .btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}



.home-discover-wrapper {
    min-height: 770px;
}

.hdt-heading {
    font-size: 36px;
}

.home-discover-text {
    max-width: 395px;
}

.hdt-para {
    max-width: 300px;
}

.home-discover-vector {
    height: 140px;
}

.home-discover-vector::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../imgs/vectors/vector-1.png") no-repeat center / 100% 100%;
}

.home-discover-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 350px);
    height: 710px;
}

.home-discover-thumb-1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 74%;
}

.home-discover-thumb-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 69%;
}



.home-discover-section-2 {
    background-color: #0F0F0F;
}

.home-discover-wrapper-2 {
    max-width: 760px;
}

.hdw-input-form {
    max-width: 515px;
}

.input-form-input {
    height: 48px;
    width: 100%;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    font-size: 16px;
    padding: 10px 15px;
}

.input-form-input::placeholder {
    color: #666;
    opacity: 1;
}

.input-form-input:focus {
    border: 1px solid var(--black);
}

.input-form-signup-btn {
    width: 103px;
    height: 48px;
    padding: 10px 20px;
    background-color: var(--black);
    color: var(--white);
    transition: all .3s ease-in-out;
}

.input-form-signup-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

/* ----------------------Index-Home Page CSS End---------------------- */



/* ----------------------Contact-2 Page CSS Start---------------------- */
.git-form-wrapper {
    max-width: 560px;
}

.single-form-input input,
.single-form-input textarea {
    width: 100%;
    height: 48px;
    border: 1px solid var(--black);
    border-radius: 0;
    background-color: transparent;
    color: var(--black);
    font-size: 16px;
    caret-color: var(--primary);
    transition: all .3s ease-in-out;
}

.single-form-input textarea {
    height: 180px;
    resize: none;
}

.single-form-input input::placeholder {
    color: #666;
    opacity: 1;
}

.single-form-input input:focus,
.single-form-input textarea:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-checkbox label {
    font-size: 14px;
}

.form-checkbox .checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.form-checkbox .checkbox i {
    opacity: 0;
    color: var(--white);
    font-size: 13px;
    transition: all .3s ease-in-out;
}

.form-checkbox>input:checked~label .checkbox {
    background-color: var(--black);
}

.form-checkbox>input:checked~label .checkbox i {
    opacity: 1;
}

.git-form-submit-btn {
    height: 48px;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 25px;
    transition: all .3s ease-in-out;
}

.git-form-submit-btn:hover {
    background-color: var(--primary);
}

/* ----------------------Contact-2 Page CSS End---------------------- */



/* ----------------------FloorPlans Page CSS Start---------------------- */

/* ----------------------FloorPlans Page CSS End---------------------- */