/*
Theme Name: Midland Floor Painting  Company Theme
Theme URI: https://midlandfloorpainting.com/
Author: Mega Web Link
Author URI: https://megaweblink.com.np/
Description: A custom WordPress theme for a Midland Floor Painting  Company website.
Version: 1.0
License: GNU General Public License v2 or later
*/


/* Custom CSS start here */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6701;
    /* --primary-color: #DE0025; */
    --secondary-color: #FFC801;
    --white-color: #FFFFFF;
    --light-white: #D5D5D5;
    --grey-color: #555555;

    --neutral-black1-font: #474747;
    --black-font: #000000;

    --top-header-bg: #FFF3C6;
    --last_banner-bg: #FFF7CF;
    --footer-bg: #130F00;

    --input-border: #CFCFCF;
}

.fs-20 {
    font-size: 20px;
}

.fs-14 {
    font-size: 14px;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}


h1 {
    font-size: clamp(24px, 7vw, 70px);
    font-weight: 800;
}

.second_heading {
    font-size: clamp(24px, 5vw, 44px);
    font-weight: 800;
}

.third_heading {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
}

.font24 {
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

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

body {
    font-family: "Raleway", sans-serif;
    color: var(--black-font);
    background: var(--white-color);
}

.primary-text {
    color: var(--primary-color);
}

.secondary-text {
    color: var(--secondary-color);
}

.white-text {
    color: var(--white-color);
}


/* ++++++++++++++++++ GET A QUOTE POPUP SECTION STARTS FOR HERE ++++++++ */

.get_quote_popup_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.get_quote_popup_section.active {
    width: 100%;
    height: 100vh;
    visibility: visible;
}

.quote_heading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
}

.quote_popup {
    background: var(--white-color);
    padding: 25px 45px;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    width: 95%;
    overflow-y: scroll;
}

.form-control,
.form-select,
textarea {
    border: 1px solid var(--input-border);
    outline: none;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--input-border);
}

.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder {
    color: var(--grey-color) !important;
    font-size: 16px;
    font-weight: 400;
}

textarea {
    padding: 5px;
    width: 100%;
    border-radius: 6px;
}

.form-select {
    /* Set appearance for consistent styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url('assets/images/icons/select_arrow.svg');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 15px;
    padding-right: 2.5rem;
}

#quote_close {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    margin-left: auto;
}

#quote_close i {
    font-size: 25px;
    color: var(--input-border);
    cursor: pointer;
}

.popupQuote {
    width: max-content;
    margin: auto;
}

/* ++++++++++++++++++ GET A QUOTE POPUP SECTION ENDS FORM HERE ++++++++ */


/* ++++++++++++++++++++++++++ HOME PAGE CSS STARTS FORM HERE ++++++++++++++++++++++ */
.top_header_container {
    background: var(--top-header-bg);
    padding: 12px 0;
}

.w-20 {
    width: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-20 {
    height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_header {
    color: var(--neutral-black1-font);
    font-weight: 500;
    /* font-size: 14px; */
    font-size: clamp(12px, 1vw, 16px);
}

.top_header_social_icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top_header_social_icons .icons {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.gradient_button {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 24px;
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.logo {
    max-width: 160px;
    width: 100%;
}

/* .nav_bar_large {
    padding: 16px 0;
} */

.nav_bar_large .navbar-nav .nav-item a {
    color: var(--neutral-black1-font);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    position: relative;
    padding: 0;
    transition: all .2s ease-in-out;
}

.nav_bar_large .navbar-nav .nav-item a:hover {
    color: var(--primary-color);
}

.nav_bar_large .navbar-nav .nav-item a.active {
    border-bottom: 2.2px solid var(--primary-color);
    width: 50%;
}

.nav_bar_large .navbar-nav .nav-item a.active {
    color: var(--primary-color);
}


.has-dropdown {
    position: relative;
}

/* .has-dropdown .dropdown {
    position: absolute;
    top: 72px;
    left: 0;
    min-width: 280px;
    background: var(--white-color);
    z-index: 1000;
    list-style: none;
    display: none;
    width: max-content;
} */
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
	
	
	

	
	
	
/* new  */
@media (min-width: 992px) {
	.navbar-expand-lg .offcanvas .offcanvas-body{
		align-items: center;
	}
    .has-dropdown .dropdown {
        position: absolute;
        top: 54px;
        left: 0;
        min-width: 280px;
        background: var(--white-color);
        z-index: 1000;
        list-style: none;
        transform: translateY(10px);
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease-in-out;
        width: max-content;
    }

    .nested-dropdown {
        position: absolute;
        background: #F5F5F5;
        left: 100%;
        width: max-content;
        top: 0;
        /* display: none; */
        right: 0;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-20px);
        transition: all .5s ease-in-out;
    }

    .nav_bar_large .navbar-nav .nav-item a {
        padding: 16px 0;
    }

    .has-dropdown:hover>.dropdown {
        transform: translateY(0px);
        visibility: visible;
        opacity: 1;
    }

    .has-dropdown .dropdown li.position-relative:hover>.nested-dropdown {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
}
/* new  */
	
	
.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--neutral-black1-font);
    text-decoration: none;
}
.dropdown_padding li a{
    padding: 15px 24px !important;
    cursor: pointer;
    color: var(--neutral-black1-font) !important;
}
.dropdown_padding li a.activeRed{
    color: var(--white-color) !important;
    background: var(--primary-color);
}
.dropdown_padding li a:hover{
   color: var(--white-color) !important;
   background: var(--primary-color);
}
/* .nested-dropdown{
    position: absolute;
    background: #F5F5F5;
    left: 100%;
    width: max-content;
    top: 0;
    display: none;
} */
.nested-dropdown.open{
    display: block;
}

.menu_text{
    font-size: 18px;
    font-weight: 500;
    color: var(--black-font);
}
.offcanvas-header{
    background: #FFE7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}
.custom-close-btn{
    background: none;
}
.custom-close-btn .fa-xmark{
    font-size: 25px;
    background: none;
}

header {
    height: 160px;
}

.navbar-toggler i {
    font-size: 35px;
    color: var(--black-font);
}

.navbar-toggler {
    border: none;
    box-shadow: none;
}

.navbar-toggler:focus:not(:focus-visible) {
    box-shadow: none !important;
    outline: none;
}
/* Normal position at page load */
#navbar {
    position: relative;
    width: 100%;
    transition: transform 0.4s ease, top 0.4s ease;
    z-index: 9999;
}

/* Fixed state */
#navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(20px);    
    z-index: 1000;   
	padding: 0;
}


/* Hidden when scrolling down */
#navbar.hide {
    transform: translateY(-100%);
}

/* Visible when scrolling up */
#navbar.show {
    transform: translateY(0);
}


