@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primaryClr: #f0b74c;
    --darkClr: #111013;
    --greyBg: #9690a296;
}
html {
    scroll-behavior: smooth;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica';
    font-size: 1.025rem;
    line-height: 1.6;
    color: var(--darkClr);
    text-rendering: optimizeLegibility;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1330px;
    padding: 0 15px;
    margin: 0 auto;
}

.-hidden,
.hidden,
.hide {
    display: none;
}

h1 {
    font-family: "Anton", sans-serif;
    font-size: 58px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--darkClr);
}

h2 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 600;
    color: var(--darkClr);
}

h2 b,
h2 strong {
    font-weight: 700;
}

.-visible,
.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

img {
    max-width: 100%;
}

a i {
    font-size: 22px;
}

p a {
    color: var(--primaryClr);
}

.btn-yellow {
    color: #000;
    border-radius: 7px;
    background-color: #fab429;
    padding: 15px 24px;
    display: inline-block;
    height: 52px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fab429;
    line-height: 1;
}

.btn-yellow:hover {
    background-color: transparent;
}

a {
    outline: none !important;
    text-decoration: none;
}

/* header */

.header-wrap {
    position: relative;
    z-index: 1;
    height: 12vh;

}

.header-wrap .header-wrap-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-hamburger {
    display: none;
}


.header-wrap .left-part,
.header-wrap .right-part,
.header-wrap .top-part {
    display: flex;
    align-items: center;
}

.header-wrap-inner .left-part .branding {
    position: relative;
    display: flex;
    align-items: center;
}

.header-wrap-inner .left-part .branding .branding-title {
    font-weight: 600;
    font-size: 1.4em;
}

.logo {
    position: relative;
}

body:not(.dark-scheme) .branding .dark-scheme-logo {
    display: none;
}

.branding .logo img,
.branding .logo-mobile img,
.branding .logo-dynamic img {
    min-height: 200px;
    max-height: 200px;
    display: flex;
}

.branding .logo-sticky {
    display: none;
}

.header .logo-sticky,
.header .logo-mobile,
.header .logo-sticky-mobile {
    display: none;
}

.logo-sticky {
    margin-left: -15px !important;
}

body .header .branding .logo img {
    margin-left: 0 !important;
}

.header-wrap .right-part {
    justify-content: flex-end;
}

header ul.menu-optional {
    display: block !important;
}

.header-wrap-inner .menu-optional {
    display: flex;
    align-items: center;
}

header ul li {
    list-style: none;
}

.menu-optional .icon-button {
    min-width: 56px;
    width: 56px;
    height: 56px;
}

.icon-button:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primaryClr);
    transform: scale(0);
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
    border-radius: 50%;
}

button.icon-button.search-global {
    margin-top: 22px !important;
    border-radius: 50%;
    border: none;
}

.menu-optional li.icon-button-holder:nth-of-type(2) {
    display: none !important;
}

.icon-button>.icon {
    margin-left: 0;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
    transition-property: transform, opacity;
}

.hamburger-button {
    background-color: unset;
    padding: 0;
    border: none;
    margin-top: 22px;
    margin-left: 16px;
}



.hamburger.icon-button>.icon {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
}

.hamburger.icon-button>.icon:after {
    width: 1.1rem;
}

.hamburger.icon-button>.icon:before {
    width: 1.375rem;
}

.clb-popup {
    position: fixed;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50vh);
}

.hamburger-nav {
    padding: var(--clb-spacer);
    display: flex;
    flex-direction: column;
}

.clb-popup:not(.-slide-in) {
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--darkClr) 99%, transparent);
}

.clb-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .5s ease-in-out;
}

.hamburger-nav:not(.type2):not(.type3) {
    padding-left: calc(calc(1rem * 2) + 2rem);
    padding-right: calc(1rem * 2);
    padding-top: 21px;
    padding-bottom: 21px;
}

.clb-popup .close-bar {
    position: absolute;
    right: 45px;
    top: 18px;
}

.clb-popup.hamburger-nav.active {
    right: 0;
}

body.menu-open {
    overflow: hidden;
}

.clb-popup.hamburger-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/* when menu opens */
.clb-popup.hamburger-nav.active {
    left: 0;
}

.icon-button:hover,
.icon-button.hamburger,
.icon-button.cart {
    background-color: color-mix(in srgb, color-mix(in srgb, var(--darkClr) 50%, #fff) 8%, transparent);
}

.hamburger-nav-holder {
    height: 100%;
    display: flex;
    align-items: center;
}


.icon-button {
    position: relative;
    padding: 0;
    border: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    min-width: 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hamburger.icon-button>.icon:after,
.hamburger.icon-button>.icon:before {
    content: "";
    height: 2px;
    margin: 3px 0;
    background-color: #000;
}

.hamburger.icon-button>.icon:after {
    width: 1.1rem;
}

.home .sticky {
    background: #ffffff;
    border: none;
}

.hamburger-nav .menu {
    counter-reset: number;
    width: 25%;
    position: relative;
    margin: 0;
}

.hamburger-nav .menu .mega-menu-item {
    margin: 0;
    list-style-type: none;
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
}

.hamburger-nav .menu .nav-item {
    counter-increment: number;
    padding: 4px 40px 4px 0;
}



.hamburger-nav .menu .mega-menu-item>a span {
    gap: 0 0.5em;
    line-height: 1.2;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
}

.hamburger-nav .menu .mega-menu-item>a {
    width: 100%;
    vertical-align: middle;
    font-weight: 600;
    font-size: 25px;
    font-family: helvetica;
    display: block;
    position: relative;
    z-index: 2;
    color: white;
    font-size: 25px;
    display: flex !important;
    gap: 0.35em;
    text-decoration: none;
}

.hamburger-nav .menu .nav-item>a:before {
    content: "0" counter(number);
    display: inline-block;
    opacity: 1;
    font-weight: 700;
    width: auto;
    vertical-align: top;
    line-height: 20px;
    font-size: 14px;
    position: relative;
    height: auto;
    background: 0 0;
    align-self: flex-start;
    color: currentColor;
    opacity: .5;
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
}

.hamburger-nav .menu .mega-menu-item .has-submenu-icon:not(:hover) {
    transform: translateY(-50%) scale(1) rotate(0deg);
}

.has-submenu-icon {
    position: absolute;
    top: 50%;
    transform-origin: center;
    transform: translateY(-50%) scale(.75) rotate(0deg);
    right: 0;
    line-height: 0;
    opacity: .5;
}

.has-submenu-icon .menu-plus {
    transition: transform cubic-bezier(.645, .045, .355, 1) 0.35s;
}

.hamburger-nav .menu .menu-chevron {
    display: none;
}

.hamburger-nav .menu .mega-menu-item>ul {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
}

.hamburger-nav-details {
    font-size: 0.95em;
    padding-top: 2rem;
    padding-right: 2rem;
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
}

.hamburger-nav-details .details-column {
    width: 25%;
    margin: 1rem 0;
    color: #565557;
    font-family: 'Helvetica';
    line-height: 1.6;

}

.hamburger-nav-details .details-column b {
    color: white;
}

.has-submenu-icon .menu-plus svg {
    width: 30px;
}

.hamburger-nav .menu .mega-menu-item.active>ul>*,
.hamburger-nav .menu .mega-menu-item:hover>ul>* {
    transform: none;
    visibility: visible;
    opacity: 1;
}

.hamburger-nav .menu .mega-menu-item>a span {
    gap: 0 0.5em;
    line-height: 1.2;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
}

span.menu-link-subtitle {
    display: none !important;
}

.has-submenu-icon .menu-plus svg {
    transition: transform 0.3s ease;
}

.mega-menu-item.has-submenu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.mega-menu-item.has-submenu .sub-menu {
    background: transparent;
}

.sub-menu .sub-nav-item {
    padding: 4px 40px 4px 0;
}

.mega-menu-item.has-submenu>.menu-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (min-width:768px) {
    .mega-menu-item.has-submenu:hover>.menu-link svg {
        transform: rotate(45deg);
    }

    .mega-menu-item.has-submenu:hover>.menu-link {
        opacity: 0.5;
    }

    .mega-menu-item.has-submenu:hover>.menu-link::before {
        transform: translateX(1rem);
        opacity: 0;
    }

    .mega-menu-item.has-submenu:hover>.menu-link span {
        transform: translateX(1rem);
    }
}

.hamburger-nav .menu .mega-menu-item {
    position: relative;
}

.hamburger-nav .menu>.mega-menu-item>a.menu-link:hover+.sub-menu {
    display: block;
}

.mega-menu-item.has-submenu>.sub-menu .has-submenu:hover>a.menu-link+.sub-sub-menu {
    display: block;
}

.close-bar .icon-button {
    background: transparent;
}


/* Show submenu */
.mega-menu-item.has-submenu>.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}


.mega-menu-item.has-submenu::before,
.mega-menu-item.has-submenu:hover::before {
    content: none !important;
}

.search-icon {
    cursor: pointer;
    font-size: 22px;
}

/* Popup Overlay */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--darkClr) 99%, transparent);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Search box */
.search-box {
    display: flex;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    padding: 15px;
    width: 400px;
    border: none;
    outline: none;
    background-color: color-mix(in srgb, var(--darkClr) 99%, transparent);
    color: white;
}

