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

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

html {
    max-width: 100vw;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #505050;
    --themeColor: #5b8170;
    --themeColor2: #3b5c4d;
    --headingColor: #161a1d;
}

a {
    white-space: initial;
    display: inline-block;
    text-decoration: none;
    color: var(--themeColor2);
}

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: 'FontSpring';
    src: url(../fonts/Fontspring-DEMO-rocgrotesk-bold.otf);
}

@font-face {
    font-family: 'FontSpring-regular';
    src: url(../fonts/Fontspring-DEMO-rocgrotesk-regular.otf);
}

@font-face {
    font-family: 'FontSpring-medium';
    src: url(../fonts/Fontspring-DEMO-rocgrotesk-medium.otf);
}

@font-face {
    font-family: 'nexa-regular';
    src: url(../fonts/nexa-regular.ttf);
}

/***** 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 {
    font-size: 60px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'FontSpring';
}

h2 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--themeColor2);
    text-transform: uppercase;
    font-family: 'FontSpring';
}

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

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

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

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

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

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

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

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

.theme-btn-1 {
    font-size: 14px;
    padding: 17.5px 25px;
    color: var(--white);
    border-radius: 50px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    text-transform: uppercase;
    font-family: 'nexa-regular';
    border: 1px solid var(--themeColor2);
    background-color: var(--themeColor2);
}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
    background-color: var(--themeColor);
    box-shadow: 0px 18px 35px 0px rgba(59, 92, 77, 0.38);
}

.theme-btn-2 {
    font-size: 14px;
    color: var(--white);
    border-radius: 50px;
    padding: 17px 35px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    text-transform: uppercase;
    font-family: 'nexa-regular';
    border: 1px solid var(--themeColor);
    background-color: var(--themeColor);
}

.theme-btn-2:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    border: 1px solid var(--white);
    background-color: var(--themeColor2);
    box-shadow: 0px 18px 35px 0px rgba(59, 92, 77, 0.38);
}

/*header css start */
header {
    position: relative;
    z-index: 9999;
}

.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 ul li i {
    font-size: 12px;
    color: var(--white);
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 20px 15px;
    color: var(--white);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'nexa-regular';
}

.menuSec ul li a::before {
    left: 0;
    bottom: 0;
    width: 0px;
    height: 2px;
    content: '';
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.menuSec ul li a.active::before,
.menuSec ul li a:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #0000007a;
    left: 0px;
    width: 230px;
    backdrop-filter: blur(3px);
    text-align: left;
    top: 45px;
}

.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 {
    color: var(--themeColor) !important;
    background-color: var(--white);
}

.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 {
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 15px 4%;
    position: absolute;
}

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

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

.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(--white);
}

