@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans+Condensed:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* 
Font family
-----------------------------------------------

font-family: "Reddit Sans", serif;
font-family: "Besley", serif;
font-family: "Bebas Neue", serif;
font-family: "Reddit Sans Condensed", serif;
font-family: "Manrope", serif;
     

-----------------------------------------------*/

:root {

    /* primarycolor */

    --primarycolor: #000000;
    --secondarycolor: #5a49e3;
    --blackcolor: #000;
    --whitecolor: #fff;

    /* -secondarycolor */

    --greycolor: #3e4c59;
    --greylightcolor: #616e7c;
    --cementcolor: #7b8794;
    --cementlightcolor: #cbd2d9;

    --selection: #d9d9d9;

    --font-Reddit: "Reddit Sans", serif;
    --font-Besley: "Besley", serif;
    --font-BebasNeue: "Bebas Neue", serif;
    --font-Reddit-Condensed: "Reddit Sans Condensed", serif;
    --font-Manrope: "Manrope", serif;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
    list-style: none;
    font-family: var(--font-Reddit);
}

body,
ul,
li,
a {
    font-family: var(--font-Reddit);
    font-size: 20px;
    color: var(--greycolor);
}

body {
    max-width: 100%;
    overflow-x: hidden !important;
    background: var(--whitecolor) !important;
}

hr.wp-block-separator {
    color: transparent !important;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 20;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.grecaptcha-badge {
    z-index: 99;
}


/* == SELECTION-CSS ==
===============================================================*/

::-moz-selection {
    background: var(--selection);
    color: var(--blackcolor);
}

::-webkit-selection {
    background: var(--selection);
    color: var(--blackcolor);
}

::selection {
    background: var(--selection);
    color: var(--blackcolor);
}

/* == SELECTION-CSS ==
===============================================================*/


#wpadminbar {
    z-index: 100001999 !important;
}

body.admin-bar div#page-container {
    padding-top: 176px !important;
}



.container,
.et_pb_row {
    width: 100%;
    max-width: 93%;
    margin: 0 auto;
}


/* == TYPOGRAPHY-CSS == 
===============================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 30px 0 10px;
    padding: 0;
}

h1,
h1 a,
.common-outer h1,
.common-outer h1 a {
    font-family: var(--font-Reddit) !important;
    font-weight: 700;
    font-size: 52px;
    color: var(--blackcolor);
    text-align: initial;
    line-height: 60px !important;
    text-transform: uppercase;
}

h2,
h2 a,
.common-outer h2,
.common-outer h2 a {
    font-family: var(--font-Reddit) !important;
    font-weight: 600;
    font-size: 40px;
    color: var(--blackcolor);
    line-height: 43px;
    text-transform: uppercase;
}

h3,
h3 a,
.common-outer h3,
.common-outer h3 a {
    font-family: var(--font-BebasNeue) !important;
    font-weight: 400;
    font-size: 40px;
    color: var(--blackcolor);
    line-height: 38px;
}

h4,
h4 a,
.common-outer h4,
.common-outer h4 a {
    font-family: var(--font-BebasNeue) !important;
    font-weight: 400;
    font-size: 22px;
    color: var(--greylightcolor);
    line-height: 25px;
    text-transform: uppercase;
}

h5,
h5 a,
.common-outer h5,
.common-outer h5 a {
    font-weight: 400;
    font-size: 20px !important;
    color: var(--blackcolor);
    text-align: initial;
    line-height: 26px !important;
    text-transform: uppercase;
    font-family: var(--font-Reddit-Condensed) !important;
}

h6,
h6 a,
.common-outer h6,
.common-outer h6 a {
    font-family: var(--font-Reddit) !important;
    font-weight: 700;
    font-size: 52px;
    color: var(--blackcolor);
    text-align: initial;
    line-height: 60px !important;
    text-transform: uppercase;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    text-align: initial;
    font-family: var(--font-SourceSans3);
}

a {
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondarycolor);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}

a:hover {
    color: var(--primarycolor);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}

strong {
    font-weight: 700 !important;
}

span.nav-click {
    font-size: 0;
    position: relative;
    padding: 16px 25px 16px 20px;
    cursor: pointer;
    right: -10px;
    top: 4px;
    transform: translateX(0%);
}

span.nav-click::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/menu-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0deg);
    right: auto;
    top: 23px;
    left: 3px;
}

.sub-menu li span.nav-click {
    top: 14px;
    z-index: 999;
}

.common-outer blockquote p {
    margin-bottom: 0;
}

p {
    font-family: var(--font-Reddit);
    font-weight: 400;
    font-size: 17px;
    color: var(--greycolor) !important;
    line-height: 27px !important;
    padding: 0px;
    margin-bottom: 10px;
}

.entry-content ul, .whats-inner ul {
    margin-bottom: 0px;
    margin-top: 20px;
    padding: 0;
}

.entry-content ul li, .whats-inner ul li {
    font-family: var(--font-Reddit);
    font-weight: 400;
    font-size: 17px;
    color: var(--greycolor) !important;
    line-height: 27px !important;
    padding-left: 11px;
    padding-bottom: 10px;
    position: relative;
}

.entry-content ul li::before, .whats-inner ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--greycolor);
    left: 1px;
    top: 11px;
    border-radius: 100px;
}

.entry-content ol {
    padding-left: 18px;
    margin-bottom: 0px;
    margin-top: 20px;
    text-align: left;
    padding-bottom: 0;
}

.entry-content ol li, ol li {
    font-family: var(--font-Reddit);
    font-weight: 400;
    font-size: 17px;
    color: var(--greycolor) !important;
    line-height: 27px !important;
    padding-left: 0px;
    padding-bottom: 10px;
    position: relative;
    list-style-type: decimal !important;
}
.designer-popup-content ol li {
    list-style: auto !important;
    font-size: 17px;
    color: var(--whitecolor) !important;
}

.popup-inner ul li {
    font-size: 17px;
    color: var(--whitecolor) !important;
    line-height: 27px !important;
    padding-left: 11px;
    padding-bottom: 10px;
    position: relative;
}
.popup-inner ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--whitecolor);
    left: 1px;
    top: 11px;
    border-radius: 100px;
}

blockquote p, blockquote  {
    font-family: var(--font-Besley);
    font-size: 30px !important;
    line-height: 38px !important;
    font-weight: 400;
    color: var(--greycolor) !important;
}

blockquote {
    padding-left: 0;
    border: none;
}



/* == TYPOGRAPHY-CSS == 
===============================================================*/


/* GREY BACKGROUND SECTION TYPOGRAPY CSS ::::::::::::::::::::::::::  */

.grey-bg-section h1,
.grey-bg-section h2,
.grey-bg-section h3,
.grey-bg-section h4,
.grey-bg-section h5,
.grey-bg-section h6,
.grey-bg-section p,
.grey-bg-section ul li,
.grey-bg-section ol li {
    color: var(--whitecolor) !important;
}

.grey-bg-section ul li::before {
    background: var(--whitecolor) !important;
}

.grey-bg-section a.arrow-button {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: 700 !important;
    color: var(--whitecolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    text-decoration: none !important;
}

.grey-bg-section a.read-more-toggle {
    text-decoration: underline !important;
    color: var(--whitecolor) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
}
.grey-bg-section a {
    text-decoration: underline !important;
    color: var(--whitecolor) !important;
}


/* DARK BACKGROUND SECTION TYPOGRAPY CSS ::::::::::::::::::::::::::  */






/* == FORM-TYPOGRAPHY-CSS == 
===============================================================*/

::placeholder {
    font-family: var(--font-Reddit-Condensed);
    color: var(--greycolor) !important;
    text-transform: none;
    font-size: 14px !important;
    font-weight: 400;
}

input {
    width: 100%;
    border: 1px solid var(--greycolor) !important;
    display: block;
    font-family: var(--font-Reddit);
    color: var(--greycolor) !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    padding: 10px 13px !important;
}

.get-free-section .get-free-clmn-three form input {
    width: 100%;
    border-bottom: 1px solid #000;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    display: block;
    font-family: var(--font-SourceSans3);
    color: var(--blackcolor) !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    appearance: none;
    -webkit-appearance: none;
}

textarea {
    height: 120px;
    width: 100%;
    resize: none;
    border: 1px solid var(--greycolor) !important;
    display: block;
    font-family: var(--font-Reddit);
    color: var(--greycolor) !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    padding: 10px 13px !important;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.wpcf7-not-valid {
    border: none;
    border: 1px solid #fa3040 !important;
}

.invalid .wpcf7-response-output {
    text-align: center;
    color: #fa3040;
    border: 2px solid #fa3040 !important;
    width: 96%;
    font-weight: 600;
    margin: 20px 10px 10px !important;
    padding: 4px !important;
    font-size: 12px;
    text-transform: none;
    line-height: 19px;
}

.wpcf7 form.sent .wpcf7-response-output {
    text-align: center;
    color: #41ce41;
    border: 2px solid #41ce41 !important;
    width: 96%;
    font-weight: 450;
    margin: 20px 10px 10px !important;
    padding: 4px !important;
    font-size: 12px;
    text-transform: none;
    line-height: 19px;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.get-free-section .get-free-clmn-three form .wpcf7-response-output {
    margin: 0px auto 20px !important;
}

/* wpcf7 form wpcf7-response-output 
===============================================================*/




/* SCROLL_TO_TOP_CSS_START ==
===============================================================*/

.et_pb_scroll_top.et-pb-icon {
    background: var(--secondarycolor);
    border-radius: 0;
    border: 1px solid var(--secondarycolor);
    transition: 0.5s ease;
}

.et_pb_scroll_top.et-pb-icon:hover {
    background: var(--whitecolor);
    border-radius: 0;
    border: 1px solid var(--greycolor);
    transition: 0.5s ease;
}

.et_pb_scroll_top.et-pb-icon:hover::before {
    filter: invert(1);
}

/* SCROLL_TO_TOP_CSS_END
===============================================================*/






/* ERROR PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */

.page_not_found_sec .page_not_found_row .page-not-clmn {
    text-align: center;
}

.page_not_found_sec .page_not_found_row .page-not-clmn .et_pb_text_inner {
    text-align: center;
}

.page_not_found_sec .page_not_found_row .page-not-clmn .et_pb_text_inner h1 {
    text-align: center;
    padding-bottom: 30px;
    font-family: var(--font-Reddit) !important;
}

.et_pb_row.page_not_found_row {
    padding: 30px 80px !important;
}

/* ERROR PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */








/* THANK PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */

.tq-txt-inner .et_pb_text_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tq-txt-inner h1,
.tq-txt-inner p {
    text-align: center !important;
}

.tq-txt-inner h1 {
    font-family: var(--font-Reddit) !important;
    padding-bottom: 30px;
}

.thanku-txt-sec .et_pb_row {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* THANK PAGE CSS CODE ::::::::::::::::::::::::::::::::::::::::::::: */






/* BTN CSS CODE :::::::::::::::::::::::::::::::::::::::::: */



/* BTN ONE CSS CODE :::::::::::::::::::::::::::::::::::::::::: */

a.arrow-button {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: bold !important;
    color: var(--greycolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
}

/* a.arrow-button::after {
    display: none;
} */

a.arrow-button::after {
    position: absolute !important;
    content: "" !important;
    width: 0 !important;
    height: 10px !important;
    background: url(../images/Arrow_rt_bl_1.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    left: 0 !important;
    transition: 0.5s ease !important;
    top: 9px !important;
}

a.arrow-button:hover {
    border: 0;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    padding-left: 117px !important;
    transition: 0.5s ease !important;
    background: transparent !important;
    color: var(--secondarycolor) !important;
}

a.arrow-button:hover::after {
    width: 124px !important;
    transition: 0.5s ease !important;
}

/* BTN ONE CSS CODE :::::::::::::::::::::::::::::::::::::::::: */



/* BUTTON CSS :::::::::::::::::::::::::::::: */

a.box-button {
    border: 1px solid var(--greycolor) !important;
    border-radius: 0 !important;
    padding: 5px 40px;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: bold;
    color: var(--blackcolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    background: transparent;
    margin-top: 60px;
}

a.box-button:hover {
    border: 1px solid var(--secondarycolor) !important;
    color: var(--whitecolor) !important;
    background: var(--secondarycolor) !important;
    transition: 0.5s ease !important;
    padding: 5px 40px !important;
}

a.box-button::after {
    display: none;
}

/* BTN CSS CODE :::::::::::::::::::::::::::::::::::::::::: */












/* HEADER CSS CODE ::::::::::::::::::::::::::::::::::::::::::::::::: */

.desktop-header #top-header {
    background: var(--greycolor);
    display: flex;
    justify-content: space-between;
    padding: 2px 47px 2px 41px !important;
}

.desktop-header #top-header .widget-area-header {
    display: flex;
    width: 50%;
}

.desktop-header #top-header .container.clearfix {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.desktop-header #top-header .widget-area-header h4,
.desktop-header #top-header .widget-area-header a {
    font-size: 14px;
    color: #fff;
    font-family: var(--font-Reddit) !important;
    font-weight: 400;
    text-transform: none;
    padding: 0 !important;
    margin: 0;
}

.desktop-header #top-header .widget-area-header .header-contact a {
    text-transform: uppercase;
}

.desktop-header #top-header .widget-area-header {
    display: flex;
    width: 50%;
    align-items: center;
    column-gap: 13px;
}

.desktop-header #top-header a {
    text-decoration: none !important;
}

.desktop-header #top-header .widget-area-header>.header-number {
    position: relative;
    padding-left: 13px;
    padding-right: 13px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}