.search-box button {
    padding: 15px;
    border: none;
    background-color: color-mix(in srgb, var(--darkClr) 99%, transparent);
    color: white;
}

.search .card .button.-text {
    padding: 0 !important;
    min-height: 1px !important;
    background-color: transparent !important;
    color: #161518 !important;
}

.search .card .button.-text:hover {
    color: var(--primaryClr) !important;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.search-box svg {
    width: 19px;
}

header {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 9;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transform: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all cubic-bezier(.645, .045, .355, 1) 0.35s;
    margin: 0;
}

.home .sticky {
    margin-left: 0;
    margin-right: 0;
}

header.sticky .hamburger-button {
    margin-top: 0;
}

header.sticky .search-global {
    margin-top: 0 !important;
}

header.sticky .logo img {
    max-height: 160px !important;
    min-height: 160px;
}

header.sticky {
    padding: 0;
}

header.sticky .header-wrap {
    height: 10vh;
}

.hamburger-nav .menu .mega-menu-item .has-submenu-icon:not(:hover) {
    transform: translateY(-50%) scale(1) rotate(0deg);
}

.hamburger-nav .menu .mega-menu-item>a:hover {
    color: #fff !important;
}

/* home Banner */

.home-banner {
    min-width: auto !important;
    left: 0 !important;
    display: flex;
    max-width: 1920px;
    margin-inline: auto;
}

.home-banner .content-banner {
    padding: 100px 50px;
}

.home-banner .image-banner {
    width: 100%;
    max-width: 951px;
}

.home-banner .image-banner img {
    width: 100%;
    height: 548px;
    object-fit: cover;
}

.banner-buttons a.white:hover i {
    color: black !important;
    animation: iconMove 0.35s ease-out forwards;
}

.cstm-breadcrumbs span path {
    stroke: var(--darkClr);
    fill: var(--darkClr);
}
.home-banner .content-banner .heading .subtitle {
    font-family: 'Helvetica';
    font-size: 17px;
    text-transform: none;
    padding: 10px 0;
    line-height: 25.6px;
}

.home-banner .content-banner .heading {
    padding-bottom: 50px;
}

.home-banner .content-banner .banner-buttons .black {
    background: black;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 24px;
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    border: 2px solid;
}

.home-banner .content-banner .banner-buttons .white {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 24px;
    display: inline-block;
    border: 2px solid black;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 20px;
}

.home-banner .content-banner .banner-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.banner-buttons a.black:hover {
    background-color: #ffffff !important;
    color: black !important;
    border: 2px solid;
}

.banner-buttons a.black:hover i {
    color: black !important;
    animation: iconMove 0.35s ease-out;
}

/* logo section */
.logo-section {
    width: 100%;
    background: rgb(150 144 162 / 6%);
    padding: 50px 40px;
}

.logo-section .logo1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.logo-section .logo-image img {
    filter: grayscale(1);
    width: 100%;
    max-width: 300px;
}

.logo-section .logo-image img:hover {
    transform: scale(1.1);
    transition-duration: .3s;
    transition-property: transform;
    filter: grayscale(0);
}

.categories .simple-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.categories .simple-category-grid .category-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.categories .simple-category-grid .category-item img {
    width: 100%;
    transition: opacity .3s ease-in-out;
}

.categories .simple-category-grid .category-item img.hover-image {
    display: block;
    position: static;
    width: 100%;
    opacity: 1;
    transition: unset;
}

.categories .simple-category-grid .category-item img {
    display: none;
}

.categories .simple-category-grid .category-item img {
    width: 100%;
    transition: opacity .3s ease-in-out;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.categories .simple-category-grid .category-item h3 {
    font-size: 18px;
    padding-top: 20px;
    font-family: 'Helvetica';
    line-height: 1;
    font-weight: 600;
}

.categories .simple-category-grid .category-item .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 39px);
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.categories h4 {
    font-size: 24px;
    font-family: 'Helvetica';
    margin-bottom: 20px;
    font-weight: 600;
}

.categories {
    margin: 50px 20px 100px;
}

/* ctc section */

.ctc-section {
    padding: 50px 100px 100px;
}

.button:hover i {
    animation: iconMove 0.35s ease-out;
}

.heading .head-title {
    font-family: 'Helvetica';
    font-size: 32px;
    padding-top: 4.8px;
    font-weight: 600;
    letter-spacing: -1.6px;
}

.call-to-action {
    width: 100%;
    position: relative;
    padding: 25px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    background-color: #fab429;
    min-height: 166px;
}

.heading .subtitle {
    color: black;
    font-family: 'Helvetica';
    font-size: .9em;
    line-height: 23px;
    font-weight: 500;
}

.button {
    color: white !important;
    background-color: #161518 !important;
    font-family: 'Helvetica';
    font-size: 16px !important;
    font-weight: 600 !important;
    min-height: 3.25rem !important;
    padding: 16px !important;
    gap: 4px !important;
    border-radius: 12px !important;
    display: inline-flex;
    text-decoration: none !important;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent !important;
    cursor: pointer;
}
.content-only-wrap h2.title {
    line-height: 1.4;
}
.button.outlined {
    background-color: transparent !important;
    border: 2px solid #161518 !important;
    color: #161518 !important;
    margin-top: 15px !important;
    width: 100% !important;
    max-width: 407px;
}

.ctc-section .button span {
    color: white !important;
}

.button i {
    font-size: 17px;
}

/* service-section */

.service-section {
    padding-bottom: 50px;
}

.content .heading-title {
    font-family: 'Helvetica';
    font-size: 32px;
    letter-spacing: 0px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 100px 17px;
}

.service-grid .service-container .image-box img {
    width: 100%;
    height: 452px;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.service-grid .service-container .image-content h3 {
    font-size: 23px;
    font-family: 'Helvetica';
    font-weight: 600;
}

.service-grid .service-container .image-content p br {
    display: none;
}

.service-grid .service-container .image-content p {
    font-size: 16px;
    line-height: 25px;
    margin-top: 35px;
    font-family: 'Helvetica';
}

.service-grid .service-container .image-content p a {
    color: var(--primaryClr);
}

/* insights */

section.insights {
    margin: 50px 15px;
}

.insights .heading-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insights .heading-btn h4 {
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
}

.insights .heading-btn a {
    padding: 0 16px;
    border: 1px solid black;
    border-radius: 12px;
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    gap: 3.69px;
    height: 36px;
}

.insights .heading-btn i {
    font-size: 14px;
}

.insights .heading-btn:hover i {
    font-size: 14px;
    animation: iconMove 0.35s ease-out;
}



@keyframes iconMove {
    0% {
        transform: translateX(0)
    }

    30% {
        opacity: 0
    }

    31% {
        transform: translateX(20px)
    }

    32% {
        transform: translateX(calc(20px * -1))
    }

    84% {
        opacity: 1
    }

    100% {
        transform: translateX(0)
    }
}

.insights .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.insights .insights-grid .blog-item {
    position: relative;
    max-width: 390px;
}

.insights .insights-grid .blog-item a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    border-radius: 12px;
    color: var(--darkClr);
    line-height: normal;
}

.blog-item .image-holder {
    overflow: hidden;
    position: relative;
    margin: 0;
    width: 100%;
    height: 390px;
    object-fit: cover;
}
#main {
    padding: 0;
}
.meta-holder {
    gap: 1em;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.meta-item {
    line-height: 1.35;
    text-align: left;
    list-style: none;
}

.card:hover .overlay-details {
    transform: none;
    opacity: 1;
}

.blog-item .card .overlay-details {
    background: linear-gradient(360deg, rgba(17, 16, 19), .5) 0%, rgba(17, 16, 19, 0) 100%;
}

.blog-item {
    position: relative;
    overflow: hidden;
}

.blog-item img {
    width: 100%;
    display: block;
}

.overlay-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(360deg, rgba(17, 16, 19, .5) 0%, rgba(17, 16, 19, 0) 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.blog-item:hover .overlay-details {
    opacity: 1;
    transform: translateY(0);
}

.meta-holder {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 10px;
    width: 100%;
}

.avatar {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.avatar img {
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    object-fit: cover;
}

.meta-item .prefix {
    font-size: 14px;
    display: block;
    opacity: .75;
    font-family: 'Helvetica';
}

.meta-item .author {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Helvetica';
}

.card-details {
    text-align: left;
    margin-top: 20px;
}

.card-details a {
    font-size: 19px;
    font-weight: 600;
    font-family: 'Helvetica';
    letter-spacing: -0.5385px;
}

/* footer */

.site-footer {
    background: black;
}


.site-footer .widgets {
    padding-top: calc(16px + 3rem);
    padding-bottom: 16px;
    display: flex;
}

.site-footer .widgets .widgets-column {
    width: 100%;
    max-width: 324px;
    padding: 0 15px;
}

.site-footer .widgets ul,
.widgets ol {
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .widgets ul li,
.widgets ol li {
    margin: calc(4px * 0.55) 0;
}

.site-footer .widget_block strong {
    font-family: 'Helvetica';
    color: white;
    font-size: 15.58px;
}

.site-footer .widget_block strong a {
    color: white;
    text-decoration: none;
}

.widget:not(:first-child),
.berocket_single_filter_widget:not(:first-child) {
    margin-top: 3vh !important;
}

.widget_block.widget_media_image img {
    margin: 1em 0;
}

.widgets .widget_block .widget-title {
    margin-bottom: 20px;
    color: white;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 15px;
    letter-spacing: calc(.02em * (-1));
    line-height: 1.4;
    font-weight: 600;
}

.site-footer .widgets .widget_block p {
    color: white;
    font-family: 'Helvetica';
    font-size: 16px;
    line-height: 1.5;
}

.widgets .widget_block a {
    color: white;
    text-decoration: none;
}


footer h3 {
    background-color: transparent !important;
}

.site-footer .widgets .widgets-column2 {
    padding: 0 15px;
    width: 100%;
    max-width: 324px;
}

.site-footer .widgets .widgets-column3 {
    padding: 0 15px;
    width: 100%;
    max-width: 294px;
}

.site-footer .scroll .scrollbar {
    padding: 16px 0;
    width: 100%;
    display: inline-block;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}

.site-footer .scroll .scrollbar i {
    font-size: 16px;
}

.holder.-center {
    margin-inline: auto;
    text-align: center;
}

.newsletter h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* flex-wrap: wrap; */
}

.newsletter-form input {
    padding: 8px;
    width: 214px;
    border: none;
    border-radius: 10px;
    background: #232126;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Helvetica';

}

.newsletter-form input::placeholder {
    color: #bdbdbd;
}

.newsletter-form button {
    padding: 10px;
    border: none;
    border-radius: 12px;
    background: #1c1c24;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: "DM Sans", sans-serif;
    white-space: nowrap;
}

.newsletter {
    padding: 0 15px;
    width: 100%;
}

.footer-content {
    padding: 3vh 0;
    text-align: center;
    border-top: 1px solid #28282a;
}

.footer-content .holder a {
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Helvetica';
}


/* News latter gform */

.newsletterform_wrapper input#input_1_1 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #232126;
    border: 0;
    height: 44px;
    font-size: 0.98rem !important;
}
.newsletterform_wrapper input#gform_submit_button_1 {
    background: #232126;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

.newsletterform_wrapper .gform_title {
    color: #fff;
    font-family: helvetica
}

.newsletterform_wrapper  .gform-footer.gform_footer.top_label {
    padding: 0;
    margin: 0;
}

.newsletterform_wrapper .gform-footer.gform_footer.top_label input {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
    height: 44px !important;
    min-height: 1px !important;
    padding: 10px 15px  !important;
    line-height: 1 !important;
    cursor: pointer;
    font-size: 14px !important;
}

.ctc-wrap .holder {
    max-width: fit-content;
    width: 100%;
    text-align: right;
}

.ctc-wrap .holder.two-btn {
    text-align: center;
}

/* Related products css */

.products-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
}

.card-details {
    text-align: left
}

.product-item-thumbnail {
    text-align: left
}

.product-item .card-details a {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Helvetica';
    padding: 0;
    display: inline-block;
    line-height: 1;
    background: transparent;
    min-height: 1px;
    color: var(--primaryClr);
}

.product-item .card-details a:hover {
    color: #000;
}

.product-item .button-group {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

.product-item:hover .button-group {
    opacity: 1;
    visibility: visible
}

.products-grid .main-image,
.products-grid .hover-image {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 308px !important;
    transition: opacity .3s ease-in-out
}

.card-details .product-title {
    font-size: 16px;
}

.product-category {
    font-size: 14px;
}

.related-products-section {
    margin: 0 0 30px;
}

/* Inner page css start */


/* Cidan Page css */
.cstm-breadcrumbs {
    font-size: 14px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.cstm-breadcrumbs a {
    text-decoration: none;
    color: #000;
}

.cstm-breadcrumbs span {
    margin: 0 3px;
}

.cstm-breadcrumbs .current {
    font-weight: 400;
}

.heading-banner {
    padding: 64px 0;
}


body.archive .cstm-breadcrumbs {
    margin-bottom: 0;
}

.main-title {
    font-size: 56px;
    font-weight: 500;
    margin: 0;
}

.heading-banner-subtitle {
    font-size: 32px;
    margin-top: 20px;
    color: #8a8a8a;
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: 1;
}

.bnr-btn {
    border-radius: 7px;
    border-color: #fab429;
    padding: 20px 50px;
    font-size: 19px;
    color: #000;
    background-color: #fab429;
    display: inline-block;
    width: fit-content;
    margin: 20px 0;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fab429;
}

.bnr-btn:hover {
    background-color: #fff;
    border: 2px solid #fab429;
}

p.posted_in {
    margin: 0 0 30px;
    font-size: 14px;
}

p.posted_in a {
    color: #000;
    text-decoration: none;
}

p.posted_in span {
    font-weight: 600;
}

.global-content-image {
    flex: 1;
}

.global-content-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.global-content-text {
    flex: 1;
}

.global-content-image-section {
    padding: 100px 0;
    background-color: #9690A20F;
}

.global-content-text p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.global-content-image img {
    width: 100%;
    height: auto;
    display: block;
}


.supplier-grid {
    display: flex;
    column-gap: 50px;
    row-gap: 50px;
    flex-wrap: wrap
}

.supplier-grid>div {
    max-width: calc(100%/3 - 100px/3);
    flex: 0 0 calc(100%/3 - 100px/3);
    padding: 0
}

.supplier-item img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 30px;
}

.yellowanch {
    color: #f0b74b;
    opacity: 0;
}

.supplier-item:hover .yellowanch {
    opacity: 1 !important;
    transform: translate(0, -85%);
    text-align: left;
    width: 100%;
    float: left;
    top: 35px;
    position: relative;
    transition: all .35s cubic-bezier(.645, .045, .355, 1);
    text-decoration: none;
}

.yellowanch:hover {
    text-decoration: none;
    animation: unset !important;
    background-image: none !important;
    color: #000;
}

.supplier-item h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
    background: #fff;
    text-align: left;
    padding-top: 10px;
    font-weight: 600;
}

.products-section {
    padding: 100px 0;
}

.content-only-section {
    background-color: #9690A20F;
    padding: 100px 0;
}

h2.title {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.05em;
}

.title a {
    color: inherit !important;
}

.content-only-wrap {
    display: flex;
    gap: 50px;
}

.content-only-wrap>div {
    flex: 1;
}

.features-section {
    background-color: #9690A20F;
    padding: 100px 0;
}

.features-section-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.custom-heading-container {
    width: 100%;
    max-width: 30%;
}

.custom-inner-column {
    width: 100%;
    max-width: 70%;
}

.custom-inner-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    gap: 50px 0;
}

