@charset "UTF-8";

:root {

    --primary: #93a078;
    --primary-dark: #6f8543;
    --secondary: #0c0c0c;
    --darkgray: #534f46;
    --green: #4ca23d;
    --white: #fff;
    --text: #121213;
    --black: #000;
    --lightbg: #e7ebe0;
    --grayf4: #f4f4f4;


    --heading-font: "Manrope";
    --sub-heading-font: "Manrope";
    --body-font: "Source Serif 4";

    --font142: max(3.25rem, min(8vw, 8.875rem));
    --font54: max(2.5rem, min(5vw, 3.375rem));
    --font50: max(1.5rem, min(3.8vw, 3.1rem));
    --font22: max(1.375rem, min(2vw, 1.75rem));
    --font18: max(1.125rem, min(1vw, 0.875rem));
    --font16: 1rem;
    --font14: 0.875rem;
    --font11: .6875rem;
}



h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--heading-font);
}

h1 {
    font-size: var(--font142);
}

h2 {
    font-weight: 400;
    font-size: var(--font54);
}

h3 {
    font-size: var(--font50);
}

h4 {
    font-size: var(--font22);
}

h5,
h5 a {
    font-family: var(--sub-heading-font);
}

/* a {
    font-family: var(--heading-font);
} */

body {
    color: var(--text);
    font-size: var(--font18);
    line-height: 1.6;
    font-weight: 300;
    font-family: var(--heading-font);
    overflow-x: hidden;
    letter-spacing: 0.5px;
}

a {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

a:focus,
a:active,
button:focus,
button:active {
    outline: 0;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

button::-moz-focus-inner {
    outline: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}


::selection {
    color: var(--white);
    background: var(--primary-dark);
}

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

img {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.clearfix {
    clear: both;
}

/*.container {*/
/*    padding: 32px 0px 0;*/
/*}*/

.container {
    max-width: calc(100% - 80px);
    margin: 0 auto;
    transition: all .3s ease-in-out;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

header .container {
    padding: 0;
}

.wrapper {
    margin-top: 6rem;
}

/* -------------------------- header css -------------------------------- */
.logo {
    display: grid;
    grid-template-columns: 60px 40px 80px;
    align-items: center;
    grid-column-gap: 6px;
    width: 62px;
}

.logo img {
    width: 100%
}

.logo-icon {
    display: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 999;
    max-width: 100%;
}

.navbar-expand-lg {
    padding: 0;
}

.navbar-nav li {
    margin: 0 18px;
    text-align: center;
    line-height: 1;
}

.navbar-nav li a,
.navbar-nav li .border-btn {
    color: var(--black);
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    position: relative;
    font-family: var(--heading-font);
    letter-spacing: normal;
}

.navbar-nav li .border-btn {
    text-transform: inherit;
}

.home-page .navbar-nav li a {
    color: var(--black);
}

.navbar-nav li a:hover {
    color: #90af54;
}

header nav ul li:last-child {
    margin-right: 0;
}

.stroke-current {
    stroke: currentColor;
}


@keyframes dash {
    to {
        stroke-dashoffset: 0
    }
}

:root {
    --ease-out: cubic-bezier(0.28, 0.44, 0.49, 1);
    --ease-in: cubic-bezier(0.28, 0.44, 0.49, 1);
}

.menu-item__decoration {
    color: #b0bd97;
    overflow: hidden;
}

.menu-item__decoration svg>path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1
}

.menu-item__decoration svg {
    width: 100%;
}

a:focus~.menu-item__decoration svg>path,
li:hover>.menu-item__decoration svg>path {
    stroke-dashoffset: 0;
    transition: all .25s ease-in-out
}

li.has-mouseleave .menu-item__decoration svg>path {
    stroke-dashoffset: -1;
    transition: all .25s ease-in-out
}

.navigation-right {
    display: flex;
    align-items: center;
}

header nav {
    margin-right: 0;
}

.navbar-brand {
    padding: 0;
}

.headerup {
    transform: translateY(-50px);
}

.headerup {
    transform: translateY(0);
    position: fixed;
    z-index: 999;
    transition: all 0.4s ease;
}

header.headerup {
    width: 100%;
    padding: 12px 40px;
}

#stickyheaders {
    -webkit-transition: all .34s ease;
    transition: all .34s ease;
}

/* #stickyheaders:before {
    background-color: #fff;
    transition: all 0.4s ease;
    top: -82px;
    position: fixed;
    content: "";
    width: 100%;
    z-index: 998;
    left: 0;
    height: 82px;
} */


.headerup#stickyheaders:before {
    top: 0;
}

.header {
    position: relative;
    z-index: 999;
}

.logo-icon img {
    width: 36px;
}

.logo {
    display: none;
}

.headerup#stickyheaders .logo {
    display: block;
    width: 162px;
}

.scrolled-logo-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.headerup#stickyheaders .logo-icon {
    display: none;
}

/* -------------------------- header css ends-------------------------------- */
/*.hero-banner {*/
/*    padding: 4rem 0;*/
/*}*/
.home-page-banner .hero-content h1 {
    font-size: max(3.25rem, min(10vw, 8.875rem));
}

