/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

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

body {
    font-family: "Public Sans", sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

:root {
    --primary: #6F4D38;
    --secondary: #212121;
}

/* Example button style */
.btn {
    padding: 10px 16px;
}

.primary-btn {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50px;
    box-shadow: unset;
    transition: 0.2s;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.primary-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.secondary-btn {
    color: var(--secondary);
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    box-shadow: unset;
    transition: 0.2s;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: #f2f2f2;
}

.form-control {
    font-size: 15px;
    padding: 10px;
    box-shadow: none !important;
    outline: none !important;
}

.form-control::placeholder {
    color: #c8c8c8;
}

/* Preloader */
.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--primary);
    z-index: 99999999999999;
}

.loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: #fff;
}

.loader-wrap .loader-wrap-heading .load-text {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    z-index: 20;
}

.load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
    color: var(--primary);
}

.load-text span:nth-child(1) {
    animation-delay: 0s;
}

.load-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
    animation-delay: 0.6s;
}

.load-text span:nth-child(8) {
    animation-delay: 0.7s;
}

.load-text span:nth-child(9) {
    animation-delay: 0.8s;
}

.load-text span:nth-child(10) {
    animation-delay: 0.9s;
}

.load-text span:nth-child(11) {
    animation-delay: 1.0s;
}

.load-text span:nth-child(12) {
    animation-delay: 1.1s;
}

.load-text span:nth-child(13) {
    animation-delay: 1.2s;
}


@-webkit-keyframes loading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ------------ Header ------------ */

.header_sec {
    width: 100%;
    background: linear-gradient(180deg, #0000003b, #ffffff00);
    position: relative;
    z-index: 9999;
}

.sticky_top {
    position: sticky !important;
    top: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #f1f1f1 !important;
    z-index: 99999;
}

.sticky_top .nav-link {
    color: #000 !important;
}

.header_sec .nav-link {
    font-size: 17px;
    color: #000000;
}

.header_sec .nav-link {
    color: #ffffff;
}

.header_sec .nav-item {
    padding: 0px 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ffffff !important;
}

.sticky_top .nav-link.active,
.sticky_top .navbar-nav .nav-link.show {
    color: #000 !important;
}

.header_sec .navbar-nav .dropdown-menu {
    border: none;
    width: 256px;
    padding: 16px 26px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header_sec .dropdown-item {
    font-size: 15px;
    font-weight: 400;
    background: transparent !important;
    padding: 6px 0px;
    color: #000000 !important;
    position: relative;
    display: inline-block;
    width: auto;
}

.header_sec .dropdown-item:after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 8px;
    width: 0%;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease-in-out;
}

.header_sec .dropdown-item:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.header_sec .dropdown-item:hover {
    color: var(--primary) !important;
}

.header_sec .nav-link i {
    font-size: 14px;
}

.btn.btn_nav {
    width: 45px;
    height: 45px;
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0 !important;
    border-radius: 50px !important;
    border: 0 !important;
}

.btn.btn_nav svg {
    width: 20px;
}

.offvanas_menu {
    width: 450px !important;
    background: #212121;
    padding: 30px;
    z-index: 999999;
}

.offcanvas-backdrop {
    z-index: 99999;
}

#portfolio {
    scroll-margin-top: 140px;
    background: #6f4d38b8;
}

.offvanas_menu ul li a {
    color: #fff;
    font-size: 18px;
    padding: 10px 0px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.offcanvas_nav li a:after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 11px;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

.offcanvas_nav li a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

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

.btn_close {
    position: absolute;
    top: 0px;
    right: 0px;
    border: gainsboro;
    background: transparent;
    color: #fff;
    font-size: 17px;
}

.social_item ul li {
    display: inline-block;
    padding: 0px 10px;
}

.social_item ul li a {
    font-size: 18px;
}

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

/* Mega Menu Styling */
.mega-dropdown .dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100%;
}

.mega-menu h5 {
    font-size: 18px;
    text-decoration: underline;
    z-index: 1;
    position: relative;
}

.image-layer {
    min-height: 386px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.loaded:before {
    background: linear-gradient(360deg, transparent, #078a8c88);
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
}

.mega-menu .dropdown-item {
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    width: auto;
    padding: 5px 0px;
}

.mega-menu .dropdown-item:after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 8px;
    width: 0%;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease-in-out;
}

.mega-menu .dropdown-item:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.mega-menu .dropdown-item:hover {
    background: transparent;
    color: var(--primary);
}

/* ------------ Banner ------------ */

.banner_sec {
    background-position: center center;
    background-size: cover;
    margin-top: -102px;
}

.banner_sec .social_icon {
    position: absolute;
    bottom: 32px;
}

.banner_sec .social_icon ul li a {
    width: 40px;
    height: 40px;
}

.banner_content h2 {
    text-transform: none;
    letter-spacing: -0.03em;
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 26px;
}

.banner_content p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1
}