/* socali media :::::::::::::::::::::::::::::::::::::::::: */

ul.et-social-icons {
    display: flex !important;
    flex-direction: row;
    column-gap: 11px;
}

ul.et-social-icons li.et-social-icon a {
    width: 16px;
    height: 20px;
}

ul.et-social-icons li.et-social-icon a::before {
    opacity: 0;
}

ul.et-social-icons li.et-social-icon a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

ul.et-social-icons li.et-social-facebook a::after {
    background: url(../images/white_facebook.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

ul.et-social-icons li.et-social-instagram a::after {
    background: url(../images/white_instagram.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

ul.et-social-icons li.et-social-rss a::after {
    background: url(../images/white_pinterest.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}




/* mobile menu  :::::::::::::::::::::::::::::::::::: */

.mobile-header {
    display: none;
}


/* Desktop css header :::::::::::::::::::::::::::::::::::::: */

header .container {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 33px 0;
    align-items: center;
    max-width: 86%;
}

header .container::after {
    display: none;
}

header#main-header {
    border: none !important;
    box-shadow: none !important;
}

header .logo_container {
    width: 265px !important;
    height: 91px !important;
    position: relative !important;
}

header .logo_container span.logo_helper {
    display: none;
}

header .logo_container img#logo {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    min-height: 100% !important;
}

header .logo_container a {
    width: 100%;
    height: 100%;
    display: block;
}


/* MENU :::::::::::::::::::::::::::::: */

header .container nav#top-menu-nav {
    padding-top: 19px;
}

header #et-top-navigation {
    padding-left: 0 !important;
    padding: 0 !important;
}

header nav .mega-menu-wrap {
    background: transparent !important;
}

header nav .mega-menu-wrap ul {
    display: flex !important;
    column-gap: 22px;
}

header nav .mega-menu-wrap ul li a {
    color: var(--greycolor) !important;
    font-size: 16px !important;
    font-family: var(--font-Reddit) !important;
    font-weight: 650 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

header nav .mega-menu-wrap ul li ul.mega-sub-menu {
    display: none;
}

header nav .mega-menu-wrap ul li a span.mega-indicator {
    display: none !important;
}

header nav .mega-menu-wrap ul li.mega-menu-item-has-children>a {
    padding-right: 11px !important;
    position: relative;
}

header nav .mega-menu-wrap ul li.mega-menu-item-has-children>a::before {
    position: absolute !important;
    content: "";
    width: 9px !important;
    height: 9px !important;
    background: url(../images/plus-icon.svg) !important;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    display: block !important;
    top: 15px !important;
    right: 0;
    margin: 0 !important;
}

header nav .mega-menu-wrap ul li.mega-toggle-on a {
    position: relative;
}

header nav .mega-menu-wrap ul li.mega-toggle-on>a::after,
header nav .mega-menu-wrap ul li a::after {
    position: absolute !important;
    content: "" !important;
    display: block !important;
    width: 0px;
    height: 6px;
    background: var(--blackcolor);
    bottom: 0;
    transition: 0.5s ease;
}

header nav .mega-menu-wrap ul>li a,
header nav .mega-menu-wrap ul li.mega-toggle-on a,
header nav .mega-menu-wrap ul li a:hover {
    background: transparent !important;
}

header nav .mega-menu-wrap ul li.mega-toggle-on>a::after,
header nav .mega-menu-wrap ul li a:hover::after {
    width: 40px;
    transition: 0.5s ease;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu a::after {
    display: none !important;
}

header nav .mega-menu-wrap ul li ul.mega-sub-menu {
    display: flex !important;
    flex-direction: column;
    background: var(--blackcolor) !important;
    align-items: flex-start;
    width: 188px !important;
    padding: 20px 30px 23px 30px !important;
}

header nav .mega-menu-wrap ul li ul.mega-sub-menu li {
    width: 100% !important;
}

header nav .mega-menu-wrap ul li ul.mega-sub-menu li a {
    font-size: 14px !important;
    color: var(--whitecolor) !important;
    font-family: var(--font-Manrope) !important;
    font-weight: 300 !important;
    width: 100% !important;
    display: flex;
    align-items: flex-start;
}

header nav .mega-menu-wrap ul li ul.mega-sub-menu {
    transform: translate(-50px, 50px) !important;
}

header nav .mega-menu-wrap ul li.mega-toggle-on ul.mega-sub-menu {
    transform: translate(-50px, 47px) !important;
}

header nav .mega-menu-wrap ul li {
    position: relative !important;
}


header nav .mega-menu-wrap ul li#mega-menu-item-61>ul.mega-sub-menu {
    padding: 0 !important;
    width: 860px !important;
    transform: translate(-70%, 47px) !important;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu,
header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu {
    padding: 0 !important;
    transform: translate(0px, 0) !important;
    width: 100% !important;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 25px;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu a.header-mega-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu a.header-mega-menu-item img.mega-menu-image {
    width: 40px !important;
    height: 40px !important;
    margin-right: 21px;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu li {
    padding: 50px 29px !important;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu a.header-mega-menu-item span.sub-menu-text {
    line-height: 19px;
    font-size: 14px !important;
    color: var(--whitecolor) !important;
    font-family: var(--font-Manrope) !important;
}

header nav .mega-menu-wrap ul li ul.mega-sub-menu li a:hover {
    transform: skew(-9deg, 0deg) !important;
    font-weight: 450 !important;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu a.header-mega-menu-item:hover {
    transform: skew(0deg, 0deg) !important;
    font-weight: 450 !important;
}

header nav .mega-menu-wrap ul li>ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu .custom-mega-menu a.header-mega-menu-item:hover .sub-menu-text {
    transform: skew(-9deg, 0deg) !important;
    font-weight: 450 !important;
}


header nav .mega-menu-wrap ul li.mega-current-menu-item > a::after {
    position: absolute !important;
    content: "" !important;
    display: block !important;
    height: 6px;
    background: var(--blackcolor);
    bottom: 0;
    transition: 0.5s ease;
    width: 40px;
}

header nav .mega-menu-wrap ul li.mega-current_page_parent > a::after {
    position: absolute !important;
    content: "" !important;
    display: block !important;
    height: 6px;
    background: var(--blackcolor);
    bottom: 0;
    transition: 0.5s ease;
    width: 40px;
}


/* HEADER CSS CODE ::::::::::::::::::::::::::::::::::::::::::::::::: */





/* FOOTER CSS CODE ::::::::::::::::::::::::::::::::::::::::::::::::: */

footer#main-footer {
    background: #f6f7fb !important;
}


/* ROW ONE :::::::::::::::::::::::::::::::::::::::::::: */

.whole-footer .footer-main-row-one {
    display: flex;
    padding: 37px 30px 24px;
}

.whole-footer .footer-main-row-one .footer-main-clmn-one {
    padding: 90px 0px 20px 56px;
    border-right: 2px solid var(--cementlightcolor) !important;
    width: 33%;
}

.whole-footer .footer-main-clmn-one .footer-address {
    width: 75%;
    margin-bottom: 16px !important;
}

.footer-add {
    width: 280px !important;
}
.whole-footer .footer-main-clmn-one .footer-address p {
    font-size: 19px;
    font-weight: 750;
    line-height: 24px !important;
    color: var(--primarycolor) !important;
}

.whole-footer .footer-main-clmn-one a {
    text-decoration: none !important;
    font-size: 19px;
    font-weight: 750;
    line-height: 24px !important;
    color: var(--primarycolor);
}

.footer-social-icons ul.et-social-icons li a::after {
    filter: brightness(0) saturate(100%) invert(27%) sepia(17%) saturate(583%) hue-rotate(167deg) brightness(96%) contrast(92%);
}

.footer-social-icons {
    padding-top: 85px;
    display: flex;
}

.footer-social-icons ul.et-social-icons li.et-social-icon a {
    width: 23px;
    height: 23px;
}

.footer-social-icons ul.et-social-icons li {
    margin-left: 0;
}

.footer-social-icons ul.et-social-icons {
    column-gap: 33px;
}

.footer-main-clmn-two #et-footer-nav ul#menu-footer-menu {
    display: flex;
    column-gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-main-clmn-two #et-footer-nav ul#menu-footer-menu li {
    padding-right: 0;
}

/* ROW TWO :::::::::::::::::::::::::::::::::::::::::::: */

.footer-main-clmn-two {
    padding: 90px 0px 35px 52px;
}

.footer-main-clmn-two h4 {
    font-size: 23px;
    text-transform: none !important;
    color: var(--blackcolor);
    font-family: var(--font-Reddit) !important;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
}

.footer-main-clmn-two .footer-mob div {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.footer-main-clmn-two .footer-mob p {
    margin: 0;
}

.footer-main-clmn-two .footer-mob p,
.footer-main-clmn-two .footer-mob a {
    font-size: 23px;
    text-transform: none !important;
    color: var(--blackcolor) !important;
    font-family: var(--font-Reddit) !important;
    font-weight: 700;
    column-gap: 6px;
    text-decoration: none !important;
}

.footer-main-clmn-two .header-hours {
    padding-bottom: 6px;
}

.footer-main-clmn-two .footer-menu-here .container {
    max-width: 100%;
}

.footer-main-clmn-two .footer-menu-here ul li a {
    font-size: 12px !important;
    text-decoration: none !important;
    color: var(--blackcolor);
    font-weight: 800;
    text-transform: uppercase;
}

.footer-menu-here {
    padding-top: 80px;
}


/* copyright section css ::::::::::::::::::::::::::::: */

.footer-main-row-two #footer-bottom {
    background: transparent !important;
}

.footer-main-row-two #footer-bottom {
    width: 48%;
    padding: 5px 0 0px;
}

.footer-main-row-two #footer-bottom .container {
    max-width: 100%;
}
div#footer-bottom .current-year {
    font-size: 13px;
    color: var(--primarycolor) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 400;
}
.current-year {
    display: flex;
    gap: 4px;
}

.footer-main-row-two .digi-credits-here {
    width: 48%;
}

.footer-main-row-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px 0 50px;
    border-top: 2px solid var(--cementlightcolor) !important;
}

.footer-main-row-two #footer-info,
.footer-main-row-two .footer-digi-cred p,
.footer-main-row-two .footer-digi-cred p a {
    font-size: 13px;
    color: var(--primarycolor) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-main-row-two .footer-digi-cred p {
    text-align: right;
}

.footer-main-row-two #footer-info {
    padding-bottom: 6px;
}

/* FOOTER CSS CODE ::::::::::::::::::::::::::::::::::::::::::::::::: */





/* HOME-PAGE SLIDER CSS CODE :::::::::::::::::::::::::::::::::::::: */

.hm-slider-sec {
    padding: 0px 43px !important;
}
.hm-slider-sec .et_pb_slides {
    height: 0;
    padding-bottom: 37%;
    width: 100%;
    position: relative;
}
.hm-slider-sec .et_pb_slides .et_pb_media_alignment_center {
    position: absolute !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-slider-sec .hm-row-slide {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hm-slider-sec .hm-slider .et_pb_slide .et_pb_container {
    height: auto !important;
}

.hm-slider-sec .hm-row-slide .et_pb_slide_description {
    padding: 140px 9% 40px !important;
}

.hm-slider-sec .hm-row-slide .et_pb_slide_description p {
    font-size: 88px;
    line-height: 90px !important;
    font-weight: 600;
    color: var(--whitecolor) !important;
    text-shadow: none !important;
}
.hm-slider-sec .hm-row-slide :where(p, h1, h2, h3, h4, h5, h6, a) {
    color: var(--whitecolor) !important;
}

.hm-slider-sec .hm-row-slide .et-pb-controllers {
    display: none;
}

.hm-slider-sec .hm-slider .et_pb_slide {
    position: relative;
    display: flex !important;
    /* opacity: unset !important; */
    z-index: 1 !important;
}

.hm-slider-sec .hm-slider .et_pb_slide::before {
    position: absolute !important;
    content: "" !important;
    width: 100% !important;
    height: 100% !important;
    background: #000 !important;
    /* background: #00000040 !important; */
    top: 0 !important;
    left: 0 !important;
    z-index: 2 !important;
    opacity: 0.3 !important;
}

/* BUTTON CSS :::::::::::::::::::::::::::::: */

.hm-slider-sec .hm-row-slide .et_pb_slide_description a.et_pb_button {
    border: 1px solid var(--whitecolor);
    border-radius: 0 !important;
    padding: 5px 40px;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: bold;
    color: var(--whitecolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    background: transparent;
    margin-top: 60px;
}

.hm-slider-sec .hm-row-slide .et_pb_slide_description a.et_pb_button:hover {
    border: 1px solid var(--secondarycolor);
    color: var(--whitecolor);
    background: var(--secondarycolor);
    transition: 0.5s ease !important;
}

.hm-slider-sec .hm-row-slide .et_pb_slide_description a.et_pb_button::after {
    display: none;
}



.et-pb-arrow-prev {
    left: -30px;
    opacity: 0;
    width: 88px;
    font-size: 0;
    height: 30px;
}

.et-pb-arrow-prev::before {
    display: none;
}

.et-pb-arrow-prev::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/Arrow_lt_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(-1);
}

.et-pb-arrow-next {
    right: -30px;
    opacity: 0;
    width: 88px;
    font-size: 0;
    height: 30px;
}

.et-pb-arrow-next::before {
    display: none;
}

.et-pb-arrow-next::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/Arrow_rt_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.et_pb_slider:hover .et-pb-arrow-prev {
    left: 41px;
    opacity: 1;  
}

.et_pb_slider:hover .et-pb-arrow-next {
    right: 41px;
    opacity: 1;
}

.et_pb_slider .et-pb-arrow-prev {
    opacity: 0;  
}

.et_pb_slider .et-pb-arrow-next {
    opacity: 0;
}


/* HOME-PAGE SLIDER CSS CODE :::::::::::::::::::::::::::::::::::::: */





/* HOME PAGE TYPE OF LIGHTING CSS CODE ::::::::::::::::::::: */

.lt-ty-sec {
    padding-bottom: 0 !important;
}

.lt-ty-sec .lt-ty-clmn h1 {
    margin: 0 !important;
}

.lt-ty-txt {
    margin-bottom: 18px !important;
}

.lt-ty-sec .lt-ty-row {
    padding-top: 6px;
    padding-bottom: 0;
}

.lt-ty-sec .lt-ty-row .lt-ty-clmn {
    padding-bottom: 75px;
    border-bottom: 1px solid var(--cementlightcolor);
}

.lt-ty-sec .types-slider {
    padding-left: 130px;
    padding-right: 130px;
    position: relative;
}

.lt-ty-sec .types-slider .owl-stage-outer {
    z-index: 9;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    z-index: 0s;
}

.owl-nav button.owl-prev {
    width: 88px;
    height: 30px;
    font-size: 0 !important;
    position: relative;
}

.owl-nav button.owl-prev::after {
    left: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/Arrow_lt_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(14%) saturate(713%) hue-rotate(167deg) brightness(96%) contrast(92%);
    transform: scaleX(-1);
}

.owl-nav button.owl-next {
    width: 88px;
    height: 30px;
    font-size: 0 !important;
    position: relative;
}

.owl-nav button.owl-next::after {
    right: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/Arrow_rt_w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(14%) saturate(713%) hue-rotate(167deg) brightness(96%) contrast(92%);
}

.lt-ty-sec .img-outer-car img {
    border: 2.5px solid #f6f7f9;
    transition: 0.5s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-ty-sec .img-outer-car{
    position: relative;
    padding-bottom: 100%;
    display: block;
}

.lt-ty-sec .carousel-item.types-light a:hover img {
    border: 2.5px solid var(--greycolor);
    transition: 0.5s ease;
}

/* .types-slider .owl-stage {
    display: flex;
    column-gap: 53px;
} */

.lt-ty-sec .carousel-item.types-light a .carousel-text.types-txt {
    font-weight: 600;
    font-size: 20px !important;
    color: var(--whitecolor);
    background: var(--greycolor);
    text-align: initial;
    line-height: 26px !important;
    text-transform: uppercase;
    font-family: var(--font-Reddit-Condensed) !important;
    width: 100%;
    display: block;
    padding: 28px 24px 24px 24px;
    text-align: center;
    margin-top: 18px;
    transition: 0.5s ease;
}

.lt-ty-sec .carousel-item.types-light a:hover .carousel-text.types-txt {
    background: var(--secondarycolor);
    transition: 0.5s ease;
}

/* HOME PAGE TYPE OF LIGHTING CSS CODE ::::::::::::::::::::: */



/* HOME PAGE A Creative Collection Of Decorative SECTION :::::::::: */

.brands-carousel-sec {
    padding: 4px 0 0 !important;
}

.brands-carousel-sec .brands-heading-txt blockquote {
    margin-top: 8px;
}

.brands-carousel-sec .brands-heading-txt blockquote P {
    font-size: 22px !important;
}

.brands-logo-clmn span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 44%;
    display: block;
}

.brands-logo-clmn span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: none;
    top: 0;
    left: 0;
}

.brands-logo-row {
    border-bottom: 1px solid var(--cementlightcolor);
    padding-bottom: 58px !important;
    padding-top: 0px !important;
}

/* HOME PAGE A Creative Collection Of Decorative SECTION :::::::::: */





/* HOME PAGE IN STORE SEC CSS ::::::::::::::::::::::::::::::::::: */


.blockquote-left-line-DS h6 {
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.blockquote-left-line-DS h6::before {
    position: absolute;
    content: "";
    width: 13px;
    height: 100%;
    background: var(--secondarycolor);
    top: 0;
    left: -36px;
}

.in-store-sec {
    padding-bottom: 3px !important;
}

.in-store-sec .et_pb_row.instore-row {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.in-store-sec .et_pb_row.instore-row .instore-clmn-two::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/Graphic_1.svg);
    background-position: 17% top !important;
    background-repeat: no-repeat !important;
    background-size: 123% !important;
    top: 0;
    left: 0;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg) brightness(99%) contrast(107%);
    opacity: 0.4;
    z-index: -1;
}

.in-store-sec .et_pb_row.instore-row .instore-clmn-two {
    position: relative;
}


/* image :::::::::::::::::::::::::::::::: */

.in-store-sec .et_pb_row.instore-row .instore-clmn-one {
    width: 35%;
    margin: -21px -120px 0 0;
    z-index: 9;
}

.in-store-sec .et_pb_row.instore-row .instore-clmn-one .instore-img {
    height: 100%;
}

.in-store-sec .et_pb_row.instore-row .instore-clmn-one .instore-img span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 130%;
    display: block;
    /* margin-top: 40px; */
}