.hero-content h1 {
    font-size: max(3.25rem, min(8vw, 8.875rem));
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}

.hero-banner .hero-content h1 {
    margin-bottom: 2rem;
}

.block-buttons-row,
.button-link {
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--text);
}

.button-link {
    gap: 10px;
    /* font-size: 1.225rem; */
    line-height: 1;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    padding: 10px 40px 10px 0;
    transition: .3s var(--ease-out) all;
}

.button-arrow svg {
    width: 18px;
}

.button-default {
    display: inline-block;
    font-size: 1;
    line-height: 1;
    font-weight: 600;
    padding: 30px 4rem;
    background-color: var(--text);
    color: var(--white);
    transition: .3s var(--ease-out) all;
    font-family: var(--heading-font);
    letter-spacing: normal;
}

.button-arrow {
    position: absolute;
    right: 10px;
    transition: all .3s cubic-bezier(.28, .44, .49, 1);
    transition: .3s var(--ease-out) all;
    width: 16px;
    line-height: 0;
}

.button-link:hover .button-arrow {
    right: 0px;
}

.button-link:hover {
    color: var(--primary-dark);
}

.button-default:hover {
    background-color: var(--primary-dark);
}

.button-link-default {
    display: inline-flex;
    font-size: 1rem;
    letter-spacing: normal;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.button-link-default:after {
    background-color: currentColor;
    bottom: 0px;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
}

.button-link-default:hover::after {
    width: 100%;
}

.hmswiper img,
.swiper-slide-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hmswiper img {
    max-width: 100%;
}

.hm-about-panel p {
    font-size: max(1.75rem, min(3.8vw, 3.1rem));
}

.hm-about-panel h2 {
    font-size: max(2.5rem, min(3.8vw, 3.1rem));
}

.hm-about-panel p {
    font-weight: 100;
}

.hm-intro-panel .container {
    margin: 0 0 0 auto;
    max-width: calc(100% - 40px);
}

/*.hm-about-panel {*/
/*    padding: 4rem 0 0rem;*/
/*}*/

/*.hm-about-content {*/
/*    margin-bottom: 5rem;*/
/*}*/

.hm-about-content h2 {
    padding-bottom: 2rem;
    font-weight: 400;
}

.hm-about-content h4 {
    padding-bottom: 1rem;
}

.video-block {
    width: 100%;
    border: 1px solid #eee;
}

.hmswiper {
    padding-bottom: 60px;
}

.swiper-slide-img {
    overflow: hidden;
    margin-top: 2rem;
}

.swiper-slide-img img {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.hmswiper .swiper-slide:hover .swiper-slide-img img,
.portfolio-col:hover .swiper-slide-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.hmswiper .swiper-button-next:after,
.hmswiper .swiper-button-prev:after,
.google-reviews .swiper-button-next:after,
.google-reviews .swiper-button-prev:after {
    font-size: 0;
}


.google-reviews .swiper-button-next:after,
.google-reviews .swiper-button-prev:after {
    color: #4b483f;
    width: 40px;
    bottom: 0;
    top: auto;
}

.google-reviews .swiper-button-next:after,
.google-reviews .swiper-button-prev:after {
    width: auto;
}

.google-reviews .swiper-button-next {
    right: -40px;
}

.google-reviews .swiper-button-prev {
    left: -40px;
}

.google-review-slider .side-navigation {
    top: 99px;
}

.hmswiper .swiper-button-prev,
.google-reviews .swiper-button-prev:after {
    left: 0;
}

.hmswiper .swiper-button-next,
.google-reviews .swiper-button-prev:after {
    right: 0;
}

.mt-5 {
    margin-top: 6rem;
}

.border-btn,
.sm-text {
    font-size: .875rem;
    line-height: 1;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--sub-heading-font);
    position: relative;
    display: inline-block;
}

.copyright-row .border-btn {
    color: var(--white);
    font-weight: 300;
}

.copyright-row .border-btn:hover {
    color: var(--primary-dark);
}

.border-btn:hover:after {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    width: 100%;
}

.sm-text {
    display: block;
    margin-bottom: 5px;
}

.portfolio-col {
    width: 100%;
}

.portfolio-col:hover .border-btn {
    color: var(--text);
}

.border-btn:after {
    border-bottom: 2px solid var(--primary-dark);
    bottom: -8px;
    content: "";
    display: block;
    height: 0;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    transition: .3s var(--ease-out) all;
    width: 0%;
    will-change: transform;

}

.portfolio-col:hover .border-btn:after {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    width: 100%;
}

.portfolio-row {
    padding: 0;
}

.ratio3-4 img {
    aspect-ratio: 3/3.5;
}

.portfolio-link a {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -.02em;
    text-transform: none;
    font-family: var(--heading-font);
}

.services-panel {
    /* background-color: rgb(251 251 251); */
    padding: 4rem 0 2rem;
}

/*.clients-panel {*/
/*    padding: 4rem 0 5rem;*/
/*}*/

.accordion-item {
    background-color: transparent;
}

.accordion-button {
    padding: 38px 0 38px 0;
    font-size: inherit;
    line-height: 1;
    font-weight: 400;
}

.accordion-button:focus {
    box-shadow: none;
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    color: #86a15b;
    background-color: transparent;
    box-shadow: none;
}

.accordion {
    --bs-accordion-bg: transparent;
}

.accordion-item {
    border: 1px solid #a4b981;
    border: 1px solid var(--text);
}

.accordion-body {
    padding: 0 0 40px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: auto;
    content: "";
    background-image: url(../images/plus.svg);
    background-repeat: no-repeat;
    background-size: 24px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.svg);
}