/* home slider  */
.home_slider_section {
    height: calc(100vh - 160px);
    overflow: hidden;
}

.home_slider_container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home_slider_container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home_slider_container .black_overlay {
    background: #0000005C;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero_slider_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    width: 95%;

}

.hero_slider_contentInividual {
    margin-top: -200px;
    z-index: 5;
    position: relative;
}

.slider_heading {
    color: var(--white-color);
    text-align: center;
    text-transform: capitalize;
}

.Ireland {
    color: var(--secondary-color);
    position: relative;
}

.Ireland::before {
    content: '';
    background: url('assets/images/icons/shape1.svg');
    height: 12px;
    background-size: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-repeat: no-repeat;
}

.blog_udnderlien {
    color: var(--secondary-color);
    position: relative;
}

.blog_udnderlien::before {
    content: '';
    background: url('assets/images/homepage/blog_underline.svg');
    height: 12px;
    width: 100%;
    background-size: 100% 100%;
    position: absolute;
    background-size: 100%;
    bottom: -12px;
    left: 0;
    background-repeat: no-repeat;
}

.Flooring {
    color: var(--secondary-color);
    position: relative;
}

.Flooring::after {
    content: '';
    background: url('assets/images/icons/shape1.svg');
    height: 12px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    background-size: 100%;
    bottom: -10px;
    left: 5px;
    background-repeat: no-repeat;
}

.video {
    color: var(--secondary-color);
    position: relative;
}

.video::after {
    content: '';
    background: url('assets/images/icons/video_underline.svg');
    height: 16px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    bottom: -10px;
    background-size: 100%;
    left: 0px;
    background-repeat: no-repeat;
}

.before_after {
    color: var(--secondary-color);
    position: relative;
}

.before_after::after {
    content: '';
    background: url('assets/images/icons/before_after_underline.svg');
    height: 12px;
    width: 100%;
    background-size: 100%;
    position: absolute;
    bottom: -10px;
    left: 0px;
    background-repeat: no-repeat;
}

.slider_second_content {
    max-width: 600px;
    margin: auto;
    width: 100%;
    text-align: center;
}

.home_slider_buttons .swiper-button-nextHome,
.home_slider_buttons .swiper-button-prevHome {
    position: absolute;
}


.home_slider_buttons .swiper-button-nextHome,
.home_slider_buttons .swiper-button-prevHome {
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    border: 1px solid var(--white-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;

}

.home_slider_buttons .swiper-button-nextHome {
    right: 0px;
    bottom: 30px;
}

.home_slider_buttons .swiper-button-prevHome {
    right: 60px;
    bottom: 30px;
}


.home_slider_buttons .swiper-button-nextHome::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--white-color) !important;
    font-size: 25px;
}

.home_slider_buttons .swiper-button-prevHome::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--white-color) !important;
    font-size: 25px;
}

.swiper-pagination-homeSlider {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 2;
}

.home_slider_pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
}

/* Customizing the pagination bullets */
.swiper-pagination-homeSlider .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    opacity: 1;
    margin: 0 6px;
    border-radius: 50%;
    background-color: white;
    border: 10px solid rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

/* Active bullet */
.swiper-pagination-homeSlider .swiper-pagination-bullet-active {
    background-color: transparent;
    border: 9px solid white;
}

/* --- about company  */
.about_home_Section {
    background: #ffff;
    overflow-x: hidden;
}

.about_home_section_left {
    padding: 100px 0;
}

.about_leftHome_image {
    width: 45%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.about_leftHome_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_first_popup{
    height: 100%;
    width: 100%;
    display: block;
}
.redPlayIconHome{
    position: absolute;
    height: 120px !important;
    width: 120px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}


.about_home_contents p {
    color: var(--neutral-black1-font);
    font-weight: 400;
    font-size: clamp(14px, 2vw, 18px);
}

/* ---- Industria Flooring section  */
.industrial_flooring_section {
    padding: 84px 0;
    overflow-x: hidden;
}
.mySwiperFloor{
    width: 85%;
    overflow: visible;
}
.mySwiperFloor .swiper-wrapper{
    overflow: visible;
}
.mySwiperFloor .swiper-wrapper .swiper-slide{
    overflow: visible;
}


.commonSwiperPagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    opacity: 1;
    margin: 0 6px;
    border-radius: 50%;
    background-color: white;
    border: 8px solid #00000026;
    transition: background-color 0.3s ease;
}

/* Active bullet */
.commonSwiperPagination .swiper-pagination-bullet-active {
    background-color: transparent;
    border: 8px solid var(--primary-color);
}

.commonSwiperPagination {
    padding: 40px 0 60px 0;
}

