* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --clr-navbar-text: #fff;
    --clr-white-text: #f9f9f9;
    --clr-text: #01020b;
    --clr-black: #0b0608;
    --clr-black2: #1e1e1e;
    --clr-primary: #031169;
    --clr-secondary: #43b1fc;
    --clr-nav-hamburger: var(--clr-secondary);
    --clr-nav-hamburger-hover: #fff;
}
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}
.aos-init[data-aos][data-aos].aos-animate {
    transform: unset;
}
.sticky-position {
    position: sticky !important;
}
body {
    font-family: "Poppins", sans-serif !important;
    overflow-x: hidden;
}
p {
    line-height: 1.6rem;
}
h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    align-items: center;
}
h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
}
strong {
    font-weight: 700;
}
a {
    cursor: pointer !important;
}
input[type]:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
    border: 1px solid var(--clr-primary) !important;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}
.btn:focus,
.btn:active {
    box-shadow: none !important;
}
.btn-main {
    background: #ec1266;
    border: 2px solid #db1762;
    border-radius: 25px;
    padding: 0.5rem 1.8rem;
    min-width: 178px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.005em;
    transition: all 0.3s ease;
}
.btn-main:hover {
    background: #fdc416;
    border: 2px solid #fdc416;
    color: #1e1c1c;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.page-link {
    color: var(--clr-primary);
}
.page-link:hover {
    color: var(--clr-primary);
}
.page-item.disabled .page-link {
    color: var(--clr-primary);
}
.pagination-section ul.pagination {
    margin-bottom: 0 !important;
}
.pagination-section {
    padding-top: 2rem;
}
.page-link:focus {
    box-shadow: none;
    color: var(--clr-primary);
}

/* .container {
    max-width: 1460px;
} */
/* new nav*/
.header {
    /* padding: 0 6rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* top: 0;
    z-index: 999;
    width: 100%;
    position: sticky !important;
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); */
}
.logo-img {
    height: var(--logo-height) !important;
}
.bottom-nav {
    top: 0;
    z-index: 999;
    width: 100%;
    /* position: sticky !important; */
    position: fixed !important;
    /* background: #ffffff; */
    background: transparent;
    transition: all 0.4s;

    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); */
}
.navbar-brand-img {
    /* padding: 12px 0; */
    padding: 13px 0px 8px 0px;
    max-width: 124px;
    z-index: 999;
    height: var(--navbar-logo-wrap-height) !important;
}
.bottom-nav-scrolled {
    background: rgba(255, 255, 255, 0.81) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    --logo-height: 100%;
    /* color: #1e1c1c !important; */
    --clr-navbar-text: var(--clr-black2);
    --clr-phone-bg: rgba(0, 0, 0, 0);
    --clr-nav-hamburger-bg: rgba(0, 0, 0, 0);
    --clr-nav-hamburger: var(--clr-primary);
    /* --clr-nav-phone: var(--clr-black2); */
    /* --clr-nav-phone: var(--clr-primary); */
    --clr-nav-phone: var(--clr-secondary);
    --clr-nav-hamburger-hover: var(--clr-primary);
    --navbar-logo-wrap-height: 70px;

    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    --clr-nav-hamburger: var(--clr-secondary);
}
.bottom-nav-solid-white {
    background: rgba(255, 255, 255, 0.482) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    /* background: transparent; */
    /* color: #1e1c1c !important; */
    --clr-navbar-text: var(--clr-black2);
    --clr-nav-phone: var(--clr-primary) !important;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 992px) {
    body > div:first-of-type {
        margin-top: 74px !important;
    }
}

.header.container {
    position: relative;
}

.navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    text-align: left;
    text-decoration: none;
    list-style: none;
    gap: 1rem;
}
.header .nav-link,
.project-header .nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: unset;
    color: var(--clr-navbar-text);
}
.nav-link-black {
    color: #1e1c1c !important;
}
.navbar-hamburger {
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.navbar-hamburger-wrap {
    cursor: pointer;
}
.navbar-hamburger-wrap svg path {
    stroke: var(--clr-nav-hamburger);
}
.navbar-hamburger-wrap:hover svg path {
    stroke: var(--clr-primary);
    stroke: var(--clr-nav-hamburger-hover);
}
.navbar-hamburger-wrap:hover .navbar-hamburger {
    background-color: var(--clr-nav-hamburger-bg, var(--clr-primary));
}

#navModal {
    margin-top: 0px !important;
}
@media (min-width: 576px) {
    .full-modal {
        max-width: unset;
        margin-top: 0px;
    }
}
.btn-close1 {
    border: none !important;
    background: transparent !important;
}
.btn-close1 svg circle {
    transition: all 0.3s ease;
}
.btn-close1:hover svg circle {
    fill: var(--clr-primary);
}
#navModal .modal-header {
    border-bottom: none;
    margin-bottom: 72px;
    padding-bottom: 0;
    padding-left: 0;
}
.first-nav-col .main-nav-link {
    margin-bottom: 36px;
}

.main-nav-link {
    display: block;
    color: #2e2a2c;

    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;
    transition: all 0.3s ease;
    /* text-decoration-line: underline; */
    text-decoration: none;
    margin-bottom: 20px;
}
.main-nav-heading {
    display: block;
    color: #2e2a2c;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;

    text-decoration-line: underline;
    text-decoration: none;
    margin-bottom: 8px;
}
.main-nav-link:hover {
    color: var(--clr-secondary);
}
.sub-nav-link {
    display: block;
    color: #0b0608;
    /* text-align: center; */
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.09px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 8px;
}
.sub-nav-link:hover {
    color: var(--clr-secondary);
}
.modal-nav > .row {
    margin-bottom: 40px;
}
.modal-nav a {
    width: fit-content;
}
.modal-nav a::after {
    content: "";
    display: block;
    border-bottom: 4px solid var(--clr-secondary);
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}
.modal-nav a:hover::after {
    color: rgb(65, 64, 64);
    transform: scaleX(1);
}
.nav-submenu-arrow-wrap {
    max-width: 1540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .header .nav-link {

    color: #1e1c1c !important;
} */
/* drop down submenu start*/
#bottom-nav a {
    text-decoration: none;
}
/* header ul .nav-item:focus-within .nav-item_submenu, */

header ul .nav-item:hover .nav-item_submenu {
    z-index: 99;
    z-index: 99999;

    display: block;
    margin-top: 0;
}

.bottom-nav header ul .nav-item_submenu {
    position: absolute;
    max-width: 100%;
    /* min-width: max-content; */
    /* background-color: #ffffff; */
    background-color: #f7f7f7;
    box-shadow: 0 20px 45px #00000020;
    margin-top: -50px;
    /* opacity: 0; */
    display: none;
    /* nav hover test */
    /* display: block !important; */
    top: 28px;
    left: 0;
    z-index: -9999;
    z-index: 9999;
    text-decoration: none;
    list-style: none;
    transition: all ease 0.5s;
    transform: translateY(25px);
}
.submenu-title {
    width: fit-content;
}
.submenu-title h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    border-bottom: 2px solid #1e1c1c;
    color: #1e1c1c !important;
}
.submenu-column {
    border-right: 1.5px solid #d7d7d7;
}
.nav-item_submenu_item_img-wrap {
    min-width: 110px;
    height: 70px;

    object-fit: cover;
    /* flex-grow: 0; */
    flex-basis: 110px;
}
.nav-item_submenu_item_img-wrap img {
    height: 100%;
    width: 100%;
}
.nav-item_submenu_item {
    display: flex;
    /* flex-wrap: wrap; */
    row-gap: 10px;
}
.nav-item_submenu_item_text-wrap {
    padding-left: 15px;
    color: #1e1c1c;
    text-decoration: none;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; */
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    margin-right: auto;
}
.nav-item_submenu_item_text-wrap h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #1e1c1c;
}

.nav-item_submenu_item_text-wrap p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 0 !important;

    color: #575757;
}
body > #bottom-nav .nav-item_submenu_item_text-wrap p {
    margin-bottom: 0;
}

.nav-link:hover,
.nav-link:active {
    border-bottom: 4px solid #ee196b;
    color: #ee196b !important;
}
.nav-item_submenu_item:hover .nav-item_submenu_item_text-wrap h3,
.nav-item_submenu_item:active .nav-item_submenu_item_text-wrap h3 {
    /* padding-bottom: 5px;
    border-bottom: 4px solid #ee196b; */
    color: #ee196b !important;
}
.nav-item_submenu_item:hover .nav-item_submenu_item_text-wrap p,
.nav-item_submenu_item:active .nav-item_submenu_item_text-wrap p {
    color: #ee196b !important;
}
.explore {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;

    color: #1e1c1c;
}

.chevron-wrap {
    border: 1.8px solid #0b0608;
    /* background-color: #000000; */

    height: 22px;
    width: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chevron-wrap i {
    color: #0b0608;
}
.explore:hover {
    color: #ee196b;
}
.explore:hover .chevron-wrap i {
    color: #ee196b;
}
.explore:hover .chevron-wrap {
    border: 1.8px solid #ee196b;
    color: #ee196b;
}
.nav-item_submenu_item_img-wrap1 {
    min-width: 154px;
    height: 1px;

    /* object-fit: cover; */
}

/* drop down submenu end*/

/* unused old */

/* .nav-socials {
    display: flex;
    gap: 10px;
}
.nav-socials a,
.recruitment-card a {
    text-decoration: none;
} */
.nav-phone {
    /* background: #eeeeee; */
    padding: 0.6rem;
    width: 43px;
    height: 43px;
    border-radius: 5px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-position: center;
    flex-shrink: 0;
    border: 2px solid #f5f5f5;
    border: 2px solid var(--clr-nav-phone, #f5f5f5);
    /* transition: background-color 0.3s ease,color 0.3s ease; */
    transition: all 0.3s ease;
}
.nav-last {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 540px;
    flex-grow: 1;
}
.nav-phone i {
    margin: 0;
    font-size: 1rem;
    color: var(--clr-nav-phone, #f5f5f5);
    transition: all 0.3s ease;
}
.quick-enquiry {
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    /* padding: 5px 15px 5px 0px; */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #f5f5f5;
    font-weight: 700;
    align-self: stretch;

    border: 2px solid var(--clr-secondary);
    border-radius: 8px;
    background: var(--clr-secondary);
    box-shadow: inset 0 0 0 0 var(--clr-secondary);

    margin: 0 -0.25rem;

    text-decoration: none;
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.Arrow_right-dark {
    display: none;
}
.quick-enquiry:hover {
    /* color: #f5f5f5; */
    color: #f5f5f5;
    background: var(--clr-primary);
    box-shadow: inset 280px 0 0 0 var(--clr-primary);

    border: 2px solid var(--clr-primary);
}
.get-home-design1 {
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    /* padding: 5px 15px 5px 0px; */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #f5f5f5;
    font-weight: 700;

    border: 2px solid var(--clr-primary);
    border-radius: 8px;
    background: var(--clr-primary);
    box-shadow: inset 0 0 0 0 var(--clr-primary);

    margin: 0 -0.25rem;

    text-decoration: none;
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.Arrow_right-dark {
    display: none;
}
.get-home-design1:hover {
    /* color: #f5f5f5; */
    color: var(--clr-black);
    background: var(--clr-secondary);
    box-shadow: inset 280px 0 0 0 var(--clr-secondary);

    border: 2px solid var(--clr-secondary);
}
.get-home-design1:hover .Arrow_right-dark {
    display: block;
}
.get-home-design1:hover .Arrow_right-white {
    display: none;
}
.get-home-design1:hover img {
    color: #000;
}
#quickEnquiryModal button {
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 500;
}
#quickEnquiryModal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
}
#quickEnquiryModal .btn-close:focus {
    box-shadow: none !important;
}
#quickEnquiryModal .modal-dialog {
    min-width: 90%;
}
#error_lists li {
    color: #842029;
}
#error_lists {
    text-align: left;
}
.btn-submit {
    background-color: var(--clr-primary);
    color: #fff;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 32px;
    padding-right: 32px;
    font-weight: 500;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.btn-submit:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-black2);
}

