@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;
}

:root {
    --black: #000;
    --white: #fff;
    --bodyBg: #eef0f1;
    --textColor: #535353;
    --themeColor: #202743;
    --themeColor2: #ecc4ba;
    --headingColor: #151617;
    --headingColor2: #131212;
}


a {
    color: var(--black);
    white-space: initial;
    text-decoration: none;
    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: 'CreatoDisplay-Bold';
    src: url(../fonts/CreatoDisplay-Bold.otf);
}

@font-face {
    font-family: 'CreatoDisplay-Medium';
    src: url(../fonts/CreatoDisplay-Regular.otf);
}

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


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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h1 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'CreatoDisplay-Medium';
}

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

h3 {
    margin: 0 0 0px;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'CreatoDisplay-Bold';
}

h4 {
    font-size: 28px;
    margin: 0 0 0px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'CreatoDisplay-Bold';
}

h5 {
    color: #000;
    margin: 0 0 0px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'CreatoDisplay-Medium';
}

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

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

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

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

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

.theme-btn-1 {
    top: 0px;
    display: flex;
    font-size: 14px;
    color: #2b2b2b;
    font-weight: 500;
    padding: 22px 25px;
    position: relative;
    width: fit-content;
    text-align: center;
    border-radius: 50px;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor2);
    background-color: var(--themeColor2);
}

.theme-btn-1:hover {
    top: -5px;
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.15);
}

#site-preloader {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 99999;
    position: fixed;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: opacity 0.35s ease, visibility 0.45s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

#site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    width: 44px;
    height: 44px;
    position: relative;
    animation: spinner-y0fdc1 3s infinite ease;
    transform-style: preserve-3d;
}

.spinner>div {
    width: 100%;
    height: 100%;
    position: absolute;
    border: 2px solid var(--themeColor);
}

.spinner div:nth-of-type(1) {
    transform: translateZ(-22px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}

.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}

.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}

.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
    transform: translateZ(22px);
}

@keyframes spinner-y0fdc1 {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }

    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }

    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

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

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

.menuSec li ul {
    display: none;
}

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


/*.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(--themeColor2);
}

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

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 30px;
    transition: ease-in-out;
    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 ul li a.theme-btn-1 {
    color: #3e3a3a;
    padding: 20px 50px;
}

.menuSec ul li a.theme-btn-1::before {
    display: none;
}

.menuSec ul li a.theme-btn-1.active,
.menuSec ul li a.theme-btn-1:hover {
    color: var(--white);
    background: var(--themeColor);
}

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

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

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

.header-logo {
    width: 70px;
    height: 70px;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/*header css start */


/*banner css start */

.main_slider {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin: 10px 10px 0px;
    padding: 140px 4% 50px;
    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;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, #202743ef 0%, #202743f5 35%, var(--themeColor) 100%);
}

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

.banner_text {
    display: flex;
    position: relative;
    padding: 50px 30px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.banner_text::before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    content: '';
    height: 25%;
    position: absolute;
    border-radius: 5px 5px 0px 0px;
    border-top: 5px solid var(--white);
    border-left: 5px solid var(--white);
    border-right: 5px solid var(--white);
}

.banner_text::after {
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 25%;
    position: absolute;
    border-radius: 0px 0px 5px 5px;
    border-left: 5px solid var(--white);
    border-right: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
}

.banner_text * {
    z-index: 1;
    position: relative;
}

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