.custom-inner-column ul li {
    width: 48%;
    padding: 17px 50px 0;
    border-left: 1px solid rgba(99, 93, 111, .65);
    position: relative;
    box-sizing: border-box;
}

.custom-inner-column ul li p {
    margin: 15px 0;
}

.custom-inner-column .subtitle {
    font-size: 1rem;
    margin-bottom: .5rem;
    letter-spacing: -.01em;
    padding-bottom: 10px;
}

.custom-inner-column h2 {
    font-size: 32px;
    line-height: 1;
}

.video-slider .video-slide iframe {
    width: 100%;
    border: 0;
    height: 100%;
    object-fit: cover;
}

.video-slider {
    margin: 0 -5px;
}

.video-item {
    height: auto;
    margin: 0 5px;
}

.video-item video {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.video-slider .slick-dots {
    display: flex;
    align-items: center;
    list-style: disc;
    justify-content: center;
    gap: 10px;
}

.video-slider button.slick-arrow {
    display: none !important;
}

.video-slider .slick-dots li {
    list-style: none;
}

.video-slider .slick-dots li button {
    border: 0;
    outline: none;
    box-shadow: none;
    background-color: #000;
    width: 5px;
    height: 5px;
    border-radius: 12px;
    font-size: 0;
    cursor: pointer;
}

/* Cidan Page css End */


/* Product detail page css */
.optional-features-section {
    padding-bottom: 100px;
}
.optional-features-section > .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.optional-features-section .optional-feature-block {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease-in-out;
}

.optional-features-section .optional-feature-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    border: none;
    box-shadow: none;
}