a.nav-phone-wrap:hover .nav-phone {
    background-color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    --clr-nav-phone: #f5f5f5;
}
.nav-phone-number {
    color: var(--clr-navbar-text);
    padding: 10px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
a.nav-phone-wrap {
    transition: all 0.3s ease;
}
a.nav-phone-wrap:hover .nav-phone-number {
    color: var(--clr-navbar-text);
    background-color: var(--clr-phone-bg, #031169);
    padding: 10px 12px;
    border-radius: 6px;
}
.nav-phone-icon {
    /* padding: 4px; */
}

.mobile-navbar-btn {
    display: none;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-icon {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.mobile-nav-icon[name="close-outline"] {
    display: none;
}
.dropdown-menu a {
    font-size: 14px;
}
.service-dropdown {
    width: 350px;
    transform: translate(-30%, 0%);
}
.service-drop-card {
    display: flex;
    justify-content: space-between;
}
.service-drop-card ul {
    padding-left: 0;
}
.service-drop-card h5 {
    color: #1e1c1c;
    font-size: 18px;
    margin-bottom: 0;
    padding: 0 1rem;
}
.service-drop-card ul li {
    text-decoration: none;
    list-style: none;
}
.dropdown:hover .dropdown-menu {
    display: grid;
    transition: all 0.5s, 0.5s linear;
    top: 100%;
    grid-auto-rows: 45px;
    left: -100px;
    grid-template-columns: repeat(2, 340px);
}

.section-hero,
.section-services {
    padding: 9.6rem 0;
    background-color: #a5d8ff;
    height: 60vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section-services {
    background: #f3f0ff;
}

.section-hero p,
.section-services p {
    font-size: 3.2rem;
}
.dropdown-item {
    padding: 1rem 2rem;
}
.dropdown-item:hover {
    background: none;
    color: #802e87;
}
.dropdown-item::after {
    content: "";
    display: block;
    border-bottom: 4px solid #d833a2;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}
.dropdown-item:hover::after {
    color: rgb(65, 64, 64);
    transform: scaleX(1);
}
.dropdown-toggle::after {
    margin-left: 10px;
}
.nav-login {
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: rgb(100%, 100%, 100%);
    padding: 6px 12px;
    /* transition: all 300ms ease-in-out; */
    border-radius: 25px;
    background: #d833a2;
}
.nav-login-box {
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: rgb(100%, 100%, 100%);
    padding: 6px 12px;
    /* transition: all 300ms ease-in-out; */
    border-radius: 25px;
    background: #326cbf;
    border: 2px solid #326cbf;
}
.nav-login-box:hover {
    background-size: 300% 100%;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background-image: linear-gradient(
        to right,
        #3773c7,
        #a0bbe0,
        #5173a3,
        #326cbf
    );
    /* background-image: linear-gradient(to left, #D833A2, #D833A2, #D833A2, #d2acc5); */
    background-position: 101% 0;
    color: white;
    border-bottom: none;
}
.nav-login:hover {
    /* transition: all 300ms ease-in-out;
    background: rgba(36,23,131,1);
    color:rgb(100%, 100%, 100%); */

    background-size: 300% 100%;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background-image: linear-gradient(
        to right,
        #d833a2,
        #d2acc5,
        #d833a2,
        #d833a2
    );
    /* background-image: linear-gradient(to left, #D833A2, #D833A2, #D833A2, #d2acc5); */
    background-position: 101% 0;
    color: white !important;
    border-bottom: none;
}
.nav-login:focus,
.nav-login-box:focus {
    outline: none;
}

/* ===========================================
  Responsive Codes
  ======================================= */

/* 980px  */

@media (max-width: 62em) {
    html {
        overflow-x: hidden;
    }
    .mobile-navbar-btn {
        display: block;
        z-index: 999;
    }
    .bottom-nav {
        top: 0;
        z-index: 999;
        width: 100%;
        position: sticky !important;

        /* position: fixed; */
        /* background: #ffffff; */
        /* background: transparent !important; */
        /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); */
        --clr-nav-phone: var(--clr-primary);

        --clr-nav-hamburger: var(--clr-secondary) !important;
    }
    .nav-phone-number {
        display: none;
    }
    .nav-phone-wrap {
        margin-right: 0 !important;
    }
    .navbar-list {
        /* display: none; */
        width: 100%;
        height: 100vh;
        background: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
        display: flex;
        flex-direction: column;
        padding-top: 2rem;
        justify-content: start;
        align-items: center;
        transform: translateX(100%);
        transition: all 0.5s linear;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .nav-inner {
        background: #ffffff;
    }

    .active .navbar-list {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .header .nav-link,
    .project-header .nav-link {
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: unset;
        color: #1e1c1c !important;
    }

    .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
        display: block;
    }

    .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
        display: none;
    }
    .featured-home .aside h2 {
        position: relative;
    }
}

/* Below 560px  */
@media (max-width: 35em) {
    .nav-last {
        justify-content: right;
    }
    html {
        overflow-x: hidden;
    }
    .et-home-header,
    .header {
        padding: 0 0.8rem;
        position: sticky !important;
        background: #ffffff;
    }
    .service-dropdown {
        width: 300px;
        transform: translate(-30%, 0%);
    }
    .service-drop-card {
        display: flex;
        flex-direction: column;
    }
}

/* new nav */
/* top bar */
.topbar-wrapper {
    background: #e00e5f;
}
#topbar {
    /* background: #e00e5f; */
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    /* flex-wrap: wrap; */
    /* padding: 0.5rem 6rem; */
    /* flex: 1 1 20rem; */
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; */
}
.topbar-col {
    display: flex;
}

/* .contact-info,
.topbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    justify-items: center;
} */
.contact-info-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info-icons a {
    color: #326cbf;
    text-decoration: none;
}
/* .topbar-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    color: #000000;
    margin-right: 0;
} */

.flex-row {
    display: flex;
    /* align-items: center;
    justify-content: space-evenly; */
    flex-wrap: wrap;
}

.flex-col {
    flex: 25%;
}
.topbar-align {
    column-gap: 20rem;
}
.left-topbar {
    flex: 1 1 auto;
}
.right-topbar {
    flex: 1 1 auto;
}
.modal-header {
    color: #767676;
    color: #212529;
}
.modal-body a {
    text-decoration: none;
    color: #2e2a2c;
}
.modal-body a:hover {
    text-decoration: none;
    color: var(--clr-primary);
}
.toast {
    position: relative;
    z-index: 2000;
    background-color: transparent;
}
.toast-container {
    z-index: 2000;
}
.toast-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.toast-body {
    padding-right: 40px;
    background-color: rgb(221, 47, 47);
    border-radius: 6px;
    overflow: hidden;
}
.toast-body p {
    margin: 0;
    color: #fff;
}
.toast-body ul {
    padding-left: 1rem !important;
    margin: 0;
    /* list-style: "*"; */
}
.toast-body li {
    color: #fff !important;
    font-size: 18px;
}
.btn-close.toast-close {
    color: red;
    background-color: #fff;
    border-radius: 100%;
    padding: 7px;
    font-size: 8px;
}

.sign-up-form input {
    background: #eff0f6;
    /* color: #76767674; */
    /* color: red !important; */
}
.signup-btn {
    background: #ec1266;
    border: 2px solid #db1762;
    border-radius: 25px;
    padding: 0.7rem 2.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.005em;
}

.signup-btn:hover {
    background: #fdc416;
    border: 2px solid #fdc416;
    color: #212529;
}
.register-btn {
    background: #ec1266;
    border: 2px solid #db1762;
    border-radius: 25px;
    padding: 0.7rem 2.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.005em;
    margin-left: auto;
    margin-right: auto;
}

.register-btn:hover {
    background: #fdc416;
    border: 2px solid #fdc416;
    color: #212529;
}
#loginModal .modal-footer {
    justify-content: space-between;
    padding-left: 0;
    flex-wrap: nowrap;
}
#registerModal .modal-footer {
    justify-content: flex-start;
    padding-left: 0;
    flex-wrap: nowrap;
}
.modal-group .modal-footer {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#thankModal .modal-footer {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#thankContactModal .modal-footer {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 992px) {
    .flex-row a {
        font-size: 0.65rem;
    }
    .flex-col {
        margin-right: 1rem;
    }
    /* .flex-col {
        flex: 50%;

    } */
    .key-feature-second-column-margin {
        margin-top: 8px !important;
        padding-top: 0 !important;
    }
    .nav-last {
        max-width: 300px;
    }
}
.topbar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* top bar */

.border-btn {
    margin: 0.8rem;
    border: 1px solid #ffffff33;
}
.topbar-social-details {
    display: flex;
    gap: 20px;
}
/* .topbar-links {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
} */
.contact-info-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
#topbar a,
#topbar .fa-brands {
    color: #ffffff;
    text-decoration: none;
}
#topbar i:hover,
#topbar a:hover {
    color: #fdc416;
}

/* Header css */

/* banner slider css */
.slider-banner {
    position: relative;
}
/* Height of hero carousel */
.hero-section {
    position: relative;
}

.carousel .carousel-item {
    max-height: 620px;
}
.slider-image {
    height: 620px;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}
#responsive-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}
/* .slide-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 55%;

    background: linear-gradient(
        200.21deg,
        rgba(247, 246, 248, 0) 12.96%,
        rgba(0, 0, 0, 0.2392) 41.7%,
        rgba(4, 12, 75, 0.52) 86.55%
    );
} */
.slide-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 90%;

    background: linear-gradient(
        to bottom right,
        rgba(247, 246, 248, 0) 12.96%,
        rgba(0, 0, 0, 0.2392) 41.7%
    );
}
.slide-gradient-inner-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 90%;

    background: linear-gradient(
        to bottom,
        rgba(3, 17, 105, 0.2) 12.96%,
        rgba(3, 17, 105, 0.2392) 41.7%
    );
}
.slide-gradient-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 55%;
    background: linear-gradient(
        200.21deg,
        rgba(82, 39, 191, 0) 12.96%,
        rgba(16, 16, 94, 0.23) 50.6%,
        rgba(4, 12, 75, 0.5) 86.55%
    );
}
.slide-gradient-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 90%;
    background: linear-gradient(
        to bottom,
        rgba(82, 39, 191, 0) 12.96%,
        rgba(16, 16, 94, 0.3) 40.6%,
        rgba(16, 16, 94, 0.3) 60.6%,
        rgba(82, 39, 191, 0) 86.55%
    );
}
.slide-gradient-inner-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 60%;
    background: linear-gradient(
        to bottom,
        rgba(82, 39, 191, 0) 12.96%,
        rgba(16, 16, 94, 0.4) 40.6%,
        rgba(16, 16, 94, 0.4) 60.6%,
        rgba(0, 4, 28, 0.4) 86.55%
    );
}
.slide-gradient-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 90%;
    background: linear-gradient(
        to bottom right,
        rgba(16, 16, 94, 0.1) 10%,
        rgba(82, 39, 191, 0) 50%,
        rgba(82, 39, 191, 0) 86.55%
    );
}
.slide-gradient-inner-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    opacity: 90%;
    background: linear-gradient(
        to bottom right,
        rgba(16, 16, 94, 0.1) 10%,
        rgba(82, 39, 191, 0) 50%,
        rgba(82, 39, 191, 0) 86.55%
    );
}
.slider-content {
    /* padding: 3rem 6rem; */
    position: absolute;
    /* top: 30%; */
    /* top: 25%; */
    /* top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 100%; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-text {
    width: 55%;
}
.slider-content h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 57px;
    letter-spacing: 0.005em;
    /* color: #fdc416; */
    color: #e00e5f;
    color: #fff;
    margin-bottom: 0;
    text-wrap: balance;
}
.slider-content h1 {
    font-weight: 700;
    font-size: 46px;
    line-height: 62px;
    letter-spacing: 0.005em;
    color: #ffffff;
    text-wrap: balance;
    position: relative;
    /* color: #1e1c1c; */
}
.slider-header-wrap-1 {
    position: relative;
}
.slider-heading-arrow {
    position: absolute;
    top: 50%;
    left: 46%;
}
.slider-content p {
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    /* color: #1e1c1c; */
}
.slider-content p,
.slider-content h2,
.slideDown,
.slideUp {
    position: relative;
    opacity: 0;
}
.slider-button-wrap {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.slider-content a {
    background: var(--clr-primary);
    min-width: fit-content;
    border-radius: 25px;
    padding: 10px 30px;
    text-decoration: none;
    color: #ffffff;
    /* color: #1e1c1c; */
    display: inline-block;
    align-items: center;
    position: relative;
    border: 2px solid var(--clr-secondary);
    /* transition: 0.5s; */
    transition: all 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.slider-content a::after,
.services-content a::after,
.why-us-desc a::after,
.sydney-desc a::after {
    content: "\f101";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    opacity: 0;
    top: 10px;
    right: -20px;
    /* transition: 0.5s; */
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.slider-content a:hover {
    /* box-shadow: inset 280px 0 0 0 #10a80a; */
    box-shadow: inset 280px 0 0 0 var(--clr-secondary);
    /* border: 2px solid #10a80a; */

    /* background: #10a80a; */
    background: var(--clr-secondary);

    color: #ffffff;
}

.services-content a:hover,
.sydney-desc a:hover {
    background: #fdc416;
    padding-right: 2rem;
    padding-left: 1rem;
    color: #1e1c1c;
}
.why-us-desc a:hover {
    background: #e22899;
    padding-right: 2rem;
    padding-left: 1rem;
}
.slider-content a:hover::after,
.services-content a:hover::after,
.why-us-desc a:hover::after,
.sydney-desc a:hover::after {
    opacity: 1;
    right: 10px;
}
@media (max-width: 960px) {
    .slider-content a:hover::after,
    .services-content a:hover::after,
    .why-us-desc a:hover::after,
    .sydney-desc a:hover::after {
        opacity: 0;
        right: 10px;
    }
}
.slideUp {
    top: 40px;
    /* left: 10px; */
    animation: slideUp ease 0.5s forwards 1.6s;
}
.slideDown {
    top: -40px;
    /* left: 5px; */
    animation: slideDown ease 0.5s forwards 0.6s;
}
@keyframes slideUp {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-40px);
        opacity: 1;
    }
}
@keyframes slideDown {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    100% {
        transform: translateY(40px);
        opacity: 1;
    }
}

.carousel-control-next,
.carousel-control-prev {
    width: 5% !important;
}
.carousel-indicators [data-bs-target]:hover {
    background: rgb(100%, 100%, 100%);
}
.carousel-indicators [data-bs-target] {
    position: relative;
    width: 10px !important;
    height: 10px !important;
    background: none !important;
    border-radius: 100% !important;
    border: 2px solid #ffffff !important;
    display: inline-block;
    margin-right: 7px;
    cursor: pointer;
    overflow: hidden;
}
.carousel-indicators [data-bs-target].active {
    background: var(--clr-primary) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 0;
    filter: alpha(opacity=0); /* IE support */
}
.hero-section .carousel-indicators {
    bottom: 45px;
}
/* banner slider css */
/* search fiter section css */
.tab-pane {
    background: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px;
}
.why-choose-position {
    position: relative;
}
.search-filter-section {
    /* padding: 3rem 6rem !important; */
    background: #f9f9f9;
    background: none;
    position: absolute;
    top: -120px;

    /* left: 50%; */

    /* transform: translateX(-50%); */
}
/* input[type="number"] {
    position: relative;
    padding: 5px;
    padding-right: 25px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button !important;
    width: 25px;
    position: absolute;
    top: 50%;

    right: 0;
    transform: translateY(-50%);
    height: 80%;
} */
.search-filter-section select.form-select {
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    -ms-appearance: menulist !important;
    -o-appearance: menulist !important;
    appearance: menulist !important;
}
.search-filter-section .search-fields .input-group-text,
.search-filter-section .home-design-bottom .input-group-text,
.search-filter-section .search-fields .form-control,
.search-filter-section .tab-content .form-select,
.search-filter-section .home-design-bottom .form-control {
    background: none !important;
}
.flter-arrow {
    cursor: pointer;
    z-index: 99;
}
.search-filter-section .flter-arrow p,
.search-filter-section .flter-arrow i {
    color: var(--clr-white-text);
}
.search-filter-section .input-group-text {
    background-color: none;
}
.search-filter-section .input-group-text {
    background-color: none;
}
#myTabContent .form-control:focus {
    /* color: #fff;
    background: transparent; */
    border-color: rgb(224, 14, 95);
    box-shadow: none;
    /* Enquiry Form end */
}
#myTabContent .form-select:focus {
    /* color: #fff;
    background: transparent; */
    border-color: rgb(224, 14, 95);
    box-shadow: none;
}
#myTab {
    z-index: 99;
}
.searchbar-tabs {
    display: flex;
    justify-content: space-between;
    /* justify-content: flex-end; */
}
.new-home-design-filter {
    justify-content: flex-end;
    padding-bottom: 1rem;
}
.flter-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.flter-arrow p {
    margin-bottom: 0;
    color: #1e1c1c;
}
.flter-arrow:hover p,
.flter-arrow:hover i {
    color: #ec1266;
}
.search-filter-tabs {
    display: inline-flex;
    border-bottom: none;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background: #ffffff;
}
.search-filter-tabs .active {
    display: inline-block;
    color: #1e1c1c !important;
}
.search-filter-tabs .nav-link {
    border: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #0b0608;
}
.search-filter-tabs .active::after {
    content: "";
    margin: 0.3rem 0;
    border-bottom: 2px solid #e00e5f;
    display: block;
}
.search-title h1 {
    font-weight: 600;
    font-size: 34px;
    line-height: 51px;
    color: #1e1c1c;
    margin-bottom: 2px;
}
.search-title h2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 1.2rem;
    color: #1e1c1c;
}
.search-fields,
.home-design-bottom {
    /* background: #ffffff; */
    margin: 0;
    padding: 12px;
}
.search-fields .input-group-text,
.home-design-bottom .input-group-text,
.search-fields .form-control,
.tab-content .form-select,
.home-design-bottom .form-control {
    border: none;
    background-color: #f9f9f9 !important;
    padding: 0.8rem;
}
.search-fields .home-design-input-group .form-control,
.search-fields .display-home-input-group .form-control {
    background-color: #f9f9f9 !important;
}
.search-filter-section
    .search-fields
    .home-design-input-group
    .input-group-text,