.flooring_imge_contaienr {
    /* max-width: 450px; */
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.flooring_imge_contaienr img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.flooring_slider_buttons .swiper-button-nextFlooring,
.sealing_slider_buttons .swiper-button-nextSealing,
.before_after_slider_buttons .swiper-button-nextSealing,
.safty_slider_buttons .swiper-button-nextSealing,
.Dustproofing_slider_buttons .swiper-button-nextSealing,
.flooring_slider_buttons .swiper-button-prevFlooring,
.Dustproofing_slider_buttons .swiper-button-prevSealing,
.before_after_slider_buttons .swiper-button-prevSealing,
.safty_slider_buttons .swiper-button-prevSealing,
.sealing_slider_buttons .swiper-button-prevSealing {
    position: absolute;
    cursor: pointer;
}


.flooring_slider_buttons .swiper-button-nextFlooring,
.sealing_slider_buttons .swiper-button-nextSealing,
.before_after_slider_buttons .swiper-button-nextSealing,
.Dustproofing_slider_buttons .swiper-button-nextSealing,
.safty_slider_buttons .swiper-button-nextSealing,
.sealing_slider_buttons .swiper-button-prevSealing,
.before_after_slider_buttons .swiper-button-prevSealing,
.safty_slider_buttons .swiper-button-prevSealing,
.Dustproofing_slider_buttons .swiper-button-prevSealing,
.flooring_slider_buttons .swiper-button-prevFlooring {
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    border: 1px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;

}

.Dustproofing_slider_buttons .swiper-button-nextSealing,
.safty_slider_buttons .swiper-button-nextSealing,
.before_after_slider_buttons .swiper-button-nextSealing,
.sealing_slider_buttons .swiper-button-nextSealing,
.flooring_slider_buttons .swiper-button-nextFlooring {
    right: 0px;
}

.Dustproofing_slider_buttons .swiper-button-prevSealing,
.before_after_slider_buttons .swiper-button-prevSealing,
.safty_slider_buttons .swiper-button-prevSealing,
.sealing_slider_buttons .swiper-button-prevSealing,
.flooring_slider_buttons .swiper-button-prevFlooring {
    right: 60px;
}


.Dustproofing_slider_buttons .swiper-button-nextSealing::after,
.before_after_slider_buttons .swiper-button-nextSealing::after,
.safty_slider_buttons .swiper-button-nextSealing::after,
.sealing_slider_buttons .swiper-button-nextSealing::after,
.flooring_slider_buttons .swiper-button-nextFlooring::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 20px;
}

.Dustproofing_slider_buttons .swiper-button-prevSealing::after,
.before_after_slider_buttons .swiper-button-prevSealing::after,
.safty_slider_buttons .swiper-button-prevSealing::after,
.sealing_slider_buttons .swiper-button-prevSealing::after,
.flooring_slider_buttons .swiper-button-prevFlooring::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 20px;
}

.before_after_slider_buttons,
.Dustproofing_slider_buttons,
.sealing_slider_buttons,
.safty_slider_buttons,
.flooring_slider_buttons {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 2;
}

.viewAllBtn {
    font-weight: 500;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--primary-color);
    width: max-content;
    display: flex;
    margin: auto;
    margin-top: 30px;
    position: relative;
}

.viewAllBtn::before {
    position: absolute;
    content: '';
    background: var(--primary-color);
    height: 2px;
    width: 40%;
    border-radius: 2px;
    bottom: 0;
    left: 0;
}

.concrete_sealing_section {
    padding-bottom: 84px;
}

