@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

:root {
    --black: #000;
    --white: #fff;
    --theme-1: #f5090b;
    --theme-2: #fff000;
    --theme-3: #141414;
    --textColor: #898888;
    --theme-heading: #141313;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

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

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Hudson';
    src: url(../fonts/Hudson-Serif.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

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

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

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

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

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

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    margin: 0 0 0px;
    font-size: 200px;
    font-weight: 500;
    line-height: 170px;
    color: var(--theme-2);
    font-family: 'Hudson';
}

h2 {
    font-size: 70px;
    margin: 0 0 0px;
    font-weight: 500;
    line-height: 70px;
    font-family: 'Hudson';
    color: var(--theme-heading);
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    color: #000000;
    font-weight: 600;
    font-family: 'Hudson';
}

h4 {
    color: #000;
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Hudson';
}

h5 {
    color: #000;
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Hudson';
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1550px;
}

.section-heading {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.section-heading h2 {
    position: relative;
    margin-bottom: 10px;
}

.section-heading p {
    width: 90%;
    margin: 0 auto;
    max-width: 950px;
    text-align: center;
}

.theme-btn-1 {
    gap: 8px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.theme-btn-1 span.theme-btn-text {
    font-size: 12px;
    border-radius: 5px;
    padding: 10px 15px;
    color: var(--theme-3);
    text-transform: uppercase;
    border: 1px solid var(--white);
    background-color: var(--theme-2);
}

.theme-btn-1 span.theme-btn-img {
    width: auto;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    aspect-ratio: 1 / 1;
    justify-content: center;
    background-color: #f7f3f7;
    border: 1px solid #d9d9d9;
}

.theme-btn-1 span.theme-btn-img img {
    width: 30px;
    height: 15px;
    object-fit: contain;
}



/*header css start */

.menuSection {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 15px 0px;
    position: absolute;
}

.menuSection .row {
    align-items: center;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    position: relative;
    text-align: center;
    align-items: center;
    text-transform: capitalize;
    justify-content: space-between;
}

.menuSec ul li {
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    letter-spacing: 1px;
    color: var(--white);
    display: inline-block;
    text-decoration: none;
    font-family: 'Hudson';
}


.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #fff;
}

.haeder-form {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.haeder-form ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.haeder-form ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
}

.haeder-form ul li a:hover {
    color: var(--black);
    background-color: var(--white);
}

.haeder-form form {
    position: relative;
    max-width: 190px;
}

.haeder-form form input {
    width: 100%;
    height: 50px;
    font-size: 14px;
    padding: 10px 25px;
    color: var(--white);
    border-radius: 100px;
    font-family: 'Montserrat';
    background-color: transparent;
    border: 1px solid var(--white);
}

.haeder-form form input::placeholder {
    color: var(--white);
    font-family: 'Hudson';
}

.haeder-form form button {
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    border: none;
    position: absolute;
    color: var(--white);
    height: fit-content;
    background-color: transparent;
}


/*header css start */


/*banner css start */

.main_slider {
    padding: 100px 0px;
    position: relative;
    background-color: var(--theme-1);
}

.main_slider::before {
    left: 0;
    z-index: 2;
    width: 100%;
    content: '';
    height: 50px;
    bottom: -1px;
    position: absolute;
    background-image: url(../images/section-before-img.png);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: contain;
}

.main_slider::after {
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.5;
    position: absolute;
    animation: moveLR 3s ease-in-out infinite alternate;
    background-image: url(../images/banner-bg-before.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main_slider .container {
    z-index: 1;
    position: relative;
}

.banner_text {
    margin: 50px 0px;
    position: relative;
    text-align: center;
}

.banner_img {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    margin: auto;
    height: 380px;
    position: absolute;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(-45px 40px 36px #141414ce);
}

.banner_text h1 {
    position: relative;
    width: fit-content;
    margin-bottom: 80px;
}

.banner_text p {
    opacity: 0.5;
    max-width: 850px;
    margin: 0px auto;
    color: var(--white);
}

.banner_text a.theme-btn-1 {
    margin: 20px auto 0px;
}

.banner_text h1 img.banner-h1-img-right {
    right: 20%;
    width: 70px;
    bottom: 5px;
    height: 120px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.banner_text h1 img.banner-h1-img-left {
    top: 100px;
    left: 19%;
    width: 98px;
    height: 95px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0) rotate(-2deg);
    }

    100% {
        transform: translateY(-10px) rotate(8deg);
        /* moves upward 10px */
    }
}

.main_slider img.banner-images-before-1 {
    top: 5%;
    height: 120px;
    width: 140px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.main_slider img.banner-images-before-2 {
    left: 4%;
    width: 40px;
    bottom: 30%;
    height: 35px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.main_slider img.banner-images-before-3 {
    right: 0;
    bottom: 8%;
    height: 68px;
    width: 100px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.main_slider img.banner-images-before-4 {
    top: 0;
    bottom: 0;
    right: 3%;
    width: 70px;
    margin: auto;
    height: 110px;
    position: absolute;
    object-fit: contain;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.main_slider img.banner-images-before-5 {
    position: absolute;
}


/*banner css end*/

/* about-sec */

.about-sec {
    padding: 100px 0px 50px;
}

.about-sec-box {
    padding: 50px 80px;
    border-radius: 500px;
    background-color: rgb(255, 255, 255);
    box-shadow: -23.835px 56.151px 65px 0px rgba(0, 0, 0, 0.07);
}

.about-img {
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-img img {
    right: 70px;
    width: 100%;
    height: 640px;
    bottom: -50px;
    position: relative;
    object-fit: contain;
}

.about-sec-box .row {
    align-items: center;
}

.about-text {
    overflow: hidden;
    text-align: center;
    padding: 30px 50px;
    border-radius: 500px;
    background-color: var(--theme-1);
}

.about-text h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.about-text h5 {
    z-index: 1;
    position: relative;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--theme-1);
    padding: 8px 10px 12px;
    background-color: var(--theme-1);
}

.about-text h5::after {
    top: 0;
    right: 50%;
    content: '';
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--theme-2);
}

.about-text h5::before {
    top: 0;
    left: 50%;
    content: '';
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--theme-2);
}

.about-text a.theme-btn-1 {
    margin: 0px auto;
}

.about-text p {
    opacity: 0.5;
    color: var(--white);
    margin-bottom: 25px;
}



/* about-sec */

/* product-sec */

.product-sec {
    padding: 100px 0px;
}

.product-box {
    padding: 25px;
    margin: 25px 0px;
    border-width: 1px;
    text-align: center;
    border-style: solid;
    border-radius: 300px;
    border-color: #ebebeb;
    background-color: var(--white);
    box-shadow: -23.835px 56.151px 65px 0px rgba(0, 0, 0, 0.07);
}

.product-box-img {
    padding: 15px;
    height: 370px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-1);
    border-radius: 300px 300px 0px 0px;
}

.product-box-img img {
    width: 90%;
    height: 90%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(45px 45px 45px #141414ce);
}

.product-box-text {
    margin: 20px 10px;
    text-align: center;
}

.product-box-text h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-box-text p {
    margin: 15px 0px;
    color: var(--textColor);
}

.product-box-text ul {
    display: flex;
    overflow: hidden;
    margin: 0px auto;
    max-width: 250px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.product-box-text ul::before {
    left: 0;
    right: 0;
    top: 3px;
    bottom: 0;
    height: 1px;
    width: 100%;
    content: '';
    margin: auto;
    position: absolute;
    background-color: #e5e5e5;
}

.product-box-text ul li {
    z-index: 1;
    padding: 0px 10px;
    position: relative;
    background-color: var(--white);
}

.product-box-text ul li span i {
    color: #f74647;
    font-size: 11px;
}

.product-box-text ul li h6 {
    font-size: 12px;
    font-weight: 300;
    font-family: 'Hudson';
}

.product-box-text a.theme-btn-1 {
    margin: 0px auto;
}

/* product-sec */

/* nearest-sec */

.nearest-box .product-box-img {
    padding: 0;
}

.nearest-box .product-box-img {
    overflow: hidden;
}

.nearest-box .product-box-img img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.nearest-heading {
    position: relative;
    padding: 40px 0px 80px;
    background-color: var(--theme-1);
}

.nearest-heading::before {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 50px;
    position: absolute;
    background-image: url(../images/section-before-img.png);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: contain;
}

.nearest-heading h2 {
    text-align: center;
    color: var(--white);
}

.location-search {
    padding: 50px 0px;
}

.location-search form {
    position: relative;
}

.location-search form select {
    width: 100%;
    height: 75px;
    padding: 10px 110px;
    border-radius: 100px;
    border: 1px solid #e7e7e7;
}

.location-search form .location-img {
    top: 0;
    bottom: 0;
    left: 0px;
    width: 85px;
    margin: auto;
    height: 50px;
    display: flex;
    position: absolute;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e7e7e7;
}

.location-search form .location-img img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.location-search form button {
    top: 0;
    bottom: 0;
    right: 8px;
    height: 60px;
    margin: auto;
    padding: 0px 55px;
    position: absolute;
    color: var(--white);
    border-radius: 50px;
    font-family: 'Hudson';
    border: 1px solid var(--theme-1);
    background-color: var(--theme-1);
}

/* nearest-sec */

/* grow-sec */

.grow-sec {
    padding: 0px 4%;
    position: relative;
    background-color: var(--theme-1);
}

.grow-sec .row {
    align-items: center;
}

.grow-sec::before {
    left: 0;
    z-index: 2;
    width: 100%;
    content: '';
    height: 50px;
    bottom: -1px;
    position: absolute;
    background-image: url(../images/section-before-img.png);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: contain;
}

.grow-sec::after {
    left: 0;
    top: -1px;
    width: 100%;
    content: '';
    height: 50px;
    position: absolute;
    transform: rotate(180deg);
    background-image: url(../images/section-before-img.png);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: contain;
}

.grow-img {
    z-index: 1;
    width: 100%;
    height: 750px;
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: center;
}

.grow-img img {
    height: 780px;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
}

.grow-text {
    z-index: 1;
    margin: 50px 0px;
    position: relative;
}

.grow-text h2 {
    margin-bottom: 20px;
    color: var(--theme-2);
}

.grow-text h4 {
    color: var(--theme-2);
}

.grow-text h5 {
    width: fit-content;
    color: var(--white);
    letter-spacing: 5px;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffffa1;
}

.grow-text h6 {
    color: var(--white);
    font-family: 'Hudson';
}

.grow-text p {
    opacity: 0.5;
    max-width: 450px;
    margin: 15px 0px;
    color: var(--white);
}

.grow-text ul li {
    gap: 20px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: flex-start;
}


.grow-sec .grow-sec-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    animation: moveLR 3s ease-in-out infinite alternate;
}

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

    100% {
        transform: translateX(20px);
    }
}

.grow-sec img.banner-images-before-1 {
    top: 15%;
    left: 0%;
    width: 140px;
    height: 120px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.grow-sec img.banner-images-before-2 {
    left: 40%;
    bottom: 0%;
    width: 40px;
    height: 35px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.grow-sec img.banner-images-before-3 {
    right: 7%;
    bottom: 8%;
    height: 68px;
    width: 100px;
    position: absolute;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.grow-sec img.banner-images-before-4 {
    top: 0;
    right: 9%;
    bottom: 20%;
    width: 70px;
    margin: auto;
    height: 110px;
    position: absolute;
    object-fit: contain;
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

.grow-img img.banner-images-before-5 {
    left: 10%;
    top: 150px;
    width: 50px;
    height: 50px;
    position: absolute;
}






/* grow-sec */

/* happy-client-sec */

.happy-client-sec .custom-top-space {
    margin-top: 50px;
}

.happy-client-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.happy-client-text p {
    max-width: 410px;
    font-weight: 500;
    color: var(--textColor);
}

.clientSliderMain .slick-slide {
    margin: 0px 1px;
}

.clientSliderMain .slick-prev,
.clientSliderMain .slick-next {
    width: 65px;
    height: 50px;
    display: flex;
    border-radius: 8px;
    align-items: center;
    transition: ease-in-out;
    transition: ease-in-out;
    justify-content: center;
    border: 1px solid #cbcbcb;
}

.clientSliderMain .slick-next {
    bottom: 0;
    top: unset;
    right: -90px;
    transform: none;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.clientSliderMain .slick-prev {
    top: 0px;
    left: -90px;
    transform: none;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.clientSliderMain .slick-next::before {
    font-size: 16px;
    content: '\f061';
    transition: ease-in-out;
    transform: rotate(-45deg);
    transition-duration: 0.5s;
    font-family: "FontAwesome";
    color: var(--theme-heading);
}

.clientSliderMain .slick-prev::before {
    font-size: 16px;
    content: '\f060';
    transition: ease-in-out;
    transform: rotate(45deg);
    transition-duration: 0.5s;
    font-family: "FontAwesome";
    color: var(--theme-heading);
}

.clientSliderMain .slick-prev:hover,
.clientSliderMain .slick-next:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    border-color: var(--theme-1);
}

.clientSliderMain .slick-next:hover::before,
.clientSliderMain .slick-prev:hover::before {
    transition: ease-in;
    color: var(--theme-1);
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.client-main-box {
    gap: 25px;
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}

.client-main-box-img {
    width: 190px;
    height: 260px;
    flex-shrink: 0;
    min-height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.client-main-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-main-box-text ul {
    gap: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.client-main-box-text ul li i {
    font-size: 11px;
    color: var(--theme-1);
}

.client-main-box-text p {
    font-weight: 500;
    color: var(--textColor);
}

.client-main-box-text h5 {
    font-size: 18px;
}

.client-main-box-text h5 span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.client-main-box-text .client-main-box-text-description {
    height: 150px;
    margin: 15px 0px;
    overflow-y: scroll;
}

.client-main-box-text .client-main-box-text-description::-webkit-scrollbar {
    width: 7px;
    height: 20px;
    border-radius: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background: #fff !important;
}

.client-main-box-text .client-main-box-text-description::-webkit-scrollbar-track {
    border-radius: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background: #fff !important;
}

.client-main-box-text .client-main-box-text-description::-webkit-scrollbar-thumb {
    border-radius: 20px;
    transition: ease-in-out;
    border: 1px solid #fff;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.client-main-box-text .client-main-box-text-description:hover::-webkit-scrollbar {
    height: 20px;
    width: 7px;
    border-radius: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
    background: var(--theme-1) !important;
}

.client-main-box-text .client-main-box-text-description:hover::-webkit-scrollbar-track {
    border-radius: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
    background: var(--theme-1) !important;
}

.client-main-box-text .client-main-box-text-description:hover::-webkit-scrollbar-thumb {
    border-radius: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
    border: 1px solid var(--theme-1);
}

.client-small-box {
    padding: 15px;
    height: 185px;
    display: flex;
    position: relative;
    border-radius: 10px;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--theme-1);
}

.client-small-box::before {
    top: 15px;
    right: 15px;
    width: 45px;
    content: '';
    height: 45px;
    position: absolute;
    background-image: url(../images/quote-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.client-small-box img {
    width: 65px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.client-small-box ul {
    gap: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.client-small-box ul li i {
    font-size: 11px;
    color: var(--white);
}

.client-small-box h5 {
    font-size: 18px;
    color: var(--white);
}

.client-small-box h5 span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.clientSmallSlider .slick-slide {
    margin: 0px 1px;
}

.clent-small-slider-box.set-bottom {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.clientSmallSlider {
    width: 100%;
}

/* happy-client-sec */

/* earn-sec */

.earn-sec {
    padding: 100px 4%;
}

.earn-text {
    overflow: hidden;
    padding: 100px 4%;
    position: relative;
    text-align: center;
    border-radius: 300px;
    background-image: url(../images/footer-bottom-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.earn-text::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, var(--theme-1) 0%, var(--theme-1) 25%, rgba(245, 9, 11, 0.93) 50%, var(--theme-1) 75%, var(--theme-1) 100%);
}

.earn-text h2 {
    z-index: 1;
    position: relative;
    margin-bottom: 15px;
    color: var(--theme-2);
}

.earn-text h5 {
    z-index: 1;
    font-size: 14px;
    margin: 25px 5px;
    position: relative;
    color: var(--white);
    letter-spacing: 5px;
}

.earn-text p {
    z-index: 1;
    width: 90%;
    opacity: 0.5;
    max-width: 950px;
    position: relative;
    color: var(--white);
    margin: 0px auto 25px;
}

.earn-text a {
    z-index: 1;
    margin: 0px auto;
    position: relative;
}

.earn-text .theme-btn-1 span.theme-btn-text {
    font-weight: 600;
    padding: 10px 25px;
}


/* earn-sec */

/*Footer Start*/

.footer-main {
    position: relative;
    padding: 70px 0 70px;
    background: var(--theme-3);
}

.footer-logo-box p {
    opacity: 0.8;
    font-size: 14px;
    max-width: 360px;
    margin: 15px 0px;
    line-height: 28px;
    color: var(--white);
}

.footer-logo-box a img {
    margin-bottom: 15px;
    width: 100%;
}

.footer-logo-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.foot-social ul li a:hover {
    background: #000;
    color: #fff;
    transition: 0.5s;
}

.footer-main h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    width: fit-content;
    color: var(--white);
    position: relative;
    margin-bottom: 35px;
    font-family: 'Hudson', sans-serif;
}

.footer-main h2::before {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 2px;
    position: absolute;
    background-color: var(--white);
}

.quick-link {
    margin-left: 30px;
}

.foot-social ul li a:hover {
    background: var(--redClr);
    transition: 0.5s;
    color: #fff;
}

.new-letter {
    padding-left: 40px;
}

.copy-right {
    text-align: center;
    background: #0a0a0a;
    padding: 20px 0;
}

.footer-main h5:before {
    content: "";
    position: absolute;
    width: 45px;
    height: 2px;
    bottom: -25px;
    left: 0;
    background-color: var(--redClr);
}

.new-letter-input-icon {
    position: absolute;
    left: 15px;
    top: 18px;
}

.new-letter input {
    width: 100%;
    height: 55px;
    color: #fff;
    padding: 0 25px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #8a8a8a;
    box-shadow: 0 0 2px 0 #00000063;
}

.copy-right p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--white);
    text-transform: capitalize;
}

.new-letter-input input::placeholder {
    font-size: 16px;
    color: #8a8a8a;
    font-weight: 500;
}

.new-letter-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.new-letter-button button {
    width: 100%;
    height: 55px;
    font-size: 20px;
    border: none;
    font-weight: 500;
    border-radius: 10px;
    color: var(--theme-3);
    background: var(--white);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.footer-main h5 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    font-weight: 400;
}

.quick-link ul li a {
    opacity: 0.8;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

.quick-link ul {
    line-height: 38px;
}

.contact-info ul li a i {
    font-size: 22px;
    margin-right: 12px;
}

.contact-info ul li a i.fa-phone-alt {
    margin-top: -25px;
}

.contact-info ul li a {
    gap: 10px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    align-items: baseline;
}


ul li p.phn-hrs {
    padding: 0 36px;
    color: #ffffff;
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 400;
}

.contact-info ul li:last-child a {
    margin-bottom: 0;
}

.gallery-img.g3 img {
    height: 283px;
}

.new-letter-input input::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.new-letter p {
    opacity: 0.9;
    color: var(--white);
    margin-bottom: 15px;
}


/*Footer End*/



/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/