.optional-feature-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.optional-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Helvetica';
    padding-top: 10px;
    letter-spacing: -.2px;
}

.optional-feature-content p {
    color: #555;
}
.product-content-wrapper {
    display: flex;
    gap: 50px;
}

.product-content-wrapper>div {
    flex: 1;
}

.product-content-wrapper .content-area .main-title {
    margin-top: 15px;
}

.tag {
    padding: 5px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: #ebebeb;
    font-size: 13px;
    font-weight: 400;
    color: #433d3d;
    margin-right: 10px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1.2;
}

.product-content-wrapper .content-inner p {
    margin-top: 15px;
    line-height: 1.6;
}

.content-inner ul {
    margin: 16px 0 0 20px;
    padding-left: 32px;
}

.content-inner ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-inner ul li:last-child {
    margin-bottom: 0;
}

.content-inner h3 {
    font-size: 26px;
    line-height: 1;
    margin-top: 30px;
}

.safety-and-ease {
    margin: 100px 0 0;
}

.safety-content-wrap {
    display: flex;
    gap: 50px;
}

.safety-content-wrap .safety-box {
    padding: 20px;
    flex: 1;
}

.safety-content-wrap .safety-box:hover {
    background-color: #f7f7f7;
}

.safety-and-ease h2 {
    margin: 0 0 50px;
}

.safety-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 8px 0;
}

.safety-box ul {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.6;
    list-style: none;
}

.safety-box ul li:before {
    font-family: "FontAwesome";
    content: "\f00c";
    color: #f1ba51;
    padding: 10px;
}

.safety-box ul li {
    margin-bottom: 15px;
}

.specification-section {
    display: inline-block;
    width: 100%;
    margin: 50px 0 100px;
}

.specification-content h2 {
    margin: 25px 0 15px;
    position: relative;
    padding-bottom: 10px;
    width: fit-content;
}

.specification-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #ddd;
}

.product-specifications {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid grey;
}

.product-specifications {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid grey;
}
.scrollable-table-container {
    width: 100%;
    overflow-x: auto;
}

table.product-specifications th,
table.product-specifications td {
    background: #d2d2d2;
    font-size: 18px;
    padding: 12px;
    border: 1px solid grey;
    text-align: left;
    font-weight: 600;
    line-height: 1.6;
}

table.product-specifications td {
    background-color: #fff;
}

table.product-specifications td:not(:first-child) {
    font-weight: 400;
}

.pagination-cstm {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.pagination-cstm span, .pagination-cstm a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color .3s,color .3s;
    cursor:pointer;
}

.pagination-cstm a:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.pagination-cstm .current {
    background-color: #000;
    color: #fff;
    border-color: #000
}

/* Tabs section css */
/* Section */
.trf-tabs-section {
    margin: 50px 0 100px;
}

.trf-tabs-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.trf-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    border-bottom: 0;
}

.trf-tab-link {
    cursor: pointer;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    position: relative;
}

/* hover */

.trf-tab-link:hover {
    color: #000;
}

/* active tab underline */

.trf-tab-link.active {
    font-weight: 600;
}

.trf-tab-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #cfcfcf;
}

.trf-tab-content {
    display: none;
    padding-top: 35px;
    padding: 30px 20px;
    background-color: #f7f7f7;
}

.trf-tab-content.active {
    display: block;
}

.trf-content-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.trf-content-text {
    flex: 1.2;
}

.trf-content-video {
    flex: 1;
}

.trf-tab-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trf-list {
    padding-left: 20px;
}

.trf-list li {
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 16px;
}

.trf-list strong {
    font-weight: 700;
}

.trf-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.trf-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trf-tab-content:nth-child(2) .trf-content-grid .trf-content-text h2 {
    font-size: 22px;
    margin: 0 0 10px !important;
}

.trf-content-grid .trf-content-text h2 {
    margin-bottom: 50px !important;
}

.trf-tabs-section h2 {
    margin: 0 0 40px;
}

.three-column-wrap {
    display: flex;
    gap: 20px 30px;
}

.three-column-wrap>.content-col {
    flex: 1;
}

.content-col h4 {
    font-size: 27px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    padding: 0 0 20px;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: #b4b4b4;
}

.content-col h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 20px 0;
    color: var(--darkClr);
}

.content-col p {
    line-height: 1.6;
}

.three-column-wrap>.content-col:first-child h3 {
    font-size: 40px;
    letter-spacing: -0.8px;
}

.category-holder {
    font-size: 0.9rem;
    line-height: 1.35;
}

.content-section-main {
    margin: 0 0 100px;
}

.content-section-inner ul {
    padding-left: 32px;
    margin: 20px 0;
    list-style: disc;
}

.content-section-inner ul li {
    margin: 0 0 15px;
    color: #333;
}

.content-section-inner>p {
    color: #333;
}

.content-section-inner h2 {
    margin-top: 35px;
}

.card-details .holder {
    text-align: left;
}

.product-main-wrap {
    margin: 80px 0 50px;
}

.product-item .card-details .title {
    color: var(--darkClr);
    text-decoration: none;
    letter-spacing: -.02rem;
    font-size: 1.045rem;
}

.card-details .woo-category a {
    font-size: 0.9rem;
    color: var(--darkClr);
    text-decoration: none;
    font-weight: 400;
}

.product-item .card-details a.button {
    min-height: unset !important;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    color: var(--darkClr) !important;
}