.search-filter-section
    .search-fields
    .display-home-input-group
    .input-group-text {
    background-color: #f9f9f9 !important;
}
.left-border {
    border-left: 1px solid !important;
    /* border-right: 1px solid #b9b9b9 !important; */
    border-image: linear-gradient(
            to bottom,
            #fff 10%,
            #b9b9b9 10%,
            #b9b9b9 80%,
            #fff 80%,
            #fff 100%
        )
        1 100%;
}
.search-filter-section .search-fields {
    padding-bottom: 0;
}
.search-filter-section .home-design-bottom {
    padding-bottom: 5px;
}
/* .search-filter-section .home-design-bottom .row > div {
    position: relative;
}
.search-filter-section .home-design-bottom .row > div:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px !important;
    height: 65px;
    right: 0;
    top: 10px;
    background-color: #b9b9b9 !important;
}
.form-no-border {
    border: none !important;
} */
.find-home-btn {
    background: #ec1266;
    border: 2px solid #db1762;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    padding: 0.6rem 1rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    /* line-height: 27px; */
    letter-spacing: 0.005em;

    line-height: 167.5%;
    transition: all 0.3s ease;
}
.find-home-btn .fa-solid {
    color: #ffffff !important;
}
.find-home-btn:hover {
    background: #fdc416;
    border: 2px solid #fdc416;
    color: #1e1c1c;
}

.find-home-btn:hover .fa-solid {
    color: #1e1c1c !important;
}
circle,
path {
    transition: stroke 0.3s ease;
}
.find-home-btn:hover circle,
.find-home-btn:hover path {
    stroke: #1e1e1e !important;
}
.home-design-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.featured-home-desc,
.popular-slider-card a,
.best-slider-card,
.design-building-card {
    text-decoration: none;
    color: #1e1c1c;
}
.features-home-img,
.best-slider-card:hover img {
    transition: 0.6s;
}
.featured-home-desc:hover,
.featured-home-desc:hover .featured-home-desc-top p,
.best-slider-card:hover,
.best-slider-card:hover .card-bottom h2,
.best-slider-card:hover .card-bottom p {
    color: #ec1266 !important;
}
.featured-home-desc:hover .features-icons-img,
.best-slider-card:hover .features-icons-img {
    background: #fdc92a;
}
.featured-home-desc:hover .features-home-img,
.best-slider-card:hover img {
    transform: scale(1.02);
    object-fit: cover;
}
.my-col a {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}
.card-bottom {
    flex-grow: 1;
}

.card .card-bookmark:hover .best-slider-card {
    display: hidden;
}
.featured-home-desc-top p {
    color: #9d9d9d;
}
.best-slider-card-bottom,
.featured-home-desc-bottom {
    display: inline;
}
.best-slider-card-bottom::before,
.featured-home-desc-bottom::before {
    content: "";
    border-top: 2px solid #d9d9d9;
    width: 100%;
    margin: 4% 0;
    justify-content: center;
    display: block;
}
.best-slider-card img,
.design-img img {
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    margin-top: 0.8rem;
}
.features-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.search-filter-section label {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #0b0608;
}
.search-filter-section .fa-solid {
    color: #b9b9b9;
}
.search-filter-section .form-label {
    margin-bottom: 0rem;
}
/* best choice section css starts */
.container-design-wrapper {
    /* padding: 3rem 6rem; */
    background: #ffffff;
    padding-top: 5rem;
}
/* best-choice-section-container {
    min-height: 700px;
} */
.container-design-wrapper {
    min-height: 700px;
}
.featured-home {
    position: relative;
}
.featured-home .aside h2 {
    position: absolute;
    top: 60%;
    transform-origin: 0 0;
    font-size: 45px;
    line-height: 68px;
    color: #1e1c1c;
    margin-bottom: 0;
    transform: rotate(-90deg);
}
.best-choice-slider-header,
.best-choice-slider-header-title,
.best-choice-slider-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popular-display-icons {
    display: flex;
    gap: 1rem;
}
.best-choice-slider-header-title,
.best-choice-slider-header-controls {
    gap: 1rem;
    justify-content: flex-start;
}
.best-choice-slider-header-controls a {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #1e1c1c;
    text-decoration: none;
}
.best-choice-slider-header-controls a:hover,
.best-choice-slider-header-controls:hover .explore-arrows .fa-solid {
    color: #e00e5f !important;
}

.best-arrows {
    background: #eeeeee;
    border-radius: 4px;
    padding: 0.1rem 0.5rem;
    cursor: pointer;
}
.explore-arrows .fa-solid {
    color: #1e1c1c;
}
.best-arrows .fa-solid {
    color: #b9b9b9;
}
.best-slider-cards {
    display: flex;
    justify-content: space-between;
}
.best-slider-card-top h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 5px;
    color: #0b0608;
}
.best-slider-card-top p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
    color: #9d9d9d;
}
.homes-card-img {
    position: relative;
}
.card-bookmark {
    position: absolute;
    top: 20px;
    right: 10px;
    border: 2px solid #ffffff;
    border-radius: 100%;
    margin: 0 auto;
    z-index: 90;
}
.card-bookmark.my-wishlist {
    border: 2px solid #ec1266;
}

.card-bookmark:hover .fa-solid {
    color: #e00e5f;
}
.card-bookmark:hover {
    border: 2px solid #e00e5f;
}

.card-bookmark .fa-solid {
    margin: 0;
    padding: 0.4rem;
    color: #ffffff;
}
.card-bookmark.my-wishlist .fa-solid {
    color: #ec1266;
}
.features-icons-img {
    background: #eeeeee;
    padding: 0.6rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-position: center;
    flex-shrink: 0;
}
.features-icons-img img {
    margin: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

/* best choice section css ends */
/* why choose us section css starts */
.why-choose-us-section {
    background: #fff;

    position: relative;
    /* padding: 3rem 6rem; */
}
.why-choose-us-section::before {
    content: "";
    width: 45%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;

    background-color: #dadada;
    /* z-index: -1; */
}
.why-choose-us-section .row {
    align-items: center;
}
.custom-gutter-x {
    --bs-gutter-x: 80px;
}

.why-choose-spacing {
    padding-top: 5rem;
}
/* .why-us-content {
    width: 90%;
} */
.why-us-content {
    overflow: hidden;
}
.why-us-content .row {
    align-items: baseline;
}
.why-us-content .row:not(:last-child) {
    border-bottom: 1px solid var(--clr-primary);
}
.why-us-content-title {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.why-us-content-title h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 66px;
    display: flex;
    align-items: center;
    color: var(--clr-primary);
}
.why-us-content-description {
    color: var(--clr-text);
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 158.5%;
    text-align: left !important;
}
.why-us-content .gx-custom {
    /* --bs-gutter-x: 2rem; */
}
.why-us-desc-title h3 {
    color: var(--clr-primary);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.why-us-desc-info p {
    color: var(--clr-text);
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.why-us-desc {
    display: -webkit-inline-box;
    gap: 1rem;
}
.why-us-desc-icon {
    display: block;
}
.why-us-desc-description h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 39px;
    color: #1e1c1c;
}
.why-us-desc-description h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1e1c1c;
}
/* why choose us section css ends */
/* our services section start */
.our-services-section {
    background-color: #f8f9fd;
    position: relative;
    /* padding-top: 70px;
    padding-bottom: 70px; */
}
.section-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
}
.section-header {
    margin-bottom: 50px;
}
.all-btn {
    color: #031169;

    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease-in-out;
    flex-wrap: nowrap;
}

.icon-wrap .fa-solid {
    margin: 0;
    font-size: 12px;
}
.icon-wrap1 .fa-solid {
    padding: 5px;
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    font-size: 10px;
    margin: 0;

    transition: all 0.3s ease-in-out;
}
.all-btn:hover {
    color: var(--clr-secondary);
}
.all-btn:hover .fa-solid {
    color: #fff;
    background-color: var(--clr-secondary);
    border: 2px solid var(--clr-secondary);
}

.section-header h2 {
    color: var(--clr-primary);
    text-align: center;

    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    z-index: 3;
    position: relative;
}
.section-header p {
    color: var(--clr-text);
    text-align: center;

    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.5%; /* 25.075px */
}
.our-services-section-description {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
a.cards {
    text-decoration: none;
    border-radius: 7px;
    background-color: #fff !important;
    transition: all 0.3s ease-in-out;
}
.card-content {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}
a.cards:hover .card-content {
    background-color: var(--clr-secondary);
}
a.cards:hover h3,
a.cards:hover p,
a.cards:hover div {
    color: #fff;
}
a.cards:hover svg path {
    fill: #fff;
}
a.cards h3,
a.cards p,
a.cards div,
a.cards svg path,
.card-icon {
    transition: all 0.3s ease-in-out;
}
a.cards:hover .card-icon {
    filter: brightness(0) saturate(100%) invert(54%) sepia(60%) saturate(870%)
        hue-rotate(179deg) brightness(103%) contrast(98%);
}
a.cards:hover .card-img-wrap {
    background-color: #fff;
}
.cards {
    position: relative;
    border-radius: 7px;
    background: #fff;
}
/* .cards::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background-image: linear-gradient(90deg, #7ca7fc, #38b5fb, #6fbbf3);
    opacity: 0.3;
} */
.card-header-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.card-img-wrap {
    background-color: var(--clr-primary);
    width: 78px;
    height: 78px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.card-header-wrap h3 {
    color: var(--clr-primary);

    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: start;
    margin: 0;
}
.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
}
.card-content p {
    flex-grow: 1;
}
.card-content p {
    text-align: left;
    color: var(--clr-text);

    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 164.097%;
    padding-top: 20px;
    margin-bottom: 30px;
}
.read-more {
    text-decoration: none;
    color: var(--clr-primary);
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
}
a.read-more {
    text-decoration: none;
    color: var(--clr-primary);
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
}
a.read-more svg path {
    transition: fill 0.3s ease;
}
a.read-more:hover {
    color: var(--clr-secondary);
}
a.read-more:hover svg path {
    fill: var(--clr-secondary);
}
/* our services section end */
/* Are you an Employer section start */
.section-image-wrap {
    position: relative;
    z-index: 2;
}
.section-column {
    position: relative;
}
.heading-hire-primary,
.heading-hire-secondary {
    color: var(--clr-primary);
    text-align: center;

    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    z-index: 4;
    position: relative;
}
.heading-hire-secondary {
    font-size: 32px;
    margin-bottom: 30px;
}
.section-card-wrap-right {
    padding: 60px 70px;
    box-shadow: -227px 0px 32px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 150px;
    left: -140px;
    background-color: #fff;
    z-index: 3;
    /* max-width: 640px; */
}
.section-card-wrap-left {
    padding: 60px 70px;
    box-shadow: 360px 0px 57px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 150px;
    right: -140px;
    background-color: #f8f9fd;
    z-index: 2;
    /* max-width: 640px; */
}
.section-card-wrap-left p,
.section-card-wrap-right p {
    padding-bottom: 40px;
}
a.find-btn {
    text-decoration: none;
    color: var(--clr-primary);
    text-align: center;

    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 147.5%; /* 25.075px */
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--clr-primary);
    transition: all 0.3s ease;
}
.find-btn span {
    padding-left: 22px;
    padding-right: 22px;
}
.svg-btnwrap {
    background-color: var(--clr-primary);
    padding: 8px 10px;
}
.svg-btnwrap svg {
}
a.find-btn:hover {
    background-color: var(--clr-primary);
    color: #fff;
}
.are-u-oppurtunity-section {
    background-color: #f8f9fd;
}
/* Are you an Employer section end */
.new-home-design-section {
    /* padding: 3rem 6rem; */
    background: #f9f9f9;
}