.play_video_Section {
    background: url('assets/images/homepage/play_vide.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 620px;
}

.play_icon_Orange {
    height: 88px;
    width: 88px;
    overflow: hidden;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play_icon_Orange img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.small_image {
    width: 124px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    vertical-align: middle;
    display: inline-flex;
}

.small_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.imge_ttext {
    color: var(--neutral-black1-font);
    text-align: center;
    line-height: 1.8;
    font-weight: 500;
}

.clinent_satisfaction_Section {
    padding: 84px 0;
	margin: 42px 0;
}

.fist_absolute {
    position: absolute;
    left: 20px;
}

.secondAbosulute {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.third_absoulte {
    position: absolute;
    top: 20px;
    right: 15%;
}

.client_data {
    background: var(--secondary-color);
    padding: 44px 32px;
    border-radius: 12px;
}

.client_data_bg2 {
    background: #F5F5F5;
    padding: 44px 32px;
    border-radius: 12px;
}

.heading2k {
    font-size: clamp(44px, 15vh, 98px);
    font-weight: 700;
    color: var(--white-color);
    /* flex: 1; */
}

.client_data_bg2 .heading2k {
    font-size: clamp(44px, 15vh, 98px);
    font-weight: 700;
    color: var(--secondary-color);
}

.flooring_headingF p:nth-child(1) {
    color: var(--white-color);
    font-size: clamp(20px, 4vh, 24px);
    font-weight: 700;
}

.flooring_headingF p:nth-child(2) {
    color: var(--white-color);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
}

.client_data_bg2 .flooring_headingF p:nth-child(1) {
    color: var(--black-font);
    font-size: clamp(20px, 4vh, 24px);
    font-weight: 700;
}

.client_data_bg2 .flooring_headingF p:nth-child(2) {
    color: var(--black-font);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
}

.before_after_section {
    background: #FFFBEB;
    padding: 84px 0;
}

.before_after_image_container {
    height: 400px;
    overflow: hidden;
    width: 100%;
}

.roundedImge {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.roundedImge1 {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.before_after_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.contact_bg_section {
    height: 620px;
    width: 100%;
    background: url('assets/images/homepage/contact_bg.jpeg');
}

.client_image {
    height: 65px;
    width: 65px;
    overflow: hidden;
    border-radius: 50%;
}

.client_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client_name {
    font-size: 18px;
    font-weight: 700;
}

.client_posiion {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-color);
}

.stars i {
    color: #FFBB00;
    font-size: 16px;
}

.client_descripton p {
    font-size: 16px;
    color: #474747;

}

.client_review_container {
    border: 1px solid #C3C3C3;
    border-radius: 8px;
    padding: 32px;
}

.client_profile {
    border-top: 1px solid #CBCBCB;
}

.mySwiperClient .swiper-button-nextClient,
.mySwiperClient .swiper-button-prevClient {
    position: absolute;
}


.mySwiperClient .swiper-button-nextClient,
.mySwiperClient .swiper-button-prevClient {
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    border: 1px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;

}

.mySwiperClient .swiper-button-nextClient {
    right: 32px;
    bottom: 40px;
}

.mySwiperClient .swiper-button-prevClient {
    right: 90px;
    bottom: 40px;
}


.mySwiperClient .swiper-button-nextClient::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 25px;
}

.mySwiperClient .swiper-button-prevClient::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.client_review_contents {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    margin: auto;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0px 4px 35px -2px #0000000F;
}

.clinet_rieview_contact_section {
    margin-bottom: 400px;
}

.inner_padding {
    padding: 64px 125px;

}

.inner_padding_border {
    border-right: 1px solid #E9E9E9;
}

.flooring_imge_contaienr1 {
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.flooring_imge_contaienr1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mySwiperClinetLogos .swiper-slide {
    height: 76px;
    width: 126px;
}

.clientLogo_container {
    height: 76px;
    width: 150px;
    overflow: hidden;
}

.clientLogo_container img {
    aspect-ratio: 3/2;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.home_last_banner {
    margin: 70px 0 100px 0;
}

.home_last_bg {
    background: var(--last_banner-bg);
    border-radius: 16px;
    overflow: hidden;
}

.home_last_left_content {
/*     padding: 100px 44px; */
	    padding:  44px;
}

.last_banner_right_image {
    height: 100%;
    width: 100%;
    background: url('assets/images/homepage/bannerSvgLast.svg');
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
}

.last_banner_right_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.owl-carouselInside .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ++++++++++++++++++++++++++ HOME PAGE CSS STARTS ENDS FORM HERE ++++++++++++++++++++++ */


/* ---------------- FOOTER SECTION STARTS FORM HERE ---------------- */
footer {
    padding: 32px 0;
    background: var(--footer-bg);
    color: var(--light-white);
    color: #D5D5D5;
}

.footer_social_links .social_icons {
    width: 48px;
    height: 48px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.footer_social_links .social_icons {
    font-size: 18px;
}

.footer_quick_link_heading {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: var(--white-color);
    position: relative;
    width: max-content;
}

.footer_quick_link_heading::before {
    position: absolute;
    content: '';
    width: 30%;
    height: 2px;
    background: var(--white-color);
    left: 0;
    bottom: -2px;
    border-radius: 4px;
}

.third_heading1 {
    font-size: 32px;
    font-weight: 700;
}

.last_banner_qoute {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: var(--primary-color);
    width: max-content;
    cursor: pointer;
}

.last_banner_qoute::before {
    position: absolute;
    left: 0;
    width: 30%;
    height: 2px;
    background: var(--primary-color);
    content: '';
    bottom: 0;
}

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

.footer_map iframe {
    width: 100%;
    height: 200px;
    border-radius: 6px;
}


.footer_primary_bg {
    /* background: #DE0025; */
    background: var(--primary-color);
    max-height: 600px;
    padding: 32px 24px;
    border-radius: 16px;
    margin-top: -100px;
}

.c_description {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 20px;
}
.footer_links ul li a{
    transition: all .3s ease-in-out;
}
.footer_links ul li a:hover{
    color: var(--primary-color);
}

/* ---------------- FOOTER SECTION STARTS ENDS FORM HERE  ---------------- */


/* +++++++++ ABOUT PAGE CSS STARTS FORM HERE ++++++++++ */
.about_second {
    padding: 84px 0;
}

.about_second_left {
    height: 650px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.about_second_left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.msg_icon {
    position: absolute;
    top: 10%;
    left: -100px;
}

.about_why_choose_section {
    padding: 84px 0;
    background: #FFFBEB;
}

.choose_name {
    font-weight: 700;
    font-size: clamp(20px, 4vh, 24px);
}

.choose_Des {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-color);
    text-align: center;
}

.choose_icons {
    height: 48px;
    width: 48px;
    overflow: hidden;
}

.choose_icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.choose_height {
    height: 200px;
    width: 100%;
    padding: 25px;
}

.lineChoose {
    position: relative;
}

.lineChoose::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    width: 2px;
    background: linear-gradient(#ffffff, #F2EAC8, #F2EAC8);
}

.lineChoose1 {
    position: relative;
}

.lineChoose1::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    width: 2px;
    background: linear-gradient(#F2EAC8, #F2EAC8, #ffffff);
}

.lineChoosebottom {
    position: relative;
}

.lineChoosebottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    right: 0;
    width: 100%;
    background: linear-gradient(#F2EAC8, #F2EAC8);
}

.lineChoosebottom1 {
    position: relative;
}

.lineChoosebottom1::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    right: 0;
    width: 70%;
    background: linear-gradient(#ffffff, #F2EAC8, #F2EAC8);
}

.lineChoosebottom2 {
    position: relative;
}

.lineChoosebottom2::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
    width: 70%;
    background: linear-gradient(#F2EAC8, #F2EAC8, #ffffff);
}

.recent_projects_Sction {
    padding: 84px 0;
}

.commonSwiperPaginationone {
    padding: 30px 0 0 0;
}

.project_heading_recent {
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 700;
    padding-top: 10px;
}

.owl-dot {
    width: 20px;
    height: 20px;
    opacity: 1;
    margin: 0 6px;
    border-radius: 50%;
    background-color: white;
    border: 8px solid #00000026;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background-color: transparent;
    border: 8px solid var(--primary-color);
}

.owl-item.active.center {
    width: auto !important;
}

.owlContainer .swiper-pagination {
    position: static;
}

.owlcarouselProjects .owl-stage,
.owlcarouselProjects .owl-stage-outer {
    height: 380px ;
}
.flooring_slider_section .owlcarouselProjects .owl-stage,
.flooring_slider_section .owlcarouselProjects .owl-stage-outer {
    height: 350px ;
}

.home_last_left_contentConact {
    padding: 10px 25px;
}

.home_last_left_contentConact .form-control {
    padding: 15px 24px;
    background: var(--white-color);
    border-radius: 8px;
    border: none;
}

.home_last_left_contentConact .form-control::placeholder {
    color: var(--grey-color);
    font-size: 16px;
    font-weight: 500;
}

.home_last_left_contentConact textarea {
    background-color: var(--white-color);
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
}

.home_last_left_contentConact textarea::placeholder {
    font-size: 16px;
    font-weight: 500;
}

.about_page_contact_section {
    margin-bottom: 150px;
}

/* +++++++++ ABOUT PAGE CSS ENDS FROM HERE ++++++++++ */

/* ----- INDIVIDUAL SERVCIE PAGE SECTION STARTS FROM HERE --------- */
.individual_page_home_slider_section {
    padding: 44px 0 20px 0;
}

.individual_slider_imge {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.individual_slider_imge img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mySwiperIndividualServiceContainer {
    position: relative;
}

.mySwiperIndividualServiceContainer .swiper-button-nextIndividual,
.mySwiperIndividualServiceContainer .swiper-button-prevIndividual {
    position: absolute;
}


.mySwiperIndividualServiceContainer .swiper-button-nextIndividual,
.mySwiperIndividualServiceContainer .swiper-button-prevIndividual {
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;

}

.mySwiperIndividualServiceContainer .swiper-button-nextIndividual {
    right: -25px;
    bottom: 50px;
}

.mySwiperIndividualServiceContainer .swiper-button-prevIndividual {
    left: -25px;
    bottom: 50px;
}



.mySwiperIndividualServiceContainer .swiper-button-nextIndividual::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--white-color) !important;
    font-size: 25px;
}

.mySwiperIndividualServiceContainer .swiper-button-prevIndividual::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--white-color) !important;
    font-size: 25px;
}

.individual_accordion_container {
    background: #FFF8DE;
    padding: 16px;
    border-radius: 12px;
	position: sticky;
	left: 0;
	top: 100px;
}

.individual_accordion_container .accordion {
    border: none !important;
}

.individual_accordion_container .accordion .accordion-header button {
    box-shadow: none !important;
    outline: none;
    border: none;
    padding: 15px 20px;
    color: var(--neutral-black1-font);
    background-color: var(--white-color);
    border-radius: 0;
}

.individual_accordion_container .accordion .accordion-body {
    padding: 0;
}

.individual_accordion_container .accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-radius: 0;
}

.individual_accordion_container .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.individual_accordion_container .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}

.accordion-item {
    border: none;
}

.filter_btns_individualService_Container a {
    background: #F5F5F5;
    width: 100%;
    padding: 15px 20px;
    color: var(--neutral-black1-font);
    display: block;

}

.filter_btns_individualService_Container a.active {
    background: #FFD0D5;
}

.filter_individual_service_buttonContainer a {
    padding: 15px 20px;
    color: var(--neutral-black1-font);
    background-color: var(--white-color);
    display: block;
}

.filter_individual_service_buttonContainer a.active {
    background: #FFD0D5;
}

.individual_service_filter_section_container .mySwiperClinetLogosIndvidual2 .text_before_after {
    bottom: 10px;
}

.individual_service_filter_section_container .commonSwiperPagination {
    padding: 20px 0 60px 0;
}

.filter_imageContainer {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.filter_imageContainer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.filter_Data_heading {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
}

.filter_data_descriptions {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    color: var(--neutral-black1-font);
}

.tick_Description {
    font-size: 16px;
    color: var(--neutral-black1-font);
    font-weight: 400;
}

.service_page_filtered_slider_container {
    padding-top: 44px;
}

/* ----- INDIVIDUAL SERVCIE PAGE SECTION ENDS FORM HERE--------- */

/* +++++++ PAST PROJECT SECTION STARTS FORM HERE ++++ */
.project_slider_section {
    padding: 84px 0;
}

.caseStudy_slider_imagePast {
    height: 300px !important;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

/* +++++++ PAST PROJECT SECTION ENDS FORM HERE ++++ */


/* 000000000 INDIVIDUAL PROJECT PAGE CSS STARS FORM HERE 00000000000 */
.indivdual_project_location {
    padding: 24px 0;
    background: var(--secondary-color);
}

.indvidual_project_section_contents {
    overflow: hidden;
}

.summary_padding {
    padding: 60px;
}

.summary_Descrioption {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--neutral-black1-font);
    text-align: justify;
}

.other_project_deading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
}

/* .mySwiperPhoto .swiper-slide {
    height: 580px;
    border-radius: 12px;
    overflow: hidden;
    width: 80%;
} */

.mySwiperPhoto .swiper-slide {
    height: 252px;
    border-radius: 12px;
    overflow: hidden;
    width: 25%;
}

.mySwiperPhoto .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo_slider_contaienr {
    overflow-x: hidden;
}

/* 000000000 INDIVIDUAL PROJECT PAGE CSS ENDS FORM HERE 00000000000 */


/* ******* PHOTO GALLARY PAGE CSS STARTS FROM HERE +*** */

.photo_gallary_slider_btn {
    width: max-content;
}

.mySwiperPhotoGallary .swiper-slide {
    width: max-content !important;
    margin: 20px 10px;
}

.photo_gallary_slider_btn a {
    padding: 12px 16px;
    border: 1px solid #C9C9C9;
    color: var(--neutral-black1-font);
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    width: max-content;
    background: transparent;
}

.photo_gallary_slider_btn a.active {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
}

.mySwiperPhotoGallaryContaienr .swiper-button-nextIndividual {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperPhotoGallaryContaienr .swiper-button-prevIndividual {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperPhotoGallaryContaienr .swiper-button-nextIndividual,
.mySwiperPhotoGallaryContaienr .swiper-button-prevIndividual {
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;

}



.mySwiperPhotoGallaryContaienr .swiper-button-nextIndividual::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--white-color) !important;
    font-size: 18px;
}

.mySwiperPhotoGallaryContaienr .swiper-button-prevIndividual::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--white-color) !important;
    font-size: 18px;
}