#bg-video::-webkit-media-controls {
    display: none !important
}

.video-overlay {
    width: 90%;
}

.banner_content {
    position: absolute;
    background-color: rgba(35, 45, 57, .8);
    top: 0;
    left: 0;
    bottom: 7px;
    width: 100%;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.breadcrumb_sec h2 {
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb_sec {
    height: 100vh;
}

.banner_sec.breadcrumb_sec .banner_content {
    height: 100% !important;
}

.marquee_section {
    font-size: 65px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    padding: 20px 0;
    overflow: hidden;
    z-index: 5;
    position: relative;
    margin-top: -10px;
}

/* 3D TEXT EFFECT */
.marquee_section marquee {
    display: inline-block;
    text-shadow:
        2px 2px 0px #00000033,
        4px 4px 0px #00000022,
        6px 6px 0px #00000011;
}


/* ------------ About Us ------------ */

.sec_sub {
    letter-spacing: .05em;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.section_heading p {
    font-size: 20px;
}

.sec_title {
    text-transform: none;
    letter-spacing: -0.03em;
    font-size: 36px;
    font-weight: 600;
    color: #000000;
}

.about_content p {
    font-size: 20px;
    font-weight: 300;
    color: #676767;
}

.secondary_btn {
    border: 1px solid var(--primary);
    padding: 15px 40px;
    display: inline-block;
    border-radius: 50px;
    color: var(--primary);
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.secondary_btn:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: var(--primary);
    color: #fff;
}

.btn_line {
    height: 1px;
    width: 25px;
    position: absolute;
    content: "";
    left: 22px;
    display: block;
    top: 50%;
    transform-origin: left center;
    background-color: rgb(0, 0, 0);
    transform: translateY(calc(-50% + 0.5px)) translateZ(0px);
}

.secondary_btn:hover .btn_line {
    animation: 0.45s cubic-bezier(0.23, 0.46, 0.4, 1) 0s 1 normal forwards running ctaArrowLineEnd;
}



.nectar-cta[data-style="arrow-animation"] svg {
    position: absolute;
    left: 25px;
    top: 50%;
    width: 6px;
}

/* ------------ selection  ------------ */

.selection_sec {
    background-position: left top;
    background-repeat: no-repeat;
    background-image: url('../images/floorplan-bg.svg');
}

.selection_sec .nav-pills .nav-link {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    border-radius: 0px !important;
    margin: 5px 12px;
    padding: 6px 0px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.selection_sec .nav-pills .nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}


.selection_sec .nav-pills .nav-link.active {
    border-color: var(--primary);
    background: transparent;
}

.selection_content h3 {
    font-size: 32px;
    color: #212121;
}

.selection_content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
}

.selection_content .link a {
    font-size: 16px;
    color: #212121;
    text-decoration: underline !important;
}

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

.service_item .content h3 a {
    font-size: 22px;
    position: relative;
    font-weight: 600;
    color: #212121;
    display: inline-block;
}

.service_item .content h3 a:after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0px;
    width: 0%;
    height: 1px;
    background-color: #212121;
    transition: width 0.3s ease-in-out;
}

.service_item:hover .content a:after {
    width: 100%;
    right: auto;
    left: 0;
}

.service_item .content p {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.box-bg {
    height: 320px;
    width: 100%;
    background-size: cover;
    z-index: 1;
    background-position: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease;
}

.service_sec .swiper-button-next,
.service_sec .swiper-button-prev {
    background: #fff;
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: all 0.3s ease;
}

.service_sec .swiper-button-next:after,
.service_sec .swiper-button-prev:after {
    font-size: 20px;
    color: #000;
}

.ServiceSwiper:hover .swiper-button-next,
.ServiceSwiper:hover .swiper-button-prev {
    opacity: 1;
}


.comparison {
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}

.comparison figure {
    position: absolute;
    background-size: cover;
    font-size: 0;
    width: 100%;
    background-position: center;
    height: 100%;
    background-repeat: no-repeat;
    margin: 0;
}

.comparison_divisor {
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0;
    height: 100%;
}

.comparison_divisor::before,
.comparison_divisor::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}

.comparison_divisor::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}