/* Magazine inclusion section start */
.magazine-section {
    background-color: var(--clr-primary);
    padding-top: 3.5rem;
    padding-bottom: 0.2rem;
    position: relative;
}
.magazine-section h2 strong {
    font-weight: 700;
}
.magazine-section h2 {
    font-weight: 700;
}
.magazine-text {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    color: #ffffff;
}
.magaine-header {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 52px;
}
.whiteDiagonal {
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0px;
    border-bottom: 110px solid white;
    border-left: 100vw solid transparent;
    z-index: 1;
}
.magazine-section .row > * {
    z-index: 2;
}
.magazine-section p,
.magazine-section h2 {
    color: #fff;
}
.magazine-section img {
    max-width: 290px;
}
.btn-outline-white {
    color: #fff;
    /* border-color: #fff; */
    border: 2px solid #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 167.5%;
    /* identical to box height, or 27px */

    letter-spacing: 0.005em;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-outline-white:hover {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    color: var(--clr-black2);
}
/* Magazine inclusion section end */

.design-building-section {
    /* padding: 3rem 6rem; */
    background: #fff;
    position: relative;
}
.display-homes-section {
    /* padding: 3rem 6rem; */
    background: #fff;
}
.design-building-section > .container {
    z-index: 2;
    position: relative;
}
.design-building-section::after {
    content: "";
    width: 100%;
    height: 37%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--clr-primary);
    background-color: #f9f9f9;
    z-index: 1;
}
.design-desc {
    padding: 0.8rem;
    background: #ffffff;
    box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05);
    border-radius: 12px;
    min-height: 12pc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.design-building-section .design-desc {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.card-bottom {
    padding: 0.8rem;
    background: #ffffff;
    box-shadow: 0px 4px 18px rgba(121, 121, 121, 0.05);
    border-radius: 12px;
}
.design-building-card .design-img {
    transition: 0.5s;
}
.design-building-card:hover,
.design-building-card:hover .design-desc h3,
.design-building-card:hover .design-desc p {
    color: #e00e5f;
}
.design-building-card:hover .design-img {
    transform: scale(1.02);
}
.design-desc h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 2px;
    letter-spacing: 0.001em;
    color: #1e1c1c;
}
.design-desc p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #606161;
}
.design-desc-bottom {
    display: flex;
    justify-content: space-between;
}
.design-desc-bottom p {
    font-weight: 500;
    font-size: 12px;
    line-height: 19px;
    color: #bfbfbf;
    margin-bottom: 0;
}
.testimonials-section {
    background: #f8f9fd;
}
.testimonials-title h2 {
    color: #031169;
    text-align: center;
    font-family: Poppins;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 59px; /* 155.263% */
}
/* slide equal height */
.testimonials-section .slide {
    height: 100% !important;
}
.testimonials-section .slick-track {
    display: flex !important;
    align-items: center;
    margin: 20px 0px;
}
.testimonials-section .slick-slide {
    height: inherit !important;
}
.testimonials-section .slick-slide > div {
    height: 100% !important;
}

.testimonials-content p {
    max-width: 580px;
}
.testimonials-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}
.testimonials-title {
    display: flex;
    gap: 1rem;
}
.testimonials-icons {
    display: flex;
    gap: 0.8rem;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
.fa-chevron-circle-left::before,
.fa-circle-chevron-left::before,
.fa-chevron-circle-right::before,
.fa-circle-chevron-right::before {
    color: var(--clr-primary);
}
.fa-chevron-circle-left::before:hover,
.fa-circle-chevron-left::before:hover,
.fa-chevron-circle-right::before:hover,
.fa-circle-chevron-right::before:hover {
    color: var(--clr-secondary);
}
.testimonials-card {
    background: #fdc416;
    background: #fff;
    /* box-shadow: 0px 1px 20px rgba(121, 120, 120, 0.12); */
    box-shadow: 0px 5px 10px rgba(121, 120, 120, 0.1);

    border-radius: 8px;
    padding: 1.5rem;
    margin: 0 10px;
    position: relative;
    overflow: visible;
}
.popular-slider-card,
.popular-home-slider {
    margin: 0 14px;
}
.testimonials-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonials-details p,
.testimonials-detail h4 {
    font-weight: 4 00;
    font-size: 16px;
    line-height: 24px;
    color: #0b0608;
}
.testimonials-detail h4 {
    font-weight: 600;
    margin-bottom: 0;
}
.testimonials-detail h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #1e1c1c;
    margin-bottom: 0;
}
/* .testimonials-detail h5::after {
    content: "";
    border-bottom: 2px solid #ec1266;
    display: block;
    width: 60%;
    margin: 4px 0;
} */
.testimonials-profile {
    width: 65px;
}
.testimonials-profile img {
    border-radius: 10px;
}

/* newsletter section css */
.newsletter-section {
    background: url("../images/newsletter-background.png");
    /* padding: 3rem 6rem; */
    background-repeat: no-repeat;
    background-size: cover !important;
    position: relative;
    min-height: fit-content;
}
.news-wrap {
    width: 65%;
}
/* .newsletter-content {
    position: absolute;
    margin-bottom: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */
.newsletter-content h1 {
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
}
.newsletter-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}
.custom-search {
    position: relative;
    width: 350px;
    margin: 0 auto;
}
.custom-search-input {
    max-width: 300px;
    width: 100%;
    border: 1.5px solid #43b3ff;
    padding: 12px 12px 12px 20px;
    line-height: 1;
    display: block;
    color: #fff;
    background-color: #172689;
    box-sizing: border-box;
    outline: none;
}
.custom-search-input::placeholder {
    color: #a8d8f9;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 173.5%;
    opacity: 1;
}
input[type].custom-search-input:focus {
    border: 1.5px solid #43b3ff !important;
}
.outline-secondary-btn {
    text-decoration: none;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 300px;
    background-color: var(--clr-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 173.5%; /* 27.76px */
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--clr-secondary);
    transition: all 0.3s ease;
    height: 47px;

    padding: 8px 10px 8px 17px;
}
.outline-secondary-btn span {
    padding-left: 0px;
    padding-right: 22px;
}
.svg-btnwrap-secondary {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--clr-secondary);
    height: 45px;
    width: 46px;
    max-width: 20rem;

    display: flex;
    align-items: center;
    justify-content: center;
}
.svg-btnwrap-secondary svg {
}
.outline-secondary-btn:hover {
    background-color: var(--clr-secondary);
    color: #fff;
}
.custom-search-botton {
    /* position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0; */
    max-width: 20rem;
    background: #fdc416;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #0b0608;
    outline: none;
    margin: 0;
    padding: 0 20px;
    border-radius: 38px;
    border: none;
    z-index: 2;
}
.custom-search-botton:hover {
    background: #e00e5f;
}
/* .custom-search-botton {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: #fdc416;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #0b0608;
    outline: none;
    margin: 0;
    padding: 0 20px;
    border-radius: 38px;
    z-index: 2;
} */
/* newsletter section css ends */
/* inner pages start */
.heading-process {
    color: var(--clr-black2);
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 60px;
}
.process-card {
    padding: 8px;
}
.card-num {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    background-color: var(--clr-primary);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto;
}
.process-card-heading {
    color: var(--clr-primary);
    text-align: center;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 16px;
}
.process-card p {
    color: var(--clr-black2);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
    padding: 0 12px;
}
.page-hero {
    height: 478px;
    height: 378px;
    position: relative;
}
.page-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-hero-content h2 {
    color: #fff;
    text-align: center;

    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.22px;
}
.page-hero-content h2 span {
    color: #fff;
    text-align: center;

    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 130.5%; /* 75.69px */
    letter-spacing: 0.29px;
}
.page-hero-content p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    max-width: 664px;
    text-align: center;
    color: #fff;

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 167.5%; /* 26.8px */
    letter-spacing: 0.08px;
}
.column-bottom-padding {
    padding-bottom: 70px;
}
.btn-inner {
    border: 2px solid #031169;
    background: #031169;
    display: inline-flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-inner:hover {
    background: var(--clr-secondary);
    border: 2px solid var(--clr-secondary);
    color: #fff;

    /* color: var(--clr-text); */
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}
.btn-modal-primary {
    padding: 7px 24px;
}

.section-text-column h3,
.section-text-column h4,
.section-text-column h2 {
    color: #0b0608;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.page-first-section .section-text-column h4,
.page-second-section .section-text-column h4 {
    font-size: 26px;
}
#general35 h3,
#general42 h3,
#general43 h3,
#general30 h3,
#general31 h3,
#general32 h3 {
    font-size: 26px;
}
.section-text-column p {
    color: #0b0608;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin-bottom: 30px;
}
.section-text-column ol li {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}
.section-text-column ol li {
    padding-left: 8px;
}
.visa-img-wrap1 {
    width: 100%;
}
.visa-img-wrap-80 {
    width: 80%;
}
/* .visa-img-wrap1 img{
    margin-top:30px;
} */
.page-second-section {
    background-color: #f2f5ff;
}
.page-bg {
    background-color: #f2f5ff;
}
.page-sections section:nth-child(even) {
    background-color: #f2f5ff !important;
}
.page-sections section *:last-child {
    margin-bottom: 0;
}
.img-reduce {
    max-width: 90%;
}
.visa-img-wrap {
    position: relative;
    margin-top: 50px;
}
.visa-img-wrap:first-child {
    border-radius: 50%;
}
.student_visa_art {
    position: absolute;
    top: -26%;
    left: -26%;
    rotate: 5deg;
}

.section-text-column ul {
    margin-bottom: 30px;
    padding-left: 35px;
}
.section-text-column ul li {
    margin-bottom: 10px;

    font-size: 18px;
}
ul.check-list {
    margin-bottom: 30px;
    padding-left: 15px;
}
.check-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px !important;
    justify-content: flex-start;
    font-size: 18px;
}
.check-list li::before {
    content: "\f058";
    font-family: FontAwesome;
    display: inline-block;
    width: 1.3em;
    flex-shrink: 0;
    color: #031169;
}
.paper-plane-list {
    margin-bottom: 30px;
    padding-left: 15px;
    margin-top: 20px;
}
.paper-plane-list li {
    margin-bottom: 0px;
    display: flex;
    gap: 10px !important;
    justify-content: flex-start;
    font-size: 18px;
}
.paper-plane-list li::before {
    content: "\f1d8";
    font-family: FontAwesome;
    display: inline-block;
    width: 1.3em;
    flex-shrink: 0;
    color: var(--clr-secondary);
    rotate: 45deg;
    font-size: 14px;
    padding-right: 20px;
    padding-top: 5px;
}
/* inner pages end */

/* New Home Designs hero section start */
.new-homes-design-hero-wrapper {
    background: #f1f1f1 !important;
    z-index: 10;
    min-height: 540px;
    min-height: fit-content;
    /* min-height: 800px !important; */
}
.new-homes-design-hero-section {
    padding-top: 54px;
}

.new-homes-design-hero-section h1 {
    /* padding-left: 2rem;
    padding-right: 2rem; */

    font-size: 2.375rem;
    font-weight: 700;
    line-height: 3.563rem;
    letter-spacing: 0.005em;
    color: #ec1266;
}

.new-homes-design-hero-section h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 167.5%;
    /* or 27px */

    letter-spacing: 0.005em;

    color: #0b0608;
}

/* .breadcrumb {
    display: flex;

    align-items: center;
    justify-content: end;
} */

/* Breadcrumb  start */
.card-heading-link {
    color: #d41717;
    text-decoration: none;
}
/* .page-breadcrumb {
    display: flex;
    gap: 10px;
    float: right;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    row-gap: 5px;
    padding-left: 0;
}
.contact-header .page-breadcrumb {
    float: unset;
    justify-content: flex-end;
} */
.page-breadcrumb-wrap {
    margin-left: auto;
}
.page-breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 0;
    flex-wrap: wrap;
    row-gap: 5px;
    padding-left: 0;
}

ul.page-breadcrumb li + li::before {
    padding-right: 8px;

    color: #bbc3f4;
    content: "\f105";
    font-family: FontAwesome;
}

ul.page-breadcrumb li a:hover {
    text-decoration: underline;
    color: #fff;
}
ul.page-breadcrumb li a {
    color: #bbc3f4;
}

ul.page-breadcrumb li {
    font-size: 15px;
    font-weight: 400;
    list-style: none;
    color: #fff;
}
/* Breadcrumb  end */