.in-store-sec .et_pb_row.instore-row .instore-clmn-one .instore-img span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* content :::::::::::::::::::::::::::::::: */

.in-store-sec .et_pb_row.instore-row .instore-clmn-two {
    width: 75%;
    background: var(--greycolor);
    padding: 145px 140px 10px 268px;
}

.in-store-sec .instore-clmn-two h6 {
    margin-top: 0;
    margin-bottom: 50px;
}

.instore-clmn-two .et_pb_button_module_wrapper {
    padding-top: 28px;
    padding-bottom: 80px;
}

.instore-clmn-two .since-txt blockquote {
    margin-bottom: 5px;
}

.instore-clmn-two .since-txt blockquote p {
    font-size: 20px !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

/* HOME PAGE IN STORE SEC CSS ::::::::::::::::::::::::::::::::::: */





/* HOME PAGE PROMO SEC ::::::::::::::::::::::::::::::::: */

.promo-sec {
    padding-bottom: 84px !important;
}

.promo-sec .et_pb_row.promo-row {
    max-width: 94.3%;
}

.promo-sec .promo-clmn {
    display: flex;
}
.promo-sec .promo-clmn a {
    text-decoration: underline !important;
    color: var(--whitecolor) !important;
}

.promo-sec .promo-clmn .promo-txt {
    background: var(--blackcolor);
    width: 32.5%;
    margin: 0;
}
.promo-sec .promo-clmn .promo-txt ul li::before {
    background: var(--whitecolor);
}
.promo-sec .promo-clmn .promo-txt :where(p, h1, h2, h3, h4, h5, h6, li) {
    color: var(--whitecolor) !important;
}

.promo-sec .promo-clmn .promo-txt .et_pb_text_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 35px;
}

.promo-sec .promo-clmn .promo-txt .et_pb_text_inner h3 {
    margin: 0 0 18px;
}

.promo-sec .promo-clmn .promo-txt .et_pb_text_inner h3,
.promo-sec .promo-clmn .promo-txt .et_pb_text_inner p {
    color: var(--whitecolor) !important;
}

.promo-sec .promo-clmn .promo-txt .et_pb_text_inner p {
    font-size: 15px;
    margin-bottom: 0;
}

.promo-sec .promo-clmn .promo-img {
    width: 25.5%;
    margin: 0;
}

.promo-sec .promo-clmn .promo-img span {
    height: 100% !important;
    position: relative;
    padding-bottom: 100%;
    display: block;
}