.header-logo {
    height: 65px;
    width: fit-content;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*header css start */
/*banner css start */
.main_slider {
    position: relative;
    padding: 0px 0px 0px 2%;
    /*background-image: url(../images/banner-bg.png);*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main_slider::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.9;
    position: absolute;
    background-color: var(--themeColor);
}

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

.banner_img {
    top: 100px;
    width: 105%;
    height: 850px;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    border-radius: 100px 0px 100px 0px;
}

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

.banner-text-slider {
    left: 0;
    z-index: 1;
    bottom: 100px;
    max-width: 325px;
    padding: 50px 20px;
    position: absolute;
    background-color: var(--white);
    border-radius: 0px 10px 10px 0px;
}

.bannerSlider .slick-slide {
    margin: 0px;
}

.bannerSlider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bannerSlider .slick-dots li {
    width: 40px;
    height: 15px;
    opacity: 0.5;
    border-radius: 10px;
    background-color: var(--themeColor2);
}

.bannerSlider .slick-dots li.slick-active {
    width: 80px;
    opacity: 1;
}

.bannerSlider .slick-dots li button::before {
    display: none;
}

.banner-text-slider-box h4 {
    margin-bottom: 5px;
    color: var(--themeColor);
    text-transform: uppercase;
}

.banner-text-slider-box p {
    margin-bottom: 25px;
    color: var(--textColor);
}

.banner-text-slider-box h6 {
    padding: 10px;
    font-size: 27px;
    color: var(--themeColor);
}

/* Newsletter Popup */
.newsletter-popup {
    padding: 0px;
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--white);
    text-align: left;
}

.newsletter-content h3 {
    color: #000;
    font-size: 40px;
    font-weight: 800;
    /* Bold from image */
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.newsletter-content p {
    color: var(--textColor);
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-content form {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}

.newsletter-content input {
    flex-grow: 1;
    height: 70px;
    width: 100%;
    font-weight: 600;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 70px;
    color: var(--themeColor);
    border: 1px solid #d8dedb;
}

.newsletter-content input::placeholder {
    color: #000;
}

.newsletter-content button {
    width: auto;
    background-color: var(--themeColor2);
    /* Darker green */
    color: var(--white);
    border: none;
    padding: 0 40px;
    height: 55px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-content button:hover {
    background-color: var(--themeColor);
}

.banner_text h6 {
    opacity: 0.8;
    font-size: 14px;
    padding: 15px 30px;
    width: fit-content;
    color: var(--white);
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid var(--white);
}

.bannerImgSlider .slick-slide {
    height: 100%;
    margin: 0px;
}

.bannerImgSlider,
.bannerImgSlider .slick-list,
.bannerImgSlider .slick-track,
.banner-img-slider-box {
    height: 100%;
}

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

.banner_text h1 span {
    display: block;
    font-size: 60px;
}

.banner_text p {
    color: var(--white);
    margin-bottom: 25px;
}

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

.banner_text ul li .theme-btn-2 {
    border: 1px solid var(--white);
    background-color: transparent;
}

.banner_text ul li .theme-btn-2:hover {
    background-color: var(--themeColor2);
}

.home-bottom-space {
    margin-bottom: 150px;
}

/*banner css end*/
.privacy-policy-sec {
    padding: 100px 0px;
}

.privacy-policy-sec .section-heading h5 {
    color: var(--themeColor2);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.privacy-policy-sec .section-heading p {
    color: var(--textColor);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

/* privacy-policy-sec */
/* privacy-policy-sec */
/* inner banner */
section.main_slider.inner-banner {
    display: flex;
    padding: 0px 3%;
    min-height: 450px;
    padding-top: 50px;
    align-items: center;
    justify-content: center;
}

section.main_slider.inner-banner .banner_text {
    text-align: center;
}

/* inner banner */
/* engine-sec */
.engine-sec {
    padding: 0px 4%;
    margin: -1px 0px;
    background-color: var(--themeColor);
}

.engine-sec .section-heading h2 {
    color: var(--white);
}

.engine-sec .section-heading p {
    color: var(--white);
}

.engine-sec .section-heading {
    margin-bottom: 40px;
}

.engine-main-box {
    padding: 40px;
    border-radius: 50px;
    background-color: var(--white);
}

.engine-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    min-height: 100%;
    border-radius: 25px;
}

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

.engine-text {
    gap: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.engine-text h3 {
    color: var(--themeColor2);
    text-transform: uppercase;
}

.engine-text ul {
    gap: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.engine-text ul li span.engine-text-span {
    width: 75px;
    height: 75px;
    display: flex;
    flex-shrink: 0;
    font-size: 25px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: var(--themeColor);
    font-family: 'nexa-regular';
    background-color: #5b817022;
}

.engine-text ul li h4 {
    color: #1e3a34;
    text-transform: uppercase;
}

.engine-text ul li p {
    color: var(--themeColor);
}

/* engine-sec */
/* textSlider */
.textSlider {
    margin-top: 50px;
}

.textSlider .slick-slide {
    opacity: 1;
    margin: 0px 5px;
    width: fit-content !important;
}

.textSlider .slick-track,
.textSlider .slick-list {
    height: fit-content;
}

.slider-text-box {
    padding: 25px 50px;
    transition: ease-in;
    border-radius: 100px;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.slider-text-box h4 {
    color: var(--themeColor2);
    text-transform: uppercase;
}

/* textSlider */
/* different-sec */
.different-sec {
    margin: 0px auto;
    max-width: 1700px;
    position: relative;
    padding: 100px 0px;
    background-color: var(--themeColor);
}

.different-sec .section-heading {
    margin-bottom: 40px;
}

.different-sec .section-heading h2 {
    color: var(--white);
}

.different-sec .section-heading p {
    color: var(--white);
}

.different-sec::before {
    top: 0;
    left: 100%;
    height: 100%;
    content: '';
    width: 100vw;
    position: absolute;
    background-color: var(--themeColor);
}

.different-sec::after {
    top: 0;
    content: '';
    right: 100%;
    height: 100%;
    width: 100vw;
    position: absolute;
    background-color: var(--themeColor);
}

.different-box-img {
    width: 100%;
    height: 425px;
    overflow: hidden;
}

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

.different-box-text {
    height: 425px;
    display: flex;
    padding: 25px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.different-box-text h4 {
    font-size: 35px;
    max-width: 480px;
    position: relative;
    color: var(--white);
    padding-bottom: 10px;
    margin: 0px auto 20px;
    text-transform: uppercase;
}

.different-box-text h4::before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 1px;
    content: '';
    margin: auto;
    opacity: 0.5;
    max-width: 180px;
    position: absolute;
    background-color: var(--white);
}

.different-box-text p {
    color: var(--white);
    margin: 0px auto;
    max-width: 340px;
}

.different-left-box .different-box-img {
    border-radius: 0px 80px 0px 80px;
}

.different-center-box .different-box-img {
    border-radius: 0px 0px 80px 80px;
}

.different-right-box .different-box-img {
    border-radius: 80px 0px 80px 0px;
}

.different-sec .textSlider {
    margin-top: 0px;
}

.different-box-text-2 {
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
    background-color: var(--white);
}

.different-box-text-2 h4 {
    color: var(--themeColor);
    margin-bottom: 10px;
}

.different-box-text-2 p {
    color: var(--headingColor);
    margin-bottom: 10px;
}

.different-box-text-2 h6 {
    font-size: 20px;
    font-weight: 700;
}

.custom-section-space {
    margin-top: 100px;
}

/* different-sec */
/* outcome-sec */
.outcome-sec {
    padding: 100px 4%;
}

.outcome-sec .section-heading {
    margin-bottom: 70px;
}

.outcomes-box {
    top: 0px;
    padding: 25px;
    margin-top: 50px;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.outcomes-box:hover {
    top: -70px;
    border-radius: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    box-shadow: 0px 18px 35px 0px rgba(59, 92, 77, 0.38);
}

.outcomes-box:hover::after {
    right: 0px;
    width: 100%;
    opacity: 0.8;
    height: 100%;
    border-radius: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.outcomes-box:hover .outcomes-box-bg {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.outcomes-box:hover .outcomes-box-icon img {
    transition: ease-in-out;
    transition-duration: 0.5s;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(1118%) hue-rotate(192deg) brightness(117%) contrast(100%);
}

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

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

.outcomes-box::after {
    top: 0;
    width: 8px;
    height: 8px;
    content: '';
    right: -3.5px;
    border-radius: 50%;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.outcomes-box::before {
    top: 0;
    right: 0px;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: #eaece7;
}

.outcomes-box .outcomes-box-bg {
    top: 0;
    right: 0;
    opacity: 0;
    width: 8px;
    height: 8px;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
}

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

.outcomes-box-icon {
    z-index: 1;
    width: 26px;
    height: 26px;
    position: relative;
    transition: ease-in;
    margin-bottom: 25px;
    transition-duration: 0.5s;
}

.outcomes-box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: ease-in;
    transition-duration: 0.5s;
    filter: brightness(0) saturate(100%) invert(49%) sepia(11%) saturate(834%) hue-rotate(101deg) brightness(93%) contrast(88%);
}

.outcomes-box h4 {
    z-index: 1;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    transition: ease-in;
    margin-bottom: 20px;
    color: var(--themeColor);
    text-transform: uppercase;
    transition-duration: 0.5s;
}

.outcomes-box p {
    z-index: 1;
    font-size: 16px;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

/* outcome-sec */
/* about-heading-sec */
.about-heading-sec {
    padding: 0px 0px 20px;
}

.about-heading-sec.inner-about-heading-sec {
    padding: 100px 0px 20px;
}

.about-heading-sec .section-heading h5 {
    font-size: 18px;
    letter-spacing: 3.5px;
    color: var(--themeColor2);
    text-transform: uppercase;
    font-family: 'nexa-regular';
}

.about-text-sec {
    padding: 50px 0px 100px;
    background-color: var(--themeColor);
}

.about-text-sec .section-heading p {
    color: var(--white);
    margin-bottom: 25px;
}

.about-text-sec .section-heading h4 {
    font-size: 40px;
    color: var(--white);
    text-transform: uppercase;
}

.about-img {
    padding: 40px;
    margin-top: 40px;
    border-radius: 50px;
    background-image: url(../images/diverse-couple-looking-at-photos-they-made-2026-01-07-06-58-47-utc.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-img-box {
    max-width: 100%;
    margin: 0px auto;
    text-align: center;
    border-radius: 40px;
    padding: 100px 25px;
    backdrop-filter: blur(7px);
    background-color: #ffffffa6;
}

.about-img-box h3 {
    font-size: 27px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--themeColor2);
}

.about-img-box h3 span {
    display: block;
    font-size: 35px;
}

.about-img-box p {
    margin-bottom: 25px;
}

/* about-heading-sec */
/* blog-sec */
.blog-sec {
    padding: 100px 4% 80px;
    background-color: var(--themeColor);
}

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

.blog-sec .section-heading h2 {
    color: var(--white);
}

.blog-sec .section-heading p {
    color: var(--white);
}

.blog-heading h2 {
    margin-bottom: 10px;
}

.blog-heading p {
    width: 60%;
    margin: auto;
}

.blog-box {
    position: relative;
    margin-bottom: 20px;
}

.blog-box a.blog-box-img {
    width: 100%;
    height: 380px;
}

.blog-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.blog-box h5 {
    font-size: 14px;
    margin-top: 25px;
    padding: 15px 10px;
    border-radius: 50px;
    max-width: fit-content;
    color: var(--themeColor);
    text-transform: uppercase;
    font-family: 'nexa-regular';
    background-color: var(--white);
}

.blog-box h4 {
    font-size: 20px;
    margin-top: 20px;
    overflow: hidden;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    font-family: 'FontSpring-medium';
}

.blog-box p {
    margin-top: 15px;
    overflow: hidden;
    min-height: 75px;
    color: var(--white);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-box .theme-btn-1 {
    padding: 17px 40px;
}

/* blog-sec */
/* how-it-work-sec */
.how-it-work-sec {
    padding: 100px 0% 0px;
}

.how-it-work-main-box {
    padding: 20px;
    position: relative;
}

.how-it-work-main-box::before {
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    content: '';
    height: 280px;
    position: absolute;
    border-radius: 10px;
    background-color: var(--themeColor);
}

.how-it-work-box {
    z-index: 1;
    display: flex;
    padding: 20px;
    overflow: hidden;
    min-height: 310px;
    position: relative;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.how-it-work-box span.how-it-work-box-span {
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    margin-bottom: 20px;
    transition: ease-in;
    justify-content: center;
    transition-duration: 0.5s;
    font-family: 'nexa-regular';
    border: 20px solid var(--white);
    background-color: var(--themeColor);
}

.how-it-work-box:hover span.how-it-work-box-span {
    border: 0px;
    width: 30px;
    height: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: transparent;
}

.how-it-work-box:hover {
    border-radius: 10px;
    box-shadow: 7.641px 10.517px 35px 0px rgba(0, 0, 0, 0.25);
}

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

.how-it-work-box-img {
    top: 0;
    left: 0px;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
}

.how-it-work-box-img img {
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-it-work-box-img::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, rgba(91, 129, 112, 1) 0%, rgba(91, 129, 112, 1) 17%, rgba(91, 129, 112, 0.87) 100%);
}

.how-it-work-box h5 {
    height: 53px;
    font-size: 18px;
    overflow: hidden;
    position: relative;
    color: var(--white);
    margin-bottom: 15px;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
}

.how-it-work-box p {
    min-height: 50px;
    color: var(--white);
}

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

.how-it-work-box:hover h5::before {
    width: 0px;
    transition: ease-in;
    transition-duration: 0.5s;
}

/* how-it-work-sec */
/* join-sec */
.join-sec {
    padding: 100px 4%;
}

.join-text {
    border-radius: 30px;
    padding: 100px 40px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0px 0px 17px -4px rgba(0, 0, 0, 0.56);
}

.join-text h6 {
    font-weight: 600;
    min-width: 200px;
    width: fit-content;
    text-align: center;
    padding: 12px 35px;
    position: relative;
    margin-bottom: 40px;
    border-radius: 100px;
    background-color: #f1f1f1;
}

.join-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.join-text a {
    color: var(--themeColor);
    font-style: italic;
    text-decoration: underline;
}

.join-text form input {
    width: 100%;
    height: 60px;
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 15px;
    border-radius: 100px;
    font-family: 'Montserrat';
    background-color: var(--white);
    border: 1px solid var(--themeColor2);
}

.join-text form input::placeholder {
    font-weight: 600;
    color: var(--themeColor);
    text-transform: uppercase;
}

.join-text ul {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}

.join-text .form-group {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
}

.join-text .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.join-text .form-group label {
    cursor: pointer;
    color: #000;
    display: flex;
    font-weight: 600;
    position: relative;
    align-items: center;
    justify-content: center;
}

.join-text .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--themeColor2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 0;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.join-text .form-group input:checked+label::before {
    background-color: var(--themeColor2);
}

.join-text .form-group input:checked+label::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 8px;
    width: 5px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.join-text ul li a {
    font-style: normal;
}

.join-text form button {
    width: 100%;
    height: 55px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    border-radius: 100px;
    background-color: var(--themeColor);
    border: 1px solid var(--themeColor2);
}

.join-img {
    width: 100%;
    height: 600px;
    display: flex;
    min-height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.join-img img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* join-sec */
/* togethter-sec */
.togethter-sec {
    padding: 100px 4%;
}

.togethter-box {
    gap: 20px;
    padding: 50px;
    display: flex;
    overflow: hidden;
    min-height: 550px;
    position: relative;
    text-align: center;
    border-radius: 50px;
    border-radius: 50px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(91, 129, 112);
    box-shadow: 0px 18px 35px 0px rgba(59, 92, 77, 0.38);
    background-image: url(../images/together-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.togethter-box h2 {
    font-size: 45px;
}

.togethter-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--themeColor);
}

.togethter-box * {
    z-index: 1;
    max-width: 1200px;
    position: relative;
    color: var(--white);
}

.togethter-box .theme-btn-1 {
    padding: 17.5px 40px;
}

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

.booking-box {
    padding: 50px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}

.booking-box h2 {
    font-size: 70px;
    text-align: center;
    margin-bottom: 25px;
}

.booking-box input,
.booking-box select {
    width: 100%;
    height: 80px;
    font-weight: 600;
    padding: 15px 25px;
    margin-bottom: 25px;
    border-radius: 70px;
    color: var(--black);
    border: 1px solid #d8dedb;
}

.booking-box input::placeholder {
    text-transform: capitalize;
}

.booking-box textarea::placeholder {
    text-transform: capitalize;
}

.booking-box textarea {
    width: 100%;
    height: 200px;
    font-weight: 600;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 25px;
    color: var(--themeColor);
    border: 1px solid #d8dedb;
}

.booking-box button {
    width: 100%;
    height: 60px;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    background-color: #22252d;
}

/* booking-sec */
/* inner-use-cases-sec */
.inner-use-cases-sec {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* inner-use-cases-sec */
/* Inner Testimonial */
section.testimonial-sec.inn-testimonial .testi-text {
    z-index: 0;
    border: unset;
    transition: 0.5s;
    border-radius: 10px;
    padding: 29px 20px;
    background-color: var(--themeColor);
}

.testi-text:after {
    bottom: -70px;
    right: 40px;
    z-index: -2;
    transition: 0.5s;
}

section.testimonial-sec.inn-testimonial .testi-text p {
    margin: 10px 0;
    color: var(--white);
}

section.testimonial-sec.inn-testimonial ul.test-profile h4 {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    color: var(--white);
}

section.testimonial-sec.inn-testimonial ul.test-profile h6 {
    font-size: 16px;
    color: var(--white);
    text-transform: capitalize;
    margin: 0;
}

section.testimonial-sec.inn-testimonial ul.test-profile img {
    width: 70px;
    height: 70px;
}

section.testimonial-sec.inn-testimonial ul.test-profile {
    gap: 10px;
}

section.testimonial-sec.inn-testimonial ul.test-profile {
    margin: 0;
}

section.inn-testimonial .testi-text:hover,
section.inn-testimonial .testi-text:hover:after {
    background: var(--themeColor2);
}

section.inn-testimonial .testi-text:hover * {
    color: #fff;
}

/* Testimonial Section Start */
.testimonial-sec {
    padding: 100px 0px;
}

.qouma img {
    width: auto;
    filter: brightness(0) saturate(100%) invert(77%) sepia(69%) saturate(2271%) hue-rotate(205deg) brightness(93%) contrast(89%);
}

ul.test-profile img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 100px;
    /* border: 2px solid #ba94e1; */
    padding: 5px;
}

.testi-text {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    position: relative;
    border: 1px solid #7676763d;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
    border-radius: 6px;
}

.testi-text p {
    line-height: 32px;
    font-size: 18px;
    margin: 0;
}

.testi-text:after {
    position: absolute;
    content: '';
    width: 75px;
    height: 41px;
    background: var(--themeColor);
    left: 10%;
    bottom: -23px;
    z-index: 0;
    clip-path: polygon(0 0, 21% 100%, 100% 0);
}

.testi-head * {
    color: #fff;
}

ul.test-profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
}

ul.test-profile h4 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

ul.star {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

ul.star i {
    color: var(--white);
}

.testi-slider .slick-slide {
    opacity: 1;
}

.qouma {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.testi-slider .slick-prev:before {
    position: absolute;
    content: '\f177';
    width: 50px;
    height: 50px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 2;
    font-size: 24px;
    font-family: "Font Awesome 6 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.testi-slider .slick-next:before {
    position: absolute;
    content: '\f178';
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50px;
    top: 0;
    left: 0;
    color: #fff;
    border: 2px solid #ffffff;
    z-index: 2;
    font-size: 24px;
    font-family: "Font Awesome 6 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.testi-slider .slick-prev {
    left: -35px;
    z-index: 9;
}

.testi-slider .slick-next {
    right: 0;
    z-index: 9;
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 30%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.testi-box {
    width: 96%;
    margin: 0 auto 45px;
}

section.testimonial-sec .row {
    align-items: center;
}

/* pagination */
.pagination {
    gap: 14px;
    display: flex;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
}

.pagination .page-number {
    width: 50px;
    height: 50px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    border-radius: 0px;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}

.pagination .page-number:hover {
    background-color: var(--themeColor);
    color: #fff;
    border-color: var(--themeColor);
}

.pagination .page-number.active {
    background-color: var(--themeColor);
    color: #fff;
    border: none;
}

.pagination .page-number.next {
    font-weight: bold;
}

/* pagination */
/* Testimonial Section End */
/* contact sec */
.map iframe {
    width: 100%;
    height: 500px;
    filter: brightness(0.5);
}

.contact-frm h4 {
    font-size: 31px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.contact-frm input,
.contact-frm select {
    border: 0;
    border-bottom: 1px solid var(--white);
    width: 100%;
    margin: 0 0 40px;
    padding: 0 0 16px;
    outline: 0;
    background: transparent;
    font-size: 15px;
    color: #ffffff;
}

.contact-frm .select-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-frm .select-box i {
    top: 15px;
    right: 20px;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
    pointer-events: none;
    font-size: 14px;
}

.contact-frm select option {
    color: #000;
}

.contact-frm input::placeholder {
    color: #ffffff;
    font-size: 15px;
}

.contact-frm button {
    background: #ffffff;
    color: #403a34;
    border: 0;
    border-radius: 5px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 53px;
    margin-top: 14px;
}

.main0body .footer-top-section {
    display: none;
}

.ctct-detl {
    min-height: 100%;
    padding: 61px 40px;
    position: relative;
    background: var(--themeColor);
    box-shadow: 0px 0px 49px 0px rgba(65, 65, 65, 0.14);
}

.ctct-detl ul li {
    display: inline-block;
}

.ctct-detl ul {
    display: flex;
    align-items: center;
    line-height: 30px;
    margin-bottom: 26px;
}

.ctct-detl ul li img {
    margin: 0 26px 0 0;
}

.ctct-detl ul li a {
    font-size: 14px;
    color: #ffffff;
}

.ctct-detl ul li span {
    display: block;
    text-align: center;
}

.col-12 .input-group.agb::before {
    position: absolute;
    top: 0;
    right: 40px;
    height: 100%;
    z-index: 1;
    width: 15px;
    content: '';
    background-image: url(../images/ARROW.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.contact-frm {
    padding: 71px 40px;
    background: var(--themeColor2);
    position: relative;
    width: 104%;
    box-shadow: 0px 0px 49px 0px rgba(65, 65, 65, 0.14);
}

.cont-inner {
    width: 80%;
    margin: 0 auto;
    margin-top: -210px;
    z-index: 999;
    position: relative;
}

.map {
    z-index: -1;
}

section.contact-sec {
    padding: 100px 0;
}

.ctct-detl h4 {
    font-size: 31px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 58px;
    text-transform: uppercase;
}

/* contact sec */
/* team-sec */
.team-sec {
    padding: 100px 4%;
}

.team-box {
    margin-top: 80px;
}

.team-box:hover .team-box-img img {
    transform: scale(1.2);
    transition: ease-in;
    transition-duration: 0.5s;
}

.team-box ul {
    display: flex;
    margin-top: 25px;
    align-items: baseline;
    justify-content: space-between;
}

.team-box ul li h3 {
    font-size: 24px;
}

.team-box ul li h3 span {
    font-size: 19px;
    color: #5f5f5f;
    font-style: italic;
}

.team-box ul li i {
    color: #ffc107;
}

.team-box-img {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

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

.team-box-img h5 {
    top: 20px;
    left: 25px;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 25px;
    width: fit-content;
    position: absolute;
    border-radius: 100px;
    background-color: #fff;
}

/* team-sec */
/* blog detail sec */
/* blog-detail */
.blog-detail-sec {
    padding: 100px 4% 80px;
}

.blog-detrail-txt .blog-box-img {
    height: 650px;
    position: relative;
}

.blog-detrail-txt h3 {
    font-size: 30px;
    font-weight: 300;
    margin-top: 25px;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px dashed #e2ddd7;
}

.blog-box-img h3 {
    top: 0;
    right: 25px;
    color: #fff;
    border: none;
    font-size: 22px;
    font-weight: 600;
    line-height: 25px;
    position: absolute;
    text-align: center;
    padding: 20px 15px 15px;
    font-family: 'Montserrat';
    background-color: var(--themeColor);
}

.blog-detrail-txt p {
    margin-bottom: 15px;
}

.blog-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* blog-detail */
/* blog page */
.blog-box-2 .blog-box-2-text {
    width: 100%;
}

/* blog page */
/* blog detail sec */
/* who-this-help-sec */
.who-this-help-sec {
    padding: 100px 0px;
}

.who-this-help-sec .different-box-text-2 {
    background-color: var(--themeColor2);
}

.who-this-help-sec .different-box-text-2 h4 {
    color: var(--white);
}

.who-this-help-sec .different-box-text-2 p {
    color: var(--white);
}

.who-this-help-sec .different-box-text-2 h6 {
    color: var(--white);
}

.who-this-help-sec .col-xl-2 {
    width: 20%;
}

section.engine-sec.home-engine-sec {
    padding: 100px 4%;
}

/* who-this-help-sec */
/*footer start*/
footer {
    background-color: var(--themeColor2);
}

footer ul.footer-contact-ul li i {
    text-align: center;
    font-size: 40px;
    color: #fff;
}

.footer-txt {
    margin-top: 20px;
}

.footer-txt-tw.wow.fadeInRight.text-end {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-txt-tw ul {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-txt-tw ul li a {
    color: var(--white);
}

footer ul.footer-contact-ul li h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 15px;
    font-weight: 600;
}

footer span {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
}

footer .footer-contact-ul a {
    color: #fff;
}

footer ul.footer-contact-ul {
    display: flex;
    padding: 30px 15px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

ul.footer-contact-ul.bord {
    min-height: 100%;
    border-left: 1px solid #4f6d5f;
    border-right: 1px solid #4f6d5f;
}

ul.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #fff; */
    /* padding: 7px 0px; */
    margin-bottom: 6px;
    position: relative;
    margin-top: 80px;
    padding-top: 15px;
}

ul.footer-link li a {
    color: #FFF;
    font-size: 14px;
    /* font-family: 'BlenderTrial'; */
    font-weight: 400;
    font-family: 'Montserrat';
    font-weight: 600;
    text-transform: uppercase;
}

ul.social-icons li i {
    font-size: 20px;
    color: #000;
}

ul.social-icons {
    display: flex;
    padding-top: 60px;
    margin-bottom: 0px;
    position: relative;
}

ul.social-icons:before {
    position: absolute;
    width: 167vh;
    left: -16px;
    height: 1px;
    background-color: #00000026;
    top: 35px;
    content: '';
}

.footer-links-2:before {
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0;
    width: 100%;
    content: '';
    height: 1px;
    margin: auto;
    position: absolute;
    background-color: #00000026;
}

ul.social-icons li {
    padding: 0px 21px;
}

.footer-links-2 {
    padding: 20px 30px;
    margin-top: 20px;
    position: relative;
    min-height: 130px;
    display: flex;
    text-align: center;
    background-color: var(--white);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.footer-txt p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #fff;
    /* font-family: 'BlenderTrial'; */
    /* margin-top: 30px; */
    /* text-align: center; */
}

.footer-links-2 .row {
    align-items: center;
}

ul.footer-link::before {
    left: 0;
    top: -49px;
    width: 100%;
    content: '';
    height: 40px;
    position: absolute;
    background-color: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

ul.footer-link li {
    padding: 0px 25px;
}

ul.bord li i.fas.fa-phone-alt {
    transform: rotate(90deg);
}

.footer-links-2 img {
    width: 70px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    filter: brightness(0) saturate(100%) invert(57%) sepia(4%) saturate(2395%) hue-rotate(101deg) brightness(80%) contrast(81%);
}

.footer-social-icon {
    top: 15px;
    display: flex;
    margin-top: -40px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.footer-social-icon ul {
    gap: 20px;
    display: flex;
    align-items: center;
}

.footer-social-icon ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 14px;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor2);
}

.logo-footer {
    z-index: 1;
    margin: 0px auto;
    max-width: 370px;
    position: relative;
    background-color: var(--white);
}

/*footer end*/

.slicknav_nav a:hover {
    background-color: var(--themeColor2);
}

.testi-text-scroll {
    height: 170px;
    overflow-y: scroll;
}

.testi-text-scroll::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.testi-text-scroll::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 100px;
}

.testi-box:hover .testi-text-scroll::-webkit-scrollbar-thumb {
    background-color: var(--white);
}

.testi-text-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 10px var(--headingColor);
}



/*Media Query Start*/

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

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

    .different-box-text-2 {
        padding: 15px;
        min-height: 95%;
    }

    .who-this-help-sec {
        padding: 80px 0px;
    }

    .different-sec {
        padding: 80px 0px;
    }

    .different-box-text h4 {
        font-size: 25px;
    }

    .how-it-work-sec {
        padding-top: 80px;
    }

    .togethter-sec {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .togethter-sec {
        padding: 80px 3%;
    }


    .about-text-sec {
        padding: 40px 0px 80px;
    }

    .about-heading-sec.inner-about-heading-sec {
        padding: 80px 0px 10px;
    }

    .contact-frm {
        width: 105%;
    }

    .ctct-detl {
        padding: 60px 20px;
    }

    .ctct-detl ul li:first-child {
        flex-shrink: 0;
    }

    .ctct-detl ul li:first-child {
        width: 40px;
        margin: 0 20px 0 0;
    }

    h1 {
        font-size: 40px;
    }

    .banner_text h1 span {
        font-size: 50px;
    }

    .banner_text p {
        margin-bottom: 15px;
    }

    section.engine-sec.home-engine-sec {
        padding: 80px 0px;
    }

    .blog-sec {
        padding: 80px 0px;
    }

    .blog-detail-sec {
        padding: 80px 0px;
    }


}

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

    .different-box-text-2 {
        padding: 15px;
        min-height: 95%;
    }

    .who-this-help-sec {
        padding: 70px 0px;
    }

    .different-sec {
        padding: 70px 0px;
    }

    .different-box-text h4 {
        font-size: 25px;
    }

    .how-it-work-sec {
        padding-top: 70px;
    }

    .togethter-sec {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .togethter-sec {
        padding: 70px 3%;
    }


    .about-text-sec {
        padding: 40px 0px 70px;
    }

    .about-heading-sec.inner-about-heading-sec {
        padding: 70px 0px 10px;
    }

    .contact-frm {
        width: 105%;
    }

    .ctct-detl {
        padding: 60px 20px;
    }

    .ctct-detl ul li:first-child {
        flex-shrink: 0;
    }

    .ctct-detl ul li:first-child {
        width: 40px;
        margin: 0 20px 0 0;
    }

    h1 {
        font-size: 40px;
    }

    .banner_text h1 span {
        font-size: 50px;
    }

    .banner_text p {
        margin-bottom: 15px;
    }

    section.engine-sec.home-engine-sec {
        padding: 70px 0px;
    }

    section.engine-sec.home-engine-sec {
        padding: 70px 0px;
    }

    .who-this-help-sec .col-xl-2 {
        width: 33.3%;
    }

    .blog-sec {
        padding: 70px 0px;
    }

    .blog-detail-sec {
        padding: 70px 0px;
    }

    .blog-detrail-txt .blog-box-img {
        height: 500px;
    }



}

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

    h1 {
        font-size: 34px;
    }

    .banner_text h1 span {
        font-size: 35px;
    }

    .menuSec ul li a {
        font-size: 12px;
        padding: 20px 4px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    .banner-text-slider {
        max-width: 300px;
        padding: 25px 10px;
    }

    .about-heading-sec {
        padding: 0px 0px 0px;
    }

    .about-img {
        padding: 20px;
        margin-top: 20px;
    }

    section.engine-sec.home-engine-sec {
        padding: 40px 4%;
    }

    .about-text-sec {
        padding: 40px 0px 40px;
    }

    .engine-main-box {
        padding: 20px;
        border-radius: 25px;
    }

    .engine-text h3 {
        font-size: 25px;
    }

    .engine-text ul li span.engine-text-span {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .engine-text ul li span.engine-text-span {
        border-radius: 10px;
    }

    .engine-text ul li h4 {
        font-size: 16px;
    }

    .engine-text ul li p {
        font-size: 12px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    .who-this-help-sec .col-xl-2 {
        width: 50%;
    }

    .different-box-text-2 {
        min-height: 93%;
    }

    h2 {
        font-size: 40px;
    }

    .different-sec {
        padding: 60px 0px;
    }

    .different-sec {
        justify-content: center;
    }

    .different-box-img {
        height: 350px;
    }

    .different-box-text {
        height: 350px;
    }

    .different-box-text h4 {
        font-size: 20px;
    }

    .how-it-work-main-box::before {
        height: 80%;
    }

    .togethter-sec {
        padding: 60px 1%;
    }

    .togethter-box h2 {
        font-size: 30px;
    }

    .togethter-box {
        min-height: 350px;
    }

    .togethter-box h2 br {
        display: none;
    }

    footer .footer-contact-ul a {
        font-size: 12px;
    }

    footer ul.footer-contact-ul li i {
        font-size: 20px;
    }

    footer ul.footer-contact-ul {
        padding: 20px 0px;
    }

    ul.footer-contact-ul.bord {
        min-height: 100%;
    }

    .about-heading-sec.inner-about-heading-sec {
        padding: 50px 0px 5px;
    }

    .slider-text-box {
        padding: 15px 30px;
    }

    .slider-text-box h4 {
        font-size: 18px;
    }

    .engine-img {
        height: 300px;
    }

    .contact-frm {
        width: 106%;
        padding: 30px 20px;
    }

    .ctct-detl {
        padding: 27px 15px;
    }

    .ctct-detl h4 {
        font-size: 25px;
    }

    .contact-frm h4 {
        font-size: 25px;
        margin-bottom: 47px;
    }

    .ctct-detl ul li:first-child {
        flex-shrink: 0;
    }

    .ctct-detl ul li:first-child img {
        width: 30px;
    }

    .different-box {
        display: flex;
        align-items: center;
    }

    .different-box-text,
    .different-box-img {
        width: 50%;
    }

    .how-it-work-sec .section-heading {
        text-align: center;
        margin-bottom: -50px;
    }

    .different-center-box .different-box-img {
        border-radius: 0px 80px 80px 0px;
    }

    .blog-sec {
        padding: 60px 0px;
    }

    .blog-detail-sec {
        padding: 60px 0px;
    }

    .blog-detrail-txt h3 {
        font-size: 25px;
        margin-top: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .blog-detrail-txt p {
        margin-bottom: 10px;
    }

    .blog-detrail-txt .blog-box-img {
        height: 450px;
    }

}

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

    .banner_text h1 span {
        font-size: 40px;
    }

    h1 {
        font-size: 36px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    p {
        font-size: 12px;
    }

    .theme-btn-2 {
        font-size: 12px;
        padding: 10px 20px;
    }

    .banner_img {
        height: 550px;
    }

    .theme-btn-1 {
        font-size: 12px;
        padding: 10px 18px;
    }

    .menuSection {
        z-index: 1;
        position: relative;
        padding: 65px 4% 15px;
        background: var(--themeColor2);
    }

    .banner_text {
        margin-top: 40px;
    }

    .banner_text h6 {
        font-size: 12px;
        padding: 10px 20px;
        margin-bottom: 10px;
    }

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

    .banner_img {
        top: 40px;
        border-radius: 30px 0px 30px 0px;
    }

    .banner-text-slider {
        bottom: 40px;
        padding: 20px 15px;
    }

    .home-bottom-space {
        margin-bottom: 100px;
    }

    h2 {
        font-size: 30px;
    }

    .section-heading h2 br {
        display: none;
    }

    .about-heading-sec .section-heading h5 {
        font-size: 14px;
    }

    .about-heading-sec {
        padding: 0px 0px 0px;
    }

    .section-heading p {
        width: 100%;
    }

    .about-text-sec {
        padding: 40px 0px;
    }

    .about-img {
        padding: 20px;
        margin-top: 10px;
        border-radius: 30px;
    }

    .about-img-box {
        padding: 40px 15px;
        border-radius: 20px;
    }

    .about-img-box h3 span {
        font-size: 25px;
    }

    section.engine-sec.home-engine-sec {
        padding: 0px 1% 40px;
    }

    .engine-main-box {
        padding: 20px;
        border-radius: 20px;
    }

    h3 {
        font-size: 20px;
    }

    .engine-text ul {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .engine-text ul li span.engine-text-span {
        width: 55px;
        height: 55px;
        font-size: 17px;
        border-radius: 10px;
    }

    h4 {
        font-size: 18px;
    }

    .engine-img {
        height: 340px;
        border-radius: 15px;
    }

    .engine-text {
        margin-bottom: 20px;
    }

    .who-this-help-sec .col-xl-2 {
        width: 100%;
    }

    .who-this-help-sec {
        padding: 40px 0px;
    }

    .different-sec {
        padding: 40px 0px;
    }

    .different-box-img {
        height: 350px;
    }

    .different-box-text {
        height: 250px;
        padding: 25px;
    }

    .different-box-text h4 {
        font-size: 20px;
    }

    .different-box.different-center-box {
        display: flex;
        flex-direction: column-reverse;
    }

    .how-it-work-main-box::before {
        height: 90%;
    }

    .togethter-box {
        gap: 10px;
        padding: 40px 10px;
        border-radius: 25px;
        min-height: fit-content;
    }

    .togethter-box h2 {
        font-size: 25px;
    }

    .togethter-sec {
        padding: 40px 0%;
    }

    ul.footer-contact-ul.bord {
        border-left: none;
        border-right: none;
        border-top: 1px solid #4f6d5f;
        border-bottom: 1px solid #4f6d5f;
    }

    ul.footer-link li {
        padding: 0px 5px;
    }

    ul.footer-link li a {
        font-size: 12px;
    }

    ul.footer-link {
        flex-wrap: wrap;
        gap: 25px;
    }

    .logo-footer {
        max-width: 90px;
    }

    .footer-txt p {
        font-size: 12px;
        text-align: center;
    }

    .footer-txt-tw ul {
        justify-content: center;
    }

    .footer-txt-tw ul li a {
        font-size: 12px;
    }

    .how-it-work-main-box {
        padding: 10px;
    }

    .header-btn .theme-btn-1 {
        border: 1px solid var(--white);
    }

    section.main_slider.inner-banner {
        padding-top: 0px;
        min-height: 300px;
    }

    section.main_slider.inner-banner .banner_text {
        margin-top: 0px;
    }

    .about-heading-sec.inner-about-heading-sec {
        padding: 40px 0px 0px;
    }

    .about-text-sec .section-heading h4 {
        font-size: 25px;
    }

    .slider-text-box h4 {
        font-size: 14px;
    }

    .slider-text-box {
        padding: 15px 30px;
    }

    .testimonial-sec {
        padding: 40px 0px;
    }

    .testi-text p {
        line-height: 24px;
        font-size: 14px;
    }

    section.testimonial-sec.inn-testimonial .testi-text {
        padding: 20px 10px;
        margin-bottom: 40px;
    }

    section.testimonial-sec .row.mb-5 {
        margin-bottom: 0px !important;
    }

    section.testimonial-sec.inn-testimonial ul.test-profile h4 {
        font-size: 16px;
    }

    section.testimonial-sec.inn-testimonial ul.test-profile h6 {
        font-size: 14px;
    }

    .contact-frm {
        width: 100%;
        padding: 30px 15px;
    }

    .ctct-detl {
        padding: 30px 15px;
    }

    .ctct-detl ul li:first-child {
        flex-shrink: 0;
    }

    .ctct-detl ul li a {
        font-size: 12px;
        line-height: 20px;
    }

    .ctct-detl ul li img {
        width: 30px;
        margin: 0 20px 0 0;
    }

    .ctct-detl h4 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .inner-use-cases-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .privacy-policy-sec {
        padding: 40px 0px;
    }

    .privacy-policy-sec .section-heading h5 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .privacy-policy-sec .section-heading p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .different-sec .row {
        justify-content: center;
    }

    .blog-sec {
        padding: 40px 0% 40px;
    }

    .blog-box a.blog-box-img {
        height: 300px;
    }

    .blog-box p {
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .blog-sec .section-heading {
        margin-bottom: 25px;
    }

    .blog-detail-sec {
        padding: 40px 0px;
    }

    .blog-detrail-txt h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .blog-detrail-txt p {
        margin-bottom: 8px;
    }

    .blog-detrail-txt .blog-box-img {
        height: 400px;
    }

}

@media only screen and (min-width: 0px) and (max-width: 575px) {
    .newsletter-popup {
        padding: 30px 20px;
    }

    .newsletter-content h3 {
        font-size: 30px;
    }

    .newsletter-content input {
        height: 50px;
        margin-bottom: 5px;
    }

    .banner_text h1 span {
        font-size: 40px;
    }

    h1 {
        font-size: 36px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    p {
        font-size: 12px;
    }

    .theme-btn-2 {
        font-size: 12px;
        padding: 10px 20px;
    }

    .banner_img {
        height: 550px;
    }

    .theme-btn-1 {
        font-size: 12px;
        padding: 10px 18px;
    }

    .menuSection {
        z-index: 1;
        position: relative;
        padding: 65px 4% 15px;
        background: var(--themeColor2);
    }

    .banner_text {
        margin-top: 40px;
    }

    .banner_text h6 {
        font-size: 12px;
        padding: 10px 20px;
        margin-bottom: 10px;
    }

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

    .banner_img {
        top: 40px;
        border-radius: 30px 0px 30px 0px;
    }

    .banner-text-slider {
        bottom: 40px;
        padding: 20px 15px;
    }

    .home-bottom-space {
        margin-bottom: 100px;
    }

    h2 {
        font-size: 30px !important;
    }

    .booking-box {
        padding: 50px 20px;
    }

    .booking-box input,
    .booking-box select {
        padding: 5px 25px;
        height: 50px;
    }

    .section-heading h2 br {
        display: none;
    }

    .about-heading-sec .section-heading h5 {
        font-size: 14px;
    }

    .about-heading-sec {
        padding: 0px 0px 0px;
    }

    .section-heading p {
        width: 100%;
    }

    .about-text-sec {
        padding: 40px 0px;
    }

    .about-img {
        padding: 20px;
        margin-top: 10px;
        border-radius: 30px;
    }

    .about-img-box {
        padding: 40px 15px;
        border-radius: 20px;
    }

    .about-img-box h3 span {
        font-size: 25px;
    }

    section.engine-sec.home-engine-sec {
        padding: 0px 1% 40px;
    }

    .engine-main-box {
        padding: 20px;
        border-radius: 20px;
    }

    h3 {
        font-size: 20px;
    }

    .engine-text ul {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .engine-text ul li span.engine-text-span {
        width: 55px;
        height: 55px;
        font-size: 17px;
        border-radius: 10px;
    }

    h4 {
        font-size: 18px;
    }

    .engine-img {
        height: 340px;
        border-radius: 15px;
    }

    .engine-text {
        margin-bottom: 20px;
    }

    .who-this-help-sec .col-xl-2 {
        width: 100%;
    }

    .who-this-help-sec {
        padding: 40px 0px;
    }

    .different-sec {
        padding: 40px 0px;
    }

    .different-box-img {
        height: 350px;
    }

    .different-box-text {
        height: 250px;
        padding: 25px;
    }

    .different-box-text h4 {
        font-size: 20px;
    }

    .different-box.different-center-box {
        display: flex;
        flex-direction: column-reverse;
    }

    .how-it-work-main-box::before {
        height: 90%;
    }

    .togethter-box {
        gap: 10px;
        padding: 40px 10px;
        border-radius: 25px;
        min-height: fit-content;
    }

    .togethter-box h2 {
        font-size: 25px;
    }

    .togethter-sec {
        padding: 40px 0%;
    }

    ul.footer-contact-ul.bord {
        border-left: none;
        border-right: none;
        border-top: 1px solid #4f6d5f;
        border-bottom: 1px solid #4f6d5f;
    }

    ul.footer-link li {
        padding: 0px 5px;
    }

    ul.footer-link li a {
        font-size: 12px;
    }

    ul.footer-link {
        flex-wrap: wrap;
        gap: 25px;
    }

    .logo-footer {
        max-width: 90px;
    }

    .footer-txt p {
        font-size: 12px;
        text-align: center;
    }

    .footer-txt-tw ul {
        justify-content: center;
    }

    .footer-txt-tw ul li a {
        font-size: 12px;
    }

    .how-it-work-main-box {
        padding: 10px;
    }

    .header-btn .theme-btn-1 {
        border: 1px solid var(--white);
    }

    section.main_slider.inner-banner {
        padding-top: 0px;
        min-height: 300px;
    }

    section.main_slider.inner-banner .banner_text {
        margin-top: 0px;
    }

    .about-heading-sec.inner-about-heading-sec {
        padding: 40px 0px 0px;
    }

    .about-text-sec .section-heading h4 {
        font-size: 25px;
    }

    .slider-text-box h4 {
        font-size: 14px;
    }

    .slider-text-box {
        padding: 15px 30px;
    }

    .testimonial-sec {
        padding: 40px 0px;
    }

    .testi-text p {
        line-height: 24px;
        font-size: 14px;
    }

    section.testimonial-sec.inn-testimonial .testi-text {
        padding: 20px 10px;
        margin-bottom: 40px;
    }

    section.testimonial-sec .row.mb-5 {
        margin-bottom: 0px !important;
    }

    section.testimonial-sec.inn-testimonial ul.test-profile h4 {
        font-size: 16px;
    }

    section.testimonial-sec.inn-testimonial ul.test-profile h6 {
        font-size: 14px;
    }

    .contact-frm {
        width: 100%;
        padding: 30px 15px;
    }

    .ctct-detl {
        padding: 30px 15px;
    }

    .ctct-detl ul li:first-child {
        flex-shrink: 0;
    }

    .ctct-detl ul li a {
        font-size: 12px;
        line-height: 20px;
    }

    .ctct-detl ul li img {
        width: 30px;
        margin: 0 20px 0 0;
    }

    .ctct-detl h4 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .inner-use-cases-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .privacy-policy-sec {
        padding: 40px 0px;
    }

    .privacy-policy-sec .section-heading h5 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .privacy-policy-sec .section-heading p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .different-sec .row {
        justify-content: center;
    }

    .blog-sec {
        padding: 40px 0% 40px;
    }

    .blog-box a.blog-box-img {
        height: 300px;
    }

    .blog-box p {
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .blog-sec .section-heading {
        margin-bottom: 25px;
    }

    .blog-detail-sec {
        padding: 40px 0px;
    }

    .blog-detrail-txt h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .blog-detrail-txt p {
        line-height: 20px;
        margin-bottom: 6px;
    }

    .blog-detrail-txt .blog-box-img {
        height: 380px;
    }








}

/*Media Query End*/



div#thankyouModal {
    z-index: 999999999999999999999999999999999999;
    background: #00000091;
}