.tab-content {
    margin-bottom: 3.5rem;
    box-shadow: 0px 16px 24px rgba(204, 204, 204, 0.24);
    border-radius: 20px;
}

.new-designs-section {
    /* padding: 3rem 6rem; */
    background: #f9f9f9;
}
/* padding removed after adding container -lm */

.tia-global-detail-banner {
    width: 100%;
    max-width: 1230px;
    /* margin: 0 auto; */
}
.gallery-slider img {
    max-width: 100%;
}

.gallery-slider ul,
.gallery-slider li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.gallery-slider p {
    font-size: 14px;
    line-height: 16px;
    margin: 0;
}

/*USE CSS for Slider*/

.tia-global-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}
/* new slider */

/* old slider */
.gallery-slider .slider.slider-for {
    /* max-width: 916px; */
    max-width: 75%;
    padding-right: 5px;
    /* max-height: 100%; */
}
.gallery-slider span {
    display: none !important;
}
.gallery-slider .slider.slider-nav {
    /* max-width: 212px; */
    max-width: 25%;
    max-height: 500px;
    /* margin-top: auto;
    margin-bottom: auto; */
    /* position: relative; */
}
.gallery-slider .slider.slider-for,
.gallery-slider .slider.slider-nav {
    width: 100%;
    float: left;
}
.gallery-slider .slider.slider-nav {
    height: 500px;
    /* height: 800px !important; */
    overflow: hidden;
}
.gallery-slider .slider-banner-image {
    max-height: 500px;
    /* width: auto; */
}
.gallery-slider .slider.slider-nav {
    padding: 20px 0 0;
}
.gallery-slider .slider-nav .slick-slide.thumbnail-image .thumbImg {
    max-width: 212px;
    height: 146px !important;
    margin: 0 auto;
    border: 1px solid #ebebeb;
}
.gallery-slider .slider-banner-image img,
.gallery-slider .slider-nav .slick-slide.thumbnail-image .thumbImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.gallery-slider .slick-vertical .slick-slide:active,
.gallery-slider .slick-vertical .slick-slide:focus,
.gallery-slider .slick-arrow:hover,
.gallery-slider .slick-arrow:focus {
    border: 0;
    outline: 0;
}
.gallery-slider
    .slider-nav
    .slick-slide.slick-current.thumbnail-image
    .thumbImg {
    border: 2px solid #196db6;
}
.gallery-slider .slider-nav .slick-slide.slick-current span {
    color: #196db6;
}
.gallery-slider .slider-nav .slick-slide {
    text-align: center;
}
.gallery-slider .slider-nav .slick-slide span {
    font-size: 14px;
    display: block;
    padding: 5px 0 15px;
}
.gallery-slider .slider-nav {
    /* position: relative !important; */
}
.gallery-slider .thumbnail-image.slick-slide {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.gallery-slider .slider.slider-nav {
    position: relative;
}
/* .gallery-slider .slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;


    z-index: 99;
}
.gallery-slider .slick-prev.slick-arrow,
.gallery-slider .slick-next.slick-arrow {
    height: auto;
    width: auto;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}
.gallery-slider .slick-prev.slick-arrow {
    top: 10% !important;
    left: 50%;
    z-index: 500;
}
.gallery-slider .slick-next.slick-arrow {
    bottom: 0% !important;
    left: 50% !important;
    z-index: 500;
}
.gallery-slider .slick-prev.slick-arrow {
    content: "<i class=" fa-solid fa-chevron-up "></i>";
}
.gallery-slider .slick-next.slick-arrow {
    content: "<i class=" fa-solid fa-chevron-down "></i>";
} */

/*End USE CSS for Slider*/

/* Display homes slider end */

/* Display homes tabs start */
.display-tabs {
    display: inline-flex;
    border-bottom: none;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background: #ececec;
    overflow: hidden;
}
.display-tabs .active {
    display: inline-block;
    color: #1e1c1c !important;
    border-bottom: none;
    border-top-right-radius: inherit !important;
    border-top-left-radius: inherit !important;
}
.display-tabs .nav-link {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #1e1c1c;
    text-transform: uppercase;
}
.display-tabs .nav-link:hover,
.display-tabs .nav-link:active {
    border-bottom: unset;
    color: #ee196b !important;
}
.display-tabs .active::after {
    /* border-bottom: none;
    border-top-right-radius: inherit !important;
    border-top-left-radius: inherit !important; */

    /* background: #fff; */
}
.display-tab-content > .tab-pane {
    display: none;
}
.display-tab-content > .active {
    display: block;
}
/* Display homes overview tabs section start */
.hide1 {
    display: none;
}
#nav-tabContent > div {
    padding-top: 2rem !important;
}
#nav-overview h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
}
#nav-overview p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #575757;
}
.display-tab-content {
    border: 1px solid #f4f4f4 !important;
    border-bottom-left-radius: 10px;
}
.margin-overview {
    width: 100%;
    height: 0px;
    border: 1px solid #f4f4f4;
}
/* place-offers */
.features-icons-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.key-features img {
    padding-right: 8px;
}
.features-icons-display-img {
    background: #eeeeee;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.place-offers p,
.place-offers span,
.key-features span {
    font-weight: 500 !important;

    font-size: 18px !important;
    line-height: 27px !important;
}
#nav-overview h2 {
    /* color: #575757; */
    color: #0b0608;
}
.features-icons-display span {
    color: #575757;
}

/* Display homes overview tabs section end */

/* Display homes Floor Plan start */

/* read more start */

/* read more end */

.tab-header h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;

    /* color: #575757; */
    color: #0b0608;
}
.tab-header p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;

    color: #575757;
}

#floor-plan .flter-arrow p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;

    color: #ec1266;
}
#floor-plan .flter-arrow i {
    font-size: 14px;

    color: #ec1266;
}

.floor-plan-property h3 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;

    color: #575757;
}
.floor-plan-property_value p {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;

    color: #575757;
}
.floor-plan-property_value a {
    /* white-space: nowrap; */
}
.floor-plan-property_value i {
    color: #ec1266 !important;
    font-size: 1rem;
}
.custom-tooltip {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;

    color: #575757;
}

.floor-plan-sidebar-wrapper {
    background: #f4f4f4;
    border-radius: 4px;
}
/* Room Dimensions */
.floor-plan-sidebar h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 33px;

    color: #0b0608;
}
.floor-plan-sidebar p,
.floor-plan-sidebar span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;

    color: #575757;
}

.floor-plan-sidebar_margin {
    width: 95%;
    height: 0px;
    border-bottom: 1px solid #a9a9a9;
}
.floor-plan-dimension_list_item {
    display: flex;
    justify-content: space-between;
}
.floor-plan-additional-features_list_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.floor-plan-dimension_list span {
    /* margin-right: 1rem; */
}
.floor-plan-note p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;

    color: #575757;
}

/* .floor-plan-img img {
    display: none;
} */
#openseadragon1 .openseadragon-container {
    background-color: #f4f4f4 !important;
}

/* Display homes Floor Plan end */

/* Display homes detail interior start */
.interior-slider-wrap .slick-next {
    right: 20px;
}
.interior-slider-wrap .slick-prev {
    left: 20px;
    z-index: 2;
}
/* Display homes detail interior end */

/*Display homes virtual tour start  */

#nav-virtual-tour .tab-header i {
    color: #ec1266 !important;
    font-size: 1rem;
}

/*Display homes virtual tour end  */

/* Display homes tabs end */

/* Enquiry Form start */
/* .form-floating {
    text-indent: 0.4rem;
    color: #6c757d;
} */
.form-enquiry-wrapper {
    /* border: ; */
}
.form-enquiry-wrapper label {
    /* color: #ec1266; */
    color: #575757;
}
.form-check label {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 178%;
    color: #7b8792;
}
.form-enquiry-wrapper label {
    padding-bottom: 5px;
}
.form-enquiry-wrapper .form-control:focus {
    /* color: #fff;
    background: transparent; */
    border-color: rgb(224, 14, 95);
    box-shadow: none;
    /* Enquiry Form end */
}
.form-enquiry-wrapper .form-select:focus {
    /* color: #fff;
    background: transparent; */
    border-color: rgb(224, 14, 95);
    box-shadow: none;
}
.form-enquiry-wrapper input,
.form-enquiry-wrapper select {
    padding: 10px;
}
.enquiry-info-wrapper {
    background-color: #ececec;
}
.emphasis-script {
    color: rgb(224, 14, 95);
}

/* Enquiry Form end */
/* Display homes section end */

/* FAQs section start -lm */

.faq-header-wrap h2 {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    color: #ec1266;
}
.faq-header-wrap h3 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 58px;
    letter-spacing: -0.96px;
    color: #101828;
}
.faq-header-wrap p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #475467;
}
.faq-accordion-row {
    display: flex;
    justify-content: center;
}
.faq-accordion button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;

    color: #101828;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.faq-accordion .accordion-body {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #ababab;
}

/* FAQs section end -lm */

/* Contact section start -lm */
/* .contact-alert-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
}
.contact-alert-btn:hover {
    background-color: rgba(248, 215, 218, 0.452);
} */
.contact-left-col {
    background-color: #f2f5ff;
}
.bg-color {
    position: absolute;
    right: 0;
    top: -20%;
    background-color: #f2f5ff;
    width: calc(100% + 200px);
    height: calc(100% + 200px);
    z-index: -1;
}

.contact-head-img-wrap {
    position: absolute;
    width: 7rem;
    top: -197%;
    left: -15.6%;
}
.contact-details h3 {
    position: relative;
    margin-bottom: 50px;
    margin-top: 20px;
    color: #0b0608;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.contact-details_item {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 30px;
    text-decoration: none;
    color: #031169;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 350px;
    transition: color 0.3s ease-in-out;
}
.contact-details_item:hover {
    color: var(--clr-secondary);
}
.contact-phone {
    margin-left: -8px;
}
.contact-details_item a {
    text-decoration: none;
    color: #031169;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 290px;
}
.contact-team-form-wrap h3 {
    color: #0b0608;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.contact-team-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.contact-team-form-wrap .form-control {
    background-color: #f2f5ff;
}
.contact-team-form-wrap .form-control:focus {
    background-color: #f2f5ff;
    border-color: var(--clr-primary) !important;
}
.contact-team-form-wrap .form-control::placeholder {
    color: #9d9d9d;
}
.custom-gutter-form {
    --bs-gutter-y: 38px;
    --bs-gutter-x: 48px;
}
.contact-form-wrap .alert ul {
    padding-left: 1.5rem;
}
.contact-team-form-wrap .alert ul {
    padding-left: 1.5rem;
    text-align: left;
}
.contact-wrap {
    background-color: rgb(249, 249, 249);
}
.contact-wrap h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;

    color: #ec1266;
}
.contact-wrap p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 123%;
    /* or 20px */

    text-align: center;

    color: #1e1c1c;
}
.contact-form-wrapper .form-control:focus {
    /* color: #fff;
    background: transparent; */
    border-color: rgb(224, 14, 95);
    box-shadow: none;
    /* Enquiry Form end */
}
.contact-form-wrapper .form-select:focus {
    /* color: #fff;
    background: transparent; */
    border-color: rgb(224, 14, 95);
    box-shadow: none;
}
#contactModal .modal-footer {
    justify-content: center;
}
#contactModal .modal-content {
    position: relative;
}
.right-tick {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);

    padding: 0.6rem;
    height: 90px;
    width: 90px;

    border-radius: 50%;
    background: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* text-align: center;
    line-height: 90px;
    vertical-align: middle; */
    overflow: hidden;
    object-position: center;
}
.right-tick i {
    color: #fff;
}
.cross-tick {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);

    padding: 0.6rem;
    height: 90px;
    width: 90px;

    border-radius: 50%;
    background: rgb(208, 16, 16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* text-align: center;
    line-height: 90px;
    vertical-align: middle; */
    overflow: hidden;
    object-position: center;
}
.cross-tick i {
    color: #fff;
    margin: 0;
}
#contactModal {
    /* position: absolute;
    top: 20px;
    right: 100px;
    bottom: 0;
    left: 0;
    z-index: 55555; */
}
/* contact test image on the right start */

/* .row.test {
    background-color: red;
}
.container-fluid-right {
    margin-right: 0;
    padding-right: 0;
}
.container-fluid-right .row {
    margin-right: 0;
}
.container-fluid-right .row > [class*=" col-"]:last-child,
.container-fluid-right .row > [class^="col-"]:last-child {
    padding-right: 0;
}

@media (min-width: 576px) {
    .container-fluid-right {
        max-width: calc(100% - (100% - 540px) / 2);
    }
}

@media (min-width: 768px) {
    .container-fluid-right {
        max-width: calc(100% - (100% - 720px) / 2);
    }
}

@media (min-width: 992px) {
    .container-fluid-right {
        max-width: calc(100% - (100% - 960px) / 2);
    }
}

@media (min-width: 1200px) {
    .container-fluid-right {
        max-width: calc(100% - (100% - 1200px) / 2);
    }
} */