.promo-sec .promo-clmn .promo-img span img {
    /* height: 100%;
    object-fit: cover; */
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-sec .promo-clmn .discount-txt {
    width: 49%;
    background: var(--secondarycolor);
    padding: 30px;
    display: flex;
    align-items: center;
}

.promo-sec .promo-clmn .discount-txt .et_pb_text_inner {
    width: 100%;
}

.promo-sec .promo-clmn .discount-txt h2 {
    font-size: 120px !important;
    text-align: center;
    line-height: 97px !important;
    color: var(--whitecolor);
    font-weight: 700;
    font-family: var(--font-Reddit-Condensed) !important;
}
.promo-sec .promo-clmn :where(p, h1, h2, h3, h4, h5, h6, li) {
    color: var(--whitecolor) !important;
}
.promo-sec .promo-clmn ul li::before {
    background: var(--whitecolor);
}

.promo-sec .promo-clmn .discount-txt h5 {
    color: var(--whitecolor);
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
}

/* HOME PAGE PROMO SEC ::::::::::::::::::::::::::::::::: */





/* HOME PAGE BE INSPIRED CSS ::::::::::::::::::::: */

.be-inspired-sec .be-title-txt h3 {
    margin: 10px 0 0;
}

.be-inspired-sec .be-title-txt h4 {
    margin-top: 8px;
    margin-bottom: 0;
}

.catalog-cat-clmn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.be-inspired-sec {
    background: #f5f6fa;
}

.be-inspired-sec .catalog-cat-row {
    max-width: 63%;
    padding-top: 13px;
}

.be-inspired-sec .catalog-cat-row .et_pb_blurb_content {
    max-width: 100%;
}

.be-inspired-sec .catalog-cat-row .candel-inner {
    padding: 57% 0 11px 0;
    margin-bottom: 90px;
    position: relative;
    width: 100%;
    background-size: contain;
    /* background: rgba(194, 198, 202, 0.12); */
}

.be-inspired-sec .catalog-cat-row .candel-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    border-bottom: 1px solid #000;
    bottom: -65px;
}

.be-inspired-sec .catalog-cat-row .et_pb_blurb_content h4,
.be-inspired-sec .catalog-cat-row .et_pb_blurb_content p {
    width: fit-content;
    background: var(--blackcolor);
    padding: 17px 61px;
    color: var(--whitecolor);
    font-weight: 400 !important;
}

.be-inspired-sec .catalog-cat-row .pendent-inner,
.be-inspired-sec .catalog-cat-row .light-inner {
    width: 45%;
    padding: 19% 0 11px 0;
    margin: 37px 0 0;
    background-size: contain;
}

.be-inspired-sec .catalog-cat-row .pendent-inner {
    position: relative;
}

.be-inspired-sec .catalog-cat-row .pendent-inner::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 128%;
    right: -12%;
    border-right: 1px solid #000;
    top: -35px;
}

.be-inspired-sec .catalog-cat-row .catalog-cat-clmn .candel-inner::after, .be-inspired-sec .catalog-cat-row .pendent-inner::after, .be-inspired-sec .catalog-cat-row .light-inner::after {
    position: absolute;
    content: "";
    width: 100%;
    /* border-bottom: 1px solid #000; */
    bottom: 0;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.view-cat-clmn a.box-button {
    margin-top: 22px;
}

.view-cat-clmn {
    border-bottom: 2px solid #000;
    padding-bottom: 38px;
}

.be-inspired-sec .view-cat-row {
    padding-bottom: 15px;
    max-width: 90%;
}

/* HOME PAGE BE INSPIRED CSS ::::::::::::::::::::: */







/* HOME PAGE OUR EXP SEC CSS ::::::::::::::::::::::::: */

.our-exp-sec .our-exp-clmn-one {
    margin-right: 0;
    width: 55%;
    margin-top: 25px;
}

.our-exp-sec .our-exp-clmn-one h2 {
    padding-bottom: 15px;
    font-weight: 700;

}

.our-exp-sec .our-exp-clmn-one a.box-button {
    margin-top: 32px;
}

.our-exp-sec .et_pb_row.our-exp-row {
    display: flex;
    justify-content: space-between;
    max-width: 88%;
    padding: 20px 0 10px;
}

.our-exp-sec .et_pb_row.our-exp-row::after {
    display: none;
}

.our-exp-sec .our-exp-clmn-two {
    width: 32%;
    padding-left: 75px;
    position: relative;
    display: flex;
    align-items: center;
}
.our-exp-sec .our-exp-clmn-two .our-exp-img  {
    width: 100%;
}
.our-exp-sec .our-exp-clmn-two .our-exp-img span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 132%;
    display: block;
    width: 100%;
    height: 0;
}
.our-exp-sec .our-exp-clmn-two .our-exp-img span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.our-exp-sec .our-exp-clmn-two::before {
    position: absolute;
    content: "";
    width: 5px;
    left: 0;
    height: 93%;
    border-left: 1px solid;
}

.our-exp-sec .our-exp-clmn-one a.read-more-toggle {
    text-decoration: underline !important;
    color: var(--greycolor) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
}

/* HOME PAGE OUR EXP SEC CSS ::::::::::::::::::::::::: */






/* HOME PAGE CISTS OUR SEC CSS  ::::::::::::::::::::::::: */

.vists-our-sec {
    background: var(--blackcolor);
    padding: 26px 0 !important;
    position: relative;
}

.vists-our-sec::before {
    position: absolute;
    content: "";
    width: 73.7%;
    height: 150px;
    background: url(../images/location-line.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 11px;
    right: -4px;
}

.vists-our-sec .et_pb_row.visit-row {
    max-width: 95%;
    padding: 0;
}

.vists-our-sec .visit-clmn-one {
    display: flex;
    flex-direction: row;
    column-gap: 28px;
    width: 44%;
    margin: 0;
}

.vists-our-sec .visit-clmn-one .visi-img-one {
    width: 53%;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
}

.vists-our-sec .visit-clmn-one .visi-img-one span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 125%;
    display: block;
}

.vists-our-sec .visit-clmn-one .visi-img-one span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.vists-our-sec .visit-clmn-one .visi-img-two {
    width: 40%;
}

.vists-our-sec .visit-clmn-one .visi-img-two span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 132%;
    display: block;
}

.vists-our-sec .visit-clmn-one .visi-img-two span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vists-our-sec .visit-clmn-two {
    width: 54% !important;
    display: flex;
    flex-direction: row;
    column-gap: 60px;
    padding-left: 106px;
    padding-top: 35px;
    padding-bottom: 30px;
}

.vists-our-sec .visit-clmn-two .visi-img-three {
    width: 80px;
    margin-top: 63px;
}


/* HOME PAGE CISTS OUR SEC CSS  ::::::::::::::::::::::::: */






/* HOME PAGE NEWS LETTTER CSS :::::::::::::::::::::::::::::: */

.news-let-sec {
    padding-top: 46px !important;
    padding-bottom: 20px !important;
}

.news-let-sec .news-let-row {
    padding-left: 100px;
    padding-right: 95px;
}

.news-let-clmn-one {
    margin-right: 111px !important;
    width: 42% !important;
}

.news-let-sec .news-let-row .news-let-clmn-one h3 {
    font-family: var(--font-Reddit) !important;
    font-size: 28px;
    color: var(--greycolor);
    font-weight: 700;
    text-align: right;
    position: relative;
    padding-top: 2px;
    padding-bottom: 2px;
}

.news-let-sec .news-let-row .news-let-clmn-one h3::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    border-right: 4px dotted;
    right: -24px;
    top: 0;
}

