/* CSS CUSTOM */

a {
    color: var(--colorCode);
}

.opacity-20 {
    opacity: 10% !important;
}

.bg__gradient_sec {
    background: var(--colorCode) !important;
}

.bg__gradient_pry {
    background: var(--colorCode) !important;
}

details summary h3 {
    display: inline-flex;
    font-size: large;
}

html.dark-mode .opacity-20 {
    opacity: 10% !important;
}

@media only screen and (max-width:767px) {

    details summary h3 {
        display: inline !important;
    }

    details {
        padding: 10px 0;
    }
}

/* LOGO STARTS */

.brand-logo_cfs-white {
    display: none;
}

html.dark-mode .brand-logo_cfs-dark {
    display: none;
}

html.dark-mode .brand-logo_cfs-white {
    display: block;
}

/* LOGO END */

/* PAGE LOADER START */

.page-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s .2s ease-in-out;
    transition: all .4s .2s ease-in-out;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.dark-mode .page-loading {
    background-color: #0b0f19;
}

.page-loading.active {
    opacity: 1;
    visibility: visible;
}

.page-loading-inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    opacity: 0;
}

.page-loading.active>.page-loading-inner {
    opacity: 1;
}

.page-loading-inner>span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #9397ad;
}

.dark-mode .page-loading-inner>span {
    color: #fff;
    opacity: .6;
}

.page-spinner {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: .75rem;
    vertical-align: text-bottom;
    border: .15em solid #b4b7c9;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
}

.dark-mode .page-spinner {
    border-color: rgba(255, 255, 255, .4);
    border-right-color: transparent;
}

.step-3:not(:last-child)::after {
    display: none;
}

@-webkit-keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* PAGE LOADER END */

/* CATEGORY SEARCH BOX START */

#hero__form .wrapper {
    margin: 25px 0 6px;
}

#hero__form .wrapper .search-input {
    width: 100%;
    border-radius: 5px;
    position: relative;
}

#hero__form .search-input input {
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 16px;
    border: 1px solid #d4d7e5;
}

#hero__form .search-input.active input {
    border-radius: 5px 5px 0 0;
}

#hero__form .search-input .autocom-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 380px;
    overflow-y: auto;
}

#hero__form .search-input.active .autocom-box {
    padding: 17px 8px;
    opacity: 1;
    pointer-events: auto;
    background: #fdf6e9;
    max-height: 275px;
    overflow: hidden;
    padding: 10px 8px;
    background: #fdf5e9;
    border: 1px solid #fae2bd;
    border-radius: 0 0 8px 8px;
    color: #292929;
}

#hero__form .autocom-box li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

#hero__form .search-input.active .autocom-box li {
    display: block;
}

#hero__form .autocom-box li:hover {
    background: #fcebd3;
    color: #292929;
    cursor: pointer;
}

#hero__form .search-input .icon {
    position: absolute;
    right: 2px;
    top: 3px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #292929;
    cursor: pointer;
    font-size: 25px;
    opacity: .7;
}

html.dark-mode .u-form #contact_submit {
    background-color: #fff !important;
}

html.dark-mode #hero__form .search-input .icon {
    color: #fff;
}

html.dark-mode #hero__form .search-input.active .autocom-box {
    background: #221e1a;
}

html.dark-mode #hero__form .autocom-box li:hover {
    background: #ee9b15;
    color: #000;
    cursor: pointer;
}

html.dark-mode #hero__form .autocom-box li {
    color: #fff !important;
}

html.dark-mode .easy-autocomplete-container ul {
    background-color: #292929;
    color: #fff;
}

html.dark-mode .easy-autocomplete-container ul li.selected {
    background: none repeat scroll 0 0 #696969;
    color: #fff;
}

/* CATEGORY SEARCH BOX END */

/* BUTTONS START */

.group-btn a {
    border-radius: .375rem !important;
}

.group-btn {
    display: inline-block;
}