.photoGallary_image_container {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.photoGallary_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.white_paly_Icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    transform: translate(-50%, -50%);
    padding: 5px;
    cursor: pointer;
}

.white_paly_Icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .5s ease-in-out;
}

.before_hading {
    font-size: 20px;
    font-weight: 400;
    color: var(--black-font);
    padding-top: 10px;
}

.before_image {
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
}

.before_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ******* PHOTO GALLARY PAGE CSS ENDS HERE *** */






/* ++++++++++ CONATCT US PAGE CSS STARTS FORM HERE +++++++ */
.contact_page_contact_bg {
    padding: 44px;
    background: #FFFAE2;
}

.contact_map iframe {
    border-radius: 12px;
}

.light_primary_bg {
    background: #FFF5F6;
    padding: 32px;
    border-radius: 16px;
    width: 100%;
}

.contact_loc_icon_container {
    height: 100px;
    width: 100px;
    padding: 10px;
    border-radius: 50%;
    background: #FFE5E7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc_heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-font);
}

.loc_description {
    font-size: 16px;
    font-weight: 400;
    color: var(--neutral-black1-font);
}

.contact_page_contacts {
    padding: 84px 0;
}

/* ++++++++++ CONATCT US PAGE CSS ENDS FORM HERE +++++++ */