/* FORM ::::::::::::::::::::::::::::::::::::::::::::::: */

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li {
    padding-left: 0;
    padding: 0;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li::before {
    display: none;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.first-nme,
.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.last-nme {
    width: 49%;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.email-addr {
    width: 100%;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.sign-me {
    width: 100%;
    position: relative;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.sign-me input.submit-btn {
    width: 49%;
    border: 1px solid var(--greycolor);
    border-radius: 0 !important;
    padding: 9px 40px !important;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: 500;
    color: var(--whitecolor) !important;
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    background: var(--blackcolor);
    margin-top: 0;
    cursor: pointer;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.sign-me input.submit-btn:hover {
    border: 1px solid var(--secondarycolor) !important;
    color: var(--whitecolor) !important;
    background: var(--secondarycolor) !important;
    transition: 0.5s ease !important;
    padding: 9px 40px !important;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.sign-me p {
    display: flex;
    justify-content: flex-end;
}

.news-let-sec .news-let-row .news-let-clmn-two ul.news-let li.sign-me span.wpcf7-spinner {
    position: absolute;
    margin-top: 8px;
    margin-right: 52%;
    z-index: -1;
}

/* HOME PAGE NEWS LETTTER CSS :::::::::::::::::::::::::::::: */






/* INNER PAGE BANNER CSS CODE :::::::::::::::::::::::::::::::: */

.cmn-banner-img {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.cmn-banner-img .cmn-bnr-row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-width: 93.5%;
}

.cmn-banner-img span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 37.5%;
    display: block;
}

.cmn-banner-img span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* INNER PAGE BANNER CSS CODE :::::::::::::::::::::::::::::::: */





/* ABOUT PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.abt-intro-sec .abt-intro-row {
    padding: 0 !important;
    width: 87.5%;
}

.abt-intro-sec .abt-intro-row h1 {
    margin-top: 10px;
    padding-bottom: 47px;
    text-align: center;
}

.abt-intro-clmn a.box-button {
    margin-top: 52px;
}

.our-his-sec {
    padding-top: 29px !important;
}


/* OUR HISTORY SECTION CSS ::::::::::::::::::::::::::::::::::: */

.abt-our-history-outer,
.our-his-sec {
    background: #f5f6fa;
    padding-bottom: 0 !important;
}

.abt-our-history-row h2 {
    margin-top: 0;
    font-weight: 700;
    padding-bottom: 10px;
}

.abt-our-history-outer .et_pb_row {
    padding-top: 5px;
    padding-bottom: 0 !important;
    max-width: 88%;
}

.et_pb_row.our-his-row {
    display: flex;
    flex-direction: row;
    max-width: 87%;
    padding-bottom: 61px;
}

.our-his-row .our-his-clmn-two {
    width: 20%;
    margin-right: 23px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.our-his-row .our-his-clmn-two .our-img-his {
    width: 100%;
}
.our-his-row .our-his-clmn-two .our-img-his span.et_pb_image_wrap {
    position: relative !important;
    padding-bottom: 105%;
    display: block !important;
    width: 100% !important;
    height: 0 !important;
}

.our-his-row .our-his-clmn-two .our-img-his img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.our-his-row .our-his-clmn-two .our-img-his span.et_pb_image_wrap img {
    object-fit: cover;
}


.our-his-row .our-his-clmn-two a.box-button {
    width: 100%;
    margin-bottom: 10px;
}

.our-his-row::after {
    display: none;
}

.our-his-row .our-his-clmn-three {
    width: 36%;
}
.our-his-row .our-his-clmn-three .our-img-his-two {
    display: grid;
    align-items: end;
    height: 100%;
}

.our-his-row .our-his-clmn-one {
    width: 37%;
    padding-top: 108px;
    margin-right: 57px;
}

.our-his-row .our-his-clmn-three span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 126%;
    display: block;
}

.our-his-row .our-his-clmn-three span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .our-his-row .our-his-clmn-two .our-img-his span.et_pb_image_wrap {
    position: relative;
    display: block;
    padding-bottom: 70% !important;
}

.our-his-row .our-his-clmn-two .our-img-his span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */


.our-exp-sec.abt-us-page-exp {
    padding-bottom: 0;
}

.our-exp-sec.abt-us-page-exp .et_pb_row.our-exp-row {
    padding-top: 6px !important;
    padding-bottom: 0 !important;
}


.visit-store-sec {
    padding-bottom: 0 !important;
    padding-top: 57px !important;
}

.visit-store-sec .et_pb_row.visit-row {
    max-width: 100% !important;
    padding-top: 5px;
    padding-bottom: 0;
}

.visit-store-sec .visit-clmn {
    display: flex;
    max-width: 100%;
}

.visit-store-sec .visit-clmn .visit-store-img {
    width: 24.5%;
    margin-right: 0;
}

.visit-store-sec .visit-clmn .visit-store-img span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 100%;
    display: block;
    height: 100%;

}

.visit-store-sec .visit-clmn .visit-store-img span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-store-sec .visit-clmn .visit-store-txt {
    background: var(--blackcolor);
    padding: 20px 100px 75px 100px;
    position: relative;
}
.visit-store-sec .visit-clmn .visit-store-txt p, .visit-store-txt ul li, .visit-store-txt ol li {
    color: var(--whitecolor) !important;
}
.visit-store-sec .visit-clmn .visit-store-txt a {
    color: var(--whitecolor) !important;
    text-decoration: underline !important;
}
.visit-store-txt ul li::before {
    background-color: white;
}

.visit-store-sec .visit-clmn .visit-store-txt::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 200px;
    background: url(../images/location-line.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 130%;
    bottom: 11px;
    right: 0px;
}

.visit-store-sec .visit-clmn .visit-store-txt h6,
.visit-store-sec .visit-clmn .visit-store-txt h3 {
    color: var(--whitecolor);
}

.visit-store-img-right {
    margin-left: 34px !important;
    display: flex;
    align-items: center;
    margin-bottom: 2.75% !important;
}


.visit-store-img-right img {
    width: 54px;
    height: 63px;
    object-fit: contain;
}

.our-his-clmn-one .blockquote-left-line-DS blockquote p::before {
    position: absolute;
    content: "";
    width: 13px;
    height: 100%;
    background: var(--secondarycolor);
    top: 0;
    left: 0;
}

.our-his-clmn-one .blockquote-left-line-DS blockquote p {
    position: relative;
    line-height: 44px !important;
    padding-left: 30px;
}

.news-let-sec.abt-news-let {
    padding-top: 10px !important;
}

/* ABOUT PAGE CSS CODE :::::::::::::::::::::::::::::::: */


/* ABOUT-HISTORY PAGE CSS CODE :::::::::::::::::::::::::::::::: */

.history-ab-intro {
    padding-bottom: 46px !important;
}

.our-his-sec.our-histroyyy {
    background: var(--whitecolor);
    padding-top: 0 !important;
} 
.our-his-sec.our-histroyyy .et_pb_row.our-his-row {
    padding-bottom: 0px !important;
    padding-top: 0;
    max-width: 93.2% !important;
    padding-right: 33px;
    padding-left: 40px;
}
.our-his-sec.our-histroyyy .blockquote-left-line-DS blockquote p {
    text-align: center;
}

.light-sec {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.light-sec .light-row {
    display: flex;
    max-width: 93.2% !important;
    padding-right: 38px;
    padding-bottom: 0 !important;
    padding-top: 20px;
}
.light-sec .light-clmn-one {
    margin-right: 20px;
    width: 55% !important;
    margin-bottom: 0 !important;

}
.light-sec .light-clmn-one .light-img span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 69%;
    display: block;
}
.light-sec .light-clmn-one .light-img span.et_pb_image_wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.light-sec .light-clmn-two  {
    background-color: var(--blackcolor);
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 47% !important;
} 

.light-sec .light-clmn-two  :where(p, h1, h2, h3, h4, h5, h6, a, li) {
    color: var(--whitecolor) !important;
}
.light-sec .light-clmn-two ul li::before {
    background-color: var(--whitecolor);
}

.light-sec .light-clmn-two h4 {
    font-size: 30px !important;
    line-height: 34px;
    font-family: besley !important;
    text-transform: none;
    text-align: center;
}
.light-sec .light-clmn-two  a.arrow-button {
    color: var(--whitecolor) !important;
    font-weight: 500;
}
.light-sec .light-clmn-two  a.arrow-button:hover {
    color: var(--whitecolor) !important;
}
.light-sec .light-clmn-two  a.arrow-button::after {
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7438%) hue-rotate(294deg) brightness(103%) contrast(109%); */
    background: url(../images/Arrow_lt_w.svg) !important;
    background-repeat: no-repeat !important;
}
/* .light-sec .light-clmn-two  a.arrow-button:hover::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7438%) hue-rotate(294deg) brightness(103%) contrast(109%);
} */
.light-sec .light-clmn-two .light-txt {
    margin-bottom: 0;
    padding-bottom: 53px;
    position: relative;
}
.light-sec .light-clmn-two .light-txt::before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%, 0px);
    bottom: 30px;
    width: 47px;
    height: 2px;
    border-bottom: 4px dotted;
    border-color: white;
}
.light-sec .light-clmn-two .light-txt a {
    text-decoration: underline !important;
}

/* ABOUT-HISTORY PAGE CSS CODE :::::::::::::::::::::::::::::::: */

/* OUR TEAM DESIGN PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.otd-intro {
    padding-bottom: 0 !important;
}

.in-store-sec.otd-designer-highlight {
    padding-top: 43px !important;
}

.our-exp-tm-sec.et_section_regular {
    padding-top: 28px;
    padding-bottom: 19px !important;
}
.our-exp-tm-sec .our-exp-tm-row .our-exp-tm-txt {
    margin-bottom: 68px;
}
.our-exp-tm-sec .our-exp-tm-row {
    max-width: 80%;
}

.our-exp-tm-txt h2 {
    font-weight: 700;
}
.designers-grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 19px;
    justify-content: center;
    row-gap: 32px;
  }
  
  .designer-item {
    background-color: #F5F7FA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 42px;
    padding: 0 45px 27px 45px;
    width: 23.6%;
    transition: 0.5s;
    cursor: pointer;
  }
  .designer-item:hover {
    background-color: var(--secondarycolor);
    transition: 0.5s;
  }
  .designer-item:hover h3.designer-title {
    color: var(--whitecolor);
    transition: 0.5s;
  } 
  .designer-item:hover p.designer-position {
    color: var(--whitecolor) !important;
    transition: 0.5s;
  } 
  .designers-grid .designer-item h3.designer-title {
    font-size: 25px;
    line-height: 25px;
    margin-top: 24px;
    margin-bottom: 4px;
}
.designers-grid .designer-item .designer-position {
    font-size: 15px;
    line-height: 17px;
    text-transform: uppercase;
  }
  .designers-grid .designer-item .designer-thumbnail {
    position: relative;
    padding-bottom: 126%;
    display: block;
    /* width: 67%; */
    margin: -42px auto 0 auto;
}
  .designers-grid .designer-item .designer-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }


  .visit-store-txt.medow-txt h6 {
    padding-top: 77px;
    margin-top: 0;
    position: relative;
}
.visit-store-txt.medow-txt h6::before {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    background: url(../images/pin-loc.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0px;
    left: 0px;
}
  
  .visit-store-txt.medow-txt {
    width: 39% !important;
    margin-bottom: 0 !important;
}
.visit-store-img.medow-img {
    margin-bottom: 0 !important;
    width: 24% !important;
}
.visit-store-txt.medow-txt-two {
    width: 37% !important;
}
.visit-store-txt.medow-txt {
    padding: 42px 15px 75px 40px !important;
}
.visit-store-txt.medow-txt-two {
    padding: 20px 15px 75px 52px !important;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
.medow-sec .visit-clmn .visit-store-txt::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 55px !important;
    background: url(../images/location-line.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover !important;
    bottom: 11px;
    right: 0px;
}
 
.visit-store-sec.medow-sec :where(p, h1, h2, h3, h4, h5, h6, a, li) {
    color: var(--whitecolor) !important;
}


.designer-popup-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--greycolor) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999 !important;
    visibility: visible;
    opacity: 1;
    /* transition: opacity 0.3s ease; */
    overflow-y: auto;
}
.designer-popup-content::-webkit-scrollbar {
    display: none;
}

.designer-popup-content .popup-inner {
    width: 73% !important;
    margin: 0 auto;
    height: 100%;
    align-content: center;
    align-items: center;
    column-gap: 35px;
    padding: 150px 10px 70px 10px;
    display: table;
    margin: 0 auto;
    position: absolute;
    top: 0;
    
}
.popup-inner span.popup-close {
    position: absolute;
    top: 40px;
    right: 10%;
    font-size: 0;
    color: #fff;
    font-weight: 300;
    width: 23px;
    height: 23px;
    cursor: pointer;
}
.popup-inner span.popup-close::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/close-icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}
.popup-inner span.popup-close:hover::before {
    filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(6595%) hue-rotate(238deg) brightness(90%) contrast(97%);
}

    
.designer-popup-content :where(p, h1, h2, h3, h4, h5, h6, a, li ) {
    color: var(--whitecolor) !important;
}

.popup-inner h6.popup-title {
    margin-top: 42px;
}
.popup-inner .popup-thumbnail {
    position: relative;
    padding-bottom: 44%;
    display: block;
    width: 36%;
    height: 0;
}

.popup-inner .popup-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.popup-inner .title-position-pop {
    width: 64%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-inner .dis-pop-outer {
    display: flex;
    gap: 44px;
}
.popup-inner p.popup-position {
    font-family: var(--font-Reddit-Condensed) !important;
    font-size: 30px !important;
    font-weight: 300 !important;
    line-height: 27px;
    text-transform: uppercase;
}


.popup-inner .popup-content {
    padding: 36px 50px 42px 0 !important;
    position: relative;
    margin-top: 70px;
}
.popup-inner .popup-content::before {
    position: absolute;
    content: "";
    width: 79.5vw;
    height: 100%;
    background: var(--cementcolor);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: -74%;
    z-index: -1;
}

.designer-popup-content ol {
    padding-left: 20px;
}

/* OUR TEAM DESIGN PAGE CSS CODE :::::::::::::::::::::::::::::::: */


/* LIGHT OF LIGHTING PAGE CSS CODE :::::::::::::::::::::::::::::::: */



.tol-intro .et_pb_button_module_wrapper.et_pb_button_0_wrapper.et_pb_module {
    text-align: center;
} 

.lt-ty-sec.tol-box-section  {
    background-color: #F6F7FB;
    padding-top: 50px !important;
    padding-bottom: 40px !important;
}
.lt-ty-sec.tol-box-section .lt-ty-txt h4 {
    text-align: center;
    margin-top: 0;
}
.lt-ty-sec.tol-box-section .lt-ty-row {
    max-width: 90%;
}
.lt-ty-sec.tol-box-section .our-liht {
    display: flex;
    flex-wrap: wrap;
    column-gap: 57px;
    row-gap: 50px;
}
.lt-ty-sec.tol-box-section .carousel-item.types-light {
    width: 29.5%;
}
.lt-ty-sec.tol-box-section .lt-ty-code.or-lit-code {
    padding-top: 23px;
}
.tol-box-section.lt-ty-sec .lt-ty-row .lt-ty-clmn {
    padding-bottom: 75px;
    border-bottom: 2px solid #3e4c59;
    padding-left: 111px;
    padding-right: 111px;
}

.tol-intro a.box-button {
    margin-top: 48px;
}
.abt-intro-sec.tol-intro {
    padding-bottom: 46px !important;
}
.abt-intro-sec.tol-intro.tol-detail.et_section_regular {
    padding-bottom: 64px !important;
}

/* TYPE OF LIGHTING PAGE CSS CODE :::::::::::::::::::::::::::::::: */


/* TYPE OF LIGHTING -MAIN PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.tol-be-inspired-main-section {
    background-color: #F6F7FB;
    padding-top: 40px !important;
    padding-bottom: 69px !important;
}
.tol-be-inspired-main-section .lt-ty-txt h4 {
    text-align: center;
    margin-top: 0;
}

.tol-be-inspired-main-section .tol-be-inspired-outer-row {
    width: 100%;
    max-width: 88%;
    border-bottom: 2px solid #3e4c59;
    padding-bottom: 35px;
}
.tol-be-inspired-main-section .lt-ty-code {
    padding-bottom: 45px;
    /* border-bottom: 3px solid #3e4c59; */
    padding-left: 111px;
    padding-right: 111px;
    margin-bottom: 0 !important;
}
.lt-ty-sec.tol-box-section .tol-be-inspired-outer-row {
    max-width: 90%;
}