.bullet-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.who-we-work-with .bullet-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.bullet-list li {
    font-size: max(1.25rem, min(1vw, 1.5rem));
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    margin-bottom: 15px;
    padding: 0 0 0 32px;
}

.bullet-list li:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0;
    background: url(../images/mm-bullet.svg) no-repeat center center;
    background-size: contain;
    /*background: url(../images/list-arrow-bullet.svg) no-repeat center center;*/
    /*background-size: 14px;*/
    /* margin: auto 0; */
    transition: 0.3s ease-in-out;
}

.clientsswiper .swiper-wrapper,
.clientsswiperrtl .swiper-wrapper {
    padding: 40px 0;
}

.clientsswiper .swiper-slide,
.clientsswiperrtl .swiper-slide {
    height: 60px;
    background: #f4f4f4;
}

.clientsswiper .swiper-slide img,
.clientsswiperrtl .swiper-slide img {
    filter: grayscale(100%);
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 150px;
    mix-blend-mode: multiply;
}

.clientsswiper .swiper-slide img:hover,
.clientsswiperrtl .swiper-slide img:hover {
    filter: grayscale(0);
    /* transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1); */
}

.clients-panel .top-section {
    margin-bottom: 3rem;
    text-align: center;
}

/*------------------ footer css ------------------*/

footer {
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 0 30px;
}

.subscribe-row {
    background-color: var(--primary-dark);
    margin-bottom: 93px;
    padding: 50px 48px;
}

.subscribe-left h4 {
    display: flex;
    align-items: center;
    gap: 40px;
}

.form-input {
    display: grid;
    grid-template-columns: 70% 26%;
    grid-column-gap: 20px;

}

.form-input input {
    border: 0;
    background-color: transparent;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 400;
    color: var(--white);
    border-bottom: 1px solid #fff;
    padding: 10px 8px;
}

input::placeholder {
    color: var(--white);
}

input:focus {
    background-color: rgb(201 221 156 / 54%);
    outline: 0;
    box-shadow: none;
}