/* +++++++++ BLOG PAGE CSS STARTS FROM HERE +++++++++ */
.blog_sectio_blogs {
    padding: 44px 0;
}

/* +++++++++ BLOG PAGE CSS ENDS FROM HERE +++++++++ */

/* INDIVIDUAL BLOG SECTION CSS STARTS FROM HERE  */
.about_second1 {
    padding: 60px 0;
}

.about_second1 .about_home_section_left {
    padding: 0px;
}

.indiviBlo {
    width: 100%;
}

.relate_blgo_heading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.related_blog_section {
    padding: 44px 0;
}

.blog_container .blog_image {
    height: 260px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.blog_container .blog_image img {
    transition: all .5s ease-in-out;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog_container .blog_image:hover img {
    transform: scale(1.1);
}

.blog_date {
    font-size: 14px;
    font-weight: 400;
    color: var(--neutral-black1-font);
    padding: 10px 0;
}

.blog_heading {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
}

.read_more_btn {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    width: max-content;
}

.blogo_des_head {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    padding-bottom: 24px;
}

.blog_description_container p {
    color: var(--neutral-black1-font);
     font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    text-align: justify;
}












.imgae_blog_container {
    width: 100%;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.imgae_blog_container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider_brand_logo {
    background: #FFF8DE;
    padding: 24px;
}

.clientLogo_containerIndividual {
    width: 100%;
    height: 140px;
    background: var(--white-color);
}

.clientLogo_containerIndividual img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    aspect-ratio: 3/2;

}

.caseStudy_slider_image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.caseStudy_slider_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.caseStudy_heading {
    font-size: 18px;
    font-weight: 700;
}

.client_HH {
    font-size: 16px;
    font-weight: 400;
    color: var(--neutral-black1-font);
}

.nestedSwiper .swiper-button-next,
.nestedSwiper .swiper-button-prev {
    position: absolute;
    top: 55%;
    /* transform: translateY(-50%); */
}


.nestedSwiper .swiper-button-next,
.nestedSwiper .swiper-button-prev {
    background-color: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;

}

.nestedSwiper .swiper-button-next {
    right: 20px;
}

.nestedSwiper .swiper-button-prev {

    left: 20px;
}


.nestedSwiper .swiper-button-next::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--black-font) !important;
    font-size: 20px;
}

.nestedSwiper .swiper-button-prev::after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--black-font) !important;
    font-size: 20px;
}

.positionRealttive {
    position: relative;
}

.text_before_after {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-font);
    position: absolute;
    left: 20px;
    bottom: 40px;
}

.caseStudySlider img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog_containerBig .blog_image {
    width: 100%;
/*     height: 560px; */
	height: 665px;
    border-radius: 12px;
    overflow: hidden;
}

.blog_containerBig .blog_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.nuteral_black {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-color);
    padding-top: 10px;
}

.slider_brand_logo2 {
    width: 50%;
}

/* INDIVIDUAL BLOG SECTION CSS ENDS FORM HERE */




/* TESTINOMIAL SECTION CSS STARTS FORM HERE  */
.hero_SectionPages {
    height: 650px;
}

.hero_SectionPages img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page_title {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    color: var(--white-color);
}

.client_testimomials {
    padding: 80px 0 160px 0;
}

.client_review_Testinomial {
    box-shadow: 2px 2px 54px -20px #00000029;
    background: var(--white-color);
    padding: 32px;
}

/* TESTINOMIAL SECTION CSS ENDS FROM HERE */


/* ============ HOME BANNER VIDEO CSS ============ */

/* header css  */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.nav_bar_large .navbar-nav .nav-item a,
.navbar-toggler i {
    color: var(--white-color);
}
.top_header_container{
    background-color: transparent;
    color: var(--white-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar-brand .logo{
    max-width: 220px;
}
/* header css  */

.hero_slider_content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1200px;
    width: 95%;

}

.home_video_banner_container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home_video_banner_container::before {
    content: '';
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0.4); */
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(rgb(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.home_video_banner_container iframe.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 56.25vw;
    /* 16:9 */

    min-width: 177.78vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}
#navbar.fixed  .navbar-nav .nav-item a{
/* 		color: var(--neutral-black1-font); */
	color: #fff;
	}
/* #navbar.fixed .navbar-brand .logo img {
    filter: brightness(0); 
} */
#navbar.fixed  .navbar-nav .nav-item a:hover{
		color: var(--primary-color) ;
	}
#navbar.fixed .navbar-nav .dropdown_padding li a:hover{
	color: #fff !important;
}
/* ============ HOME BANNER VIDEO CSS ============ */
.mo_class .home_last_banner{
	margin-top: 24px
}