.lighting-category-filter {
    background: var(--secondarycolor);
    padding: 14px 10px 7px 25px;
    margin-top: 37px;
    margin-bottom: 5px;
}
.lighting-category-filter::-webkit-scrollbar {
    display: none;
}

.lighting-category-filter button {
    color: var(--whitecolor);
    border: 0 !important;
    background-color: transparent;
    cursor: pointer;
    margin-right: 20px;
    font-family: var(--font-Reddit);
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}
.lighting-category-filter button::before {
    position: absolute !important;
    content: "" !important;
    display: block !important;
    width: 0px;
    height: 6px;
    background: var(--blackcolor);
    bottom: 0;
    left: 0;
    transition: 0.5s ease;
    left: 50%;
    transform: translateX(-50%);
}
.lighting-category-filter button:hover::before  {
    width: 40px;
    transition: 0.5s ease;
}
button.filter-button.active::before  {
    width: 40px;    
}


/* .lighting-category-filter {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
    padding: 10px 0; 
  }
  
  .lighting-category-filter button {
    flex-shrink: 0;
    margin-right: 10px; 
    white-space: nowrap;
  } */


  
  .lighting-category-filter button {
    flex-shrink: 0; /* Prevent child elements from shrinking */
    scroll-snap-align: start; /* Align items when scrolling */
  }

  .lighting-category-filter {
    display: flex;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    /* justify-content: center; */
    /* cursor: grab;  */
    user-select: none;
  }
  
  /* .lighting-category-filter:active {
    cursor: grabbing; 
  } */




  .lighting-posts-grid {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 54px;
    /* column-gap: 90px; */
  } 

 

  /* COUNT---ONE */

  .lighting-posts-grid .lighting-post-item.lighting-outer-1 {
    width: 100%;
    grid-column: span 2;
    position: relative;
}

.lighting-post-thumbnail a {
    padding: 68% 0 10px 0;
    margin-bottom: 65px;
    margin-top: 65px;
    position: relative;
    display: block;
}
.lighting-post-thumbnail a img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    background: #f6f7fb;

}
.lighting-post-item {
    position: relative;
}


.lighting-post-item.lighting-outer-2::before, .lighting-post-item.lighting-outer-4::before, .lighting-post-item.lighting-outer-7::before, .lighting-post-item.lighting-outer-9::before, .lighting-post-item.lighting-outer-12::before, .lighting-post-item.lighting-outer-14::before, .lighting-post-item.lighting-outer-17::before, .lighting-post-item.lighting-outer-19::before, .lighting-post-item.lighting-outer-22::before, .lighting-post-item.lighting-outer-24::before, .lighting-post-item.lighting-outer-26::before, .lighting-post-item.lighting-outer-28::before, .lighting-post-item.lighting-outer-30::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 85%;
    right: 0%;
    border-right: 1px solid #000;
    top: 28px;
}
.lighting-post-item::after {
    position: absolute;
    content: "";
    width: 100%;
    border-top: 1px solid #000;
    top: 0;
}

.lighting-post-item:first-child:after{
    display: none;
}

.lighting-post-item.lighting-outer-2 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-4 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-7 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-9 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-12 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-14 .lighting-post-thumbnail a,.lighting-post-item.lighting-outer-17 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-19 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-22 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-24 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-26 .lighting-post-thumbnail a,.lighting-post-item.lighting-outer-28 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-30 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-32 .lighting-post-thumbnail a,.lighting-post-item.lighting-outer-24 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-24 .lighting-post-thumbnail a {
    margin-right: 45px;
    padding: 59% 0 10px 0;
}
.lighting-post-item.lighting-outer-3 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-5 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-8 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-10 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-13 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-15 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-18 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-20 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-23 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-25 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-27 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-29 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-31 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-33 .lighting-post-thumbnail a,.lighting-post-item.lighting-outer-24 .lighting-post-thumbnail a, .lighting-post-item.lighting-outer-24 .lighting-post-thumbnail a {
    margin-left: 45px;
    padding: 59% 0 10px 0;
}



.lighting-post-item.lighting-outer-6, .lighting-post-item.lighting-outer-11, .lighting-post-item.lighting-outer-16, .lighting-post-item.lighting-outer-21 {
    width: 100%;
    grid-column: span 2;
    position: relative;
}


  /* COUNT---ONE */ 
  .lighting-posts-grid.lighting-posts-grid-1 .lighting-post-item.lighting-outer-1::after {
    display: none;
  }

  /* COUNT---TWO */ 

  .lighting-posts-grid.lighting-posts-grid-2 .lighting-post-item.lighting-outer-2 {
    width: 100%;
    grid-column: span 2;
    position: relative;
}

    .lighting-posts-grid.lighting-posts-grid-2 .lighting-post-item.lighting-outer-2::before {
        display: none;
    }
    /* .lighting-posts-grid.lighting-posts-grid-2 .lighting-post-item.lighting-outer-2::after {
        display: none;
    } */
    .lighting-posts-grid.lighting-posts-grid-2 .lighting-post-item.lighting-outer-2 .lighting-post-thumbnail a {
        margin-right: 0;
    }

  /* COUNT---THREE */  



  .lighting-posts-grid.lighting-posts-grid-3 .lighting-post-item.lighting-outer-2::after, .lighting-posts-grid.lighting-posts-grid-3 .lighting-post-item.lighting-outer-3::after {
            display: none;
        }

    /* COUNT---FOUR */  


    .lighting-posts-grid.lighting-posts-grid-4 .lighting-post-item.lighting-outer-4 a {
        margin-right: 0 !important;
    }
    .lighting-posts-grid.lighting-posts-grid-4 .lighting-post-item.lighting-outer-4 {
        grid-column: span 2;
    }
    /* .lighting-posts-grid.lighting-posts-grid-4 .lighting-post-item.lighting-outer-4::after {
        display: none;
    } */
    .lighting-posts-grid.lighting-posts-grid-4 .lighting-post-item.lighting-outer-4::before {
        display: none;
    }


    /* COUNT---FIVE*/  
    
    
    .lighting-posts-grid.lighting-posts-grid-5 .lighting-post-item.lighting-outer-4::after, .lighting-posts-grid.lighting-posts-grid-5 .lighting-post-item.lighting-outer-5::after {
        display: none;
    }

    /* COUNT---SIX*/  

    .lighting-posts-grid.lighting-posts-grid-6 .lighting-post-item.lighting-outer-6::after {
        display: none;
    }


    /* COUNT---SEVEN*/ 

    .lighting-posts-grid.lighting-posts-grid-7 .lighting-post-item.lighting-outer-7 {
        grid-column: span 2;
    }
    
    .lighting-posts-grid.lighting-posts-grid-7 .lighting-post-item.lighting-outer-7 a {
        margin-right: 0 !important;
    }


    /* COUNT---EIGHT */  

    /* .lighting-posts-grid.lighting-posts-grid-8 .lighting-post-item.lighting-outer-7::after, .lighting-posts-grid.lighting-posts-grid-8 .lighting-post-item.lighting-outer-8::after {
        display: none;
    } */


       /* COUNT---NINE */  

       .lighting-posts-grid.lighting-posts-grid-9 .lighting-post-item.lighting-outer-9 {
        grid-column: span 2;
    }

    .lighting-posts-grid.lighting-posts-grid-9 .lighting-post-item.lighting-outer-9 a {
        margin-right: 0px;
    }
    .lighting-posts-grid.lighting-posts-grid-9 .lighting-post-item.lighting-outer-9::before {
        display: none;
    }
    /* .lighting-posts-grid.lighting-posts-grid-9 .lighting-post-item.lighting-outer-9::after {
        display: none;
    } */

        /* COUNT---TEN */  

        /* .lighting-posts-grid.lighting-posts-grid-10 .lighting-post-item.lighting-outer-9::after, .lighting-posts-grid.lighting-posts-grid-10 .lighting-post-item.lighting-outer-10::after {
            display: none;
        } */


       /* COUNT---ELEVEN */  

.lighting-posts-grid.lighting-posts-grid-11 .lighting-post-item.lighting-outer-11 {
        grid-column: span 2;
    }

    .lighting-posts-grid.lighting-posts-grid-11 .lighting-post-item.lighting-outer-11 a {
        margin-right: 0px;
    }
    .lighting-posts-grid.lighting-posts-grid-11 .lighting-post-item.lighting-outer-11::before {
        display: none;
    }
    /* .lighting-posts-grid.lighting-posts-grid-11 .lighting-post-item.lighting-outer-11::after {
        display: none;
    } */

          /* COUNT---TWEL*/ 

          .lighting-posts-grid.lighting-posts-grid-12 .lighting-post-item.lighting-outer-12 {
            grid-column: span 2;
        }
    
        .lighting-posts-grid.lighting-posts-grid-12 .lighting-post-item.lighting-outer-12 a {
            margin-right: 0px;
        }
        .lighting-posts-grid.lighting-posts-grid-12 .lighting-post-item.lighting-outer-12::before {
            display: none;
        }
        /* .lighting-posts-grid.lighting-posts-grid-12 .lighting-post-item.lighting-outer-12::after {
            display: none;
        } */


           /* COUNT---13*/ 

           /* .lighting-posts-grid.lighting-posts-grid-13 .lighting-post-item.lighting-outer-12::after, .lighting-posts-grid.lighting-posts-grid-13 .lighting-post-item.lighting-outer-13::after {
            display: none;
        } */


        /* COUNT---14*/ 

    .lighting-posts-grid.lighting-posts-grid-14 .lighting-post-item.lighting-outer-14 {
        grid-column: span 2;
    }

    .lighting-posts-grid.lighting-posts-grid-14 .lighting-post-item.lighting-outer-14 a {
        margin-right: 0px;
    }
    .lighting-posts-grid.lighting-posts-grid-14 .lighting-post-item.lighting-outer-14::before {
        display: none;
    }
    /* .lighting-posts-grid.lighting-posts-grid-14 .lighting-post-item.lighting-outer-14::after {
        display: none;
} */

  /* COUNT---15*/ 

  /* .lighting-posts-grid.lighting-posts-grid-15 .lighting-post-item.lighting-outer-14::after, .lighting-posts-grid.lighting-posts-grid-15 .lighting-post-item.lighting-outer-15::after {
    display: none;
} */
    
    /* COUNT---sixten */  
    /* .lighting-posts-grid.lighting-posts-grid-16 .lighting-post-item.lighting-outer-16::after {
        display: none;
    } */

      /* COUNT---22 */  


      .lighting-posts-grid.lighting-posts-grid-22 .lighting-post-item.lighting-outer-22 {
        grid-column: span 2;
    }

    .lighting-posts-grid.lighting-posts-grid-22 .lighting-post-item.lighting-outer-22 a {
        margin-right: 0px;
    }
    .lighting-posts-grid.lighting-posts-grid-22 .lighting-post-item.lighting-outer-22::before {
        display: none;
    }
    /* .lighting-posts-grid.lighting-posts-grid-22 .lighting-post-item.lighting-outer-22::after {
        display: none;
} */

  /* COUNT---24 */  

  .lighting-posts-grid.lighting-posts-grid-24 .lighting-post-item.lighting-outer-24 {
    grid-column: span 2;
}

