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

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

:root {
    --black: #000;
    --white: #fff;
    --textColor: #4d4d4d;
    --themeColor: #16cde6;
    --themeColor2: #0d607f;
    --headingColor: #010101;
    --headingColor2: #131212;
}

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: 'Fonts Awesome';
    src: url(../fonts/-webfont.eot);
}


/***** 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: 50px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
    text-transform: uppercase;
}

h2 {
    font-size: 50px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
    text-transform: uppercase;
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
}

h4 {
    font-size: 25px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Oswald';
}

h6 {
    margin: 0 0 0px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

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

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

.section-heading h2 span {
    color: var(--themeColor);
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}

.theme-btn-2 {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    padding: 17px 32px;
    width: fit-content;
    letter-spacing: 1px;
    color: var(--white);
    border-radius: 50px;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
    box-shadow: -3.244px 16.688px 27px 0px rgba(0, 0, 0, 0.23);
}

.theme-btn-2:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-1 {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    padding: 17px 25px;
    width: fit-content;
    color: var(--white);
    border-radius: 50px;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    text-transform: uppercase;
    background-color: var(--themeColor);
    box-shadow: -3.244px 16.688px 27px 0px rgba(0, 0, 0, 0.23);
}




/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

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

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

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    color: var(--themeColor2);
}

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

/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.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: var(--themeColor);
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.menuSection {
    z-index: 1;
    padding: 20px 4%;
    position: relative;
}

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

/*header css start */


/*banner css start */

.main_slider {
    padding: 0px 4%;
    position: relative;
}

.main_slider .add-padding {
    position: relative;
}

.banner_img {
    height: 700px;
}

.banner_img .banner-img-main {
    bottom: 0;
    right: -5%;
    width: 100%;
    height: 110%;
    position: absolute;
    object-fit: contain;
    object-position: bottom right;
}

.banner_img .banner-img-before {
    right: 30%;
    padding: 15px;
    bottom: 320px;
    position: absolute;
    border-radius: 10px;
    background-color: var(--white);
}

.banner_img .banner-img-after {
    right: 0;
    height: 90px;
    bottom: 60px;
    position: absolute;
}

F .banner_text h6 {
    font-size: 16px;
    padding: 20px 30px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-radius: 50px 0px 0px 50px;
    background: linear-gradient(90deg, rgba(13, 96, 127, 1) 0%, rgba(13, 97, 127, 0.829) 60%, rgba(13, 97, 127, 0) 100%);
}

.banner_text p {
    width: 90%;
    margin-bottom: 25px;
}

.banner_text {
    z-index: 1;
    position: relative;
    margin-bottom: 50px;
}

.banner_text h1 {
    margin-bottom: 5px;
}

.banner_text h1 span {
    color: var(--themeColor);
}

.banner_text ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.banner_img {
    height: 700px;
}

.banner_img::before {
    right: 0;
    width: 40%;
    content: '';
    height: 100%;
    position: absolute;
    background-image: url(../images/banner-img-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.inner-banner .banner_img {
    height: 550px;
}

.inner-banner .banner_img .banner-img-before {
    bottom: 180px;
}

.inner-banner .banner_img .banner-img-after {
    bottom: -30px;
}



/*banner css end*/

/* banner-bottom-sec */

.banner-bottom-box {
    padding: 50px;
    border-radius: 30px;
    position: relative;
    background-color: var(--themeColor2);
}

.banner-bottom-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    margin: auto;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, rgba(22, 206, 230, 0.24) 0%, rgba(22, 206, 230, 0) 100%);
}

.banner-bottom-text {
    z-index: 1;
    position: relative;
}

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