.btn-call-us span i {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-call-us span {
    padding-right: 7px;
}

.button__section a span {
    padding-right: 7px;
}

.button__section a span i {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-call-us {
    border: 1px solid #292929;
    color: #292929 !important;
    background-color: #fff !important;
    border-radius: .375rem !important;
    margin-bottom: 0px !important;
    margin-right: 10px;
}

#hero__form .quote__btn:hover {
    color: #fff !important;
}

html.dark-mode .btn-quote:hover {
    color: #FFF !important;
}

header .btn-call-us:hover {
    color: #fff !important;
}

html.dark-mode .btn.quote__btn {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #292929;
}

html.dark-mode .btn.quote__btn:hover,
html.dark-mode .btn.quote__btn:active {
    background-color: var(--colorCode) !important;
    border-color: var(--colorCode) !important;
    color: #292929;
}

html.dark-mode .btn-call-us {
    border: 1px solid #fff !important;
    color: #fff !important;
    background-color: #292929 !important;
}

html.dark-mode .btn-quote {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #292929 !important;
}

html.dark-mode .__our_services_static .btn {
    background-color: #fff !important;
    border-color: #fff !important;
}

html.dark-mode .__our_services_static .btn:hover {
    background-color: var(--colorCode) !important;
    border-color: var(--colorCode) !important;
}

html.dark-mode .__our_services_static .btn:not([class^=btn-outline-]):not([class*=" btn-outline-"]):not(.btn-secondary):not(.btn-light):not(.btn-link) {
    color: #292929;
}

/*.btn-call-us:hover:first-child, .btn-call-us:active:first-child{
    background-color: #292929 !important;
    border-color: #292929 !important;
    color: #fff !important;
}

.btn-call-us:hover:last-child, .btn-call-us:active:last-child{
    background-color: #292929 !important;
    border-color: #292929 !important;
    color: #fff !important;
}*/

@media only screen and (max-width:600px) {
    .btn-call-us {
        margin-bottom: 10px !important;
        margin-right: 0;
    }

}

@media only screen and (max-width: 990px) {

    .btn-call-us {
        margin-bottom: 10px !important;
        margin-right: 0;
    }
}

/* BUTTONS END */


/* CONTENT DESIGN STARTS */

.content_design h2,
.inner_category h2 {
    padding-bottom: 0.75rem
}

.content_design table,
.inner_category table {
    text-align: left;
}

.content_design table,
.content_design table,
.inner_category table,
.inner_category table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.content_design table caption,
.content_design table caption,
.inner_category table caption,
.inner_category table caption {
    text-align: center;
    caption-side: top;
    border: 1px solid #dddddd;
}

.content_design table td,
.ai-content table th,
.content_design table td,
.content_design table th,
.inner_category table td,
.ai-content table th,
.inner_category table td,
.inner_category table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.content_design details summary h4,
.content_design details summary h3 {
    display: inline;
    font-size: large;
}

.content_design table tr:nth-child(even),
.content_design table tr:nth-child(even),
.inner_category table tr:nth-child(even),
.content_design table tr:nth-child(even) {
    background-color: #f2f2f2;
}

html.dark-mode .content_design table tr:nth-child(even),
html.dark-mode .content_design table tr:nth-child(even),
html.dark-mode .inner_category table tr:nth-child(even),
html.dark-mode .content_design table tr:nth-child(even) {
    background-color: #0b0f19;
}

.content_design table tr:hover,
.content_design table tr:hover,
.inner_category table tr:hover,
.content_design table tr:hover {
    background-color: #ddd;
}

html.dark-mode .content_design table tr:hover,
html.dark-mode .content_design table tr:hover,
html.dark-mode .inner_category table tr:hover,
html.dark-mode .content_design table tr:hover {
    background-color: #292929;
}

.content_design table th,
.content_design table th,
.inner_category table th,
.inner_category table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background: #ddd;
}

html.dark-mode .content_design table th,
html.dark-mode .content_design table th,
html.dark-mode .inner_category table th,
html.dark-mode .inner_category table th {
    background: #292929;
    color: #ddd;
}

@media only screen and (max-width:600px) {

    .content_design table,
    .inner_category table {
        table-layout: fixed;
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        max-height: 600px;
        display: block;
    }

    .content_design th,
    .content_design td,
    .inner_category th,
    .inner_category td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
        white-space: normal;
    }
}

/* CONTENT DESIGN ENDS */


/* BLOG DESIGN - LATEST BLOG ETC.. */

.latest_blog_htitle {
    margin-top: 50px;
}

.latest-blog-date div i {
    padding-right: 5px;
}

.latest-blog-content .autolinks {
    text-decoration: none;
}

.latest-blog-cards_llb,
.slick-carousel {
    padding: 25px 0;
}

.latest_blog-card_body_llb {
    padding: 1.5rem 1rem !important
}

.latest-blog_upper-header_llb p {
    color: #0b0f19;
}

.latest-blog-date .latest_blog-links {
    text-decoration: none;
    color: #565973;
}

.latest-blog-date .latest_blog-links span {
    color: var(--colorCode);
    text-decoration: underline;
    padding-left: 3px;
    text-decoration: underline;
}

.latest_blog-card_body_llb .latest_blog-link {
    text-decoration: underline;
}