@media (max-width: 992px) {
	
	    /* =============== new ====================== */
    .has-dropdown .dropdown {
        position: absolute;
        top: 54px;
        left: 0;
        min-width: 280px;
        background: var(--white-color);
        z-index: 1000;
        list-style: none;
        display: none;
        width: max-content;
    }

    .nested-dropdown {
        position: absolute;
        background: #F5F5F5;
        left: 100%;
        width: max-content;
        top: 0;
        display: none;
    }

    /* =============== new ====================== */
	.clinet_rieview_contact_section  .contact_bg_section{
		display: none;
	}
    .client_review_contents {
        position: static;
        width: 100%;
        margin: auto;
        transform: translateX(0);
        border-radius: 0;
    }
	.nav_bar_large .navbar-nav .nav-item a{
		color: var(--neutral-black1-font);
	}
    .clinet_rieview_contact_section {
        margin-bottom: 0px;
    }

    .contact_bg_section {
        height: 400px;
    }

    .inner_padding_border {
        border-right: 0;
        border-bottom: 1px solid #E9E9E9;
    }

    .inner_padding {
        padding: 20px;
    }

    .lineChoose::before {
        background: transparent;
    }

    .lineChoose1::before {
        background: transparent;
    }

    .lineChoosebottom::after {
        background: transparent;
    }

    .lineChoosebottom1::after {
        background: transparent;
    }

    .lineChoosebottom2::after {
        background: transparent;
    }

    .home_last_left_contentConact {
        padding: 44px 20px;
    }

    .msg_icon {
        top: 0;
        left: 5px;
    }

    .home_last_left_content {
        padding: 32px 15px;
    }

    .last_banner_right_image {
        background-size: cover;
        background-position: 0;
    }

    .last_banner_qoute {
        margin-top: 10px;
    }

    .home_last_banner {
        margin-bottom: 150px;
    }

    .clientLogo_container {
        width: 100%;
    }
/* 
    .individual_service_filter_section_container .caseStudy_slider_image {
        height: auto !important;
    } */

    .hero_slider_contentInividual {
        margin-top: -250px;
        z-index: 5;
        position: relative;
    }

    .summary_padding {
        padding: 25px;
    }

    .mySwiperPhoto .swiper-slide {
        height: 400px;
    }

    .before_image {
        height: 300px;
    }

    /* nav bar small screen   */
    .offcanvas-body{
        padding: 0;
    }
    .nav-item{
        /* padding: 16px 24px; */
        width: 100%;
        border-bottom: 0;
        border-bottom: 1px solid #E2E2E2;
    }
    .nav-link{
        width: 100% !important;
        padding: 16px 24px !important;
        background: var(--white-color);
    }
    .nav_bar_large .navbar-nav .nav-item a:hover {
        color: var(--neutral-black1-font);
    }
    
    .nav_bar_large .navbar-nav .nav-item a.active {
        border-bottom: 0;
        color: var(--neutral-black1-font);
    }
    .has-dropdown .dropdown {
        position: static;
        width: 100%;
    }
    .nested-dropdown{
        position: static;
        width: 100%;
    }
   
    .dropdown_padding li a{
        border-bottom: 1px solid #E2E2E2;

     }
    .dropdown_padding li a:hover{
        color: var(--neutral-black1-font) !important;
        background: var(--white-color);
     }
     /* .nav_bar_large .navbar-nav .nav-item a{
        background: var(--white-color);
     } */
     .dropdownNavLink.active{
        background: var(--primary-color) !important;
        color: var(--white-color) !important;
        width: 100%;
    }
    .dropdown_padding li a.activeRed{
        color: var(--white-color) !important;
        background: var(--primary-color) !important;
    }
    .has-dropdown {
        padding: 0;
    }
	.home_last_banner .home_last_left_content .filter_data_descriptions{
		display: none;
	}
	.footer_primary_bg  .c_description{
		display: none;
	}
	.home_video_banner_container {
		height: 620px;
	}
}

button {
    border: none;
}

@media (max-width: 768px) {
    /* .commonSwiperPaginationone {
        padding: 30px 0 60px 0;
    }
    */
	
		.home_video_banner_container {
		height: 520px;
	}
    .third_absoulte, .fist_absolute, .secondAbosulute{
        display: none;
    }
    .mySwiperPhoto .swiper-slide {
        height: 280px;
    }

    .swiper-pagination-homeSlider {
        bottom: 35px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
    }

    .about_home_section_left {
        padding: 35px 0;
    }

    .about_leftHome_image {
        position: static;
        width: 100%;
        height: 400px;
    }

    .play_video_Section {
        height: 300px;
    }

    .play_icon_Orange {
        height: 45px;
        width: 45px;
    }

    .video-content {
        height: auto;
    }

    .small_image {
        width: 65px;
        height: 30px;
    }

    .before_after_image_container {
        height: 280px;
    }

    .client_review_container {
        padding: 20px;
    }

    .inner_padding {
        padding: 10px;
    }

    .hero_SectionPages {
        height: 400px;
    }

    .about_second {
        padding: 0 0 25px 0;
    }


    .about_second_left {
        height: 400px;
    }

    footer {
        padding: 0px;
    }

    .imgae_blog_container {
        height: 280px;
    }

    .blog_containerBig .blog_image {
        width: 100%;
        height: 260px;
    }

    .contact_page_contact_bg {
        padding: 0;
    }

    .contact_map iframe {
        padding: 0 20px 20px 20px;
        width: 100%;
        height: 280px;
    }

    .contact_page_contacts {
        padding: 44px 0;
    }

    .individual_service_filter_section_container .commonSwiperPagination0 {
        padding: 20px 0 0 0;
    }

    .individual_service_filter_section_container .commonSwiperPagination0 .caseStudy_slider_image {
        height: 160px !important;
    }

    .Individual_project_mage_height {
        height: 350px;
    }

    .before_image {
        height: 200px;
    }
	.mySwiperClient .swiper-button-prevClient::after, .mySwiperClient .swiper-button-nextClient::after {
		font-size: 15px;
	}
	.mySwiperClient .swiper-button-prevClient{
		right: 50px;
	}
	.mySwiperClient .swiper-button-nextClient, .mySwiperClient .swiper-button-prevClient{
		height: 35px;
		width: 35px;
	}
	.client_review_contents{
		padding-bottom: 44px;
	}

}