.secondary-btn {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 400;
    padding: 10px 0px;
    border: 0;
    width: 100%;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.secondary-btn:hover {
    background-color: var(--primary);
    color: var(--text);
}

.ftr-col h5 {
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.ftr-col .ftr-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ftr-col ul li a {
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
    padding: 10px 0px;
    letter-spacing: normal;
    display: inline-block;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    font-family: var(--heading-font);
    text-transform: none;
}

.ftr-col .border-btn:after {
    bottom: 1px;
}

.ftr-col ul li a:hover {
    color: #90af54;

}

.ftr-address p {
    font-family: var(--heading-font);
    font-size: 1rem;
}

.navigate-row {
    /* padding-bottom: 4rem; */
    margin-bottom: 2.2rem;
    border-bottom: 1px solid rgb(110 110 110);
    padding-bottom: 1.5rem;
}

.copyright-row p {
    font-size: 0.8rem;
    line-height: 1;
    margin: 0;
    font-family: var(--heading-font);
}

.ftrsocial {
    margin: 0 0 0 auto;
    text-align: right;
}

.ftrsocial ul li a,
.ftrcol a {
    display: block;
    color: var(--white);
    font-size: 21px;
    line-height: 1;
    transition: all 0.4s linear;
    text-align: center;

}

.ftrsocial ul li a i:hover {
    color: var(--primary-dark)
}

.ftr-btm ul li {
    list-style: none;
}

.ftr-btm ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.icon-button {
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    height: 2.2rem;
    line-height: 2.2rem;
    margin-right: 5px;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2.2rem;

}

.icon-button span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 0;
}

.icon-button i:hover span {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0;
    margin: -1.1rem;
}

/* .follow-us {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
} */


/* Icons */

.icon-button i {
    background: none;
    color: white;
    height: 2.2rem;
    left: 0;
    line-height: 2.2rem;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 2.2rem;
    z-index: 10;
}



.twitter span {
    background-color: #338cf1;
}

.facebook span {
    background-color: #1d3464;
}

.linkedin span {
    background-color: #096693;
}

.youtube span {
    background-color: #FF0000;
}

.whatsapp span {
    background-color: #00c938;
}

.con-wapp {
    width: 27px;
    height: auto;
    display: inline-block;
    margin: 5px 0 -8px 5px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.con-wapp:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.con-wapp img {
    width: 100%;
    display: block;
}


.instagram span {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.icon-button:hover .icon-twitter,
.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-glinkedin,
.icon-button:hover .fa-instagram {
    color: white;
}

/* ----------------- about us animation-start ---------------- */
@keyframes floatSticker {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.sticker-5 {
    animation: floatSticker 3s ease-in-out infinite;
    transition: transform 0.3s;
}


/* ----------------- about us animation-end ---------------- */
/* ----------------- about us page ---------------- */

.sec-our-team h3 {
    font-size: max(2.5rem, min(4.2vw, 9.375rem));
    font-weight: 400;
}

.clients-panel .row {
    row-gap: 6rem;
}

.clients-panel h2,
.accordion-sec h2 {
    font-weight: 400;
}

.client-logos img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    max-width: 130px;
    /* max-height: 100%; */
    aspect-ratio: 14 / 8;
    object-fit: contain;
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
}

.client-logos img:hover {
    filter: grayscale(0);
    /* transform: scale(1.1); */
    /* -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1); */
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 70px;
    background: var(--grayf4);
}

.bg-black,
.about-page {
    background-color: black;
    color: white;
    transition: background-color 0.5s ease;
}

/* .bg-black .navbar-nav li a,
.about-page .navbar-nav li a {
    color: var(--white);
} */

.bg-black .navbar-nav li a:hover,
.about-page .navbar-nav li a:hover {
    color: var(--primary-dark);
}

.navbar-nav li a.border-btn:after {
    bottom: -9px;
}

.wrapper {
    transition: background-color 0.5s ease;
}

.whom-we-work {
    background: #f2f9e3;
}

.marquee-img {
    width: 395px;
    height: 485px;
    position: relative;
}

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

/* .marquee-img-1 {
    position: relative;
} */

.sticker-1 {
    position: absolute;
    bottom: 11%;
    width: 32%;
    transform: rotate(338deg);
}

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

.sticker {
    position: absolute;
}

.sticker-2 {
    width: 51%;
    top: 7%;
    right: -10%;
    transform: rotate(343deg);
}

.sticker-3 {
    width: 68%;
    bottom: 13%;
    transform: rotate(6deg);
}

.sticker-4 {
    width: 29%;
    top: 51px;
    left: -3%;
}

.sticker-5 {
    width: 43%;
    bottom: 16%;
    right: -5%;
    transform: rotate(342deg);
    z-index: 99;
}

.sticker-6 {
    width: 30%;
    top: 0;
    transform: rotate(333deg);
    left: -5%;
}

.sticker-7 {
    width: 56%;
    top: 0;
    right: -3%;
    transform: rotate(342deg);
}

.sticker-8 {
    width: 33%;
    right: -3%;
    transform: rotate(342deg);
    bottom: 14%;
}

.sticker-9 {
    width: 61%;
    top: 6%;
    right: -7%;
    transform: rotate(16deg);
}

/* contact page */


.contact-top {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.page-heading h1 {
    font-size: max(2.25rem, min(8vw, 6.375rem));
    line-height: 1;
    font-weight: 400;
}

.sub-heading h2 {
    font-weight: 300;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.8rem 1rem;
    background: #2b2b2b;
    color: var(--white);
}

.contact-form select option {
    color: var(--white);
}

.contact-form .row {
    display: flex;
    row-gap: 2rem;
}

/* .contact-form textarea {
    background: #2b2b2b;
    color: var(--white);
} */

.contact-form .form-control {
    border: none;
    border-radius: 2px;
    border: 2px solid transparent;
}

.form-control:hover {
    border: 2px solid #4e4c58;
}

.form-control:focus {
    border-color: #fff;
    background: #181818;
    box-shadow: none;
    color: var(--white);
}

.contact-form .button-default {
    background: var(--primary);
    border: none;
}

.contact-form .button-default:hover {
    background: var(--primary-dark);
}

.mad-tribe-heading h2 {
    font-size: max(2.25rem, min(6vw, 9.375rem));
    margin-bottom: 1rem;
    font-weight: 300;
}



.mad-tribe h3 {
    font-weight: 300;
}

.mad-tribe-bottom a {
    color: var(--primary-dark);
}

.current-opening-head h3 {
    font-weight: 400;
}

.current-opening-head {
    margin-bottom: 30px;
}

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

.opening-card {
    background: var(--grayf4);
    padding: 2rem;
}

.opening-card h4 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}


.bg-black .border-btn,
.bg-black .border-btn a {
    font-size: .8125rem;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: var(--sub-heading-font);
    position: relative;
    display: inline-block;
}


/* end */

.alignfull img,
.work-detail-img img {
    width: 100%;
    object-fit: cover;
}

.alignfull img {
    aspect-ratio: 16 / 7;
}

.work-detail-img img {
    aspect-ratio: 16 / 9;
}

.section-btm-padding {
    padding-bottom: 80px;
}

.section-padding {
    padding-top: 80px;
}

.ftr-logo {
    width: 175px;
}

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

.ftr-logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 50px;
}

.ftr-logo-content {
    text-align: left;
    font-family: var(--heading-font);
    font-size: 1rem;
}

.ftr-p-p {
    font-size: 0.8rem;
    text-transform: capitalize;
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.ftr-btm-p-p ul {
    justify-content: flex-end;
}

.audit-sec {
    background: #fef981;
    padding: 6rem 0;
    margin: 0px 25px;
}

.audit-sec h4 {
    margin-bottom: 20px;
}



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

.testimonialslider .swiper-slide p,
.testimonialslider .swiper-slide cite {
    color: var(--black);
}

.testimonialslider .swiper-slide p {
    line-height: 1.4;
}



/* ----------------- term & condition ------------ */

.termpanel {
    padding-top: 0rem;
}

.termpanel ul li {
    margin-bottom: 10px;
    list-style: disc !important;
}

.intro-header h1 {
    margin: 30px 0 30px;
}

.termpanel h2 {
    padding-bottom: 20px;
}

.term-block h3 {
    font-size: 22px;
    font-weight: 500;
    padding: 20px 0 25px;
}

.term-block h2 {
    padding: 40px 0 25px;
}

.term-block ul {
    padding-left: 0;
    margin-bottom: 30px;
}

.term-block ul li {
    padding: 5px 0 5px 25px;
    display: block;
    position: relative;
}

.intro-header ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);

}

/* .intro-header ul li:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 14px;
    width: 4px;
    height: 8px;
    background-color: var(--primary);
} */

.termpanel h2 span {
    font-size: 16px;
    display: block;
    font-weight: 600;
    color: #000;
    font-family: 'Muli', sans-serif;
    font-style: italic;
}

.term-block a {
    color: var(--primary);
    font-weight: 600;
}

.term-block a:hover {
    color: #8b8b8b;
}

.masterpiece-block {
    margin-bottom: 60px;
}

.sec-img {
    aspect-ratio: 10 / 5;
    object-fit: contain;
    border-radius: 0;
}

.sec-img img {
    object-fit: contain;
}

.banner-info.imgcontent-col {
    padding-bottom: 35px;
}

.testimonialslider .customSwiperNav {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

/*----------- about page -------------  */

.img2 {
    background: #00ca62;
    height: 30em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

&:before,
&:after {
    position: absolute;
    top: 0;
    width: 350px;
    height: 150px;
    content: "";
    z-index: 1;
}

.marquee-content {
    width: max-content;
    display: flex;
    line-height: 30px;
}


.marquee .list-inline {
    display: flex;
}

.list-inline {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.img-even {
    margin-top: 100px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* @keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
} */


.col-1-point h4 {
    font-weight: 400;
    margin-bottom: 20px;
}

.col-1-point {
    margin-bottom: 40px;
}

.team-img {
    width: 100%;
}

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

.team-top img {
    aspect-ratio: 1 / 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team-wrap img {
    aspect-ratio: 1/1;
}

/* -------------------- client-page ------------------ */

/* .client-sec .button-default {
    background-color: var(--white);
    color: var(--black);
}

.client-sec .button-default:hover {
    background-color: var(--primary-dark);
    color: var(--white);
} */

.client-sec .block-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-sec {
    margin: 0;
}


.accordion-item .block-button {
    margin-bottom: 4rem;
}

.branding-sec-info p,
.accordion-description p {
    font-size: var(--font22);
}

.sec-band {
    background: #7857ff;
    /*padding: 3rem 0rem;*/
}

.animate-right-to-left {
    animation: moveRightToLeft 0.8s ease-out forwards;
}

.animate-left-to-right {
    animation: moveLeftToRight 0.8s ease-out forwards;
}

@keyframes moveRightToLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes moveLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* .animate-right-to-left {
    animation: moveRightToLeft 0.5s ease-in-out forwards;
}

.animate-left-to-right {
    animation: moveLeftToRight 0.5s ease-in-out forwards;
}

@keyframes moveRightToLeft {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes moveLeftToRight {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
} */

.jar-logo {
    position: relative;
    z-index: 999;
}


/* ------------------- blog-page ----------------- */

.blog-img {
    width: 100%;
    height: 100%;
    margin-bottom: 2rem;
}

.blog-card img {
    aspect-ratio: 16/11;
}

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

.blog-content a h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-content a h3:hover {
    color: var(--primary-dark);
    transition: 0.3s;
}

.blog-category {
    display: flex;
    gap: 7px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-category a {
    text-decoration: none;
    color: var(--black);
    font-family: var(--sub-heading-font);
    font-size: 12px;
    border: 1px solid var(--black);
    border-radius: 24px;
    padding: 0px 9px;
}

.date-wrap {
    font-family: var(--sub-heading-font);
    font-size: 12px;
    border: 1px solid var(--white);
    border-radius: 24px;
    padding: 0px 9px;
}

.blog-detail-content h3 {
    font-size: var(--font22);
    margin-bottom: 20px;
}

.blog-detail-content img {
    width: 100%;
    margin-bottom: 40px;
}

.blog-detail-content {
    padding-bottom: 2.5rem;
}

/* ---------------------- blog detail page --------------------- */

.blog-detail-img {
    margin-bottom: 2rem;
    width: 100%;
    height: 100%;
}

.blog-detail-img img {
    aspect-ratio: 16 / 10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-detail-content ul li {
    margin-bottom: 2rem;
}

.blog-detail-content ul {
    list-style: disc;
    padding-left: 20px;
}

.blog-detail-content ul strong {
    font-weight: 600;
}

.user-wrap {
    display: flex;
    gap: 20px;
    margin-top: 1rem;
}

.date-wrap,
.admin-wrap {
    display: flex;
    gap: 10px;
}

/* -------------------- testimonial page ------------------- */

/* .testimonial-sec {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 90%;
    padding: 3rem 0;
} */

/* Grid images --------------------------------------------*/

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

/* Grid items --------------------------------------------*/

/* .item-4 {
    grid-row: 2/5;
}

.item-5 {
    grid-row: 2/6;
}

.item-6 {
    grid-row: 2/4;
}

.item-7 {
    grid-row: 5/6;
}

.item-8 {
    grid-row: 4/6;
}

.item-9 {
    grid-row: 6/11;
}

.item-10 {
    grid-row: 6/7;
} */


.masonry {
    column-count: 1;
    column-gap: 2rem;
}

@media (min-width: 768px) {
    .masonry {
        column-count: 1;
    }
}

@media (min-width: 992px) {
    .masonry {
        column-count: 2;
    }
}

@media (min-width: 1199px) {
    .masonry {
        column-count: 2;
    }
}

.masonry .brick {
    box-sizing: border-box;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    counter-increment: brick-counter;
    margin-bottom: 2rem;
}

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


.testimonial-wrap {
    background: #2b2b2b;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    /* width: 100%; */
}

.testimonial-sec .block-button {
    width: 15%;
    margin-top: 2rem;
}

.testimonial-sec .button-link {
    display: inline-flex;
    color: var(--black);
}

.testimonial-sec .button-link:hover {
    color: var(--primary-dark);
}

.divider {
    height: 1px;
    width: 100%;
    margin: 0 auto;
    background: #6967676e;
}

.work-detail-main-wrap .top-section h2 {
    font-size: 3.3rem;
    font-weight: 600;
}


.work-main-wrap {
    display: grid;
    grid-template-columns: calc(50% - 50px) calc(50% - 50px);
    gap: 100px;
    justify-content: center;
}


.testimonial-sec .border-btn::after {
    bottom: 8px;
}

/* review star  */

.star-ratings-css {
    display: inline-block;
    unicode-bidi: bidi-override;
    color: #c5c5c5;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 2rem;
    height: 1em;
}

.star-ratings-css::before {
    content: '★★★★★';
    opacity: .3;
    overflow: hidden;
}

.star-ratings-css i {
    left: 0;
    position: absolute;
    overflow: hidden;

}

.star-ratings-css i::after {
    font-style: normal;
    color: gold;
    content: '★★★★★';
    z-index: 1;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);


/* -------------------no-dta-block-------------------------- */
.no-datab-block {
    /* text-align: center; */
}


.no-datab-block p {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
}

.bg-black .navbar-nav li a,
.about-page .navbar-nav li a {
    color: white;
    transition: color 0.3s ease-in-out;
}

.nav-black .navbar-nav li a {
    color: #000 !important;
}

.bg-black .sticky .navbar-nav li a,
.about-page .sticky .navbar-nav li a {
    color: var(--black);
}

header {
    position: absolute;
    top: 0;
    z-index: 99;
    background: transparent;
    width: 100%;
    padding: 24px 50px;
    transition: all 0.4s ease;
}

.sticky::before {
    background-color: #fff;
    transition: all 0.4s ease;
    top: -82px;
    position: fixed;
    content: "";
    width: 100%;
    z-index: 998;
    left: 0;
    height: 82px;
}

.header-main.sticky {
    /* padding: 0; */
    background: #fff;
    height: 82px;
}

.blog-content-wrap .portfolio-col {
    width: 100%;
}

.blog-content .border-btn {
    line-height: 2.2;
}

.blog-content .border-btn a {
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-detail-content {
    border-bottom: 1px solid #C9C9C9;
}

.next-prev-blog {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    gap: 8rem;
}

.prev-blog,
.next-blog {
    width: 50%;
}

.next-prev-blog .next-blog {
    justify-content: flex-end;
    display: flex;
    text-align: right;
    gap: 6rem;
}

.next-prev-blog a .blog-title {
    font-size: 18px;
    color: #000;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.next-prev-btn {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.next-prev-btn:hover {
    color: var(--primary-dark);
}

.navbar-nav li .border-btn.active {
    color: var(--primary-dark);
}

.navbar-nav li .border-btn.active::after {
    width: 100%;
}

.blog-sec {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(23rem, 100%), 1fr));
    gap: 60px;
}

/* sidebar  */

.search-form {
    border: 1.5px solid #202020;
    padding: 12px 18px 12px 24px;
    position: relative;
}

.search-form input {
    border: none;
    background: transparent;
    width: 88%;
}

.search-form input::placeholder {
    color: var(--black);
    font-size: 0.875rem;
}

.search-form button {
    background-color: transparent;
    padding: 0;
    border: none;
    position: absolute;
    right: 15px;
}

.search-form button svg {
    min-height: 30px;
    min-width: 30px;
    transform: rotateY(180deg);
}

.sidebar-main-wrap {
    margin-left: 40px;
    position: sticky;
    top: 6.25rem;
}

.related-posts h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 400;
}

.related-posts ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C9C9C9;
}

.related-posts ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    line-height: 1.4;
}

.entry-date {
    font-size: 0.875rem;
}

.widget {
    margin-bottom: 40px;
}

.related-posts ul li:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-posts ul li p {
    margin-bottom: 0;
}

.work-detail-main-wrap .hero-content h1 {
    font-size: max(2.25rem, min(7vw, 3em));
    line-height: 1.1;
    font-weight: 400;
    margin: 1.5rem 0 0;
}


/* ----------------- contact-form ----------------- */

.error {
    color: #e77474;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    margin: 10px 0;
}

.loading-animation {
    width: 40%;
    margin: 0 auto;
    bottom: 0;
    z-index: -1;
}

#loadingSpinner {
    display: none;
}

.spinner {
    border: 2px solid var(--primary);
    border-top: 4px solid var(--base-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

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

.sec-mvp h2 {
    font-size: max(1.95rem, min(2.2vw, 9.375rem));
}

.work-card .swiper-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}



.image-error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}



/* 404 - page  */

.cover-background {
    background-repeat: no-repeat !important;
    background-size: cover;
    overflow: hidden;
    position: relative;
    background-position: center center !important;
    height: 100vh;
}

.page-404-wrap h6 {
    font-size: 2rem;
    font-weight: 800;
}

.page-404-wrap h1 {
    font-size: 12rem;
    font-weight: 600;
    font-family: 'Nunito Sans';
}

.page-404-wrap h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-404-wrap p {
    font-size: 20px;
    margin-bottom: 2rem;
}

.page-404-wrap a {
    font-size: var(--font16);
    padding: 12px 24px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 24px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}

.page-404-wrap a:hover {
    border: 1px solid var(--primary-dark);
    background: #fff;
    color: var(--primary-dark);
}

.page-404-wrap .row {
    margin-top: 5rem;
}



.allblock-icons ul li {
    list-style: none;
    margin-bottom: 4px;
}

.allblock-icons ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
}

.allblock-icons ul li a {
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100rem;
}

.spotlight-facebook {
    background: #1877F2;
}

.spotlight-twitter {
    background: #1DA1F2;
}

.spotlight-linkedin {
    background: #0077B5;
}


/* ------------------------google reviews------------------------- */

.google-reviews h2 {
    margin: 0px 0 40px;
}

.google-review-head {
    background: var(--grayf4);
    padding: 20px 20px;
    border-radius: 10px;
}

.google-logo-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 4px 0;
}

.google-logo-wrap img {
    width: 61px;
}

.google-logo-wrap h6 {
    font-size: 15px;
    font-weight: 700;
}

.google-rating-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-rating-wrap h6 {
    font-size: 18px;
    font-weight: 700;
}

.google-rating-wrap p {
    font-size: 10px;
    font-weight: 400;
}

.google-btn-wrap {
    display: flex;
    justify-content: end;
    align-items: center;
}

.google-review-card {
    background: var(--grayf4);
    padding: 15px 20px;
    border-radius: 10px;
    height: 100%;
}

.google-review-slider {
    margin-top: 20px;
}

.review-card-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--font14);
}