/* contact test image on the right end */
/* .contact-img-wrap {
    height: 100%;
    width: 100%;

}
.contact-img {
    height: 100%;
    width: 100%;
} */
.contact-form-wrap label {
    padding-bottom: 5px;
}
.captcha {
    /* width: 100%;
    height: 100%; */
}
.captcha img {
    width: 100%;
    height: 100%;
}
.captcha-register img {
    width: 100%;
    height: 100%;
}
.captcha-contact {
    display: flex;

    align-items: stretch;
}
.captcha-contact button {
    margin-left: 2rem;
}
.submit-section button {
    width: 127px;
    height: 49px;
    color: white;
    background: #ec1266;
    border-radius: 44px;
}
.submit-section button:hover {
    color: white;
    background: #bb0e50;
}
.contact-map-section {
    background-color: #f9f9f9;
}
.contact-info-header h3 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 27px;
    line-height: 145%;
    /* or 36px */

    text-align: center;

    color: #ec1266;
}
.contact-map-section .card {
    background-color: #ec1266;
    color: white;
    border-radius: 10px;
}
.contact-map-section .card p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    padding-left: 5px;
    padding-right: 5px;
}
.contact-map-section i {
    font-size: 1.5rem;
}

/* Contact section end -lm */
/* Blog section start */
.blog-hero-section {
    min-height: fit-content;
    background-color: #f9f9f9;
}
#blog-hero-slide img.card-img-top {
    object-position: center;
    object-fit: contain;
    height: 100% !important;
}
.blog-hero-section a {
    text-decoration: none;
}
/* .blog-hero-section .card:hover h3 {
    color: #fdc92a !important;
} */
.blog-hero-list-section p {
    color: #1e1c1c !important;
}
/* .blog-hero-section .card:hover h3,
.blog-hero-section .card:hover .tag {
    color: #fdc92a !important;
} */

.blog-hero-section .card:hover img {
    transition: 0.6s;
}

.blog-hero-section .card:hover img {
    transform: scale(1.01);
    object-fit: cover;
}
.blog-hero-section .card:hover {
    transform: scale(1.02);
    object-fit: cover;
    transition: 0.3s ease-in-out;
}
.blog-hero-section .card {
    border-radius: 5px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
}

.tag-sect .tag {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ec1266;
}
.tag-sect .date-slider {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* color: #1e1c1c; */
    color: #9d9d9d;
}
.blog-hero-text h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    /* width: 90%; */
    /* or 49px */

    /* color: #ec1266; */
    color: #1e1c1c;
}

.blog-hero-list-text h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 130%;
    width: 80%;
    /* or 49px */

    color: #ec1266;
}
.blog-hero-list-text p {
    font-size: 14px;
}
.blog-hero-text p {
    /* font-weight: 500;
    font-size: 20px;
    line-height: 30px; */

    color: #1e1c1c;
}
.time-read {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */

    color: #9d9d9d !important;
    /* color: #6d6c6c; */
}
.blog-img-wrap {
    border-radius: 20px;
    width: 90%;
    /* width: 80%; */
    /* margin: 0 auto; */
}
.blog-img-wrap img {
    height: 100%;
    width: 100%;
}
#blog-hero-slide .carousel-item {
    max-height: fit-content;
}
#blog-hero-slide .carousel-indicators button {
    position: relative;
    width: 10px !important;
    height: 10px !important;
    background: none !important;
    border-radius: 100% !important;
    border: 2px solid #b8b8b8 !important;
    display: inline-block;
    margin-right: 7px;
    cursor: pointer;
    overflow: hidden;
}
#blog-hero-slide .carousel-indicators .active {
    position: relative;
    width: 10px !important;
    height: 10px !important;
    background: #ec1266 !important;
    border-radius: 100% !important;
    border: 2px solid #b8b8b8 !important;
    display: inline-block;
    margin-right: 7px;
    cursor: pointer;
    overflow: hidden;
}
/* .recent-post-section .nav-link {
    background: white;
    border-radius: 44px;
    color: #ec1266;
    border: 2px solid #ec1266;
}
.recent-post-section .nav-link:hover,
.recent-post-section .nav-link:active {
    background: #ec1266 !important;
    border-bottom: unset;
    border: 2px solid #ec1266;

    color: white !important;
}
.recent-post-section .nav-pills .nav-link.active,
.recent-post-section .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #ec1266;
} */
.recent-post-section ul li {
    margin-left: 1rem;
}
#recent-post-pills-tab {
    justify-content: center;
    align-items: center;
}
.recent-post-cards .card-subhead {
    row-gap: 0;
    column-gap: 10px;
}
.recent-post-section h3 {
    color: #ec1266;
}
.recent-post-section-header {
    display: flex;
    align-items: center;
    justify-self: start;
    gap: 1rem;
}
.recent-post-cards .card-type {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */

    color: #ec1266;
}
.card-body a {
    text-decoration: none;
}
/* .card-body h5:hover {
    color: #ec1266 !important;
} */
/* .recent-post-cards .card:hover h5 {
    color: #ec1266 !important;
} */
.recent-post-cards a {
    text-decoration: none;
}
.recent-post-cards .card:hover img {
    scale: (1.2);
}
.recent-post-cards .card:hover img {
    transition: 0.6s;
}

.recent-post-cards .card:hover img {
    transform: scale(1.01);
    object-fit: cover;
}
.recent-post-cards .card:hover {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
}
.recent-post-cards .card-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */

    /* color: #1e1c1c; */
    color: #9d9d9d;
}
.recent-post-cards .card-title {
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;

    color: #0b0608;
}
.recent-post-cards .card-text {
    font-weight: 300;
    font-size: 15px;
    line-height: 155.5%;
    /* or 23px */

    color: #1e1c1c;
}
.recent-post-cards p {
    font-weight: 300;
    font-size: 15px;
    line-height: 155.5%;
    color: #1e1c1c;
    color: #1e1c1c;
}
.recent-post-cards .card-read-time {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height */

    /* color: #7c7777; */
    color: #9d9d9d;
}
.recent-post-cards .card {
    /* border-radius: 10px; */
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.06);
}

.share-post-networks h3 {
    font-size: 20px;
    font-weight: 600;
}
.share-post-networks a {
    text-decoration: none;
    color: black;
    color: #1e1c1c;
}
.blog-favourites {
    border: 2px solid #ffffff;
    border-radius: 100%;
    /* margin: 0 auto; */
    z-index: 999;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fdc416;
}
.blog-favourites .fa-solid {
}

.blog-favourites:hover .fa-solid {
    color: #e00e5f;
}
.blog-favourites:hover {
    border: 2px solid #e00e5f;
}

.blog-favourites .fa-solid {
    margin: 0;
    padding: 0.4rem;
    color: #fdc416;
}
.blog-favourites.my-wishlist .fa-solid {
    color: #ec1266;
}
.blog-favourites.my-wishlist {
    border: 2px solid #ec1266;
}

.share-post-socials a {
    width: 35px;
    height: 35px;
    padding: 5px;
    margin-right: 5px;
    font-size: 0.8rem;
    display: inline-flex;
    color: #fff;
    background-color: rgb(224, 14, 95);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.share-post-socials a:hover {
    background-color: rgb(159, 24, 75);
    color: white;
}
.blog-post-head h2 {
    font-weight: 600;
    font-size: 38px;
    line-height: 130%;
    /* or 49px */

    color: #1e1c1c;
}
.blog-post-stats {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    /* identical to box height */

    color: #1e1c1c;
}
.blog-post-body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;

    color: #1e1c1c;
}
.blog-post-body img {
    max-width: 100%;
    height: auto;
}
.blog-post-body li {
    line-height: 27px;
}
.related-blog-section h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;

    color: #1e1c1c;
}
aside {
    background: #f0f0f0;
    border-radius: 6px;
    padding: 10px;
}
.aside-blog-post h3 {
    font-size: 24px;
    /* border-bottom: 2px solid #170C1E; */
    padding-bottom: 10px;
    font-weight: 700;
}
.aside-blog-post ul {
    padding: 0;
    margin: 0;
}
.aside-blog-post ul li {
    list-style: none;
}
.aside-blog-post ul li a {
    display: block;
    border-top: 2px solid #170c1e;
    text-decoration: none;
    transition: 0.25s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.aside-blog-post ul li a:hover,
.aside-blog-post ul li a h4:hover,
.aside-blog-post ul li a p:hover {
    color: #e00e5f;
}
.aside-blog-title {
    display: flex;
    gap: 12px;
    margin: 15px 0px;
}
.aside-blog-icon {
    width: 90px;
}
.aside-blog-icon img {
    border-radius: 4px;
}
.aside-blog-post ul li a h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #170c1e;
    width: 61%;
    display: inline-block;
}
.aside-blog-post ul li a p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 10px;
}
/* Blog section end */

/* Profile section start */
.profile-section-hero-wrapper {
    background: #f1f1f1 !important;

    min-height: fit-content;
}

.profile-img-wrap {
    position: relative;
    width: 92px !important;
    height: 92px !important;
    display: inline-flex;
    vertical-align: middle;
    border-radius: 50%;
    /* clip-path: circle(); */
    overflow: hidden;
    flex-shrink: 0;
}
.profile-img-wrap img {
    width: 100%;
}
.profile-intro-left {
    column-gap: 0.8rem;
}
.profile-name h3 {
    font-weight: 600;
    font-size: 27px;
    line-height: 35px;
    /* identical to box height */

    letter-spacing: 0.005em;

    color: #ec1266;
}
.profile-name p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150.5%;
    /* identical to box height, or 27px */

    letter-spacing: 0.005em;

    color: #0b0608;
}
.profile-edit-button-wrap button {
}
.profile-more {
    font-size: 1.2rem;
}

.profile-more > div > div:hover {
    color: #e00e5f;
}

.profile-display-tabs {
    display: inline-flex;
    border-bottom: none;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background: #ececec;
    overflow: hidden;
}
.profile-display-tabs .active {
    display: inline-block;
    color: #1e1c1c !important;
    border-bottom: none;
    border-top-right-radius: inherit !important;
    border-top-left-radius: inherit !important;
}
.profile-display-tabs .nav-link {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #1e1c1c;
    text-transform: uppercase;
}
.profile-display-tabs .nav-link:hover,
.profile-display-tabs .nav-link:active {
    border-bottom: unset;
    color: #ee196b !important;
}
.profile-display-tabs .nav-link.active {
    background-color: #fff;
    border-color: #dee2e6;
    border: 2px solid #dee2e6;
}
.profile-display-tabs {
    min-height: 250px;
}
.profile-tabs-list-section .tab-content {
    margin-bottom: 0rem;
}
/* profile section end */
.about-desc-list ul li::before {
    content: "\f058";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
    margin-right: 10px;
}
.about-desc-list ul {
    list-style: none;
}
.about-desc-list ul li {
    color: #ee196b;
    line-height: 2;
}
/* about us section start */
.cta-now-text {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
}
.aboutus-wrap h3 {
    font-size: 2.2rem !important;
    color: #ee196b;
    font-weight: 600;
}
.aboutus-wrap .contact-header p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.our-story-section {
    background-color: #f9f9f9;
}
.steps-section .card {
    position: relative;
}
.steps-section .card-circle {
    background-color: #ee196b;
    height: 4.5rem;
    width: 4.5rem;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* flex-wrap: wrap; */
    padding: 10px;
    font-weight: 800;
    color: #f9f9f9;
    font-size: 1rem;
    border-radius: 100%;
    position: absolute;
    top: -10%;
    left: 5%;
}

.steps-section .card {
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.119);
}
.steps-section .row {
    --bs-gutter-y: 4rem !important;
}
.steps-section card-body h4 {
    font-size: 1.4rem;
}
.advantage-section {
    background-color: #f9f9f9;
}
.advantage-header h3 {
    /* color: #fdc517 !important; */
}
.advantage-top p {
    margin-bottom: 0.5rem;
}
.advantage-section .card {
    background-color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.03);
}
.advantage-image-wrapper {
    background-color: #fdc517 !important;
    background-color: var(--clr-primary) !important;
    width: 80px;
    height: 80px;
    padding: 10px;
    box-shadow: none !important;
}
.advantage-section .row .col:last-child .img-fluid {
    height: 58.4px !important;
    max-width: 100% !important    ;
}
.advantage-section .card-text {
    color: #212529;
}
.advantage-section .card-title {
    color: #fdc517;
    color: var(--clr-black2);
}

/* inclusions sections start */
.inclusion-header ul li {
    list-style: none;
}
.inclusion-header ul {
    row-gap: 2rem;
    column-gap: 2rem;
}
.inclusion-header a {
    text-decoration: none;
    color: #db1762;
    border: 2px solid #db1762;
    border-radius: 25px;
    padding: 0.7rem 2.5rem;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.005em;
}
.inclusion-header a:hover {
    color: #ffffff;
    background: #ec1266;
}
.inclusions-btn {
    background: #ec1266;
    border: 2px solid #db1762;
    border-radius: 25px;
    padding: 0.7rem 2.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.005em;
}

.inclusions-btn:hover {
    background: #fdc416;
    border: 2px solid #fdc416;
    color: #1e1c1c;
}
.inclusions-header-wrap h2 {
    font-size: 2.2rem !important;
    color: #ee196b;
    font-weight: 600;
}
.inclusions-wrap > :nth-child(odd) {
    background-color: #f9f9f9 !important;
}
.inclusion-desc h3 {
    font-size: 2.2rem !important;
    color: #ee196b;
    font-weight: 600;
}
/* pages section start*/
.page-head-wrap {
    background-color: rgb(249, 249, 249);
}
.page-head-wrap h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;

    color: #ec1266;
}
.page-head-wrap p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 123%;
    /* or 20px */

    text-align: center;

    color: #1e1c1c;
}
.page-wrap h3 {
    font-size: 2.2rem !important;
    color: #ee196b;
    font-weight: 600;
}
.page-wrap a {
    text-decoration: none;
    /* color: var(--clr-black2); */
}
.page-wrap p {
    color: var(--clr-black2);
}