.product-item .card-details a.button:hover {
    color: var(--primaryClr) !important;
}

.product-item-thumbnail img {
    border-radius: 0 0 12px 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.pagination .page-number {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color .3s, color .3s
}

.pagination .page-number:hover {
    background-color: #f0f0f0
}

.pagination .page-number.active {
    background-color: #000;
    color: #fff;
    border-color: #000
}

.specification-content h2.without-border::after {
    display: none;
}

.content-section-new {
    margin-top: -50px;
}

.content-section-new .content-section-inner h2+p {
    margin-top: 40px;
}

.column-count-section {
    margin: 50px 0 0px;
}

.column-count-wrap {
    display: flex;
}

.column-count-wrap .column-box-item {
    flex: 1;
    padding: 50px 50px 0;
}

.column-box-item h4 {
    font-size: 16px;
    color: #16151991;
    padding-bottom: 10px;
    line-height: 1;
    font-weight: 600;
}

.column-box-item h2 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
    letter-spacing: 0px;
    line-height: 1;
    margin: 10px 0 0 !important;
}

.column-box-item p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.column-count-section h2 {
    margin-bottom: 50px;
}

/* Product detail page css end */

/* parent category start */

.parentclassflex {
    display: flex;
    flex-direction: row;

}

 .parentclassflex > div {
    flex: 1;
}

.leftparentdiv img {
    width: 100%;
    max-width: 630px;
}

.rightparentdiv {
    padding-left: 50px;
}

.rightparentflex {
    display: flex;
    flex-direction: column;
}

.rightparentflex .firstpara {
    font-family: 'Helvetica';
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
}

.firstpara span {
    color: var(--primaryClr);
}

.rightparentflex .secondpara {
    font-family: 'Helvetica';
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
}

.rightparentflex ul {
    padding: 0px 0px 0px 32px;
    margin: 15px 0px 20.25px 0px;
}

.rightparentflex ul li {
    font-family: 'Helvetica';
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    padding-bottom: 10px;
    margin: 4px 0px;
    -webkit-font-smoothing: antialiased;
}

/* second section*/

.secondsection {
    padding: 50px 0px;
    margin-top: 50px;
}

.firstparent {
    padding: 0px 20px;
    background: #f9f8f9;
    border-radius: 10px;
    margin-right: 20px;
}

.secondparent {
    padding: 0px 20px;
    background: #f9f8f9;
    border-radius: 10px;
    margin-left: 20px;
}

.secondparentflex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.firstparentflex {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;


}


.leftimg {
    padding: 40px;
}

.secondsectionheading {
    padding: 40px;
    width: 100%;
    max-width: 179px;

}

.leftimg img {
    width: 260px;
}

.firstparentflex h2 {
    font-size: 32px;
    padding-bottom: 10px;
    line-height: 1 !important;
    letter-spacing: 0%;
    margin-bottom: 10px;
}

/* parent category end */


/* COntact page css */
.office-information {
    background-color: #9690A20F;
    padding: 80px 0;
}

.totalrollforming-heading2 {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 64px 0;
}

.totalrollforming-heading2 h1 {
    text-transform: capitalize;
    font-style: normal;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
}

.totalrollforming-heading2 p {
    margin-top: 15px;
}

.content-for-office-information:first-child .row1-office-address {
    margin-bottom: 10vh;
}

.breadcrum-nav2 {
    padding: 20px;
}

.breadcrum-section {
    width: 100%;
    max-width: 950px;
}

.breadcrum-nav2 .active {
    text-decoration: none;
    color: #000;
    font-family: 'Helvetica';
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.breadcrum-nav2 a {
    text-decoration: none;
    color: #000;
    font-family: 'Helvetica';
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.row1-office-address {
    display: flex;
}

.box1-address {
    width: 100%;
    padding: 0px 15px;
    max-width: 25%;
}

.progress-bar {
    width: 100%;
    padding: 0 15px;
}

.box1-address h4 {
    font-family: 'Helvetica';
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 10px;
}

.box1-address h5 {
    font-family: 'Helvetica';
    font-size: 20px;
    font-weight: 600;
}

.address a {
    color: var(--primaryClr);
}

.heading-banner.contact h1 {
    margin-bottom: 15px;
    font-family: 'DM Sans';
    font-weight: 900;
    font-size: 4.5rem;
    text-transform: capitalize;
    letter-spacing: 0;
}

.heading-banner.contact p {
    color: #161518;
    font-size: 1.07rem;
    font-family: 'Helvetica';
    font-weight: 500;
}

.progress-bar h2 {
    margin-bottom: 20px;
}
.heading-banner.contact {
    padding-bottom: 0;
}

body .get-customer-form .gf_progressbar_wrapper {
    display: flex;
    flex-flow: column-reverse;
    margin: 0 0 30px;
}

body .get-customer-form .gf_progressbar_wrapper .gf_progressbar_title {
    margin: 20px 0 0;
    font-size: 18px;
    color: #383a3f;
    font-family: "Helvetica", sans-serif;
    font-weight: 300;
}

body .get-customer-form .gf_progressbar_wrapper .gf_progressbar.gf_progressbar_blue .gf_progressbar_percentage {
    background-color: #f59e0b;
}

body .get-customer-form .gform-body .gform_fields {
    grid-gap: 20px;
}

body .get-customer-form .gform-body .gfield p {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    color: #383a3f;
}

body .get-customer-form .gform-body .gfield p strong {
    font-weight: 400;
}

body .get-customer-form .gform-body .gfield .gform-field-label {
    font-size: 18px;
    color: #111013;
}

body .get-customer-form .gform-body .gfield input,
.get-customer-form .gform-body .gfield select {
    height: 54px;
    border: 1px solid #5b6066;
    border-radius: 7px;
    box-shadow: none;
    outline: none;
    font-size: 18px !important;
    line-height: 53px;
    background-color: #fff;
    color: var(--darkClr);
    line-height: 1 !important;
}

body .get-customer-form .gform-body .gfield h2,
.get-customer-form .gform-body .gfield h3,
.get-customer-form .gform-body .gfield h4 {
    margin: 0 0 20px;
}

body .get-customer-form .gform_page_footer {
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
    flex-flow: column;
}

body .get-customer-form .gform-body .singleBtn:hover {
    background: #fab429 !important;
    color: #000 !important;
}

body .get-customer-form .gform-body .gfield.gfield--input-type-html p {
    margin: 0 !important;
    font-size: 16px !important;
}

body .get-customer-form .gform_page_footer input[type=button].gform_previous_button {
    display: none !important;
}
body .get-customer-form .gform_page_footer input {
    line-height: 1 !important;
}
body .get-customer-form .gform-body a {
    color: #f0b74c !important;
}

body .get-customer-form .gform-body .gfield input+label.gform-field-label,
.get-customer-form .gform-body .gfield select+.gform-field-label {
    display: none;
}

body .gform_confirmation_message br {
    display: none !important;
}

body .gform_confirmation_message .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-radius: 14px;
    padding: 0;
    box-shadow: none;
    width: 100%;
}

body .gform_confirmation_message .bar {
    height: 10px;
    background-color: #f0b74c;
    border-radius: 10px;
    margin: 0 0 40px;
}

body .gform_confirmation_message .check-icon {
    font-size: 42px;
    background-color: #f0b74c;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
    animation: pop 2s ease-out;
}

body span[data-js-spinner-id=gform-ajax-spinner] {
    position: absolute !important;
}

@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0
    }

    75% {
        transform: scale(1.2);
        opacity: 1
    }

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

body .gform_confirmation_message .heading {
    font-size: 50px;
    font-weight: 700;
    margin: 30px 0 20px;
}

body .gform_confirmation_message .thank-you-message {
    font-size: 28px;
    margin: 15px 0 30px;
    line-height: 1.5;
}

body .gform_confirmation_message .cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

body .gform_confirmation_message .cta-buttons a {
    padding: 14px 20px;
    line-height: 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
}

body .gform_confirmation_message .cta-buttons a:first-child,
body .gform_confirmation_message .cta-buttons a.singleBtn {
    background-color: #fab429 !important;
    color: #fff !important;
}

