/*
Theme Name: Nationwide Extimating
Theme URI: https://nationwide-estimates.com/
Author: Muhammad Sheraz
Author URI: 
Description: Crafting tailored digital experiences with top-tier development, IT staffing, and marketing.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options
*/



/* ***********************************/
/*     Globally define style Start   */
/* ***********************************/

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* #content{
    margin-top: 120px;
} */

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

::selection {
    background-color: #266dd3;
    color: #fff;
}

.show-on-mobile {
    display: none;
}

html {
    font-family: "Parkinsans", sans-serif;
    /* font-family: "Lato", sans-serif; */
    overflow-x: hidden;
}

body {
    background-color: #F5F6FC;
    overflow-x: hidden;
}

/* Headings */
h1 {
    font-weight: bold;
    font-size: 54px;
    line-height: 66px;
    color: #28263D;
    margin-bottom: 24px;
}

h2 {
    font-weight: bold;
    font-size: 44px;
    line-height: 48px;
    color: #28263D;
    margin-bottom: 32px;
}

h3 {
    font-weight: bold;
    font-size: 34px;
    line-height: 38px;
    color: #28263D;
    margin-bottom: 24px;
}

h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: #28263D;
    margin-bottom: 16px;
}

h5 {
    font-weight: bold;
    font-size: 1.25em;
    line-height: 1.25em;
    color: #28263D;
    margin-bottom: 10px;
}

h6 {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #28263D;
    margin-bottom: 10px;
}

span {
    color: #555;
    -webkit-tap-highlight-color: transparent;
    /* For iOS Safari & Chrome */
    -webkit-touch-callout: none;
    /* Optional: disables callout menu on long press */
}

/* Paragraphs */
p {
    margin: 0 0 24px 0;
    color: #555;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #ccc;
    padding-left: 20px;
    margin: 0 0 1em 0;
    color: #555;
}

ul {
    padding-left: 16px;
}

li {
    color: #555;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Links */
a {
    color: #FF3D57;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    /* For iOS Safari & Chrome */
    -webkit-touch-callout: none;
    /* Optional: disables callout menu on long press */
}

a:hover {
    color: #28263D;
}

a:visited {
    color: #28263D;
}

/* Button Styles */
/* <a class="button btn" href="#!">Read More 9</a> */
.button {
    color: #fff;
    border-radius: 6px;
    padding: 14px 26px;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    outline: none;
}

/* .button {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.button:after {
    position: absolute;
    content: " ";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1fd1f9;
    background-image: linear-gradient(315deg, #fc0022 0%, #0b017a 74%);
    transition: all 0.4s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.button:hover {
    background: transparent;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.button:hover:after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  
} */

.button {
    background: #FF3D57;
    border: none;
    z-index: 1;
}

.button:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background-color: #28263D;
    background-image: linear-gradient(315deg, #403e53 0%, #28263D 74%);
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.button:hover {
    color: #fff;
}

a.button:visited {
    color: #fff;
}

.button:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.button:active {
    top: 2px;
}


/* Form Elements */
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] input[type="email"],
input[type="text"],
input[type="number"],
textarea,
input[type="tel"],
select {
    font-family: "Parkinsans", sans-serif !important;
    border-bottom: 1px dashed #28263D !important;
    border: none;
    font-weight: 400;
    padding: 12px 0;
    margin: 6px 0 32px 0;
    width: 100%;
    height: 50px;
    background: transparent;
    color: #28263D;
    font-size: 16px;
    transition: all 0.2s;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="submit"]:focus-visible {
    outline: none;
    border: none;
    border-bottom: 1px dashed #FF3D57 !important;
}

input[type="submit"] {
    width: 100%;
    outline: none;
    border: none;
    height: 50px;
    padding: 12px 22px;
    border-radius: 5px;
    font-family: "Parkinsans", sans-serif;
    /* background: #FF3D57; */
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

textarea {
    font-family: "Parkinsans", sans-serif;
    /* border-radius: 5px !important; */
    height: 140px;
    resize: none;
    background: transparent;
}

input::placeholder,
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
textarea::placeholder,
select::placeholder {
    font-family: "Parkinsans", sans-serif;
    color: #28263D;
    font-size: 16px;
    opacity: 1;
}

textarea.wpcf7-form-control::placeholder {
    font-family: "Parkinsans", sans-serif;
}

.wpcf7 select:valid {
    color: #28263D;
    font-family: "Parkinsans", sans-serif;
}

.wpcf7 select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('https://nationwide-estimates.com/wp-content/uploads/2025/04/select-field-arro-1-1.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 2rem;
    font-family: "Parkinsans", sans-serif;

}

.wpcf7 select option {
    padding: 12px;
}

/* Hide the default arrow in IE/Edge */
.wpcf7 select::-ms-expand {
    display: none;
}

input:focus-visible,
input#email:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-bottom: 1px dashed #FF3D57 !important;
}

label {
    font-size: 14px;
    line-height: 20px;
    color: #3B3349;
    font-weight: 400;
    position: relative;
}

label img {
    position: absolute;
    top: 2px;
    user-select: none;
    -webkit-user-select: none;
    margin-left: 2px;
}

span.wpcf7-not-valid-tip,
span.error {
    position: absolute;
    color: #ff3333;
    top: 44px;
    left: 0px;
    font-size: 11px;
}

/* span.error.message-error {
    top: 0px;
} */

.message-label span.error {
    top: -6px;
}

.page-id-2410 span.error {
    color: #FF3D57;
    top: 33px;
}

.wpcf7-response-output,
span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
    position: absolute;
    display: unset !important;
    bottom: 0px;
    border: 1px solid red;
    font-size: 12px;
    left: 2px;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 32px;
}