.banner_text p {
    opacity: 0.5;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.banner_img {
    width: 85%;
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin: 0px auto 0px;
    border: 5px solid var(--themeColor2);
}

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

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

.main_slider.inner-banner .banner_text {
    min-height: 350px;
}

.main_slider.inner-banner .banner_text h1 {
    margin-bottom: 0px;
}


/*banner css end*/

/* work-sec */

.work-sec {
    margin: 0px 10px;
    padding: 100px 0px;
    background-color: var(--bodyBg);
}

.work-sec .section-heading h2 span {
    display: block;
    font-family: 'CreatoDisplay-Light';
}

.work-sec .section-heading h4 {
    font-family: 'CreatoDisplay-Light';
}

.work-sec .section-bottom-line {
    height: 1px;
    width: 100%;
    margin-top: 60px;
    background-color: #d9dadb;
}

.work-ul {
    max-width: 1000px;
    margin: 0px auto 40px;
}

.work-ul ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.work-ul ul li {
    width: 49%;
    margin-top: 20px;
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.work-ul ul li::before {
    bottom: 0;
    left: 20px;
    width: 84%;
    content: '';
    height: 1px;
    position: absolute;
    background-color: #d9dadb;
}

.work-ul ul li p {
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 500;
}

.work-ul ul li::after {
    top: 9px;
    left: 1px;
    width: 6px;
    height: 6px;
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: #1f1d1d;
}



/* work-sec */

/* how-we-work-sec */

.how-we-work-sec {
    margin: 0px 10px;
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
    background-color: var(--bodyBg);
}

.how-we-work-sec::before {
    top: 40%;
    left: -70%;
    content: '';
    width: 240%;
    height: auto;
    position: absolute;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    border-radius: 100% 100% 0px 0px;
}

.how-we-work-sec .row {
    z-index: 1;
    position: relative;
}

.how-it-working-box {
    padding: 10px;
    min-height: 100%;
    border-radius: 10px;
    background-color: var(--white);
}

.how-it-working-box-heading {
    z-index: 1;
    padding: 40px 40px;
    position: relative;
    border-radius: 10px;
    background-color: var(--themeColor);
}

.how-it-working-box-heading h4 {
    color: var(--white);
    font-family: 'CreatoDisplay-Light';
}

.how-it-working-box-text {
    margin-top: -10px;
    min-height: 460px;
    border-width: 1px;
    padding: 50px 40px;
    border-style: solid;
    border-radius: 10px;
    border-color: #ebebeb;
    background-color: var(--white);
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.15);
}

.how-it-working-box-text h6 {
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.how-it-working-box-text p {
    color: #100f0f;
    font-weight: 600;
    margin-bottom: 20px;
}

.how-it-working-box-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    font-family: 'Montserrat';
    text-transform: capitalize;
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-heading {
    background-color: var(--themeColor2);
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-heading h4 {
    color: #151617;
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-text h4 {
    margin-bottom: 10px;
    font-family: 'CreatoDisplay-Light';
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-text ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-text ul li {
    padding-left: 20px;
    position: relative;
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-text ul li p {
    margin-bottom: 10px;
}

.how-it-working-box.how-it-working-box-1 .how-it-working-box-text ul li::before {
    top: 11px;
    left: 1px;
    width: 6px;
    height: 6px;
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: #1f1d1d;
}

/* how-we-work-sec */

/* founder-sec */

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

.founder-main-box {
    top: 10px;
    z-index: 1;
    padding: 80px 4%;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    background-image: url(../images/banner-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.founder-main-box::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, #202743ec 40%, #1f2641 60%, #202743d3 100%);
}

.founder-main-box .row {
    z-index: 1;
    position: relative;
}

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

.founder-text h2 {
    color: var(--white);
}

.founder-text p {
    opacity: 0.5;
    color: var(--white);
}

.founder-text .theme-btn-1 {
    margin-top: 10px;
}

.founder-img {
    width: 100%;
    height: 630px;
    margin: 30px 0px;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 5px solid var(--themeColor2);
}

/* founder-sec */

/* work-with-sec */


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

.work-main-with-box {
    padding: 80px 4%;
    overflow: hidden;
    position: relative;
    background: var(--bodyBg);
}

.service-box {
    top: 0px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 30px 35px;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    justify-content: space-between;
    background-color: var(--white);
}

.service-box:hover {
    top: -10px;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.15);
}

.service-box-text {
    max-width: 800px;
}

.service-box-text h6 {
    color: #3e3a39;
    width: fit-content;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background-color: var(--themeColor2);
}

.service-box-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-box-text h2 span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--textColor);
    text-transform: lowercase;
    font-family: 'Montserrat';
}

.service-box-text p {
    font-weight: 600;
}

/* work-with-sec */

/* contact-sec */

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

.contact-main-box {
    overflow: hidden;
    position: relative;
    padding: 0px 4% 80px;
    background-color: var(--bodyBg);
}

.contact-main-box::before {
    top: 40%;
    left: -70%;
    content: '';
    width: 240%;
    height: auto;
    position: absolute;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    border-radius: 100% 100% 0px 0px;
}

.contact-input-box {
    z-index: 1;
    position: relative;
    border-radius: 10px;
    padding: 50px 40px 0px;
    background-color: var(--white);
}

.contact-input-box label {
    width: 100%;
    font-weight: 500;
    color: #404040;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-input-box input {
    width: 100%;
    height: 65px;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--black);
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #eef0f1;
    background-color: #eef0f1;
}

.contact-input-box input::placeholder,
.contact-input-box textarea::placeholder {
    color: #aeafb0;
    text-transform: uppercase;
}

.contact-input-box textarea {
    width: 100%;
    resize: none;
    height: 200px;
    display: block;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--black);
    margin-bottom: 40px;
    border-radius: 10px;
    align-content: flex-end;
    border: 1px solid #eef0f1;
    background-color: #eef0f1;
}

.contact-input-box button {
    margin: 0px auto;
    padding: 22px 40px;
}



/* contact-sec */

/* footer  */


.footer-contact {
    padding: 40px 0px;
    text-align: center;
    border-top: 1px solid #e8e8e8;
}

.footer-contact h2 {
    margin-bottom: 10px;
}

.footer-contact h4 {
    font-family: 'CreatoDisplay-Light';
}

.copy-txt {
    padding: 25px 0px;
    text-align: center;
    border-top: 1px solid #e8e8e8;
}

.copy-txt p {
    font-weight: 600;
    color: #151617;
}

/* footer  */

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