/* footer section css */
.footer {
    background: var(--clr-primary);
}
.footer .container {
    min-height: fit-content;
}
.footer .input-group {
    max-width: 20rem;
}
.footer-top {
    /* padding: 3rem 6rem; */
}
.footer-logo {
    padding-bottom: 1rem;
    max-width: 124px;
}
.footer-description {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 28px;
}
.company-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2rem;
    color: #ffffff;
}
.contact-information {
    display: flex;
    gap: 10px;
}
.footer-call {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-information p {
    font-weight: 400;
    font-size: 14px;
    line-height: 173.5%;
    color: #ffffff;
}
.policy a {
    color: #dd6227;
    text-decoration: none;
}
.policy a:hover {
    color: #a5d8ff;
}
.cds-icons {
    display: flex;
    flex-direction: column;
}
.cds-link {
    font-size: 14px;
    text-decoration: none;
}
.cds-link {
    color: #e1e8ec;
}
.cds-link:hover {
    color: #dd6227;
}
.fa-solid {
    margin-right: 6px;
    margin-right: 8px;
}
.footer-details p {
    color: #ffffff;
    font-size: 15px;
    padding-right: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 173.5%;
}
.lists-links {
    display: flex;
    gap: 30px;
}
.header-modal h5 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
}
.footer-modal {
    justify-content: center !important;
    background: #2b2a29;
}
.submit-footer-modal {
    justify-content: center !important;
    background: #ffffff;
    border-top: none !important;
}
.submit-modal {
    border-top: none !important;
    justify-content: center !important;
    background: #ffffff;
}
.header-modal {
    justify-content: center !important;
    background: #dd6227;
}
.submit-header-modal {
    justify-content: center !important;
    border-bottom: none !important;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}
/* old footer */
/* .footer-links {
    margin-top: 80px !important;
} */
.link-title {
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 173.5%; /* 27.76px */
    margin-bottom: 30px !important;
}
.footer-link:hover {
    color: var(--clr-secondary);
    transition: all 200ms ease-in-out;
}
.contact-information:hover p {
    color: var(--clr-secondary) !important;
    transition: all 200ms ease-in-out;
}
.contact-information:hover .contact-img img {
    color: var(--clr-secondary) !important;
    transition: all 200ms ease-in-out;
}
.footer-call p {
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    color: #ffffff;
    margin-bottom: 0;
}
.footer-call:hover p {
    color: var(--clr-secondary) !important;
    transition: all 200ms ease-in-out;
}
.bottom-border {
    position: relative;
}
.bottom-border::after {
    content: "";
    background-color: var(--clr-secondary);
    height: 2px;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
}
.bottom-border-wide {
    position: relative;
}
.bottom-border-wide::after {
    content: "";
    background-color: var(--clr-secondary);
    height: 3px;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 90px;
}

.box {
    width: 50px;
    margin-top: 15px;
    border-bottom: 2px solid var(--clr-secondary);
}

.footer-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    padding: 5px 0;
    display: block;
}
.footer-socials {
    margin: 40px 0;
}
.bottom-footer {
    border-top: 2px solid #263179;
}
.footer-text {
    color: #ffffff;
    /* justify-content: space-between; */
}
.footer-text p {
    font-size: 12px;
    margin-bottom: 0;
}
.footer-text a {
    color: #ffffff;
    text-decoration: none;
}
.footer-text a:hover {
    color: var(--clr-secondary) !important;
    transition: all 200ms ease-in-out;
}
.footer-links p {
    color: var(--clr-white-text);
}
.member-logo-wrap {
    max-width: 220px;
}
.social-links .link-title {
    font-size: 20px;
}
.social-links {
    margin-top: 25px;
}
.social-details {
    display: flex;
    gap: 15px;
    color: var(--clr-white-text);
    align-items: center;
}
.social-details a {
    color: var(--clr-white-text);
    transition: color 0.4s ease;
}
.social-details a:hover {
    color: var(--clr-secondary);
}
.social-details i {
    font-size: 26px;
}
.subsribe-text {
    color: #f9f9f9;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 156.5%;
}

.buttonload,
.hide-search,
#show-search-arrow {
    display: none;
}
.flter-arrow.show-search-arrow.hide-arrow {
    display: none !important;
}
.flter-arrow.show-search-arrow,
.search-fields.hide-search.show-search-arrow {
    display: flex !important;
}
.displayBtn,
.show-search-arrow {
    display: block !important;
}
.displayEnqBtn {
    display: inline-block;
}
/* Footer Css */
/* footer section css ends */

/* mobile responsive css */
/* Hero section start */