.home-latest_blog .slick-carousel {
    width: 100%;
    margin: 20px 0px;
}

.home-latest-blog_llb .quote-button-gallery {
    color: #FFF !important;
}

.latest-blog_sec .latest-blog-date {
    display: flex;
    justify-content: space-between;
}

.latest-blog_sec .subtitle_viewBlog_btn {
    display: flex;
    justify-content: space-between;
}

.latest-blog_sec .latest-blog-content {
    margin-bottom: 0;
}

.latest-blog_sec .blog-card_llb .latest_blog-heading {
    -webkit-line-clamp: 1 !important;
}

.latest-blog_sec .rcat_subtitle {
    margin-bottom: 0;
}

.latest-blog_sec .subtitle_viewBlog_btn .view_lblog:hover {
    color: #fff !important;
}

html.dark-mode .latest-blog_sec .subtitle_viewBlog_btn .view_lblog {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #292929;
}

html.dark-mode .latest-blog_sec .subtitle_viewBlog_btn .view_lblog:hover {
    background-color: var(--colorCode) !important;
    border-color: var(--colorCode) !important;
}

.blog-card_llb {
    margin: 20px;
}

.blog-card_llb {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0px;
    margin: 10px;
}

.blog-card_llb .latest-blog-date {
    font-size: 12px;
    padding-bottom: 10px;
}


.blog-card_llb .latest-blog-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}

.blog-card_llb .latest_blog-heading {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 700;
    color: black;
    text-decoration: none;
}

.blog-card_llb .latest_blog-card_header {
    position: relative;
}

.blog-card_llb .latest_blog-card_header img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 250px;
    object-fit: cover;
}

.blog-card_llb .latest-blog-date .latest_blog-links {
    color: black;
}

.blog-card_llb .latest_blog-card_header .latest_blog-badges {
    position: absolute;
    background-color: var(--colorCode);
    color: white;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 12px;
    top: 10px;
    right: 10px;
    text-decoration: none;
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 26px;
}

.slick-dots li.slick-active button:before {
    color: var(--colorCode) !important;
}

html.dark-mode .latest_blog-card_body_llb {
    background-color: #292929;
    border-radius: 0 0 10px 10px;
}

html.dark-mode .slick-dots li button:before {
    color: #FFF;
}

html.dark-mode .latest-blog_upper-header_llb p {
    color: #FFF;
}

html.dark-mode .blog-card_llb .latest_blog-heading {
    color: #FFF;
}

html.dark-mode .latest-blog-date .latest_blog-links {
    color: #ffffffb3;
}

html.dark-mode .home-latest-blog_llb .quote-button-gallery {
    background-color: #FFF !important;
    color: #000 !important;
}

html.dark-mode .latest_blog-card_body_llb .latest_blog-link:hover {
    color: #FFF;
}

html.dark-mode .home-latest-blog_llb .quote-button-gallery:hover,
html.dark-mode .home-latest-blog_llb .quote-button-gallery:active {
    background-color: var(--colorCode) !important;
}

@media only screen and (max-width:767px) {

    .latest-blog_sec .latest-blog-content {
        margin-bottom: 1rem;
    }

    .latest-blog-cards_llb {
        padding: 10px 0;
    }

    .latest_blog-card_body_llb {
        padding: .5rem !important
    }

    .latest-blog_upper-header_llb p {
        font-size: 20px !important;
    }

    .latest-blog_upper-header_llb .quote-button-gallery {
        font-size: 12px;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
    }

    .blog-card_llb {
        margin: 10px !important;
    }

    .blog-card_llb .latest-blog-date {
        font-size: 12px;
        padding: 10px 0;
    }

    .slick-dots {
        bottom: -35px;
    }

    .slick-list.draggable {
        padding: 0 60px 0 0 !important;
    }

    .latest-blog_sec .rcat_subtitle {
        font-size: 20px;
    }

    .latest-blog_sec .view_lblog{
        font-size: 12px;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
   }
}

/* ADDITIONAL STARTS */

.md-hide {
    padding: 7.6px 20px !important;
}

.footer-blog-hr {
    display: none;
}

.bg-primary_two {
    background: var(--colorCode) !important;
}

.dropdown-toggle span {
    padding-left: 5px;
}

.dropdown-toggle span i {
    font-size: 14px;
}

.dropdown-toggle::after {
    display: none;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--colorCode);
}

.text-nav span i {
    font-size: 20px;
}

.text-nav span {
    padding-right: 7px;
}

.steps-outerLayer {
    z-index: 2;
}

.contact-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(10 10 10 / 29%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--colorCode);
    border-radius: 50%;
    animation: contact-spin 1s linear infinite;
}