.lighting-posts-grid.lighting-posts-grid-24 .lighting-post-item.lighting-outer-24 a {
    margin-right: 0px;
}
.lighting-posts-grid.lighting-posts-grid-24 .lighting-post-item.lighting-outer-24::before {
    display: none;
}
/* .lighting-posts-grid.lighting-posts-grid-24 .lighting-post-item.lighting-outer-24::after {
    display: none;
} */


    .tol-be-inspired-main-section .load-more {
    border: 1px solid var(--greycolor) !important;
    border-radius: 0 !important;
    padding: 5px 40px;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: bold;
    color: var(--blackcolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    position: relative;
    background: transparent;
    margin-top: 60px;
    margin: 3px auto 0px auto !important;
    position: relative;
    display: flex;
    cursor: pointer;
}
.tol-be-inspired-main-section .load-more:hover {
    border: 1px solid var(--secondarycolor) !important;
    color: var(--whitecolor) !important;
    background: var(--secondarycolor) !important;
    transition: 0.5s ease !important;
}
.tol-be-inspired-main-section .load-more img {
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 0px;
    right: -40px;
}
.be-ins-ed-txt p {
    text-align: center;
}

/* BEST OF LIGHTING -MAIN PAGE CSS CODE :::::::::::::::::::::::::::::::: */



/* CONTACT PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.contact-into-sec {
    padding-bottom: 65px !important;
}
.contact-into-sec h1 {
    padding-bottom: 8px !important;
}

.vists-our-sec.vist-contact-us-sec {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}
.vists-our-sec.vist-contact-us-sec .et_pb_row.visit-row {
    max-width: 97%;
    padding: 0;
}

.vists-our-sec.vist-contact-us-sec .visit-clmn-one .visi-img-one {
    width: 76%;
}

.vists-our-sec.vist-contact-us-sec .visit-clmn-one .visi-img-one span.et_pb_image_wrap {
    position: relative;
    padding-bottom: 103%;
    display: block;
}

.vis-contact-right h4 {
    font-size: 30px;
    line-height: 38px !important;
    margin-top: 0;
    font-family: "Oswald", serif !important;
    font-weight: 200 !important;
    letter-spacing: -1px;
}
.vis-contact-right h3 {
    margin-bottom: 0;
}
.vis-contact-right h3 {
    margin-bottom: 0;
    margin-top: 29px;
}
.vists-our-sec.vist-contact-us-sec::before {
    position: absolute;
    content: "";
    width: 57.7%;
    height: 54px;
    background: url(../images/location-line.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 11px;
    right: -4px;
}
.vists-our-sec.vist-contact-us-sec .visit-clmn-one {
    width: 43%;
}
.vists-our-sec.vist-contact-us-sec .visit-clmn-two {
    padding-bottom: 107px;
    padding-top: 65px;
    padding-left: 98px;
}



.our-exp-tm-sec-cont.et_section_regular {
    padding-top: 73px;
    padding-bottom: 0;
}
.our-exp-tm-sec-cont .our-exp-tm-row-cont {
    max-width: 87%;
    display: flex;
    padding-right: 35px;
}
.our-exp-tm-sec-cont .our-exp-tm-sec-clmn-one {
    width: 50%;
    padding-right: 35px;
}
.our-exp-tm-sec-cont .our-exp-tm-sec-clmn-two  {
    width: 50%;
}

.our-exp-tm-sec-clmn-one h2 {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 25px;
}
.our-exp-tm-sec-clmn-two form ul.news-let {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
.our-exp-tm-sec-clmn-two form ul.news-let li {
    width: 100%;
    padding: 0;
}
.our-exp-tm-sec-clmn-two form ul.news-let li p {
    margin-bottom: 9px;
}
.our-exp-tm-sec-clmn-two form ul.news-let li::before {
    display: none;
}
.our-exp-tm-sec-clmn-two form ul.news-let li.first-nme {
    width: 49%;
}
.our-exp-tm-sec-clmn-two form ul.news-let li.last-nme {
    width: 49%;
}

.our-exp-tm-sec-clmn-two form ul.news-let li.sign-me p {
    display: flex;
    justify-content: flex-end;
}
.our-exp-tm-sec-clmn-two form ul.news-let li.sign-me input.submit-btn {
    width: 41%;
    border: 1px solid var(--greycolor);
    border-radius: 0 !important;
    padding: 9px 40px !important;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: bold;
    color: var(--whitecolor) !important;
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    background: var(--blackcolor);
    margin-top: 0;
    cursor: pointer;
}
.our-exp-tm-sec-clmn-two form ul.news-let li.sign-me input.submit-btn:hover {
    border: 1px solid var(--secondarycolor) !important;
    color: var(--whitecolor) !important;
    background: var(--secondarycolor) !important;
    transition: 0.5s ease !important;
    padding: 9px 40px !important;
}

.our-exp-tm-sec-clmn-two form ul.news-let li.sign-me span.wpcf7-spinner {
    position: absolute;
    margin-top: 8px;
    margin-right: 52%;
    z-index: -1;
}

.our-exp-tm-sec-clmn-one .et_pb_button_module_wrapper.et_pb_button_0_wrapper.et_pb_button_alignment_center.et_pb_module {
    text-align: left;
}
.our-exp-tm-sec-clmn-one a.box-button {
    margin-top: 28px;
}

.promo-sec.con-us-discount-sec.et_section_regular {
    padding-bottom: 33px !important;
}
.promo-sec.con-us-discount-sec.et_section_regular a {
    text-decoration: underline !important;
    color: var(--whitecolor) !important;
}
.promo-sec.con-us-discount-sec.et_section_regular blockquote {
    color: var(--whitecolor) !important;
}
/* CONTACT PAGE CSS CODE :::::::::::::::::::::::::::::::: */

/* WHAT'S NEW DETAILS PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.container.whatsdetail {
    max-width: 94%;
    padding-top: 10px !important;
}

.container.whatsdetail::before {
  display: none;
}

.image-whats-outer {
    padding: 44px 125px 20px 125px;
}



.image-whats-outer .image-whats {
    position: relative;
    padding-bottom: 61.5%;
    display: block;
    margin: 0 auto;
}
.image-whats-outer .image-whats img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.whatsdetail .whats-inner {
    display: flex;
    padding: 50px 5px 20px 50px;
    position: relative;
}
.whats-inner.blog-inner-detail-whts {
    flex-wrap: wrap;
    justify-content: space-between;
}
.whats-inner.blog-inner-detail-whts .left-side {
    width: 64% !important;
}
.whats-inner .left-side {
    width: 100% !important;
    /* padding-right: 0 !important; */
}

.whats-inner .right-area {
    width: 34.5%;
    background-color: #F5F7FA;
    padding: 55px 65px 65px 65px;
    /* position: absolute;
    top: 51px;
    right: 0; */
    height: fit-content;
}
.blog-inner-content-top {
    width: 65%;
    padding-right: 70px;
}
.whats-inner.blog-inner-detail-whts .blog-inner-content-top {
    width: 100% !important;
    padding-right: 0px !important;
}
.search-bar h4 {
    font-size: 16px !important;
    line-height: 20px !important;
    font-family: var(--font-Reddit) !important;
    color: var(--blackcolor);
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 24px;
}
.search-bar form {
    position: relative;
}
.search-bar form input {
    padding-left: 45px !important;
    font-size: 16px !important;
    color: var(--cementcolor) !important;
    font-weight: bold !important;
    font-family: var(--font-Reddit) !important;
}
.search-bar form input::placeholder {
    font-size: 16px !important;
    color: var(--cementcolor) !important;
    font-weight: bold !important;
    font-family: var(--font-Reddit) !important;
}
.right-area .search-bar form button::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0px;
    left: 0px;
    transition: 0.3s;
}
.right-area .search-bar form button {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.right-area .category-filter h4 {
    font-size: 16px !important;
    line-height: 20px !important;
    font-family: var(--font-Reddit) !important;
    color: var(--blackcolor);
    text-transform: capitalize;
    font-weight: bold;
}
.right-area .category-filter ul li p, .tag-filter ul li p {
    font-size: 16px;
    color: black !important;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
    cursor: pointer;
}
.right-area .category-filter ul li a, .tag-filter ul li a {
    font-size: 16px;
    color: black !important;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
    cursor: pointer;
}
.right-area .category-filter ul li {
    position: relative;
    padding-left: 28px;
}
.right-area .category-filter ul li::before  {
    background: var(--blackcolor);
}
.right-area .tag-filter h4, .recent-posts h4 {
    font-size: 16px !important;
    line-height: 20px !important;
    font-family: var(--font-Reddit) !important;
    color: var(--blackcolor);
    text-transform: capitalize;
    font-weight: bold;
}

.right-area .recent-posts ul {
    margin-top: 15px;
}
.right-area .recent-posts ul li::before {
    display: none;
}
.right-area .recent-posts ul li {
    display: flex;
    gap: 16px;
    padding: 17px 0px 17px 0px;
    border-bottom: 1px solid var(--cementcolor);
}
.right-area .recent-posts ul li:last-child {
    border-bottom: 0 !important;
}
.right-area .recent-posts ul li a {
    width: 31%;
    position: relative;
    padding-bottom: 15%;
    padding-bottom: 21%;
    height: 0;
}
.right-area .recent-posts ul li a img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
.right-area .tag-filter ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.right-area .tag-filter ul li {
    padding: 0 ;
}
.right-area .tag-filter ul li::before {
    display: none;
}
.right-area .tag-filter ul li a {
    border: 1px solid black;
    padding: 0px 12px;
    display: block;
    font-size: 10px;
    cursor: pointer;
}
.right-area .recent-post-info p, .right-area .recent-post-info a  {
    font-size: 13px;
    font-family: var(--font-Reddit);
    color: var(--cementcolor);
    padding-bottom: 0 !important;
}
.right-area .recent-posts p.recent-category {
    line-height: 20px !important;
}
.right-area .recent-posts a.blog-name-goes {
    padding-bottom: 0 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-family: var(--font-Reddit) !important;
    color: var(--blackcolor);
    text-transform: capitalize;
    font-weight: bold;
}
.right-area .recent-posts p.recent-category {
    margin-bottom: 0;
}


.left-area p {
    font-size: 15px !important;
    line-height: 25px !important;
    color: var(--blackcolor) !important;
    text-transform: capitalize;
}
.left-area blockquote {
    text-align: center;
}
.container.whatsdetail .category-tags ul li {
    font-size: 15px !important;
    font-family: var(--font-Reddit) !important;
    color: var(--cementcolor) !important;
    text-transform: capitalize;
    padding-bottom: 0 !important;
}
.whats-inner.blog-main-page-outer .category-tags ul li {
    font-size: 15px !important;
    font-family: var(--font-Reddit) !important;
    color: var(--cementcolor) !important;
    text-transform: capitalize;
    padding-bottom: 0 !important;
}
h1.entry-title {
    margin-top: 0;
    text-transform: capitalize;
}

.category-tags {
    display: flex;
}
.category-tags ul.post-categories li::before {
    background: var(--cementcolor) !important;
    width: 4px;
    height: 4px;
    left: 2px;
    top: 13px !important;
}
.category-tags ul {
    display: flex;
}
 .category-tags ul.post-tags li::before {
   background: var(--cementcolor) !important;
   width: 4px;
   height: 4px;
   left: 2px;
   top: 13px !important;
}
 .category-tags ul.post-tags li:first-child::before {
    display: none;
}
.category-tags ul.post-categories li:first-child {
    padding-left: 0px;

}
.category-tags ul.post-categories {
    padding-right: 20px !important;
    padding-left: 0 !important;
    /* border-right: 1px solid #7b8794 !important; */
    padding-bottom: 0 !important;
    position: relative;
}
.category-tags ul.post-categories li {
    padding-left:11px;
    padding-right: 2px;
}
 .category-tags ul.post-categories li:first-child::before {
    display: none;
}
.category-tags ul.post-tags {
    position: relative;
}
.category-tags ul.post-tags::before {
    position: absolute;
    content: "";
    background-color:var(--cementcolor);
    width: 1px;
    height: 18px;
    left: 0;
    top: 6px;
}
.category-tags ul.post-tags {
    padding-bottom: 0 !important;
    padding-left: 8px !important;
}
 .category-tags ul.post-tags li {
    padding-right: 3px !important;
}





.sub-titles-section {
    padding: 0px 50px 19px 0px;
}
.txt-one-sec h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--secondarycolor);
    margin-top: 0;
    margin-bottom: 34px;
}
.txt-one-sec {
    margin-top: 100px;
}