.review-card-head h6 {
    font-size: var(--font18);
    font-weight: 700;
}

.review-card-head span {
    font-size: var(--font14);
}

.review-card-content .star-ratings-css {
    margin: 0;
    font-size: 1.5rem;
    height: 1em;
}

.review-card-content a {
    font-size: var(--font16);
}

.side-navigation {
    position: absolute;
    z-index: 99;
    top: 64px;
    width: 100%;
}

.side-navigation .navigation {
    justify-content: space-between;
}

.side-navigation .nav-button-prev,
.side-navigation .nav-button-next {
    display: flex;
    border: 1px solid #004774;
    padding: 10px;
    border-radius: 39px;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
}


.google-review-slider .custom-pagination {
    position: absolute;
    width: 100%;
    bottom: -50px;
}

.googlereviewpanel .swiper,
.invisalign-testimonial-panel .swiper {
    position: initial;
}

.googlereviewpanel,
.invisalign-testimonial-panel {
    position: relative;
}

.googlereviewpanel .swiper-slide {
    height: auto;
}

.map-sec iframe {
    width: 100%;
}

.client-link-sec .button-default {
    font-size: 0.9rem;
    padding: 19px 2rem;
}



.clients-panel {
    background: var(--grayf4);
}

.portfolio-col .border-btn a {
    color: var(--text);
}