@media only screen and (min-width: 592px) and (max-width: 1400px) {
    .search-filter-section .home-design-bottom {
        justify-content: start;
    }
    .search-filter-section .home-design-bottom .find-home-col {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }
    .search-filter-section .home-design-bottom > :not(:last-child) {
        min-width: 140px;
    }
    /* .search-filter-section .home-design-bottom .input-group {
        flex-wrap: nowrap;
    }
    .search-filter-section .home-design-bottom .input-group {
        min-width: 120px !important;
    } */
}
@media only screen and (min-width: 576px) and (max-width: 1400px) {
    .find-home-col {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }
    .search-filter-section .home-design-bottom > :not(:last-child) {
        min-width: 140px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
    .home-design-bottom > div:nth-child(5) {
        border-left: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .search-filter-section .find-home-btn {
        padding: 0.6rem 0.6rem;
        font-size: 12px;
    }
    .search-filter-section .find-home-btn svg {
        margin: 0 !important;
    }
    .find-home-btn {
        padding: 0.6rem 0.9rem;
        font-size: 12px;
    }
    .find-home-btn svg {
        width: 20px;
        height: 20px;
    }
    /* .search-filter-section .find-home-btn svg {
        display: none;
    } */
    .find-home-col {
        padding: 0;
    }
    .home-design-bottom > div:nth-child(4) {
        border-left: none !important;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .searchbar-tabs .find-home-btn {
        padding: 0.6rem 0.6rem;
        font-size: 12px;
    }
    .searchbar-tabs .find-home-btn svg {
        margin: 0 !important;
    }
    .find-home-btn {
        padding: 0.6rem 0.9rem;
        font-size: 12px;
    }
    .find-home-btn svg {
        width: 20px;
        height: 20px;
    }
    /* .search-filter-section .find-home-btn svg {
        display: none;
    } */
    .find-home-col {
        padding: 0;
    }
}
@media only screen and (max-width: 576px) {
    .container1 {
        max-width: 95%;
    }
    .why-us-desc {
        max-width: 90%;
    }
}

@media only screen and (min-width: 1400px) {
    /* best choice strech */
    .featured-home-desc .features-home-img img {
        height: 315px;
    }
    .sec-nav-col,
    .sixth-nav-col {
        width: fit-content;
    }
}

@media only screen and (min-width: 992px) {
    .modal-nav > .row > :not(:last-child) {
        flex-grow: 1;
    }
}
@media only screen and (max-width: 768px) {
    .bg-color {
        position: absolute;
        right: -20%;
        top: -20%;
        background-color: #f2f5ff;
        width: calc(100% + 200px);
        height: calc(100% + 100px);
        z-index: -1;
    }
    .navbar-hamburger-wrap {
        margin-left: 1rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
    h2.heading-hire-primary {
        display: none;
    }
    .section-card-wrap-right {
        top: 40px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    h2.heading-hire-primary {
        margin-left: 20px;
        font-size: 36px;
    }
    /* best choice strech */
    .featured-home-desc .features-home-img img {
        height: 285px;
    }
    .header .nav-link,
    .project-header .nav-link {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
    }
    /* .slider-text {
        width: 60%;
    } */
}
@media only screen and (max-width: 768px) {
    .img-fluid-hire {
        max-width: 100%;
        height: auto;
    }
    .why-choose-us-section::before {
        width: 0;
    }
    .section-card-wrap-right {
        position: unset !important;
    }
    h2.heading-hire-primary {
        margin-top: 30px;
        font-size: 28px;
    }
    .section-card-wrap-right {
        padding: 30px 20px;
        padding-top: 0;
        box-shadow: none;
    }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .header .nav-link,
    .project-header .nav-link {
        font-weight: 500;
        font-size: 11px;
        line-height: 20px;
    }
}
@media only screen and (min-width: 993px) and (max-width: 1400px) {
    .navbar-list {
        display: flex;
        justify-content: left;
        align-items: center;
        text-align: center;
        text-align: left;
        text-decoration: none;
        list-style: none;
        gap: 0rem;
    }
    .nav-link {
        padding: 0.5rem 0.8rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
    /*card size decrease*/
    .features-icons-img {
        background: #eeeeee;
        padding: 0.3rem;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        object-position: center;
        flex-shrink: 0;
    }
    .features-icon-stars {
        width: 40%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
    .best-choice-section span {
        font-size: 0.8rem;
    }
    .features-icon-stars {
        display: none;
    }
}
@media only screen and (min-width: 765px) and (max-width: 1200px) {
    .find-home-btn {
        /* padding: 0.7rem 2rem !important; */
    }
}
@media only screen and (max-width: 768px) {
    .blog-img-wrap {
        margin: unset;
    }
}
/* new combined nav of new home designs */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .nav-item_submenu_item {
        flex-wrap: wrap;
    }
    .nav-item_submenu_item_text-wrap {
        padding-left: 0;
    }
}

/* old separate navs
 @media only screen and (min-width: 576px) and (max-width: 768px) {
    .nav-item_submenu_item {
        flex-wrap: wrap;
    }
    .nav-item_submenu_item_text-wrap {
        padding-left: 0;
    }
} */
/* slider width start */
@media only screen and (min-width: 480px) and (max-width: 992px) {
    .slider-text {
        width: 85%;
    }
    .hero-section .carousel-indicators {
        /* bottom: 150px;
        bottom: 90px; */
        bottom: 20px;
    }
}

/* slider width end */
@media only screen and (min-width: 950px) and (max-width: 1165px) {
    .slider-content {
        /* padding: 3rem 6rem; */
        position: absolute;
        /* top: 10% !important; */
        /* width: 55%; */
    }
    .slider-text {
        width: 65%;
    }
    .slider-content h2 {
        /* margin-bottom: 1rem; */
        font-size: 30px !important;
        /* line-height: 24px; */
        line-height: 28px;
    }
    .slider-content h1 {
        margin-bottom: 1rem;
        font-size: 40px !important;
        /* line-height: 24px; */
    }
}
@media only screen and (min-width: 706px) and (max-width: 950px) {
    .slider-content {
        /* padding: 3rem 6rem; */
        position: absolute;
        /* top: 10% !important; */
        /* width: 55%; */
    }
    .slider-text {
        width: 70%;
    }
    .slider-content h2 {
        /* font-size: 20px !important; */
        font-size: 26px !important;
        line-height: 30px !important;
    }
    .slider-content h1 {
        margin-bottom: 1.3rem !important;
        /* font-size: 25px !important; */
        font-size: 30px !important;
        line-height: 50px !important;
    }
    .slider-content p {
        font-size: 14px;
        display: none;
    }
    .slider-content a {
        font-size: 14px;
        padding: 5px 10px;
    }
}
@media only screen and (min-width: 481px) and (max-width: 706px) {
    .slider-content {
        /* padding: 3rem 6rem; */
        position: absolute;
        top: 20% !important;
        /* width: 70%; */
        align-items: center;
        /* padding-top: 3rem; */
        padding-bottom: 16rem;
    }
    /* .slider-text {
        text-align: start !important;
    } */
    .slider-content h2 {
        /* font-size: 22px !important; */
        font-size: 26px !important;
        line-height: 30px;
    }
    .slider-content h1 {
        margin-bottom: 1.3rem !important;
        /* font-size: 24px !important; */
        font-size: 28px !important;
        line-height: 35px !important;
    }
    .slider-content p {
        display: none;
    }
    /* .slider-image img {
        height: 300px;
    } */
    .slider-image {
        height: 500px;
    }
    .slider-content a {
        font-size: 14px;
        padding: 5px 10px;
    }
}

@media only screen and (max-width: 576px) {
    .nav-phone {
        width: 34px;
        height: 34px;
        margin-left: 1rem;
    }
    .nav-phone i {
        font-size: 14px;
    }
    .quick-enquiry {
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        font-size: 11px;
        line-height: 15px;
        padding: 8px 7px 8px 7px;
        color: #f5f5f5;
        font-weight: 700;
        align-self: stretch;
        border: 2px solid var(--clr-secondary);
        border-radius: 8px;
        background: var(--clr-secondary);
        box-shadow: inset 0 0 0 0 var(--clr-secondary);
        margin-left: 1rem;
    }
    .quick-enquiry svg {
        display: none;
    }
    .nav-item_submenu {
        width: 80%;
        left: 10% !important;
    }
    .why-choose-spacing {
        padding-top: 15rem;
    }
    .nav-item_submenu.submenu-open {
        display: block;
    }
    .nav-last {
        margin-left: auto;
    }
    .nav-phone {
        margin-right: 0 !important;
    }
    /* .quick-enquiry {
        display: none;
    } */
    .section-spacing {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .get-home-design1 {
        display: flex !important;
    }
    .visa-img-wrap1 img {
        margin-top: 30px;
    }
    .page-hero-content h2 {
        font-size: 38px;
        margin: 0;
    }
    .mt-3x {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 388px) {
    .nav-phone {
        width: 34px;
        height: 34px;
        margin-left: 0.8rem;
    }
    .nav-phone i {
        font-size: 14px;
    }
    .quick-enquiry {
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        font-size: 11px;
        line-height: 15px;
        padding: 8px 7px 8px 7px;
        color: #f5f5f5;
        font-weight: 700;
        align-self: stretch;
        border: 2px solid var(--clr-secondary);
        border-radius: 8px;
        background: var(--clr-secondary);
        box-shadow: inset 0 0 0 0 var(--clr-secondary);
        margin-left: 0.8rem;
    }
    .navbar-hamburger-wrap {
        margin-left: 0.8rem !important;
    }
}
@media only screen and (min-width: 480px) and (max-width: 576px) {
    .why-choose-spacing {
        padding-top: 28rem;
    }
}

@media only screen and (min-width: 576px) and (max-width: 768px) {
    .why-choose-spacing {
        padding-top: 14rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .why-choose-spacing {
        padding-top: 8rem;
    }
}

@media only screen and (min-width: 1400px) {
    .why-choose-spacing {
        padding-top: 3.8rem;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .testimonials-content {
        width: 80%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    .testimonials-title h2 {
        font-size: 28px;
        line-height: 35px;
        text-align: left;
    }
    .testimonials-icons {
        bottom: -5px;
        right: 10px;
    }
    .nav-item_submenu {
        /* display: none !important; */
    }
    .search-filter-tabs .nav-link {
        font-size: 14px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .search-filter-section {
        position: unset;

        /* transform: translateX(-50%); */
    }
    .flter-arrow p {
        color: var(--clr-black2) !important;
    }
    .why-choose-spacing {
        padding-top: 2.5rem;
    }
    .why-choose-us-section {
        padding-top: 3rem !important;
    }
    .search-filter-section .tab-content {
        margin-bottom: 0 !important;
    }
    .container1 {
        max-width: 100% !important;
    }
    .search-filter-section .home-design-bottom > * {
        margin-top: 1rem !important;
    }

    .search-filter-section .flter-arrow p,
    .search-filter-section .flter-arrow i {
        color: var(--clr-black2);
    }
    .search-filter-section .search-fields .input-group-text,
    .search-filter-section .home-design-bottom .input-group-text,
    .search-filter-section .search-fields .form-control,
    .search-filter-section .tab-content .form-select,
    .search-filter-section .home-design-bottom .form-control {
        background-color: #f9f9f9 !important;
    }

    .show-search-arrow p,
    .show-search-arrow i {
        font-size: 12px;
    }
    .hide-search-arrow p,
    .hide-search-arrow i {
        font-size: 14px;
    }
    .flter-arrow {
        flex-basis: min-content;
        flex-basis: fit-content;
    }
    .search-filter-section .home-design-bottom {
        padding-bottom: 60px;
    }
    .searchbar-tabs {
        justify-content: flex-start;
    }
    #topbar {
        /* padding: 0.2rem 0; */
        /* display: flex;
        gap: 0.5rem; */
        /* flex-direction: column; */
        /* align-items: start;
        justify-content: center; */
    }
    .hero-section .carousel-indicators {
        bottom: 20px;
    }
    .slider-content {
        /* padding: 1rem;
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        width: 100%; */
        position: absolute;
        top: 20% !important;
        width: 100%;
        align-items: center;
        padding-top: 3rem;
        padding-bottom: 23rem;
        justify-content: start;
        padding-left: 2rem;
    }

    .slider-text {
        width: 100%;
        text-align: start !important;
    }
    .slider-content h2 {
        font-size: 20px !important;
        /* font-size: 22px !important; */
        line-height: 30px !important;
        margin-bottom: 0.5rem;
    }
    .slider-content h1 {
        margin-bottom: 1rem;
        font-size: 22px;
        font-size: 24px;
        line-height: 30px !important;
    }
    .slider-image {
        height: 230px;
        position: relative;
        overflow: hidden;
    }
    #responsive-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slider-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* object-position: calc(100% - 50px) left; */
    }
    .slider-content p {
        display: none;
    }
    .hero-section .carousel-indicators {
        bottom: 10px;
    }
    .slider-button-wrap {
        display: flex;
        gap: 2rem;
        justify-content: flex-start;
    }
    .slider-content a {
        font-size: 14px;
        padding: 5px 10px;
        box-shadow: 5px 3px 10px #04040470;
    }
    /* Hero section end */
    /* .search-filter-section,
    .best-choice-section,
    .why-choose-us-section,
    .popular-display-homes-section,
    .display-homes-section,
    .design-building-section,
    .testimonials-section,
    .footer-top {
        padding: 2rem;
    } */

    /* Mobile Responsive removed after adding container instead of padding */
    /* .newsletter-section {
        min-height: 70vh;

    } */
    .news-wrap {
        padding-bottom: 1rem;
        width: unset;
    }
    .newsletter-section .input-group {
        width: 90%;
    }
    .best-choice-slider-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .slider-content h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .faq-accordion .accordion-body {
        color: #475467;
    }
    .blog-post-stats {
        font-size: 16px;
    }
    .blog-favourites {
        width: 26px;
        height: 26px;
    }
    .blog-favourites i.fa-solid {
        font-size: 12px;
    }
}
@media only screen and (max-width: 380px) {
    .hero-section .carousel-indicators {
        bottom: 3px;
    }
}
@media only screen and (min-width: 400px) {
    .search-filter-tabs .nav-link {
        font-size: 15px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
/* Search Filter Section responsive start-lm */
@media screen and (max-width: 767px) {
    .flter-arrow p {
        padding-left: 1rem;
    }
}
/* Search Filter Section responsive end-lm */
/* Post gallery listing responsive start -lm */

@media screen and (max-width: 1200px) {
}
/* Post gallery listing responsive end -lm */
/* Best choice section responsive */
@media only screen and (min-width: 767px) and (max-width: 990px) {
    .featured-home .aside h2 {
        position: absolute;
        top: 50%;
        transform-origin: 0 0;
        font-size: 30px;
        /* line-height: 68px; */
        line-height: 40px;
        color: #1e1c1c;
        margin-bottom: 0;
        padding-right: 2rem !important;
        transform: rotate(-90deg);
    }
}
@media only screen and (max-width: 767px) {
    .featured-home .aside h2 {
        position: absolute;
        top: 50%;
        transform-origin: 0 0;
        font-size: 30px;
        z-index: 2222;
        /* line-height: 68px; */
        line-height: 40px;
        color: #fff;
        text-shadow: 2px 2px #1e1c1c;
        margin-bottom: 0;
        padding-right: 2rem !important;
        transform: rotate(-90deg);
    }
}
/* Best choice section responsive start -lm */
@media screen and (max-width: 992px) {
    .nav-last {
        margin-left: auto;
        margin-right: 0;
    }
    .best-choice-slider-header-title {
        display: inline-block;
        /* line-height: 1px; */
        line-height: 0.2;
    }
    .best-choice-slider-header-title h1 {
        line-height: 1;
    }
    .best-choice-slider-header-title img {
        padding-bottom: 1.2rem;
    }
    .featured-home-desc-top h2 {
        font-size: 26px !important;
    }
    .best-choice-slider p {
    }
    best-choice-slider .features-icons img {
    }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .nav-item_submenu_item_img-wrap img {
        /* height: 60px; */
    }
}
/* Best choice section responsive end -lm */
@media screen and (max-width: 1200px) {
    /* Why Choose us section responsive start-lm */
    .why-us-content-title {
        display: inline-block;
        line-height: 0.2;
    }
    .why-us-content-title h1 {
        line-height: 1;
    }
    /* Why Choose us section responsive end-lm */
    .topbar-align {
        column-gap: 10rem;
    }
}
/* mobile view css end */
/* ipad, tablets screen css */
@media only screen and (min-width: 481px) and (max-width: 768px) {
}
/* ipad, tablets screen css ends */
/* Display homes slider responsive css start */
@media screen and (min-width: 992px) {
    .inclusion-commparison-width {
        width: 60%;
        margin-right: auto;
        margin-left: auto;
    }
    .floor-plan-sidebar-wrapper {
        background: #f4f4f4;
        border-radius: 4px;
        margin-left: 45px;
    }
}
@media screen and (min-width: 1200px) {
    .home-design-bottom > div:first-child {
        width: 25%;
    }
    .home-design-bottom > div:not(:first-child):not(:last-child) {
        width: 13.5%;
    }
    .heading-process {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 1400px) {
    .home-design-bottom > div:first-child {
        width: 23%;
    }
    .home-design-bottom > div:not(:first-child):not(:last-child) {
        width: 15%;
    }
    #myTabContent .home-design-bottom > div:first-child {
        width: 22.6%;
    }
    #myTabContent .home-design-bottom > div:not(:first-child):not(:last-child) {
        width: 15.1%;
    }
}
@media screen and (max-width: 991px) {
    .topbar-align {
        column-gap: 5rem;
        row-gap: 0.5rem;
    }
    .gallery-slider .slider.slider-for,
    .gallery-slider .slider.slider-nav {
        max-width: 100%;
        float: none;
    }
    .gallery-slider .slider.slider-for {
        padding-right: 0;
    }
    .gallery-slider .slider.slider-nav {
        height: auto;
    }
    .gallery-slider .slider-banner-image {
        height: 500px;
    }
    .gallery-slider .slider.slider-nav.thumb-image {
        padding: 10px 30px 0;
    }
    .gallery-slider .slider-nav .slick-slide span {
        padding: 5px 0;
    }
    .gallery-slider .slick-arrow {
        padding: 0;
        width: 30px;
        height: 30px;
        top: 50%;
        bottom: 0;
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -moz-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg);
    }
    .gallery-slider .slick-prev {
        left: 0;
        right: unset;
    }
    .gallery-slider .slick-next {
        left: unset;
        right: 0;
        background-color: transparent;
    }
    .tia-global-detail-banner .car-slider-desc {
        max-width: 340px;
    }
    .gallery-slider .bid-tag {
        padding: 10px 0 15px;
    }
    .gallery-slider .slider.slider-nav.thumb-image {
        white-space: nowrap;
    }
    .gallery-slider .thumbnail-image.slick-slide {
        padding: 0px 5px;
        min-width: 75px;
        display: inline-block;
        float: none;
    }

    .aside-blog-title {
        flex-wrap: wrap;
    }
}

.my-wishlist {
    color: #ec1266 !important;
}

@media screen and (max-width: 767px) {
    .gallery-slider .slider-banner-image {
        height: 400px;
    }
    .gallery-slider .slider.slider-nav.thumb-image {
        padding: 0px 20px 0;
        margin: 10px 0px 0;
    }
    .gallery-slider .slider-nav .slick-slide.thumbnail-image .thumbImg {
        max-width: 140px;
        height: 80px;
    }
    .gallery-slider .slick-prev.slick-arrow {
        background-position: center 10px;
    }
    .gallery-slider .slick-next.slick-arrow {
        background-position: center 10px, center;
    }
    .gallery-slider .slider-nav .slick-slide span {
        font-size: 12px;
        white-space: normal;
    }
}

@media screen and (max-width: 580px) {
    .gallery-slider .slider-banner-image {
        height: 340px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-slider .slider-banner-image {
        height: 280px;
    }
}
@media screen and (min-width: 576px) {
    .modal-width {
        max-width: 380px;
    }
}
/* Display homes slider responsive css end */

@media screen and (max-width: 576px) {
    .nav-item {
        position: relative;
    }
    .nav-link {
        z-index: 99;
    }
    .bottom-nav header ul .nav-item_submenu {
        width: 80vw;
    }
    .bottom-nav header ul .nav-item_submenu {
        position: absolute;
        max-width: 100vw;
        /* min-width: max-content; */
        /* background-color: #ffffff; */
        background-color: #f7f7f7;
        /* background-color: transparent !important; */
        box-shadow: 0 20px 45px #00000020;
        margin-top: -50px;
        /* opacity: 0; */
        display: none;
        /* nav hover test */
        /* display: block; */
        top: 0px;
        right: 0px;
        transform: translateX(-25%) !important;
        z-index: 999999;
        text-decoration: none;
        list-style: none;
        transition: all ease 0.5s;
        transform: translateY(25px);
    }
}
@media screen and (max-width: 572px) {
    .home-design-bottom > div {
        border-left: none !important;
    }
}
@media screen and (min-width: 572px) and (max-width: 762px) {
    .home-design-bottom > div:nth-child(3) {
        border-left: none !important;
    }
}
.sticky-position {
    position: sticky !important;
}
@media only screen and (min-width: 992px) {
    /* .bottom-nav {
        --clr-nav-hamburger: var(--clr-secondary) !important;
    } */
    .why-choose-spacing {
        padding-top: 7rem;
    }
    .custom-gutter-x-100 {
        --bs-gutter-x: 100px;
    }
    .btn-modal-primary {
        margin-left: 2rem;
    }
}
@media (min-width: 955px) and (max-width: 1400px) {
    .hero-section .carousel-indicators {
        bottom: 10px;
    }
}
@media (min-width: 992px) and (max-width: 1052px) {
    .hero-section .carousel-indicators {
        bottom: 10px;
    }
    .slider-text {
        margin-top: 1rem;
    }
}
@media (max-width: 372px) {
    .slider-content a {
        font-size: 12px;
    }
    .slider-button-wrap {
        gap: 1rem;
    }
}
@media (max-width: 950px) {
    .slider-heading-arrow {
        display: none;
    }
}
@media (min-width: 1024px) {
    .modal-group .modal-dialog {
        max-width: 680px !important;
    }
    .modal-group .modal-body {
        padding: 3rem !important;
    }
}
@media (max-width: 512px) {
    .our-services-section-description {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    .flex-reverse-col {
        flex-direction: column-reverse;
    }
    .contact-team-form-wrap h3 {
        color: #0b0608;
        font-family: Poppins;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-top: 40px;
        margin-bottom: 30px;
        text-transform: uppercase;
    }
    .visa-img-wrap1 {
        margin-top: 1.5rem;
    }
}