body .gform_confirmation_message .cta-buttons a:first-child img {
    filter: invert(1);
}

body .gform_confirmation_message .cta-buttons a:last-child {
    border: 2px solid #fab429;
    color: #fab429;
    white-space: nowrap;
    background-color: transparent;
}

body .gform_confirmation_message .cta-buttons a:last-child img {
    filter: unset;
}

body .gform_confirmation_message .logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

body .gform_confirmation_message .logos img {
    max-width: 85px;
    flex: 1;
    object-fit: contain;
}

body .gform_confirmation_message .close-button {
    margin-top: 20px;
    text-align: right;
    float: none;
}

body .gform_confirmation_message .close-button button {
    background: 0 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    outline: none !important;
    color: #444 !important;
    font-size: 20px !important;
    position: static !important;
}

body .get-customer-form .gform-body .gfield textarea {
    min-block-size: auto;
    font-size: 18px;
    height: 55px;
}

body .get-customer-form .gform-body .gfield.gfield--input-type-fileupload .gform-field-label {
    justify-content: space-between;
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
}

body .get-customer-form .gform-body .gfield.gfield--input-type-fileupload .gform-field-label:before {
    content: '\f0c9';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 21px;
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 1;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
    padding: 0 !important;
    border: 0 !important;
}

body .gform_wrapper.gravity-theme .gform_previous_button.button {
    border: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    left: 20px;
    font-size: 16px;
}

.gform_wrapper.gravity-theme div,
.gform_wrapper.gravity-theme input {
    font-family: 'Helvetica';
}

.gform_wrapper.gravity-theme .gfield input.large[type="file"] {
    border: 0;
}

body .get-customer-form .gform-body .gfield textarea {
    height: 150px !important;
    box-shadow: none;
    background-color: #eeedef;
    border-radius: 10px;
    border: 0;
    outline: none;
}

/* Contact us page css end */

/* Insights page css */

.insight-grid .image-container {
    position: relative;
    padding-bottom: 100%;
    border-top-left-radius: 12px;
    overflow: hidden;
    border-top-right-radius: 12px;
}

.insight-grid .image-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
}

.insight-grid>div {
    width: 100%;
    max-width: 33.333%;
}



.headline-date {
    display: flex;
    margin-bottom: 4px;
}

.date,
.estimate-read-time {
    font-weight: 500;
    font-size: 14.4px;
    font-family: "Helvetica", Sans-serif;
    color: rgba(87, 86, 88, 1)
}

.estimate-read-time:before {
    margin-left: 4px;
    margin-right: 4px;
    content: "•";
    display: inline-block;
    vertical-align: middle;
    font-size: .8em;
    margin-top: -2px;
    color: var(--primaryClr);
}

.heading-title a {
    font-size: 18px;
    color: var(--darkClr);
    text-decoration: none;
}

.insight p {
    margin-top: 8px;
    margin-bottom: 16.400px;
    line-height: 27px;
}

a.button-text {
    font-size: 0.95rem;
    margin: 16px 0 0;
    font-weight: 600;
    color: var(--darkClr);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

a.button-text:hover i {
    animation: iconMove ease-out .35s;
}

.insight-box-content {
    padding: 20px 18px;
    background-color: rgba(87, 86, 88, .08);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: -1px;
}

a.button-text i {
    font-size: 16px;
}

.insight-box-content .heading-title a {
    font-size: 1.245rem;
    font-weight: 600;
    line-height: 1;
}

.insight-box-content p {
    margin-top: 8px;
}

section.insight {
    padding: 60px 0px;
}

.insight-box-1 {
    padding: 15px;
}

.insight-listing {
    padding: 80px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.pagination .page-numbers {
    width: auto;
    text-align: center;
    background-color: var(--darkClr);
    color: white;
    font-weight: 600;
    display: flex;
    height: 44px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 5px 18px;
    cursor: pointer;
}

.pagination .page-numbers:hover {
    background-color: white;
    color: black;
    transition: 0.3s ease;
}

/* Insights page css end */


/* About page css start */
.right-part-box-content p {
    margin: 0;
}

h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
    background: #fff;
    text-align: left;
    padding-top: 10px;
    font-family: "Helvetica", Sans-serif;
    font-weight: 600;
}

h5 {
    font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    color: #111013;
    font-family: "Helvetica", Sans-serif;
    font-weight: 600;
}

h6 {
    font-family: "Helvetica", Sans-serif;
    color: #111013;
    font-size: 16.4px;
    font-weight: 600;
}

nav.breadcrum-nav {
    padding: 50px 0 0;
}

.breadcrum-nav a {
    text-decoration: none;
    color: #000;
    font-family: "Helvetica", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.elements-bar {
    z-index: 3;
    right: 2.25vh;
    transform-origin: right top;
    transform: rotate(-90deg) translate(50%, -100%);
}

.social-follow {
    position: fixed;
    z-index: 3;
    right: 3vh;
    top: 50%;
    transform-origin: right top;
    transform: rotate(-90deg) translate(50%, -100%);
    font-family: "Helvetica", Sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    padding-bottom: 20px;
}

.social-follow span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
}

.social-follow a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.totalrollforming-heading h6 {
    font-family: "Helvetica", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #8a8a8a;
}

.totalrollforming-heading h1 {
    padding: 0 0 15px;
}

.totalrollforming-heading {
    margin-top: 50px;
    padding: 0 0 50px;
}

.trusted-suppliers {
    padding: 100px 0 0;
    background-color: #9690A20F;
}

.page-template-page-about-us p {
    color: #161518;
}

.trusted-supplier-left-part {
    width: 100%;
    max-width: 650px;
    padding-right: 15px;
    padding-left: 15px;
}

.trusted-supplier-left-part p {
    font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.trusted-supplier-content {
    display: flex;
}

.trusted-supplier-right-part-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 210px;
    border-top: 1px solid #8e8e8e;
    align-items: flex-start;
    margin: 20px 0 0;
    padding: 20px 0 0;
}

.right-part-box-content {
    margin-bottom: 16px;
}

.sub-para-right-part-content p {
    font-weight: 400;
    width: 100%;
    max-width: 180px;
    line-height: 25px;
}

.trusted-supplier-right-part h6 {
    padding: 0 15px;
}

.parent-div-for-right-side {
    padding: 0 15px;
    width: 100%;
    max-width: 33.333%;
}

.trusted-supplier-content-right-side {
    display: flex;
    flex-wrap: wrap;

}

.supplier-item a+a {
    opacity: 0;
    color: #f0b74b;
}

.supplier-item:hover a+a {
    opacity: 1 !important;
    transform: translate(0, -100%);
    color: #f0b74b;
    text-align: left;
    width: 100%;
    float: left;
    top: 25px;
    position: relative;
    transition: all cubic-bezier(.645, .045, .355, 1) 0.3s;
}

section.trusted-supplier-iamges {
    margin: 0px 49.3229px;
    padding: 135px 0;
}

.supplier-item a {
    text-decoration: none;
}

.supplier-item {
    width: 100%;
    max-width: calc(100%/3 - 24px);
}

.supplier-grid {
    display: flex;
    column-gap: 35px;
    row-gap: 50px;
    flex-wrap: wrap;
}

section.machinery-section {
    background-color: #9690A20F;
    padding: 100px 0px;
}

.subtitle {
    font-family: "Helvetica", Sans-serif;
    font-size: .9em;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.left-side-machinery-content {
    width: 100%;
    max-width: 360px;
    padding-right: 15px;
}

.left-side-machinery-content h2 {
    padding-top: 5px;
}

.machinery-content {
    display: flex;
}

.right-side-machinery-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    max-width: 860px;
    margin-left: 50px;
}

.right-side-machinery-content .sub-para-machinery-content {
    width: 100%;
}

.sub-para-machinery-content p {
    line-height: 27px;
    margin-bottom: 16px;
}

.sub-para-machinery-content {
    padding-bottom: 20px;
}

.inner-column-content {
    border-left: 1px solid #635D6FA6;
    padding: 0 50px;
}

.inner-column {
    width: 50%;
}

.inner-column-content h2 {
    padding-top: 5px;
}

.inner-column-content p {
    line-height: 27px;
    margin-top: 16px;
}

.right-side-machinery-content-row1 {
    display: flex;
}

.right-side-machinery-content-row2 {
    display: flex;
    padding-top: 50px;
}

.content .right-side-content-for-about-us {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.caption {
    padding: 100px 200px;
}

.caption-content {
    display: flex;
    gap: .65rem;
    flex-direction: column;
}

.caption-content p {
    line-height: 27px;
}
.left-side-content-for-about-us {
    max-width: 350px;
    width: 100%;
}

.about-us-section {
    background-color: #9690A20F;
    padding: 100px 0px;
}

.about-us-section + .about-us-section {
    background-color: transparent;
}

.content {
    display: flex;
}

.widget1 p {
    margin-top: 16px;
    line-height: 27px;
}

.about-us-section .widget-primary-container {
    padding: 20px;
    width: 50%;
}

.row1-for-content-widgets {
    display: flex;
}

.row2-for-content-widgets {
    display: flex;
    padding-top: 50px;
}

.widget-primary-container {
    padding: 20px;
}

.team-members-heading {
    padding-bottom: 50px;
}
.parent-for-member-boxes .team-member-box {
    width: 100%;
}

.parent-for-member-boxes .member-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
}

.content-for-member {
    padding-top: 20px;
    max-width: 358px;
    width: 100%;
}

.parent-for-member-boxes {
    gap: 30px;
    display: flex;
    justify-content: center;
}


.service {
    padding: 100px 0px;
}

.content-services {
    display: flex;
}

.sub-para-machinery-content2 {
    line-height: 27px;
    max-width: 602px;
    width: 100%;
}

.left-side-machinery-content2 {
    width: 100%;
    max-width: 602px;
    padding: 0px 15px;
}

.right-side-machinery-content2 {
    padding: 0px 15px;
}

/* About page css end */


/* BLog detail page css */
.blog-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.blog-layout {
    display: flex;
    gap: 40px;
    position: relative;
}

.share-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-bar a {
    background: transparent;
    padding: 8px;
    text-align: center;
    width: 35px;
    border-radius: 4px;
    text-decoration: none;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.sidebar {
    width: 25%;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.content-area {
    width: 75%;
}

.post-top {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.post-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #888;
}

.post-content {
    line-height: 1.8;
    font-size: 16px;
}

.post-content iframe {
    width: 100%;
    height: 450px;
    margin: 30px 0;
}

.widget {
    margin-bottom: 35px;
}

.widget h4 {
    margin-bottom: 10px;
}

.linkedin-btn {
    display: inline-block;
    background: #0A66C2;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.bite-tip {
    margin-top: 40px;
    padding: 20px;
    background: #f7f7f7;
    border-left: 4px solid #000;
}

.related-posts {
    margin-top: 70px;
}

.related-grid {
    display: flex;
    gap: 30px;
}

.related-card {
    width: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.related-card img {
    width: 100%;
}

.related-content {
    padding: 20px;
}

.read-more {
    font-weight: 600;
    text-decoration: none;
}

/* Blog page css end */

.container+div#primary {
    display: none;
}

#content {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.social-networks i {
    font-size: 1rem;
}


div#primary {
    display: none;
}

.service-grid+div[data-elfsight-app-lazy] {
    padding-bottom: 50px;
}

/* 404 page css */
#content .error404 .entry-title {
    text-align: center;
    font-size: 7vw;
    text-transform: capitalize;
}