.portfolio-col:hover a {
    color: var(--primary-dark);
}

.portfolio-col .border-btn a:hover {
    color: var(--primary-dark);
}

.google-review-head .star-ratings-css {
    font-size: 1rem;
    margin-bottom: 0;
}



.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}


.service-card::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    transition: all 0.5s linear;
    opacity: 90%;
}

.hover-card-img img {
    transition: all 0.3s ease-in-out;
}

.service-card-text {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 30px 40px;
    transition: transform 0.4s ease-in-out;
}

.service-card .hide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    text-align: center;
    padding: 30px 30px;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transform: translateY(100%);
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(21 21 19 / 83%) 100%);
    opacity: 0;
    z-index: 1;
}

.service-card:hover .service-card-text {
    transform: translateY(-100%);
}

.service-card:hover .hide {
    transform: translateY(0%);
    opacity: 1;
    z-index: 2;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(21 21 19 / 83%) 100%);
}

.work-detail-head h1 {
    font-size: var(--font54);
    font-weight: 600;
}

.industry-wrap h5,
.serivice-wrap h5,
.client-wrap h5 {
    font-weight: 700;
}

.top-section h4 {
    font-weight: 400;
    line-height: 1.3;
}

.work-main-wrap h5 a {
    font-size: 16px;
    font-weight: 700;
}