@media (max-width: 576px) {
    .quote_popup {
        padding: 15px;
        border-radius: 0;
        overflow-y: scroll;
    }

    h1 {
        font-weight: 700;
    }

    .w-20 {
        width: 16px;
    }

    .h-20 {
        height: 16px;
    }

    .home_slider_section {
        height: calc(90vh - 160px);
        overflow: hidden;
    }

    /* .commonSwiperPagination {
        padding-left: 20px;
        padding-right: 20px;
    } */

    .mySwiperBeforeAftercontaiern .commonSwiperPagination {
        padding-left: 0px;
        padding-right: 0px;
    }

    .flooring_imge_contaienr,
    .flooring_imge_contaienr_rounded {
        height: 180px;
        max-width: 280px;
        width: 100%;
    }

    .owlcarouselProjects .owl-stage,
    .owlcarouselProjects .owl-stage-outer {
        height: max-content !important;
    }
	 .owl-dots{
		display: none;
	}
    .owlContainer .owlcarouselProjects {
        padding-left: 10px;
    }

    .flooring_imge_contaienr1 {
        height: 280px;
        max-width: 180px;
    }

    /* .commonSwiperPagination .swiper-slide {
        width: max-content !important;
    } */

    .mySwiperBeforeAfter .swiper-slide {
        width: 100% !important;
    }

    .concrete_sealing_section {
        padding: 45px 0;
    }

    .industrial_flooring_section,
    .before_after_section,
    .recent_projects_Sction {
        padding: 44px 0;
    }

    .inner_padding {
        padding: 0;
    }

    .mySwiperClient .swiper-button-nextClient {
        right: 10px;
    }

    .mySwiperClient .swiper-button-prevClient {
        right: 50px;
        bottom: 8px;
    }

    .mySwiperClient .swiper-button-prevClient {
        right: 50px;
    }
	.mySwiperClient .swiper-button-nextClient{
		bottom: 8px;
	}
    .third_heading1 {
        font-size: 16px;
        font-weight: 700;
    }



    .hero_SectionPages {
        height: 360px;
    }

    .Ireland::before,
    .Flooring::after {
        bottom: -12px;
    }

    .mySwiperblogs .swiper-slide {
        width: 100% !important;
    }

    .mySwiperblogs {
        padding: 30px 0 80px 0;
    }

    .slider_brand_logo {
        padding: 12px;
    }

    .home_last_left_contentConact .form-control {
        padding: 10px;
    }

    .home_last_left_contentConact .form-control::placeholder {
        font-size: 14px;
    }

    .hero_slider_contentInividual {
        margin-top: -100px;
        z-index: 5;
        position: relative;
    }

    .hero_slider_contentInividual .slider_heading {
        font-size: 20px;
    }

    .hero_slider_contentInividual .page_title {
        font-size: 14px;
    }
	.clinent_satisfaction_Section{
		padding: 44px 0;
	}
	.home_last_banner{
		margin-top: 16px;
	}
	.about_page_contact_section{
		margin-bottom: 24px;	
	}
	.about_page_contact_section .home_last_banner{
		margin-bottom: 24px;
	}
	.sssss{
		margin-bottom: 150px;
	}

}
.pagination{
	display:flex;
	align-items: center;
	gap: 10px;
}
.page-link{
	all: unset;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid #FFC801;
	color: #FFC801;
	height: 35px;
	width: 35px;
	border-radius: 5px;
}
.active>.page-link, .page-link.active{
		color: #fff;
	background: #FFC801;
	border: 1px solid #FFC801;
}

.page-link:focus , .page-link:hover {
    z-index: 3;
	color: #FFC801;
	background: transparent;
    outline: 0;
    box-shadow: none;
}
.sidebar_wrapper{
	position: sticky;
	top: 100px;
	right: 0;
}

/* individual service page css new added for editor  */
.service-content-wrapper h3, .blog_description_container h3{
	font-size: 22px;
		margin-bottom: 16px;
}

.service-content-wrapper p, .blog_description_container  p{
	margin-bottom: 16px;
}
.service-content-wrapper ul, .blog_description_container  ul{
	padding-left: 2rem;
	margin-bottom: 1rem;
}
.service-content-wrapper ul li .blog_description_container  ul li{
	list-style: disc;
}

.p_class p{
	margin-bottom: 16px;
}
.p_class ul, .service-content-wrapper ul {
    list-style: none;
    padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.p_class ul li, .service-content-wrapper ul li {
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.p_class ul li::before, .service-content-wrapper ul li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #FFC801; 
}

.service-content-wrapper h1, .service-content-wrapper h2, .service-content-wrapper h3, .service-content-wrapper h4, .service-content-wrapper h5{
	margin-bottom: 10px;
}
.footer_logo img{
	display: block;
	max-width: 200px;
	margin-left: 0 !important;
}


/* client review  */
.client_review_Section {
    padding: clamp(44px, 5vw, 84px) 0;
    background-color:#F0F0F0;
}

.client_review_card {
    background-color:white;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.client_review_card .c_p_img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client_review_card .c_p_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.client_review_card .c_profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client_review_card .c_profile h5 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 2px;
}

.client_review_card .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--yellow);
    font-size: 14px;
    margin-top: 16px;
}

.google_icon {
    width: 32px;
}

.bagde {
    width: 16px;
    margin-left: 10px;
}

.client_review_card .client_description {
    margin-top: 12px;
}

.client_review_card .client_description {
    transition: all .5s ease-in-out;
}

.client_review_card .client_description.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client_review_card .read_more_btn {
    color: var(--primary-color);
    border: none;
    background-color: transparent;
    padding-top: 8px;
}

.mySwiperClientReview {
    padding-bottom: 44px;
}

.mySwiperClientReview .swiper-pagination-bullet {
    background-color: #e7180052;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    opacity: 0.8;
}

.mySwiperClientReview .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.client_review_wrapper .luxury-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 44px auto auto auto;
}

.client_description.truncated{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.client_description.expanded{
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.read_more_btn{
    color:#007bff;
    font-weight:500;
	text-decoration: none;
}



/* Pagination Styling */
.pagination-wrapper {
    margin: 60px 0 50px;
    padding: 20px 0;
}

.pagination-wrapper .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper a.page-numbers,
.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 14px;
    background-color: #fff;
    color: #333;
/*     border: 2px solid #eee; */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-wrapper a.page-numbers:hover {
    background-color: #f8f9fa;
    border-color: #FFC801;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 200, 1, 0.25);
}

.pagination-wrapper .page-numbers.current {
    background-color: #FFC801;
    color: #000;
    border-color: #FFC801;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(255, 200, 1, 0.35);
    transform: scale(1.05);
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
    padding: 8px 25px;
    font-weight: 700;
}

/* Optional: Make it even more prominent */
.pagination-wrapper {
    background: linear-gradient(145deg, #fff, #f8f8f8);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* RECAPTCHA */
/* .grecaptcha-badge {
    height: 60px;
    width: 256px;
    display: none !important;
} */