.banner-bottom-text p {
    width: 90%;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-bottom-img {
    z-index: 1;
    display: flex;
    height: 300px;
    min-height: 100%;
    padding: 0px 30px;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.banner-bottom-img::before {
    right: 0;
    content: '';
    height: 95%;
    width: 470px;
    opacity: 0.1;
    bottom: -10px;
    position: absolute;
    border-radius: 20px;
    background-color: var(--white);
}

.banner-bottom-img img {
    z-index: 1;
    height: 100%;
    position: relative;
    width: fit-content;
    object-fit: contain;
}

section.banner-bottom-sec {
    margin-bottom: -50px;
}

/* banner-bottom-sec */

/* about-sec */

.about-sec {
    padding: 150px 4%;
    background-color: #e6eff2;
}

.about-img {
    width: 100%;
    width: 100%;
    height: 550px;
    min-height: 100%;
    position: relative;
}

.about-img img.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-img img.about-before-img {
    left: -25px;
    width: 381px;
    height: 218px;
    bottom: -50px;
    position: absolute;
    border-radius: 20px;
    object-fit: contain;
    background-color: var(--white);
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0.1);
}

.about-text {
    gap: 20px;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text h2 span {
    color: var(--themeColor);
}

.about-text p {
    color: #7c7c7c;
}

.about-more-text h2 {
    margin-bottom: 10px;
}

.about-more-text p {
    margin-bottom: 20px;
}

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

/* about-sec */

/* book page */


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

.booking-box {
    padding: 50px 0px;
    background-color: transparent;
}

.booking-box h2 {
    font-size: 100px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.booking-box input,
.booking-box select {
    width: 100%;
    height: 70px;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-family: 'Poppins';
    border: 1px solid #c6c6c5;
    background-color: transparent;
}

.booking-box textarea {
    width: 100%;
    height: 200px;
    font-size: 18px;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 45px;
    border: 1px solid #c6c6c5;
    background-color: transparent;
}

.booking-box button {
    width: 100%;
    height: 70px;
    border: none;
    font-size: 25px;
    font-weight: 400;
}

.booking-box button::before {
    height: 80px;
    width: 104%;
    right: -2%;
}

.booking-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23343a40' d='M31.3 192h257.4c28.4 0 42.7 34.5 22.6 54.6L182.6 375.3c-12.5 12.5-32.8 12.5-45.3 0L8.7 246.6C-11.4 226.5 2.9 192 31.3 192z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 30px center;
    background-size: 12px;
    padding-right: 30px;
}

/* book page */

/* service-sec */

.service-sec {
    overflow: hidden;
    padding: 100px 4%;
}

.service-box {
    position: relative;
    margin-bottom: 30px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-text .service-number {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.service-box:hover .service-box-text h4 {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text p {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box:hover .service-box-text .detail-btn {
    color: var(--white);
    transition: ease-in;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.service-box-img {
    z-index: 1;
    width: 90%;
    height: 275px;
    display: block;
    overflow: hidden;
    position: relative;
    transition: ease-in;
    border-radius: 20px;
    transition-duration: 0.5s;
}

.service-number {
    left: 0;
    top: 0px;
    z-index: 1;
    padding: 14px;
    display: flex;
    font-size: 25px;
    position: absolute;
    transition: ease-in;
    align-items: center;
    color: var(--black);
    font-family: 'Oswald';
    justify-content: center;
    transition-duration: 0.5s;
    background-color: var(--white);
    border-radius: 30px 30px 0px 0px;
}

.service-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.service-box-text {
    width: 90%;
    display: block;
    position: relative;
    border-radius: 30px;
    transition: ease-in;
    padding: 80px 20px 40px;
    transition-duration: 0.5s;
    margin: -50px 0px 0px auto;
    background-color: var(--white);
    box-shadow: 0px 0px 45.03px 11.97px rgba(0, 0, 0, 0.13);
}

.service-box-text h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: ease-in;
    overflow: hidden;
    display: -webkit-box;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.service-box-text p {
    overflow: hidden;
    display: -webkit-box;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
}

.service-box-text .detail-btn {
    color: var(--black);
    transition-duration: 0.5s;
    text-transform: uppercase;
    text-decoration: underline;
}

.serviceSlider .slick-slide {
    opacity: 0;
    margin: 0px 20px;
    transition-duration: 0.5s;
}

.serviceSlider .slick-list {
    overflow: visible;
}

.serviceSlider .slick-active {
    opacity: 1;
}

.service-detail-sec .service-box-img {
    width: 97%;
    height: 530px;
}

.service-detail-sec .service-box-text {
    width: 93%;
    margin-top: -90px;
    padding-top: 150px;
}

.service-detail-sec .service-box-text h4 {
    font-size: 50px;
}

.service-detail-sec .service-box-text p {
    font-size: 16px;
    -webkit-line-clamp: unset;
}

.service-detail-sec .service-number {
    width: 90px;
    height: 90px;
    font-weight: 600;
    font-size: 40px;
}

/* service-sec */

/* bookkeeping-sec */

.bookkeeping-sec {
    padding: 50px 4% 0px;
}

.bookkeeping-main0-box {
    padding: 60px 85px;
    position: relative;
    border-radius: 20px;
    background-color: var(--themeColor2);
}

.bookkeeping-text {
    z-index: 1;
    position: relative;
}

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

.bookkeeping-text p {
    opacity: 0.7;
    color: var(--white);
    margin-bottom: 20px;
}

.bookkeeping-img {
    bottom: 0;
    z-index: 1;
    display: flex;
    right: -10px;
    height: 100%;
    position: absolute;
    align-items: flex-end;
    justify-content: flex-end;
}

.bookkeeping-img img {
    height: 120%;
    width: fit-content;
    object-fit: contain;
}



/* bookkeeping-sec */

/* how-it-sec */

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

.how-it-work-box {
    margin-top: 80px;
    text-align: center;
    transition: ease-in;
    border-radius: 20px;
    padding: 0px 30px 30px;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0.1);
}

.how-it-work-box:hover {
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.how-it-work-box:hover * {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.how-it-work-box:hover p {
    opacity: 0.7;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.how-it-work-box .how-it-work-box-icon {
    top: -65px;
    width: 130px;
    height: 130px;
    display: flex;
    border-width: 1px;
    position: relative;
    border-radius: 50%;
    align-items: center;
    border-style: solid;
    transition: ease-in;
    margin: 0px auto -40px;
    justify-content: center;
    transition-duration: 0.5s;
    border-color: var(--white);
    background-color: rgb(22, 205, 230);
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0);
}

.how-it-work-box:hover .how-it-work-box-icon {
    transition: ease-in-out;
    transition-duration: 0.5s;
    box-shadow: -10.607px 10.607px 43px 0px rgba(0, 0, 0, 0.1);
}

.how-it-work-box h4 {
    font-weight: 600;
    margin-bottom: 5px;
    transition: ease-in;
    font-family: 'Poppins';
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.how-it-work-box p {
    font-size: 12px;
    margin-bottom: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.how-it-work-box a {
    font-weight: 600;
    position: relative;
    color: var(--black);
    transition: ease-in;
    font-family: 'Poppins';
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.how-it-work-box a::before {
    left: 0;
    bottom: 0;
    width: 0px;
    height: 1px;
    content: '';
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.how-it-work-box a:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}


/* how-it-sec */

/* driven-sec */

.driven-sec {
    padding: 0px 4%;
}

.driven-text h2 {
    margin-bottom: 10px;
}

.driven-text h2 span {
    color: var(--themeColor);
}

.driven-text {
    z-index: 2;
    padding: 30px 0px;
    position: relative;
}

.driven-text::before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 124%;
    content: '';
    height: 230px;
    position: absolute;
    background-color: var(--white);
    border-radius: 0px 0px 20px 0px;
}

.driven-text p {
    margin-bottom: 20px;
}

.driven-text ul {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.driven-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.driven-text ul li h6 {
    font-size: 18px;
}

.driven-text ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.driven-img {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 100%;
}

.driven-img img.driven-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-position: right;
}

.driven-img img.driven-img-before {
    width: 330px;
    right: -50px;
    height: 200px;
    bottom: -60px;
    max-width: 70%;
    position: absolute;
    object-fit: contain;
}

/* driven-sec */

/* Why Clients Says About Us Start */

.why-client-says-about-us-sec {
    padding: 100px 4%;
}

.why-client-says-about-us-heading h2 span {
    display: block;
}

.why-client-says-about-us-heading h2 label {
    color: #45722c;
}

.why-client-says-about-us-text p {
    margin-bottom: 18px;
}

.why-client-says-about-us-text {
    margin-left: 100px;
}

.why-client-says-about-us-text a {
    font-size: 14px;
}

.why-client-says-about-us-text a span {
    width: 37px;
    height: 37px;
}

.why-client-says-about-us-text p {
    margin-bottom: 18px;
    color: #4f4b47;
    font-size: 14px;
    transition-duration: 0.5s;
}

.why-client-says-about-us-head-row {
    border-bottom: 1.8px solid #9f9388;
    transition: ease-in-out;
    transition-duration: 0.5s;
    padding-bottom: 30px;
}

.why-client-says-about-us-heading h2 {
    margin-bottom: 0;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-silder .slick-active {
    transition: ease-in-out;
    opacity: 1.5;
}

.why-client-says-silder-head h2 {
    font-size: 25px;
    margin-bottom: 0;
    font-weight: 600;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-silder-head p {
    color: #433e3c;
    font-size: 14px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-silder-text {
    margin-top: 35px;
    text-align: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-quote {
    top: 0px;
    left: 10px;
    width: 65px;
    height: 65px;
    display: flex;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: ease-in-out;
    background: var(--white);
    transition-duration: 0.5s;
    border: 1px solid #cecece;
}

.why-client-says-silder-text p {
    font-size: 14px;
    color: #423f3d;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 10px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-silder-text i {
    color: #000;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-silder-head {
    margin-left: 200px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.why-client-says-silder-items {
    margin-top: 50px;
    padding: 25px 30px;
    position: relative;
    border-radius: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    border: 1px solid #e7e7e7;
}

.why-client-says-quote img {
    width: 29px;
    height: 23px;
    object-fit: contain;
    animation: floatBadge 5s ease-in-out infinite;
}

.why-client-says-silder .slick-slide {
    margin: 10px 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.why-client-says-silder-items:hover .why-client-says-quote,
.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-quote {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.why-client-says-silder-items:hover,
.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-items {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.why-client-says-silder-items:hover .why-client-says-quote img,
.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-quote img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7498%) hue-rotate(288deg) brightness(111%) contrast(100%);
}

.why-client-says-silder-items:hover .why-client-says-silder-head h2,
.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-head h2 {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
}

.why-client-says-silder-items:hover .why-client-says-silder-head p,
.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-head p {
    opacity: 0.7;
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

.why-client-says-silder-items:hover .why-client-says-silder-text p,
.why-client-says-silder .slick-slide.slick-current.slick-active.slick-center .why-client-says-silder-text p {
    opacity: 0.7;
    transition: ease-in;
    color: var(--white);
    transition-duration: 0.5s;
}

.why-client-says-silder-items::before {
    top: -1px;
    left: -1px;
    width: 150px;
    content: "";
    height: 120px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-image: url(../images/review-box-before.png);
    background-repeat: no-repeat;
    background-size: contain;
}


/* Why Clients Says About Us Ends */

/* Contact Us Page Css Starts */

/*.getintouch h3 {
    font-family: 'Rajdhani-SemiBold';
    font-size: 62px;
    line-height: 70px;
    color: #070707;
    font-weight: 100;
    margin: 0 0 28px;
    animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) infinite both;
}*/
span.sp {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

span.purple {
    font-size: 48px;
    color: #32a7f2;
    font-family: 'Poppins';
    line-height: 45px;
}

.get-detail h4 {
    font-size: 47px;
    font-weight: 500;
    color: #0b0c13;
    line-height: 50px;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

span.black {
    font-size: 19px;
    font-family: 'Poppins';
    line-height: 19px;
    color: #333333;
}

.time-detail {
    margin-top: 10px;
}

.time-detail h5 {
    font-size: 17px;
    font-family: 'Poppins';
    color: #3f3e43;
    line-height: 17px;
    /* margin: 0 0 13px; */
}

.time-detail h6 {
    font-size: 17px;
    font-family: 'Poppins';
    color: #3f3e43;
    margin: 0 0 12px;
    line-height: 17px;
}

.cont-pg-input input {
    width: 100%;
    height: 60px;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    color: var(--black);
    margin-bottom: 25px;
    background: #ebebeb;
    font-family: 'Poppins', serif;
}

.cont-pg-input input::placeholder {
    color: #3f3e43;
    font-family: 'Poppins', serif;
    font-size: 17px;
}

.cont-pg-input textarea {
    width: 100%;
    height: 160px;
    border: none;
    padding: 20px;
    border-radius: 5px;
    background: #ebebeb;
    margin-bottom: 35px;
    resize: none;
}

.cont-pg-input textarea::placeholder {
    color: #3f3e43;
    font-family: 'Poppins', serif;
    font-size: 17px;
}

.cont-pg-input {
    margin: 0 auto;
    text-align: center;
}

.get-detail h5 {
    font-size: 34px;
    line-height: 40px;
    font-family: 'Poppins';
    color: #32a7f2;
}

.get-detail img {
    border-radius: 100px;
    height: 100px;
    width: 100px;
}

span.purple a {
    font-size: 48px;
    color: #32a7f2;
}

.time-detail h5 {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    margin: 0 0 10px 0;
}

.get-detail {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.getintouch-user {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont-pg-input button {
    width: 100%;
    border: none;
    height: 70px;
    font-size: 25px;
}

.getintouch {
    padding: 100px 0px;
}

/* Contact Us Page Css Ends */

/* Footer Start */

.footer-sec {
    overflow: hidden;
    background: var(--black);
}

.footer-sec .container-fluid {
    padding: 0;
}

.footer-social-link {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #363636;
}

.footer-number a:hover {
    letter-spacing: 2px;
    color: var(--themeColor);

    transition: 0.5s;
}

.footer-social-link ul li a {
    width: 45px;
    height: 45px;
    opacity: 0.5;
    display: flex;
    font-size: 15px;
    transition: 0.5s;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.footer-social-link ul li {
    margin-bottom: 40px;
}

.footer-social-link ul li a:hover {
    opacity: 1;
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
    background-color: var(--white);
}

.footer-social-link ul li:last-child {
    margin: 0 !important;
}

.footer-logo-row {
    padding: 50px 40px;
    border-bottom: 1px solid #363636;
}

.footer-logo a img {
    height: 55px;
    width: fit-content;
    object-fit: contain;
}

.footer-number a {
    width: 100%;
    text-align: end;
    font-size: 40px;
    font-weight: 600;
    transition: 0.5s;
    color: var(--white);
}

.copy-right-row {
    position: relative;
    padding: 20px 0px 20px 35px;
    border-top: 1px solid #363636;
    margin-left: -12px;
}

.copy-right-row::before {
    top: -1px;
    left: 100%;
    height: 1px;
    content: '';
    width: 100vw;
    position: absolute;
    background-color: #363636;
}

.footer-newsletter-row {
    padding: 30px 50px 50px;
}

.footer-newsletter-row h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Poppins';
}

.footer-newsletter-row input {
    width: 100%;
    height: 57px;
    border: none;
    padding: 0 20px;
    border-radius: 50px;
    color: var(--white);
    background: #222222;
}

.footer-newsletter-row input::placeholder {
    border-radius: 8px;

    color: #fff;
}

.footer-newsletter-row form {
    width: 95%;
}

.footer-newsletter-row form {
    position: relative;
}

.footer-newsletter-row form {
    display: flex;

    align-items: center;
}

.footer-newsletter-btn {
    position: absolute;

    right: 0;
}

.footer-newsletter-btn button {
    border: none;
    letter-spacing: 2px;
}

.footer-copy-right-row {
    padding: 25px 20px;
}

.footer-copy-right-row p {
    color: #ffffff;

    font-size: 14px;
}

.footer-quick-links-box {
    width: 80%;
    height: 100%;
    padding-left: 40px;
    padding-top: 100px;
    border-left: 1px solid #363636;
}

.copy-right-row p {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.copy-right-images {
    text-align: center;
}

.footer-quick-links-box h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Poppins';
}

.footer-quick-links-box ul {
    column-count: 2;
}

.footer-quick-links-box ul {
    line-height: 40px;
}

.footer-quick-links-box ul li a {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

/* Footer Ends */



/*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*/

/* PRELOADER STYLES */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader {
    width: 48px;
    height: 48px;
    margin: auto;
    position: relative;
    z-index: 100000;
}

.loader:before {
    content: '';
    width: 48px;
    height: 5px;
    background: #999;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 50%;
    animation: shadow324 0.5s linear infinite;
}

.loader:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--themeColor2);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
    15% {
        border-bottom-right-radius: 3px;
    }

    25% {
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow324 {
    0%, 100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1);
    }
}