.comparison_divisor::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

.comparison_handle {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

.comparison_handle::before,
.comparison_handle::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.comparison_handle::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

.comparison_handle::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

input.comparison_slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background-color: transparent;
    width: calc(100% + 50px);
    z-index: 2;
}

input.comparison_slider:focus,
input.comparison_slider:active {
    border: none;
    outline: none;
}

input.comparison_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid white;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

input.comparison_slider::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 100%;
    background-color: transparent;
    position: relative;
    outline: none;
}

.goog-te-gadget-simple {
    padding: 8px 8px !important;
    border-radius: 50px;
}

/* ------------ BLog ------------ */

.blog_item h5 a {
    font-size: 20px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
}

.blog_item h6 {
    font-size: 18px;
    color: #888;
}

.blog_item p {
    margin: 0;
    font-size: 18px;
    color: #3b3b3b;
}

.quote_card_mod {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin: auto;
    border: 1px solid #e2e6eb;
}

.quote_img_mod {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.quote_content_mod h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c2635;
}

.quote_content_mod p {
    font-size: 16px;
    color: #6c7a89;
}

.quote_content_mod .form-control {
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #cdd4dd;
    transition: 0.3s ease;
}

.quote_content_mod .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 .15rem rgba(37, 99, 235, .2);
}


/* ------------ Newsletter ------------ */

.newsletter_form {
    max-width: 800px;
}

.newsletter_sec {
    background-position: left top;
    background-repeat: no-repeat;
    background-color: rgba(171, 184, 195, 0.2);
    background-image: url('../images/floorplan-bg.svg');
}

.newsletter_form .form-control {
    background: #f7f7f7;
    border: 1px solid #c4c4c4;
    border-radius: 0px;
    padding: 14px 12px;
    font-size: 16px;
}

.wpb_wrapper p {
    font-size: 18px;
}

/* ------------ Footer ------------ */

.footer_menu ul li {
    display: inline-block;
}

.footer_menu ul li a {
    font-size: 18px;
    color: #585858;
    padding: 6px 12px;
    display: inline-block;
    position: relative;
}

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

/* customer page */

.customer_card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 22px;
}

.customer_card p {
    font-size: 18px;
}

.accordion-item {
    border-bottom: 1px solid #ddd !important;
    border: none;
}

.accordion-item button {
    padding: 15px 0px;
    font-size: 21px;
    font-weight: 700;
    color: #212121;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.accordion-body {
    padding: 16px 0px 28px 0px;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
}

.accordion-item {
    border: 1px solid #eeeeee !important;
    margin-bottom: 13px;
    padding: 0px 20px;
    border-radius: 3px !important;
}

.single_blog p {
    font-size: 20px;
}

.howitworks__v1 .arch-line {
    position: absolute;
    top: -3px;
    width: 150px;
    right: 0;
    left: calc(100% + 24px);
    transform: translateX(-12%) rotate(16deg);
}

.interior_sec {
    background: var(--primary);
    padding: 50px 0px;
}

.step-number {
    font-size: 18px;
    color: var(--primary);
}

.step-card {
    border: 1px solid #EEE;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
}

.step-card h3 {
    font-size: 21px !important;
    font-weight: 600;
    color: #212121;
}

.step-card p {
    margin: 0;
    font-size: 18px;
}

.choose-box {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.choose-box:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-8px);
}

.choose-box:hover p {
    color: #fff !important;
}

.how_design_work {
    border: 1px solid #e4e4e4;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.how_design_work img {
    border: 1px solid #f2f2f2;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    padding: 1px;
    background: #fafafa;
}

.how_design_work:hover {
    -webkit-transform: translateY(-10px);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .08);
    transform: translateY(-10px) !important;
}

.dark_btn {
    border: 1px solid #000;
    font-size: 15px;
    padding: 11px 20px;
    border-radius: 6px;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dark_btn:hover {
    background: #000;
    color: #fff;
}

.social_icon ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social_icon ul li a {
    font-size: 17px;
    color: #fff;
    width: 32px;
    height: 32px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease;
}


.social_icon ul li a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.floating_icons {
    position: fixed;
    top: 0;
    right: 30px;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.floating_icons.social_icon ul li a {
    width: 40px;
    height: 40px;
}

.mission_sec {
    background: #f5f5f5;
}

.ourWork .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.ourWork .swiper {
    pointer-events: none;
}