.form-row div {
    width: 100%;
}

/* First we hide the default CF7 loader */
.wpcf7-spinner::before {
    display: none;
}

/* Add a new custom CF7 loader */
.contact-us-form .wpcf7-spinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border-top: 2px solid #28263D;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    background-color: inherit;
}

/* Style the new loader element */
.contact-us-form .wpcf7-spinner::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-bottom: 2px solid #FF3D57;
    border-left: 2px solid transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

.bcdark-clr {
    background-color: #FF3D57;
}

.bclight-clr {
    background-color: #fff;
}

.scp-clr {
    color: #FF3D57;
}

.scd-clr {
    color: #28263D;
}

.wcd-clr {
    color: #fff;
}

.desktop-space {
    margin-top: 120px;
}

.desktop-space-e {
    margin-top: 120px !important;
}

.d-flex {
    display: flex;
}

.cb-flex {
    justify-content: space-between;
}

.dc-flex {
    flex-direction: column;
}

.ai-center {
    align-items: center;
}

.gap-24 {
    gap: 24px;
}

.gap-16 {
    gap: 16px;
}

.gap-8 {
    gap: 8px;
}

.gap-32 {
    gap: 32px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mt-8 {
    margin-top: 8px;
}

.mb-0 {
    margin-bottom: 0;
}

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

.lh-0 {
    line-height: 0;
}

.ttc {
    text-transform: capitalize;
}

.ttu {
    text-transform: uppercase;
}

.pb-32 {
    padding-bottom: 32px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pt-32 {
    padding-top: 32px;
}

.pt-24 {
    padding-top: 24px;
}

.pt-16 {
    padding-top: 16px;
}

.pt-8 {
    padding-top: 8px;
}

.pl-32 {
    padding-left: 32px;
}

.pl-24 {
    padding-left: 24px;
}

.pl-16 {
    padding-left: 16px;
}

.pl-8 {
    padding-left: 8px;
}

.pr-32 {
    padding-right: 32px;
}

.pr-24 {
    padding-right: 24px;
}

.pr-16 {
    padding-right: 16px;
}

.pr-8 {
    padding-right: 8px;
}

.pp-32 {
    padding: 32px;
}

.pp-24 {
    padding: 24px;
}

.pp-16 {
    padding: 16px;
}

.pp-8 {
    padding: 8px;
}

.ppr {
    position: relative;
}

.box-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.br-40 {
    border-radius: 40px !important;
}

.br-32 {
    border-radius: 32px;
}

.br-16 {
    border-radius: 16px !important;
}

.br-8 {
    border-radius: 8px !important;
}

.talign {
    text-align: center;
}

.vs-hidden {
    visibility: hidden;
}

.show-on-desktop {
    display: block;
}

.show-on-mobile {
    display: none;
}

.show-on-mobile-e {
    display: none !important;
}

.span-bg {
    font-size: 14px;
    padding: 10px 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #FF3D57;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    color: #fff;

}

.list-icon {
    padding-left: 0;
}

.list-icon li {
    position: relative;
    list-style-type: none;
    padding-left: 24px;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 16px;
}

.list-icon li:last-child {
    margin-bottom: 0;
}

.list-icon li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 18px;
    width: 16px;
    background-image: url('https://nationwide-estimates.com/wp-content/uploads/2025/04/list-icon-1-1.svg');
    background-repeat: no-repeat;
    margin-top: 5px;
}



/* *********************************/
/*    Globally define style End    */
/* *********************************/

/* ***************************************/
/*      Navigation menu style Start      */
/* ***************************************/

.links ul {
    padding-left: 0;
}

/* Parent menu of an active submenu */
.nav-links ul li.active>a {
    color: #FF3D57 !important;
    font-weight: bold !important;
}

.logo-span {
    display: block;
    height: 66px;
    width: 100px;
    background: url(https://nationwide-estimates.com/wp-content/uploads/2025/04/nationwide-extimating-logo-dark-4.svg);
}

nav.fixed .logo-span {
    background: url(https://nationwide-estimates.com/wp-content/uploads/2025/04/nationwide-extimating-logo-dark-4.svg);
}

.fa-bars {
    color: #28263D;
}

.bx {
    cursor: pointer;
}

nav {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 100%;
    height: 92px;
    /* background: transparent; */
    z-index: 99;
    /* transition: top 0.3s linear; */
    opacity: 1;
    /* Normal state */
    transition: opacity 3s ease;
}

nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 1;
}

nav .navbar {
    background-color: #fff;
    height: 100%;
    max-width: 1150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 50px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

nav.fixed .navbar {
    max-width: 1250px;
    box-shadow: none;
}

/* .navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
} */

nav .navbar .nav-links {
    line-height: 92px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
    padding-left: 0;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0 14px;
    margin-bottom: 0;
}

nav.fixed .navbar .links li a {
    color: #28263D;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #28263D;
    font-size: 16px;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.fa-caret-down {
    color: #FF3D57;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow,
.links li:hover .au-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    padding-top: 3px;
    height: 100%;
    width: 22px;
    line-height: 89px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    width: 230px;
    position: absolute;
    top: 74px;
    left: -63px;
    line-height: 40px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu,
nav .navbar .links li:hover .au-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 6px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.navbar .links li .js-sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar .links li .sub-menu a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.sub-menu::before {
    /*     display: none !important; */
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, .2);
    content: "";
}

.sub-menu::after {
    /*     display: none !important; */
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: "";
}

.htmlCss-sub-menu::after,
.htmlCss-sub-menu::before {
    left: 50% !important;
}

@media all and (min-width:1080px) and (max-width:1180px) {

    .htmlCss-sub-menu::after,
    .htmlCss-sub-menu::before {
        left: 42% !important;
    }
}

@media (max-width:920px) {
    nav .navbar .links li a {
        color: #fff;
    }

    nav .navbar {
        max-width: -webkit-fill-available;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:1080px) {

    nav {
        padding: 0 25px;
    }

    .search-box {
        display: none;
    }

    nav.fixed .navbar {
        padding: 0;
    }

    .fa-caret-down {
        color: #FF3D57;
    }

    nav.fixed .fa-bars {
        color: #28263D;
    }

    .show-on-mobile {
        display: block;
    }

    .navbar .links li .sub-menu a {
        color: #fff;
    }

    nav .navbar .links li .sub-menu {
        line-height: 30px;
    }

    nav .navbar .nav-links {
        height: 100vh;
        overflow-x: hidden;
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        right: -114%;
        display: block;
        max-width: -webkit-fill-available;
        width: 100%;
        background: #28263D;
        line-height: 40px;
        padding: 25px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .fa-solid.fa-xmark {
        color: #fff;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        line-height: 25px;
        color: #28263D;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
        left: 0;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
        padding: 6px 16px;
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow,
    .links li:hover .au-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        display: flex;
        align-items: center;
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu,
    nav .navbar .links li:hover .au-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show4 .links .au-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
        left: 0;
        background: transparent;
    }

    .sub-menu::after,
    .sub-menu::before {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow,
    .navbar .nav-links.show4 .links .au-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .search-results .fa-bars,
    .search-no-results .fa-bars {
        color: #28263D;
    }

    nav.fixed .navbar .links li a {
        color: #fff;
    }



}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: -webkit-fill-available;
    }
}

/* ***************************************/
/*      Navigation menu style End      */
/* ***************************************/

/* Our Top Customer Section style start here  */
.scroller {
    max-width: 100%;
}

.top-customer {
    position: relative;
    top: 64px;
}

.scroller__inner {
    display: flex;
    flex-wrap: wrap;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg,
            transparent,
            white 20%,
            white 80%,
            transparent);
    mask: linear-gradient(90deg, transparent, white 20%, rgb(77, 72, 72) 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


img.trust-img {
    width: 180px;
    margin: 8px 40px;
}

/* Our Top Customer Section style End here  */

/* Blog Style  */
.container-blog {
    max-width: 1250px;
    width: 100%;
    padding: 0 50px;
    margin: 120px auto 0px auto;
}

#footer .container-blog {
    padding: 32px 50px 0px 50px;
}

.bcta {
    margin-bottom: 16px;
}

.bcta a {
    font-size: 14px;
    line-height: 16px;
    margin-right: 20px;
    position: relative;
}

.bcta a::after {
    position: absolute;
    content: ">";
    right: -15px;
    top: 2px;
    pointer-events: none;
}

.bcta a:last-child::after {
    display: none;
}

.bcont {
    width: 70%;
}

.bside {
    width: 30%;
}

.blog-inner {
    gap: 50px;
}

.fimgst h1 {
    font-size: 28px;
    line-height: 34px;
    color: #fff;
    margin: 4px 0;
}

.fimgs {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 32px;
}

.fimgs img {
    border-radius: 16px;
    transition: all 0.5s ease-in-out;
}

.fimgs:hover img {
    transform: scale(1.05);
    border-radius: 16px;
    transition: all 0.5s ease-in-out;
}

.fimgst {
    width: 100%;
    overflow: hidden;
    padding: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0 0px 16px 16px;
}

.fimgs:hover .fimgst a::after {
    background-color: #fff;
    transition: all 0.3s ease-in-out;

}

.fimgs:hover .fimgst a {
    background: #FF3D57;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.fimgst a,
.rpcontent span:first-child {
    font-size: 14px;
    line-height: 16px;
    color: black;
    background: #fff;
    padding: 6px 10px 6px 32px;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.fimgst a::after,
.rpcontent span:first-child::after {
    position: absolute;
    content: "";
    left: 6px;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: #28263D;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.fimgst span,
.rpcontent span:last-child {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
}

/* Author section  */
.autsec {
    display: flex;
    flex-direction: column;
    background-color: #28263D;
    padding: 24px;
    border-radius: 20px;
}

.autsecc h4 {
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    font-weight: 600;
    margin: 12px 0;
}

.autsecc p.author-details {
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.autsecc p.author-details::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    left: 0;
    bottom: -11px;
    opacity: 0.6;
}

.autsecc p.author-des {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 0;
}

.autseci .author-img {
    width: 100px;
    height: 100px;
    margin-right: 16px;
    display: none;
}

.autseci .author-link {
    width: 28px;
    height: auto;
}

.bside .bsideshare {
    background: url(https://techimplement.com/wp-content/uploads/2024/10/blog-share-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 24px;
    border-radius: 20px;
}

.bsideshare p {
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.bcounts {
    margin-bottom: 64px;
    display: flex;
    padding: 16px;
    justify-content: space-between;
    background: #28263D;
    border-radius: 16px;
    align-items: center;
    position: relative;
}

.bcounts::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -32px;
    left: 0;
    background: #6C7880;
    border-radius: 50px;
}

.rect-posts {
    margin-bottom: 120px;
}


.recent-slide {
    margin: 0 12px;
    background: #F8F8F8;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.recent-slide:hover {
    transform: translateY(-10px);
    transition: all 0.5s ease-in-out;
    box-shadow: 2px 13px -1px rgba(0, 0, 0, .2) !important;
    border-radius: 12px;
    overflow: hidden;
}

h4.recentposthe {
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 0;
    height: 80px;
}

.recent-slide:hover h4.recentposthe {
    color: #28263D;
    transition: all 0.3s ease-in-out;
}

.recent-slide img {
    border-radius: 16px;
}

.rpcontent span:first-child {
    margin: 12px 0 8px 0;
}

.rect-posts .slick-slider {
    -ms-user-select: unset;
    user-select: unset;
}

.recent-slide:hover .rpcontent span:first-child {
    color: #fff;
    background: #28263D;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.recent-slide:hover .rpcontent span:first-child::after {
    background: #fff;
    transition: all 0.5s ease-in-out;
}

.rpcontent span:last-child {
    color: #555 !important;
}

.blog-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.bloginnercon {
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 18px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.bloginnercon:hover {
    transform: translateY(-14px);
    transition: all 0.5s ease-in-out;
    border-radius: 18px;
}

.bloginnercon:hover h3 {
    color: #28263D;
    transition: all 0.5s ease-in-out;
}

.bloginnercon:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    opacity: 0.7;
    border-radius: 18px;
}

.bicsi {
    overflow: hidden;
    height: 190px;
}

.bloginnercon img {
    width: 100%;
    height: auto;
    border-radius: 18px 18px 0 0 !important;
    transition: all 0.5s ease-in-out;
}

.bloginnercon h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
    height: 120px;
}

.bloginnercon .btn {
    font-size: 16px;
    line-height: 16px;
}

.bics {
    padding: 8px 16px 16px 16px;
}

.awards-card {
    display: none;
}

.post-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.load-more-wrapper {
    text-align: center;
    margin: 30px 0;
}

.load-more-btn,
.back-to-top-btn {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.load-more-btn:hover,
.back-to-top-btn:hover {
    background-color: #005a87;
}

.blog-row {
    margin-bottom: 120px;
}

.bs-tsoc a {
    padding-right: 8px;
}

.bs-fsoc {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
}

.bs-tsoc a:last-child {
    margin-right: 0px;
}

.bs-fsoc {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
}

.bs-tsoc a {
    margin-right: 4px;
    background-color: #fff;
    padding: 8px 8px;
    border-radius: 50px;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
}

.bs-tsoc a.tsoc-mail {
    padding: 5.8px 12px;
}

.bs-tsoc a.tsoc-face {
    padding: 5.9px 15.5px;
}

a.tsoc-face svg {
    width: 9px !important;
}

.bs-tsoc a.tsoc-yout {
    padding: 6px 9px;
}

.bs-tsoc a.tsoc-insta {
    padding: 6px 11px;
}

.bs-tsoc a.tsoc-twitt {
    padding: 6.59px 12px;
}

.bs-tsoc a.tsoc-tik {
    padding: 6px 11px;
}

.bs-tsoc a.tsoc-wha {
    padding: 6px 11px;
}


.bs-tsoc a svg {
    width: 16px;
    height: auto;
    margin-top: 6px;
    fill: #28263D;
    transition: all 0.5s ease;
}

.bs-tsoc a svg path {
    fill: #FF3D57;
}

.bs-tsoc a:hover {
    background-color: #FF3D57;
    box-shadow: inset 0 0 0 3px #fff;
}

.bs-tsoc a:hover svg path {
    fill: #fff;
}

.bs-tsoc a:hover svg {
    color: #fff;
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* Table of content style start here  */
#toc_container {
    margin-top: 24px;
}

#toc_container span {
    font-size: 20px;
    line-height: 24px;
    color: #1B1B1F;
    font-weight: 500;
}

#toc_container ul li a {
    font-size: 16px;
    line-height: 18px;
    color: #1B1B1F;
}

#toc_container ul {
    margin-top: 16px;
}

#toc_container ul li {
    padding: 0px 10px 0px 20px;
    margin-bottom: 16px;
    list-style: none;
    font-size: 16px;
    line-height: 20px;
}

#toc_container ul li.active {
    border-left: 3px solid #FF3D57;
}

#toc_container ul li.active a {
    color: #FF3D57;
    font-weight: 600;
}

/* Table of content style End here  */

/* Footer Style Start Here  */
#footer .container-blog {
    margin: 0 auto 0 auto;
}

.footer-img img {
    width: 100%;
}

#footer {
    background-color: #28263D;
    padding: 0px 0 32px 0;
    margin-top: -10px;
}

.fmain {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 24px;
}

.fmc {
    width: 75%;
}

.fml {
    width: 25%;
}

.fmc p:nth-child(1) {
    font-size: 54px;
    line-height: 60px;
    color: #fff;
    font-weight: 700;
    width: 70%;
}

.fmc p:nth-child(2) {
    color: #fff;
    width: 70%;
    padding-bottom: 24px;
}

.fmc img {
    width: 160px;
    margin-bottom: 24px;
}

.fmclinks {
    margin-top: 24px;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.fmclinks ul li {
    list-style: none;
}

.fmcli ul li:not(:first-child) a:hover {
    color: #FF3D57 !important;
}

.fmcli ul li:first-child a {
    font-weight: 700;
    color: #fff;
}

.fmcli ul li:not(:first-child) a {
    font-size: 14px;
    color: #fff;
    position: relative;
}

/* .fmcli ul li:not(:first-child) a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    background-color: #FF3D57;
} */

.fmcli ul li:not(:first-child) a:hover::after {
    width: 100%;
}

.sfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.sfci {
    gap: 20px;
    display: flex;
    align-items: center;
}

/* Footer Style End Here  */

/* Card Button Style Start here  */
.page-id-1264 .card-btn h4 {
    text-transform: uppercase;
}


.card-btn img,
.card-btn svg {
    width: 80px;
    margin-bottom: 16px;
}

.card-btn a {
    background-color: #FFB800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s ease-in-out !important;
}

.card-btn a img {
    display: inline-block;
    padding: 10px;
    width: 36px;
    background-color: #fff;
    border-radius: 50px;
    margin-bottom: 0;
}

.card-btn-rapper {
    transition: all 0.5s ease-in-out !important;
}

.card-btn-rapper:hover {
    transform: translateY(-15px);
    transition: all 0.3s ease-in-out !important;
    background-color: #28263D;
    /* background-color: rgba(255, 61, 87, .1); */
}

.card-btn-rapper:hover .card-btn a {
    background-color: #FF3D57;
    transition: all 0.3s ease-in-out !important;
}

.card-btn-rapper:hover .card-btn p,
.card-btn-rapper:hover .card-btn h4 {
    color: #fff;
    transition: all 0.3s ease-in-out !important;
}

/* Card Button Style End here  */

/* Back To Top Style Start Here  */
.blok:nth-of-type(odd) {
    background-color: white;
}

.blok:nth-of-type(even) {
    background-color: black;
}

@-webkit-keyframes border-transform {

    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    /* font-family: 'unicons'; */
    content: '⬟';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #FF3D57;
    /* color: rgba(0, 0, 0, 0.3);  */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    /* font-family: 'unicons'; */
    content: '⬟';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black;
    /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #FF3D57;
    /* stroke: rgba(0, 0, 0, 0.2);  */
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Back To Top Style End Here  */

.estimg {
    text-align: center;
}

.estimg img {
    width: 70px;
    margin-bottom: 16px;
}

.estimg-rapper {
    transition: all 0.5s ease-in-out !important;
}

.estimg-rapper:hover {
    /* background-color: #28263D !important; */
    transform: scale(1.05);
    transition: all 0.3s ease-in-out !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.estimg-rapper:hover .estimg h5 {
    /* color: #fff; */
    /* transition: all 0.2s ease-in-out; */
}

/* Estimating Services slider style start here  */
.toerapper {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 32px;
    padding: 40px 60px 40px 60px;
}

.toemain {
    gap: 60px;
    display: flex;
    align-items: center;
}

.toemain .toemimg {
    width: 30%;
}

.toemain .toemimg img {
    /* filter: drop-shadow(0px 7px 29px rgba(100, 100, 111, 0.2)); */
}

.toemain .toecont {
    width: 70%;
}

/* Estimating Services slider style End here  */

/* Slick Dots Style Overall Style Start */

.estimating-slider .slick-dots {
    bottom: -48px;
}

.slick-dots li {
    width: 34px;
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 8px;
}

.slick-dots li.slick-active {
    background: #FF3D57;
    /* Active line color */
}

.slick-dots li button {
    display: none;
    /* Hide the default button */
}

.slick-dots li {
    border-radius: 2px;
}

.slick-dots li:hover {
    background: #FF3D57;
}

/* Slick Dots Style Overall Style End */

/* Top Image Card Style startt here  */
.top-img-card {
    position: relative;
    text-align: center;
}

.top-img-card img {
    width: 136px;
    position: absolute;
    top: -67px;
    left: 52%;
    transform: translateX(-50%);
    /* transform: rotate(45deg); */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.top-img-card h4 {
    padding-top: 90px;
}

.hb-dark {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 0;
}

.hb-dark::after {
    position: absolute;
    left: 50%;
    content: "";
    bottom: 22px;
    transform: translateX(-50%);
    background: #FF3D57;
    height: 3px;
    width: 60%;
}

.core-value-rapper {
    position: relative;
    top: 20px;
}

.top-img-card-rapper:hover {
    background-color: #28263D !important;
    transform: translateY(-10px);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.top-img-card-rapper:hover .top-img-card h4,
.top-img-card-rapper:hover .top-img-card p {
    color: #fff;
}

.top-img-card-rapper:hover .hb-dark::after {
    background-color: #fff;
}

.top-img-card a:hover{
    color: #FF3D57;
}

/* Top Image Card Style End here  */


/* Setup Your phone in 3 minutes style start  */
.setup-phone img {
    width: 80px;
}

.setup-phone h4 {
    margin: 12px 0;
}

.setup-phone p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
}

.sms-online-platform {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sms-online-platform div:first-child {
    height: 60px;
}

.sms-online-platform p {
    margin-bottom: 0;
}

.sms-online-platform h4 {
    margin-top: 0;
}

.setup-phone-rapper {
    transition: all 0.5s !important;
}

.setup-phone {
    transition: all 0.5s;
}

.setup-phone-rapper:hover .setup-phone {
    transform: scale(0.9);
    transition: all 0.5s;
}

/* Setup Your phone in 3 minutes End start  */


/* Style for the number count section start  */
.numcout-wrap .numcount-cont p {
    width: 75%;
    margin: auto;
}

.numcout-wrap .numcount-num {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.numcout-wrap .numcount-num .num-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 50px;
    width: 25%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.numii {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.num-inner {
    position: relative;
}

.num-inner span {
    color: #52606D;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

.num-inner .counter {
    margin: 0px 0 12px 0;
    color: #000000;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
}

.num-inner::after {
    position: absolute;
    content: '+';
    color: #000000;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    top: 28px;
}

.num-inner:nth-child(3):after {
    position: absolute;
    content: '%';
    color: #000000;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    top: 28px;
}

.num-inner1::after {
    left: 194px;
}

.num-inner2::after {
    left: 187px;
}

.num-inner3::after {
    left: 178px;
}

.num-inner4::after {
    left: 187px;
}

.num-inner1 .numii .counter {
    margin-left: -16px;
}

.num-inner2 .numii .counter {
    margin-left: -24px;
}

.num-inner3 .numii .counter {
    margin-left: -30px;
}

.num-inner4 .numii .counter {
    margin-left: -28px;
}

/* Style for the number count section end  */

/* Testimonail Slider Style start here  */
.ts-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tscont p {
    margin-bottom: 8px;
    font-weight: bold;
}

.tscont span {}

/* Testimonail Slider Style End here  */

/* Brnadcrumb Style Start here  */
.brum-list {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    width: -webkit-fill-available;
    gap: 16px;
    border-radius: 12px;
}

.brum-list span {
    color: #fff;
    font-weight: 600;
}

.brum-list a {
    color: ;
}

.brum-list a:hover {
    color: #fff;
}

/* Brnadcrumb Style End here  */

/* Image Continer Background style start  */
.image-container {
    position: relative !important;
    z-index: 2 !important;
}


img.img-cont-bg {
    position: absolute;
    top: -40px;
    right: -50px;
    animation: moveTopToBottom 8s ease-in-out infinite;
}

.img-cont-bg-left {
    position: absolute;
    top: -40px;
    left: -50px;
    animation: moveTopToBottom 8s ease-in-out infinite;
}

@keyframes moveTopToBottom {
    0% {
        transform: translateY(-50px) scale(1);
    }

    50% {
        transform: translateY(50px) scale(1.2);
    }

    100% {
        transform: translateY(-50px) scale(1);
    }
}

img.image-container-circle {
    position: absolute;
    left: 41px;
    top: -26px;
    z-index: -1;
    animation: circleZoom 4s ease-in-out infinite;
}

img.image-container-circle-left {
    position: absolute;
    right: 41px;
    top: -26px;
    z-index: -1;
    animation: circleZoom 4s ease-in-out infinite;
}

@keyframes circleZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.wjy-choose-section img {
    margin-bottom: 16px;
    width: 60px;
    box-shadow: rgba(128, 128, 108, 0.2) 0px 18px 50px -10px;
}

/* Image Continer Background style End  */

/* Our Portfolio Page Style Start Here  */
.our-portfolio-card img {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
    border-radius: 24px !important;
}

.our-portfolio-card p{
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    margin-top: 24px;
}

.our-portfolio-card span{
    text-align: center;
    display: block;
}

/* Our Portfolio Page Style End Here  */

/* Big Screen Media Quries start here  */
@media all and (min-width:1900px) {}

@media all and (min-width:1600px) and (max-width:1900px) {}

@media all and (min-width:1600px) {}

/* Big Screen Media Quries End here  */

/* Tablet style start here  */
@media all and (min-width:768px) and (max-width:1080px) {

    /* Globally tablet style start here  */
    label {
        font-size: 12px;
        line-height: 12px;
    }

    .show-on-mobile {
        display: none;
    }

    .desktop-space-e {
        margin-top: 60px !important;
    }

    p {
        font-size: 16px;
        line-height: 22px;
    }

    h1 {
        font-size: 42px;
        line-height: 48px;
    }

    h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    h3 {
        font-size: 30px;
        line-height: 34px;
    }

    h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .span-bg {
        font-size: 12px;
        line-height: 12px;
    }

    .button {
        padding: 12px 16px;
    }

    .list-icon li {
        font-size: 16px;
    }

    /* Image container tablet style start here  */
    img.image-container-circle {
        left: -26px;
    }

    img.image-container-circle-left {
        right: -18px;
    }

    /* Image container tablet style End here  */

    /* Globally tablet style end here  */

    /* 	Blog Style tablet version start  */
    .container-blog {
        max-width: 100%;
        padding: 0 25px;
    }

    .blog-inner {
        gap: 20px;
    }

    .fimgst {
        padding: 8px 16px;
    }

    .fimgst a,
    .rpcontent span:first-child {
        font-size: 10px;
        line-height: 10px;
        padding: 6px 10px 6px 26px;
    }

    .fimgst a::after,
    .rpcontent span:first-child::after {
        width: 10px;
        height: 10px;
        top: 6px;
    }

    .fimgst h1 {
        font-size: 22px;
        line-height: 24px;
        margin: 8px 0 0 0;
    }

    .fimgst span,
    .rpcontent span:last-child {
        font-size: 12px;
        line-height: 12px;
    }

    .bcountst {
        width: 50%;
    }

    .rect-posts .slick-dots li.slick-active button:before {
        opacity: 1;
        width: 18px;
        height: 18px;
        font-size: 0px;
        color: #28263D;
        background: #28263D;
        border: 1px solid #fff;
        top: 0;
    }

    .rect-posts .slick-dots li button:before {
        width: 13px;
        height: 13px;
        border-radius: 50px;
        opacity: 1;
        color: transparent;
        border: 1px solid #CBD5E0;
        top: 3px;
    }

    .bicsi {
        height: auto !important;
    }

    .blog-row {
        gap: 14px !important;
    }

    .bloginnercon h3 {
        font-size: 20px !important;
        line-height: 24px !important;
    }

    /* 	Blog Style tablet version end  */

    /* Card Button Tablet Style Start here  */
    .card-btn a {
        font-size: 14px;
    }

    .card-btn a img {
        padding: 8px;
        width: 25px;
    }

    /* Card Button Tablet Style End here  */

    /* Footer tablet style start here  */
    .fmc p:nth-child(1) {
        font-size: 40px;
        line-height: 46px;
    }
    /* Footer tablet style End here  */
}

/* Tablet style End here  */


/* Mobile style start here  */
@media all and (max-width:767px) {

    /* Globally Mobile style start here  */

    .show-on-desktop {
        display: none;
    }

    #toc_container {
        display: none;
    }

    .desktop-space-e {
        margin-top: 60px !important;
    }

    h1 {
        font-size: 36px;
        line-height: 42px;
    }

    h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 18px;
    }

    h4 {
        font-size: 20px;
        line-height: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .button {
        font-size: 14px;
        line-height: 14px;
        padding: 14px 16px;
    }

    .list-icon li {
        font-size: 16px;
    }

    .span-bg {
        font-size: 12px;
    }

    .brum-list {
        align-items: center;
    }

    /* Globally Mobile style End here  */

    /* Navigation menu for mobile start */
    .dnmbl {
        display: none;
    }

    /* Navigation menu for mobile End */

    /* Our Top Customer Mobile style here  */
    img.trust-img {
        margin: 0 24px;
    }

    /* Our Top Customer Mobile End here  */

    /* 	Blog style for mobile start here  */
    .container-blog {
        max-width: 100%;
        padding: 0 25px;
    }

    .rect-posts .slick-dots li.slick-active button:before {
        opacity: 1;
        width: 18px;
        height: 18px;
        font-size: 0px;
        color: #28263D;
        background: #28263D;
        border: 1px solid #fff;
        top: 0;
    }

    .rect-posts .slick-dots li button:before {
        width: 13px;
        height: 13px;
        border-radius: 50px;
        opacity: 1;
        color: transparent;
        border: 1px solid #CBD5E0;
        top: 3px;
    }

    .recent-slide {
        margin: 0;
    }

    .blog-inner {
        flex-direction: column;
        gap: 32px;
    }

    .bcont,
    .bside {
        width: 100%;
    }

    .fimgs {
        margin-bottom: 20px;
    }

    .fimgst a {
        padding: 6px 10px 6px 20px;
    }

    .fimgst a,
    .fimgst span {
        font-size: 10px;
        line-height: 10px;
    }

    .fimgst h1 {
        font-size: 16px;
        line-height: 18px;
        margin: 8px 0 0 0;
    }

    .fimgst a::after {
        width: 9px;
        height: 9px;
    }

    .bcounts {
        display: none !important;
    }

    .bsideshare {
        margin-bottom: 60px;
        position: relative;
    }

    .bsideshare::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #6C7880;
        left: 0;
        bottom: -30px;
        opacity: 0.6;
    }

    .fimgst {
        padding: 6px 16px;
    }

    .blog-row {
        grid-template-columns: 1fr !important;
    }

    .bicsi {
        height: auto !important;
    }

    /* 	Blog style for mobile end here  */

    /* Footer mobile style start here  */
    .fmc p:nth-child(1) {
        font-size: 30px;
        line-height: 36px;
        width: 100%;
    }

    .fmain {
        flex-direction: column-reverse;
    }

    .fmc,
    .fml,
    .fmc p:nth-child(2) {
        width: 100%;
    }

    .fml {
        text-align: center;
        margin-bottom: 16px;
    }

    .fml img {
        width: 100px;
    }

    .fmclinks {
        flex-direction: column;
        width: 100%;
    }

    .home-contact-us {
        width: 100%;
        padding: 34px 30px 20px 30px;
    }

    #footer .container-blog{
        padding: 25px;
    }

    .fmclinks ul{
        padding-left: 0;
    }

    .fmc p:nth-child(2){
        padding-bottom: 0;
    }

    .fmcli{
        margin-bottom: 16px;
    }

    .fmcli ul li:first-child a{
        font-size: 20px;
    }

    .fmcli ul li:not(:first-child) a{
        font-size: 18px;
    }

    .sfcb{
        display: none;
    }

    .sfooter{
        flex-direction: column;
    }

    .sfci{
        margin-bottom: 20px;
    }

    #footer {
        padding: 24px 0 16px 0;
    }

    /* Footer mobile style End here  */

    /* Number Counter section Mobile start here  */
    .numcout-wrap .numcount-num {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 40px;
    }

    .numcout-wrap .numcount-num .num-inner {
        width: 47%;
        flex-direction: column;
        gap: 12px;
        border-radius: 24px;
        padding: 24px 12px;
    }

    .num-inner::after {
        top: 97px;
        z-index: 1;
    }

    .num-inner:nth-child(3):after {
        top: 97px;
    }


    .num-inner4 .numii .counter {
        margin-left: -16px;
    }

    .num-inner3 .numii .counter {
        margin-left: -24px;
    }

    .num-inner2 .numii .counter {
        margin-left: -18px;
    }

    @media all and (max-width:360px) {
        .num-inner1::after {
            left: 90px;
        }

        .num-inner2::after {
            left: 87px;
        }

        .num-inner3::after {
            left: 77px;
        }

        .num-inner4::after {
            left: 92px;
        }
    }

    @media all and (min-width:360px) and (max-width:380px) {
        .num-inner1::after {
            left: 98px;
        }

        .num-inner2::after {
            left: 94px;
        }

        .num-inner3::after {
            left: 84px;
        }

        .num-inner4::after {
            left: 98px;
        }
    }

    @media all and (min-width:380px) and (max-width:400px) {
        .num-inner1::after {
            left: 102px;
        }

        .num-inner2::after {
            left: 98px;
        }

        .num-inner3::after {
            left: 88px;
        }

        .num-inner4::after {
            left: 102px;
        }
    }

    @media all and (min-width:400px) and (max-width:767px) {
        .num-inner1::after {
            left: 108px;
        }

        .num-inner2::after {
            left: 104px;
        }

        .num-inner3::after {
            left: 94px;
        }

        .num-inner4::after {
            left: 110px;
        }
    }

    /* Number Counter section Mobile end here  */

    /* Contact Us Page Mobile Style start here  */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Contact Us Page Mobile Style End here  */

    .core-value-rapper {
        top: 0px;
    }

    /* Image Conta background:  Mobile Style start here  */
    img.image-container-circle {
        left: -18px;
    }

    img.image-container-circle-left {
        right: -18px;
        top: -33px;
    }

    /* Image Conta background:  Mobile Style End here  */

    .estimg h5 {
        font-size: 16px;
    }

    .estimg img {
        width: 60px;
        margin-bottom: 10px;
    }

    /* Estimating Services slider Mobile style start here  */
    .toemain {
        flex-direction: column;
        gap: 25px;
    }

    .toerapper {
        padding: 32px 24px 32px 24px;
    }

    .toemain .toecont,
    .toemain .toemimg {
        width: 100%;
    }

    /* Estimating Services slider Mobile style End here  */
}

/* Mobile style end here  */


/* Small Mobile Devices Media Query start here  */

@media all and (max-width:767px) and (min-width:380px) {}

@media all and (max-width:380px) {}