.sub-titles-section .txt-one-sec {
    width: 59%;
    padding-bottom: 20px;
}
.whats-inner .left-side p {
    font-size: 15px !important;
    line-height: 25px !important;
    color: var(--blackcolor) !important;
    margin-bottom: 23px;
}
.sub-titles-section .img-posts-gal {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    padding-top: 45px;
}
.sub-titles-section .img-posts-gal .img-gal-po {
    position: relative;
    padding-bottom: 34%;
    width: 100%;
}
.sub-titles-section .img-posts-gal img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.sub-titles-section .txt-area-three {
    padding-top: 40px;
}
.txt-area-three ul {
    padding-left: 20px;
}
.sub-titles-outer-detail {
    margin: 0 auto;
    width: 100% !important;
}
.sub-titles-section p {
    font-size: 15px !important;
    line-height: 25px !important;
    color: var(--blackcolor) !important;
}
.container.whatsdetail blockquote p {
    font-family: var(--font-Besley);
    font-size: 30px !important;
    line-height: 38px !important;
    font-weight: 400;
    color: var(--greycolor) !important;
}


.pagination-posts {
    display: flex;
    justify-content: center;
    padding-bottom: 11px;
    gap: 47px;
    padding-top: 55px;
    padding-right: 40px;
}

.pagination-posts p {
    position: relative;
    background: transparent;
    border: 0;
    color: var(--blackcolor);
    font-size: 16px;
    font-family: var(--font-Reddit);
    font-weight: bold;
}
.pagination-posts p a {
    color: var(--blackcolor);
    font-size: 16px;
    font-family: var(--font-Reddit);
    font-weight: bold;
    text-transform: uppercase;
}
.post-navigation-prev a {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: 700;
    color: var(--greycolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}
.post-navigation-prev a::after {
    position: absolute !important;
    content: "" !important;
    width: 0 !important;
    height: 10px !important;
    background: url(../images/Arrow_rt_bl_1.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    right: 0 !important;
    transition: 0.5s ease !important;
    top: 5px !important;
    transform: scaleX(-1);
}
.post-navigation-prev a:hover::after {
    width: 124px !important;
    transition: 0.5s ease !important;
}
.post-navigation-prev a:hover {
    border: 0;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    padding-right: 117px !important;
    transition: 0.5s ease !important;
    background: transparent !important;
    color: var(--secondarycolor) !important;
}


.post-navigation-next a {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: 700;
    color: var(--greycolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}
.post-navigation-next a::after {
    position: absolute !important;
    content: "" !important;
    width: 0 !important;
    height: 10px !important;
    background: url(../images/Arrow_rt_bl_1.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    left: 0 !important;
    transition: 0.5s ease !important;
    top: 5px !important;
}
.post-navigation-next a:hover:after {
    width: 124px !important;
    transition: 0.5s ease !important;
}
.post-navigation-next a:hover {
    border: 0;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    padding-left: 117px !important;
    transition: 0.5s ease !important;
    background: transparent !important;
    color: var(--secondarycolor) !important;
}
.left-side blockquote {
    text-align: center;
}

.container.whatsdetail ul li {
    font-size: 15px;
    color: var(--blackcolor) !important;
}
.container.whatsdetail ul li::before {
    background-color: var(--blackcolor);
}
.container.whatsdetail ol {
    padding-left: 30px !important;
}
.container.whatsdetail ol li {
    font-size: 15px;
    color: var(--blackcolor) !important;
    list-style: auto !important;
}

/* WHAT'S NEW DETAILS PAGE CSS CODE :::::::::::::::::::::::::::::::: */

/* WHAT'S NEW MAIN PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.abt-intro-sec.blog-main-intro  .abt-intro-row h1 {
    margin-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.what-new-main-section {
    padding-top: 7px !important;
}

.what-new-main-inner-sec {
    width: 100%;
    max-width: 96.5%;
}

.whats-inner.blog-main-page-outer {
    padding-left: 110px;
    display: flex;
    justify-content: space-between;
}

.whats-inner.blog-main-page-outer .left-area {
    width: 58.5% !important;
}

.whats-inner.blog-main-page-outer .post-thumbnail a {
    position: relative;
    padding-bottom: 57.5%;
    display: block;
    margin: 0 auto;
}
.whats-inner.blog-main-page-outer .post-thumbnail a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.whats-inner.blog-main-page-outer .right-area {
    top: 0;
    width: 36.6%;
    padding: 55px 38px 60px 43px;
    position: relative;
    height: fit-content;
}
.whats-inner.blog-main-page-outer .blog-visi-outer .common-outer-img {
    display: flex;
    gap: 15px;
    position: relative;
}
.whats-inner.blog-main-page-outer .blog-visi-outer .common-outer-img::before {
    position: absolute;
    content: "";
    width: 51.5%;
    height: 44px;
    background: url(../images/location-line.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 29px;
    right: -23px;
}
.whats-inner.blog-main-page-outer .blog-visi-outer .visit-imgs:nth-child(2) {
    padding-bottom: 50.5%;
    width: 88%;
}
.whats-inner.blog-main-page-outer .blog-visi-outer .visit-imgs {
    position: relative;
    padding-bottom: 64.7%;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 0;
}
.whats-inner.blog-main-page-outer .blog-visi-outer .visit-imgs img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.whats-inner.blog-main-page-outer .blog-visi-outer .common-outer-img {
    padding-bottom: 50px;
}
.whats-inner.blog-main-page-outer .blog-visi-outer {
    background: black;
    margin-top: 58px;
    padding: 20px 18px 68px 18px;
}

.whats-inner.blog-main-page-outer .blog-visi-outer :where(p, h1, h2, h3, h4, h5, h6, a) {
    color: var(--whitecolor) !important;
}

.srinikethan-vallarasu img {
    width: 45px;
}
.whats-inner.blog-main-page-outer p.post-meta span a, .whats-inner.blog-main-page-outer p.post-meta span {
    font-size: 15px;
    font-family: var(--font-Reddit);
    color: var(--cementcolor);
    text-transform: capitalize;
}
.whats-inner.blog-main-page-outer h2.post-title, .whats-inner.blog-main-page-outer h2.post-title a {
    font-weight: bold !important;
    text-transform: capitalize !important;
    margin-top: 0 !important;
    margin-bottom: 23px;
}
.whats-inner.blog-main-page-outer .post-content {
    padding-top: 25px;
}
.whats-inner.blog-main-page-outer a.read-more {
    color: #373d3f ;
    font-weight: bold;
    transition: 0.5s;
}
.whats-inner.blog-main-page-outer a.arrow-button::after {
    top: 5px !important;
}
.left-area-inner .blog-post {
    padding-bottom: 55px;
}

.blog-main-page-outer button.post-default.cmn-white-btn {
    border: 1px solid var(--greycolor) !important;
    border-radius: 0 !important;
    padding: 5px 40px;
    font-family: var(--font-Reddit);
    font-size: 16px;
    font-weight: bold;
    color: var(--blackcolor);
    text-transform: uppercase;
    transition: 0.5s ease !important;
    position: relative !important;
    background: transparent;
    margin-top: 60px;
    margin-left: auto;
    /* margin-right: 60px; */
    margin-right: 11%;
    display: flex;
    cursor: pointer;
}
.blog-main-page-outer button.post-default.cmn-white-btn:hover {
    border: 1px solid var(--secondarycolor) !important;
    color: var(--whitecolor) !important;
    background: var(--secondarycolor) !important;
    transition: 0.5s ease !important;
    padding: 5px 40px !important;
}
.blog-main-page-outer button.post-default.cmn-white-btn img {
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 0px;
    right: -32px;
}

.blog-main-page-outer .search-bar form {
    position: relative;
    padding-right: 30px;
}
.whats-inner.blog-main-page-outer .blog-visi-outer h6 {
    font-size: 45px !important;
    line-height: 54px !important;
    margin-top: 40px;
}
.whats-inner.blog-main-page-outer .blog-visi-outer h3 {
    font-size: 34px !important;
}

.tag-filter ul li p {
    border: 1px solid black;
    padding: 0px 12px;
    display: block;
    font-size: 10px;
    cursor: pointer;
}

/* WHAT'S NEW MAIN PAGE CSS CODE :::::::::::::::::::::::::::::::: */

/* THANK YOU PAGE CSS CODE :::::::::::::::::::::::::::::::: */

.thank-txt h1, .pg-nt-fd-txt h1   {
    margin-bottom: 19px;
}
.thank-clmn .et_pb_button_module_wrapper.et_pb_button_0_wrapper.et_pb_button_alignment_center.et_pb_module {
text-align: left;
}

.thank-row, .pg-nt-fd-row {
    max-width: 78%;
}
.thank-sec::before, .pg-nt-fd-sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/Graphic_1.svg);
    background-position: 227% top !important;
    background-repeat: no-repeat !important;
    background-size: 89% !important;
    top: 70px;
    left: 0;
    /* opacity: 0.4; */
}
.thank-sec, .pg-nt-fd-sec {
    position: relative;
    padding-top: 106px !important;
    padding-bottom: 418px !important;
    overflow: hidden;

}

/* THANK YOU PAGE CSS CODE :::::::::::::::::::::::::::::::: */



/* PRIVACY P0LICY PAGE CSS CODE :::::::::::::::::::::::::::::::: */


.privacy-clmn h1 {
    text-align: center;
}

/* PRIVACY P0LICY PAGE CSS CODE :::::::::::::::::::::::::::::::: */

/* SEARCH PAGE CSS CODE :::::::::::::::::::::::::::::::: */

.container.search-pg div#block-3 {
    display: none !important;
}
.container.search-pg div#block-4 {
    display: none !important;
}
.container.search-pg::before {
    display: none !important;
}
.container.search-pg div#sidebar {
    padding-bottom: 0 !important;
    width: 100%;
}
.container.search-pg div#sidebar div#block-2 {
    margin-bottom: 20px !important;
    display: flex;
    justify-content: flex-end;
}
.container.search-pg .left-area {
    width: 100% !important;
    padding-right: 0px !important;
}
.container.search-pg div#sidebar form {
    width: 300px;
}
div#sidebar button.wp-block-search__button.wp-element-button {
    border: 0 !important;
    background: var(--blackcolor) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    color: var(--whitecolor) !important;
}
.container.search-pg {
    width: 80%;
}


.pagination div {
    position: relative;
    background: transparent;
    border: 0;
    color: var(--blackcolor);
    font-size: 16px;
    font-family: var(--font-Reddit);
    font-weight: bold;
}
.pagination {
    display: flex;
    justify-content: center;
    padding-bottom: 63px;
    gap: 47px;
    padding-top: 55px;
}
.pagination .alignleft a, .pagination .alignright a  {
    color: var(--blackcolor);
    font-size: 16px;
    font-family: var(--font-Reddit);
    font-weight: bold;
    text-transform: uppercase;
}
.search-pg-outer div#left-area {
    width: 100% !important;
    padding-right: 0 !important;
}
.pagination.clearfix {
    grid-column: span 2;
}
.search-pg-outer div#left-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* SEARCH PAGE CSS CODE :::::::::::::::::::::::::::::::: */



.hm-slider-sec .hm-slider .et_pb_slide.et-pb-active-slide {
    z-index: 99 !important;
}







.lighting-category-filter.lig-1 {
    justify-content: center;
}