@keyframes contact-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.step-number .step-number-inner {
    color: #545454;
    position: absolute;
}

.steps-outerLayer .step-number {
    position: unset;
}

.steps-outerLayer .bg__gradient_pry {
    opacity: 10%;
    border-radius: 50%;
}

.contact__section .bg__gradient_sec {
    background: var(--colorCode) !important;
    z-index: -9999px;
}

.btn-scroll-top.with-msgboxxWidget {
    bottom: 5.25rem !important;
    right: 1.75rem;
}

#hero__form .search-input .icon {
    font-size: 20px !important;
}

#useful-links #mainav ul li a:hover,
#useful-links #mainav ul li a:active {
    color: var(--colorCode) !important;
}

#navbarNav.show+#whatsapp-chat-widget {
    display: none !important;
}

html.dark-mode .categorylist a{
    color: #ffffffb3 !important;
}

html.dark-mode #contact_submit {
    background-color: #fff !important;
}

html.dark-mode .h1,
.gallery-inner-title {
    color: #fff;
}

html.dark-mode .bg__gradient_sec {
    background-color: var(--colorCode) !important;
}
.social_media a{color: transparent;}

@media only screen and (max-width:600px) {

    .text-nav span i {
        font-size: 18px !important;
    }

    .media-divider a {
        border: 1px solid;
        padding: 12px !important;
        border-radius: 8px;
    }

    .media-divider a svg {
        width: 5.5%;
        height: 22px;
        color: black;
    }

    .media-divider a:nth-child(2) svg {
        width: 6%;
        height: 18px;
    }

    .media-divider a:nth-child(2) span {
        padding: 0 4px;
    }

    .media-divider a:nth-child(3) svg {
        width: 6%;
        height: 20px;
    }

    .media-divider a:nth-child(3) span {
        padding: 0 3px;
    }

    #contact-us {
        padding: 15px 25px;
    }

    #useful-links,
    #social-links,
    #contact-us {
        padding: 0 25px;
    }

    #footer-links .dropdown-toggle {
        padding: 20px 25px !important;
    }
}

@media only screen and (max-width:767px) {
    footer .navbar-brand {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 990px) {
    .md-hide {
        display: none;
    }

    .sm-swap {
        display: flex;
        flex-direction: column;
    }

    .sm-swap-col-2 {
        order: 1;
    }

    .sm-swap-col-1 {
        order: 2;
    }

    .navbar-brand {
        justify-content: center;
    }

    .media-divider a svg {
        width: 6%;
        height: 25px;
        color: black;
    }

    .media-divider a {
        border: 1px solid;
        padding: 12px 2px;
        border-radius: 8px;
        margin: 0 10px;
    }

    .media-divider a:active svg,
    .media-divider a:hover svg {
        color: #fff;
    }

    .media-divider a:nth-child(2) svg {
        width: 4.9%;
        height: 22px;
    }

    .media-divider a:nth-child(2) span {
        padding: 0 6px;
    }

    .media-divider a:nth-child(3) span {
        padding: 0 3px;
    }

    .media-divider a:active,
    .media-divider a:hover {
        background-color: var(--colorCode);
        border-color: var(--colorCode);
    }

    html.dark-mode .media-divider a svg {
        color: white !important;
    }

    footer .container {
        max-width: 100%;
    }

    .btn-scroll-top.with-msgboxxWidget {
        bottom: 1.75rem !important;
        right: 5.25rem !important;
    }

    #hero__form {
        margin-bottom: 35px !important;
    }

    #contact-us {
        padding: 15px 40px;
    }

    #contact-us ul.nav {
        padding: 10px 0;
    }

    #contact-us ul.nav a:first-of-type{
        padding: 5px 0;
    }

    #hero__form.sm-swap-col-2 {
        margin-top: 35px;
    }

    #useful-links,
    #social-links,
    #contact-us {
        text-align: left;
        padding: 0 40px;
        border-top: 1px solid #ececec;
    }

    #footer-links .divider-links {
        padding: 0 !important;
    }

    #footer-links .media-divider {
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
        padding-bottom: 20px !important;
    }

    #footer-links .dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        border-top: 1px solid #ececec;
        padding: 20px 40px !important;
    }

    html.dark-mode #useful-links,
    html.dark-mode #social-links,
    html.dark-mode #contact-us {
        border-color: #292929 !important;
    }

    html.dark-mode #footer-links .media-divider {
        border-color: #292929 !important;
    }

    html.dark-mode #footer-links .dropdown-toggle {
        border-color: #292929 !important;
    }
}

/* ADDITIONAL ENDS */