@media (min-width:1200px) {
    #content .error404 .entry-title {
        font-size: 3.5rem;
    }
}

@media (min-width:1440px) {
    #content .error404 .entry-title {
        font-size: 5rem;
    }
}

#secondary {
    clear: right;
    display: none;
}

#content .error404 {
    padding: 100px 0px;
    text-align: center;
}

.error404 form#searchform {
    display: none;
}

/* 404 page css End */

/* Blog Detail page css */
.single .page-headline .holder {
    max-width: 100%;
    text-align: left;
}

.single .page-headline {
    padding: 64px 0 30px;
}

#content .single-post-layout .title {
    font-family: 'DM Sans';
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0;
}

.single .headline-meta {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.single .headline-meta .category-holder {
    font-size: inherit;
    margin-right: 4px;
}

.single .headline-meta .post-meta-estimate::before {
    margin-left: 4px;
    margin-right: 4px;
    content: "•";
    display: inline-block;
    vertical-align: middle;
    font-size: .8em;
    margin-top: -2px;
    color: #f0b74c;
}

.single ul.meta-holder .meta-item:nth-child(3) {
    display: none;
}

.single .page-headline {
    padding: 64px 0 30px;
}

.post-share {
    position: sticky !important;
    z-index: 2;
    top: 110px;
}

.post-share .share-bar {
    background: color-mix(in srgb, #111013 6%, #fff);
    padding: 3px;
    border-radius: 12px;
    position: absolute;
    left: -1.25rem;
    transform: translateX(-100%);
    gap: 0;
}

.share-bar a i {
    font-size: 14px;
}

.single-post-layout {
    position: relative;
}

.single .container {
    max-width: 1344px;
    padding-inline: 1rem;
}

.breadcrumb-holder {
    color: #161518;
    font-size: .95rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.breadcrumb-holder a {
    font-size: inherit;
    font-weight: 600;
    color: #161518;
}

.share-bar a:hover i {
    transform: scale(1.05);
}

.share-bar a i {
    transition: all 0.3s cubic-bezier(.645, .045, .355, 1);
}

#content .widgets h3 {
    font-size: 1.02rem;
    line-height: 1;
    padding: 0;
}

.single #content ul {
    margin: 0;
}

.page-content.-with-left-sidebar {
    width: 100%;
    padding-left: 30px;
    max-width: 75%;
}

.post-share+.page-container {
    display: flex;
    flex-wrap: wrap;
}

.page-sidebar {
    position: relative;
    z-index: 1;
    width: 25%;
    margin-bottom: 50px;
    padding-right: 8px;
}

.searchform input {
    padding: 0 6rem 0 1rem;
    width: 100%;
    background-color: color(srgb 0.533333 0.531373 0.537255 / 0.1);
    box-shadow: none;
    border: 0;
    height: 44px;
    border-radius: 12px;
    outline: none;
}

.page-content .content-area {
    width: 100%;
}

.page-content .content-area .entry-content {
    padding: 0;
    margin: 0;
}

.searchform input[type="submit"] {
    padding: 0 1.25rem;
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    height: 100%;
    border: 0;
    background-color: transparent;
    outline: none;
    font-size: 0.95rem !important;
    font-weight: 700;
    font-family: 'DM Sans';
    letter-spacing: 0;
    cursor: pointer;
}

.searchform>div {
    position: relative;
}

.page-sidebar .widgets .widget {
    margin: 0;
}

.page-sidebar .widgets .widget ul {
    list-style: none;
}

.page-sidebar .widgets .widget ul li a {
    color: #161518;
    font-size: 0.99rem;
    line-height: 1;
}

.page-sidebar .widgets .widget p {
    margin: 6.6px !important;
    color: #161518;
    font-size: 0.99rem;
    line-height: 1.4;
    padding-bottom: 10px;
}

.page-sidebar .widgets .widget p a {
    color: inherit;
}

.page-sidebar .widgets .widget ul li {
    margin: 6.6px 0;
    padding-bottom: 10px;
}

.single .entry-content h2 {
    margin-top: 3rem !important;
    line-height: 1 !important;
    letter-spacing: -.05em;
    font-size: 48.96px;
    color: #161518 !important;
}

.single .entry-content p {
    font-size: 1.025rem;
    color: #161518;
}

body:not(.home) .insights .insights-grid {
    margin-top: 0;
}

.insights .insights-grid .blog-item .heading a,
.insights .insights-grid .blog-item .heading-title a {
    border-radius: 0;
}

.page-content .content-area .entry-content img {
    display: block;
    margin-inline: auto;
}

.page-content .content-area .entry-content .button {
    margin: 30px 0 0;
    display: block !important;
    margin-inline: auto;
    width: fit-content;
    border-radius: 0 !important;
    background-color: var(--primaryClr) !important;
    font-size: .95rem !important;
    height: 55px;
}

.page-content .content-area .entry-content .button:hover {
    background-color: transparent !important;
}

.single .entry-content p a {
    color: var(--primaryClr);
}

.single .entry-content h4:last-child {
    background-color: #fab429;
    font-size: 22.6391px;
    font-weight: 600;
}

.single .entry-content h1,
.single .entry-content h2 .single .entry-content h3,
.single .entry-content h4,
.single .entry-content h5,
.single .entry-content h6 {
    font-family: 'DM Sans';
}

.single .entry-content iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.single .entry-content .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

/* BLog detail page css end */

/* Search page css */
.page-headline .holder {
    max-width: 100%;
    text-align: left;
}

.page-headline .page-container {
    max-width: 1344px;
    padding-inline: 15px;
}

.search .page-container {
    padding-inline: 15px;
    max-width: 1344px;
}

.search .page-container .container {
    padding: 0;
}

.page-sidebar .widgets .widget input {
    width: 100% !important;
}

.page-sidebar .widgets .widget input[type=submit] {
    width: fit-content !important;
}
.breadcrumb-wrap {
    font-size: 0.92rem;
}

.search .page-container .cstm-breadcrumbs {
    margin: 0;
}

.breadcrumb-wrap {
    font-size: 0.92rem;
}

.search .page-container .cstm-breadcrumbs {
    margin: 0;
}
.card-details .-with-tag a {
    font-weight: 500;
    gap: .25rem;
    line-height: 1;
    padding: .35rem .65rem;
    font-size: .9rem;
    border-radius: 12px;
    display: inline-flex;
    vertical-align: middle;
    background: #88888929;
    align-items: center;
    color: var(--darkClr);
}

.search .blog-item .image-holder {
    height: 280px;
}

.search .blog-item .card-details.-left {
    margin-top: 0;
}
main#main {
    width: 100%;
}
.search-box > form {
    height: 54px;
    display: flex;
    align-items: center;
    font-family: 'Helvetica';
}