.review-card-head h6 {
    letter-spacing: normal;
}

.accordion-header button {
    font-weight: 600;
}


.work-card .border-btn a {
    color: var(--primary-dark);
}



/* error pop up  */

.error-confirm {
    color: #636363;
    width: 325px;
}

.error-confirm .error-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
    background: #f4f4f4;
}

.error-confirm .error-header {
    border-bottom: none;
    position: relative;
}

.error-confirm h4 {
    text-align: center;
    font-size: 26px;
}

.error-confirm .form-control,
.error-confirm .btn {
    min-height: 40px;
    border-radius: 3px;
}

.error-confirm .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.error-confirm .error-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}

.icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    right: -34px;
    top: -33px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 9;
    background: #ef513a;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.error-confirm .icon-box i {
    font-size: 18px;
    position: relative;
    top: -12px;
    left: -6px;
}

.error-confirm.error-dialog {
    margin-top: 80px;
}

.error-confirm .btn {
    color: #fff;
    border-radius: 4px;
    background: #ef513a;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}

.error-confirm .btn:hover,
.error-confirm .btn:focus {
    background: #da2c12;
    outline: none;
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

#error-popup {
    display: none;
    position: fixed;
    top: 30%;
    left: 0;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    right: 0;
}

.captcha-block .button-default {
    padding: 23px 1rem;
}

.hm-intro-panel .customSwiperNav {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.hm-intro-panel .swiper-button-prev,
.hm-intro-panel .swiper-button-next {
    color: #4b483f;
    width: 40px;
}

.hm-intro-panel .button-arrow {
    display: none;
}

.hm-intro-panel .button-link {
    padding-right: 0;
}


/* ------------------work-page-start--------------- */

    .border-bottom {
        border-bottom: 2px solid var(--primary-dark) !important;
    }

    .category-slider-wrapper {
    position: relative;
    padding: 15px 30px 5px;
    }


    .category-slider {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    margin: 0;
    }

    .category-slider::-webkit-scrollbar {
    display: none;
    }

    .category-slider li {
    flex: 0 0 auto;
    }
    .cat-slider-left::before, .cat-slider-right::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 15px;
        height: 15px;
        background: url(../images/arrow.svg) center no-repeat;
        margin: auto 0;
        cursor: pointer;
    }

    .cat-slider-left:before {
    left: 0px;
    }
    .cat-slider-right::before {
        right: 0px;
        transform: rotate(180deg);
        -webkit-transform: rotate(1);
        -moz-transform: rotate(1);
        -ms-transform: rotate(1);
        -o-transform: rotate(1);
    }

    .category-slider-wrapper ul li a {
    padding-bottom: .5rem;
    display: flex;
    line-height: 120%;
    letter-spacing: -0.0175rem;
    color: var(--white);
    position: relative;
    flex-direction: column;
    border-bottom: 2px solid transparent;
}

       .css-loader .loader {
        margin: 0 auto;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #6f8543;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
    }


    .category-slider-wrapper ul li a:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: opacity 0.3s ease, width 0.3s ease;
    -ms-transition: opacity 0.3s ease, width 0.3s ease;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    }


    .category-slider-wrapper ul li:hover a:after,.category-slider-wrapper ul li.bottom-border a::after {
    width: 100%;
    }

    .backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  border: none;
  color: #cccccc;
  border-radius: 100%;
  transition: 0.5s;
  cursor: pointer;
}
.backToTopBtn:not(:hover) {
  background: #1f1f1f;
}
.backToTopBtn:hover {
  background: #0f0f0f;
}
.backToTopBtn.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.backToTopBtn:not(.active) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

 @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }


/* ------------------work-page-end--------------- */