.search-box > form input[type="text"] {
    height: 100%;
    font-family: inherit;
    font-size: 0.95rem;
}

.search-box > form button {
    height: 100%;
}
.search .page-container h1.title:last-child {
    margin: 0 !important;
}
.page-headline .holder .title {
    font-family: 'DM Sans';
    letter-spacing: 0;
    text-transform: unset;
    line-height: normal;
}

.search .page-headline + .page-container {
    padding-block: 20px;
}
.content-area .page-sidebar {
    width: 25%;
    float: none;
}
.page-content.-with-left-sidebar {
    max-width: 75%;
    margin: 0;
}
.search .page-container .content-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.search-page.archive-holder {
    display: flex;
    flex-wrap: wrap;
}

.search-page.archive-holder > .grid-item {
    width: 100%;
    max-width: calc(33.3333% - 20px);
}
.product-main-wrap + p {
    max-width: 1300px;
    padding: 0 15px;
    margin-inline: auto;
    margin-bottom: 100px;
}
/* Search page css End */
.hentry {
	margin-top: 50px;
}
.hentry .gfield--type-textarea textarea {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: none;
    border: 1px solid;
}


/* Responsive css */

@media (max-width:1579px) {
    .service-grid .service-container .image-box img {
        width: 100%;
        height: 360px;
    }
}

@media (max-width:1279px) {
    .home-banner .image-banner {
        width: 100%;
        max-width: 598px;
    }

    .home-banner .content-banner {
        padding: 100px 50px;
        max-width: 617px;
        width: 100%;
    }

    .home-banner .image-banner img {
        width: 100%;
        height: 100%;
    }

    .home-banner .content-banner .banner-buttons .white {
        margin: 0;
        padding: 12px;
    }

    .service-grid .service-container .image-box img {
        width: 100%;
        max-width: 277px;
        height: 277px;
    }
}

@media (max-width:1199px) {
    .insight-grid>div {
        max-width: 50%;
    }

    .insight-listing {
        padding: 32px 0;
    }

    .single .entry-content h2 {
        font-size: 40px;
    }
}

@media (max-width:1024px) {
    .single .entry-content h2 {
        font-size: 35px;
    }
}

@media (max-width:992px) {

    .trf-content-grid {
        flex-direction: column;
    }

    .trf-tab-content h2 {
        font-size: 28px;
    }

    .single .entry-content h4:last-child {
        font-size: 19.6391px;
    }

    .page-sidebar {
        width: 100%;
        order: 3;
    }

    .page-content.-with-left-sidebar {
        padding: 0;
        max-width: 100%;
    }

    #content .single-post-layout .title {
        font-size: 43px;
    }

    .single .entry-content h2 {
        font-size: 30px;
    }
}

@media (max-width:767px) {

    .insight-grid>div:first-child {
    padding-top: 0;
}

    header .copyright .details-column {
        margin: 20px 0;
    }
    header .copyright .details-column { 
        color: var(--primaryClr) !important;
    }
    .home-banner {
        flex-direction: column;
        padding: 0 20px;
    }

    .home-banner .content-banner .banner-buttons .white {
        margin: 0;
        white-space: normal;
        text-align: center;
    }

    .home-banner .content-banner .banner-buttons {
        display: flex;
        gap: 15px;
        flex-direction: column;
    }

    .logo-section .logo1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .categories .simple-category-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .call-to-action {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .service-section {
        padding: 50px 20px 50px 20px;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px 70px 20px;
    }
    
    .card-details a {
        font-size: 17px;
    }
    .service-grid .service-container .image-box img {
        width: 100%;
        max-width: 100%;
        height: 277px;
    }

    .content .heading-title {
        line-height: 1;
    }

    .service-grid .service-container .image-content p {
        margin-bottom: 35px;
    }

    section.insights {
        margin: 0 20px;
    }
    .service-grid+div[data-elfsight-app-lazy] {
        margin: 0 20px;
        padding-inline: 20px;
    }
    .insights .insights-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .blog-item .image-holder {
        width: 100%;
        height: 305px;
    }

    .insights .heading-btn {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 15px;
    }

    .insights .heading-btn a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .card-details {
        margin-bottom: 20px;
    }


    /* footer */

    .site-footer .widgets .widgets-column {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .site-footer .widgets .widgets-column2 {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .vc_hidden-xs {
        display: none !important;
    }

    .site-footer .widgets .widgets-column3 {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .newsletter-form input {
        padding: 8px;
        width: 262px;
    }

    h1 {
        font-size: 42px;
    }

    .site-footer .widgets {
        flex-direction: column;
        padding-top: 40px;
    }

    .footer-content .holder {
        padding-bottom: 0;
    }

    .footer-content .container {
        padding: 0;
    }

    .trf-tabs-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .trf-tab-link {
        font-size: 16px;
    }

    .trf-tab-content h2 {
        font-size: 24px;
    }

    .insight-grid>div {
        width: 100%;
        max-width: 100%;
    }

    a.button-text {
        display: flex;
        width: fit-content;
        margin-inline: auto;
    }

    /* Mobile menu css */
    .header-wrap.container.active #site-navigation {
        display: block;
        position: absolute;
        top: 0;
        background-color: #ffffff;
        width: 100%;
        z-index: 999;
        height: 100dvh;
    }

    .social-follow {
        display: none;
    }

    .single-post-layout section.insights {
        margin: 0;
    }

    .single-post-layout section.insights .container {
        padding: 0;
    }

    .page-content .content-area .entry-content {
        padding: 0 12px;
    }

    figure.wp-block-media-text__media {
        margin: 20px 0 !important;
    }
    .categories {
        margin: 50px 20px 0px;
    }   
}
.grecaptcha-badge {
    display: none !important;
}
.my-account-content .breadcrumb-wrap {
    display: none;
}