@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype'),
        url('../fonts/Montserrat-Bold.svg') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.eot');
    src: url('Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat-SemiBold.ttf') format('truetype'),
        url('../fonts/Montserrat-SemiBold.svg') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.eot');
    src: url('Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat-Regular.ttf') format('truetype'),
        url('../fonts/Montserrat-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FontsFree-Net-Montserrat-Medium';
    src: url(../fonts/FontsFree-Net-Montserrat-Medium.eot);
    src: url(./FontsFree-Net-Montserrat-Medium.eot?#iefix) format('embedded-opentype'),
        url(../fonts/FontsFree-Net-Montserrat-Medium.otf) format('otf'),
        url(../fonts/FontsFree-Net-Montserrat-Medium.svg) format('svg'),
        url(../fonts/FontsFree-Net-Montserrat-Medium.ttf) format('truetype'),
        url(../fonts/FontsFree-Net-Montserrat-Medium.woff) format('woff'),
        url(../fonts/FontsFree-Net-Montserrat-Medium.woff2) format('woff2');
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/Cormorant-Light.eot');
    src: url('Cormorant-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Cormorant-Light.woff2') format('woff2'),
        url('../fonts/Cormorant-Light.woff') format('woff'),
        url('../fonts/Cormorant-Light.ttf') format('truetype'),
        url('../fonts/Cormorant-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    font-weight: bold;
    src: url('../fonts/Cormorant-Bold.eot');
    src: url('../fonts/Cormorant-Bold.eot') format('embedded-opentype'),
        url('../fonts/Cormorant-Bold.woff2') format('woff2'),
        url('../fonts/Cormorant-Bold.woff') format('woff'),
        url('../fonts/Cormorant-Bold.ttf') format('truetype'),
        url('../fonts/Cormorant-Bold.svg') format('svg');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lovtony';
    src: url('Lovtony-Regular.eot');
    src: url('Lovtony-Regular.eot?#iefix') format('embedded-opentype'),
        url('Lovtony-Regular.woff2') format('woff2'),
        url('Lovtony-Regular.woff') format('woff'),
        url('Lovtony-Regular.ttf') format('truetype'),
        url('Lovtony-Regular.svg#Lovtony-Regular') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'MarketPro';
    font-weight: bold;
    src: url('../fonts/MarketPro-Bold.eot');
    src: url('../fonts/MarketPro-Bold.eot') format('embedded-opentype'),
        url('../fonts/MarketPro-Bold.woff2') format('woff2'),
        url('../fonts/MarketPro-Bold.woff') format('woff'),
        url('../fonts/MarketPro-Bold.ttf') format('truetype'),
        url('../fonts/MarketPro-Bold.svg') format('svg');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    src: url('../fonts/ITCAvantGardePro-Md.eot');
    src: url('../fonts/ITCAvantGardePro-Md.eot') format('embedded-opentype'),
        url('../fonts/ITCAvantGardePro-Md.woff2') format('woff2'),
        url('../fonts/ITCAvantGardePro-Md.woff') format('woff'),
        url('../fonts/ITCAvantGardePro-Md.ttf') format('truetype'),
        url('../fonts/ITCAvantGardePro-Md.svg') format('svg');
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-color: #363636;
    --white-color: #fff;
}

body {
    font-weight: normal;
}

/*<============== header css start ==============>*/
/* Navbar */
.navbar {
    padding: 50px 0;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: baseline;
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
}

.navbar-brand img {
    width: 190px;
    height: auto;
}

.navbar-nav li a {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 16px;
    padding: 0 !important;
    color: #000 !important;
    position: relative;
}

.navbar-nav li:not(.last-nav-item) a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #3498db !important;
    bottom: -7px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.navbar-nav li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.nav-link.last-nav-btn {
    background-color: #3E51A3;
    color: #fff !important;
    padding: 4px 44px 4px 18px !important;
    border-radius: 15px;
    position: relative;
}

.nav-link.last-nav-btn:hover {
    background-color: #4a65d8;
}

.nav-link.last-nav-btn::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 28%;
    width: 7.78px;
    height: 16.41px;
    background-repeat: no-repeat;
    background-image: url(../images/right-arrow.svg)
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

li.nav-item {
    position: relative;
    padding-right: 137px;
}

li.nav-item:last-child {
    padding-right: 0px;
}

a.nav-link.active {
    border-bottom: 1px solid #fff;
    padding: 0 !important;
}

.hero {
    background: #fff;
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

.scroll-down {
    position: absolute;
    bottom: 133px;
    left: 110px;
}

.blue-section {
    background: #3498db;
    color: white;
    padding: 60px 0px;
    position: relative;
    z-index: 0;
    top: -10px;
}

.blue-section-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-section img {
    border-radius: 25px;
    max-width: 335px;
    width: 100%;
    min-height: 335px;
    object-fit: cover;
    background-position-x: 24px;
}

.why-me {
    padding: 100px 0px;
    position: relative;
}
.finance .why-me{
    padding: 0;
}
.why-me .why-me-img img {
    width: 70.27vh;
    height: 100%;
    max-width: 50%;
    position: absolute;
    left: 6%;
    bottom: -4%;
    object-fit: contain;
    z-index: -1;
}

.why-me-right-contant .team-scroll-down {
    display: none;
}

.why-me-row {
    position: relative;
}

/*  */
.hero-detail {
    display: flex;
}
.hero-detail-contain {
    padding-left: 70px;
    padding-top: 275px;
    position: relative;
}
.hero-detail-contain h1 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 61.41px;
    max-width: 600px;
}
.hero-detail-contain p {
    font-family: 'MarketPro';
    font-weight: bold;
    font-size: 34.5px;
    color: #4394D0;
}
.scroll-down img {
    width: 27px;
}
.hero-main-bg {
    position: relative;
    padding-top: 80px;
    left: 0;
}
.finance .hero-detail {
    display: flex;
    justify-content: space-between;
}
.hero-main-bg::before {
    /* content: "";
    position: absolute;
    background-image: url(../images/bg-map.png);
    width: 37.5vw;
    height: 36.6vw;
    max-width: 720px;
    max-height: 701px;
    top: 107px;
    left: 81px;
    background-repeat: no-repeat;
    background-size: contain; */
}

/* second section css */

.blue-heading-btn {
    background-color: #fff;
    color: #000;
    max-width: 318px;
    padding: 16px 50px;
    border-radius: 30px;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
    text-align: left;
    display: inline-block;
}

.blue-heading-btn::before {
    content: "";
    position: absolute;
    background-image: url(../images/quote-icon.svg);
    width: 18px;
    height: 18px;
    left: 25px;
    top: 17px;
    background-repeat: no-repeat;
}

.blue-right-contant p {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 16px;
    max-width: 500px;
    line-height: 28px;
    margin-bottom: 20px;
}

/*  */
.why-me-right-contant {
    margin-top: 36px;
}

.why-me-right-contant h2 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 61.41px;
    margin-bottom: 35px;
}

.why-me-right-contant p {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    max-width: 557px;
    line-height: 28px;
    margin-bottom: 30px;
}

.italic-style {
    font-family: 'MarketPro' !important;
    font-weight: bold !important;
    font-size: 34.5px !important;
    color: #4394D0;
    line-height: 44px !important;
    max-width: 430px !important;
    margin-bottom: 100px !important;
}

/*  */
.stats-section.cmn-padding {
    background: #4394D0;
    padding: 130px 0 100px;
}

.counter-content-boxes {
    justify-content: center;
    display: flex;
}

.counter-content {
    max-width: 33%;
    padding: 0 95px;
}

.stat-number {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-text {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 69.03px;
    color: #fff;
}

.counter-content-middle {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

/* card section */
.home .card-section {
    padding: 100px 0;
}

.card-section {
    padding: 247px 0 125px;
}

.blog-page .card-section {
    padding: 210px 0 125px;
}

.main-card-inner {
    position: relative;
    background-color: #EFF7FD;
    border-radius: 30px;
}

.main-card-images {
    position: relative;
}

.main-card-text-contant {
    padding: 45px 22px 48px 22px;
}

.main-card-inner-img img {
    width: 100%;
    max-width: 374px;
    height: auto;
    border-radius: 30px;
}

.main-card-inner-profile-img img {
    padding: 2px;
    width: 100%;
    height: auto;
}

.card-col {
    flex: 0 0 30.18%;
    width: 100%;
    max-width: 30.18%;
    margin: 0 20px;
    border-radius: 30px;
}

.main-card-inner-profile-img {
    position: absolute;
    right: 15px;
    bottom: -30px;
    background-color: #DCDBDB;
    border-radius: 50%;
}

.main-card-text-contant h6 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 21.31px;
    color: #000;
    margin-bottom: 22px;
}

.main-card-text-contant h4 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 29.92px;
    color: #4394D0;
    margin-bottom: 28px;
}

.main-card-text-contant p {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 17.14px;
    color: #79AACD;
    margin-bottom: 44px;
}

.card-btn button {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 17.14px;
    border: unset;
    background-color: #3E51A3;
    color: #fff !important;
    padding: 5px 82px 5px 28px !important;
    border-radius: 18px;
    position: relative;
}

.card-btn button:hover {
    background-color: #4a65d8;
}

.card-btn button::before {
    content: "";
    position: absolute;
    right: 22px;
    top: 34%;
    width: 7.5px;
    height: 14.41px;
    background-repeat: no-repeat;
    background-image: url(../images/right-arrow.svg);
}

.middle-card-col {
    margin-top: -85px;
}

/* CTA Section */
.cta-section {
    padding: 48px 0 100px !important;
    text-align: center !important;
}

.cta-section h3 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 50.09px;
    margin-bottom: 15px;
}

.cta-btn {
    width: 100%;
    max-width: 670px;
    display: inline-block;
    background-color: #4394D0;
    text-decoration: none;
    color: #fff;
    padding: 16px 10px;
    border-radius: 40px;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 1px;
    position: relative;
}

.cta-btn:hover {
    background-color: #4a65d8;
    color: #fff;
}
img.mobile {
    display: none;
}
.cta-btn::after {
    content: "";
    position: absolute;
    right: 24%;
    top: 28%;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-image: url(../images/cursor-arrow.svg);
}

/* map-person section */

.map-person {
    position: relative;
    background-image: url(../images/map-section-bg1.png);
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: 100% 397px;
    background-position-y: bottom;
}

.clip-banner-bg {
    background-image: url(../images/clip-bg.png);
}

.map-person-row-inner {
    display: flex;
    position: relative;
}

.map-person-img-div {
    width: 100%;
    max-width: 31%;
    margin-left: 15%;
}

.map-person-img-div img {
    width: 100%;
    height: auto;
}

.map-person-text-div {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-15%, -54%);
}

.clip-banner-bg {
    background-image: url(../images/clip-bg.png);
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    padding: 23px 28px 57px 36px;
}

.clip-banner-bg h3 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 29.02px;
    color: #000;
}

.clip-banner-bg p a {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 15.69px;
    background-color: #4394D0;
    margin-bottom: 5px;
    padding: 6px 26px 6px 10px;
    max-width: 177px;
    border-radius: 21px;
    text-align: right;
    position: relative;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    width: 100%;
}

.clip-banner-bg p a::before {
    content: "";
    position: absolute;
    left: 11%;
    top: 22%;
    width: 16.5px;
    height: 16.5px;
    background-repeat: no-repeat;
    background-image: url(../images/build-icon.svg);
}

.clip-banner-bg span {
    color: #000;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 11.66px;
    letter-spacing: 0.5px;
}

.clip-banner-top-text p {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 11.66px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-left: 36px;
}

.clip-banner-bg p {
    width: 100%;
    margin: 0;
}

/* info-with-icons section */
.info-with-icons {
    padding: 200px 0 0;
    overflow: hidden;
}

.info-with-heading {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 61.41px;
    margin-bottom: 130px;
    margin-left: 113px;
}

.info-with-contant-list img {
    width: 100%;
    max-width: 60px;
    height: auto;
    margin-right: 40px;
}

.info-with-unlist {
    list-style: none;
    padding: 0;
}

.info-with-contant-list {
    display: flex;
    align-items: center;
    padding-bottom: 55px;
}

.info-with-contant-list p {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
}

.info-with-bottom-text p {
    margin-left: 101px;
    margin-bottom: 28px;
    font-family: 'MarketPro';
    font-weight: bold;
    font-size: 34.5px;
    color: #000;
    line-height: 44px;
}

.info-with-main {
    display: flex;
}

.info-with-left-contant {
    padding: 0 12px;
    width: 82%;
}

.info-with-bottom-text {
    margin-top: 70px;
}

.newsletter-tow {
    position: relative;
}

.info-with-right-contant img {
    width: 36.15vw;
    height: auto;
    position: absolute;
    bottom: 0%;
    right: 130px;
}

/*  */
.newsletter {
    background-color: #4394D0;
    padding: 65px 0 0;
}

.newsletter .col-lg-8 {
    height: 181px;
    padding-left: 125px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    position: relative;
}

.newsletter-heading-lable {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 17px;
}

.newsletter-form-control {
    width: 100%;
    max-width: 442px;
    border: unset;
    padding: 19.5px 70px 19.5px 70px;
    font-size: 22.82px;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    outline: none;
    border-radius: 41px;
    text-align: left;
}

.newsletter-input-div::before {
    content: "";
    position: absolute;
    left: 7%;
    top: 32%;
    width: 32.36px;
    height: 24.5px;
    background-repeat: no-repeat;
    background-image: url(../images/message-icon.svg);
}

.newsletter-form-control::placeholder {
    color: #BABABA;
    text-align: center;
}

.newsletter-input-div {
    width: 100%;
    max-width: 443px;
    position: relative;
}

.newsletter-input-btn {
    position: absolute;
    top: 0%;
    margin-left: -70px;
    font-size: 21.85px;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    background-color: #000;
    color: #fff;
    border: unset;
    max-width: 254px;
    width: 100%;
    padding: 20.4px 10px;
    border-radius: 45px;
}

.newsletter-input-btn:hover {
    background-color: #424242;
}

/* Team Section */
.team-section {
    padding: 200px 0 20px;
}

.team-heading-main-div {
    padding-left: 82px;
}
.team-heahing {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 23px;
}
.team-heading-lable {
    margin-bottom: 110px;
    font-family: 'MarketPro';
    font-weight: bold;
    font-size: 34.5px;
    color: #4394D0;
    line-height: 44px;
}

.team-profile-image img {
    width: 100%;
    max-width: 335px;
    min-height: 445px;
    overflow: hidden;
    border-radius: 20px;
}

.team-profile-image {
    position: relative;
}

.team-profile-image::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 335px;
    min-height: 335px;
    background: #E2E2E2;
    bottom: 0;
    z-index: -1;
    border-radius: 20px;
}

.team-profile-blank-image::before {
    background: #5E5E5E;
}

.team-profile-name h6 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 30.3px;
    margin-top: 45px;
    margin-bottom: 3px;
}

.team-profile-name small {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    color: #4394D0;
}

.team-section .row {
    gap: 30px 0;
    justify-content: center;
}

.team-scroll-down {
    max-width: 100%;
    text-align: center;
    padding-top: 100px;
}

.team-col-box {
    flex: 0 0 27.333%;
    width: 27.333%;
    margin-right: 40px;
}

.team-col-box:nth-child(3n+3) {
    margin-right: 0px;
}

/* Join Our Team Section */

.Our-Team-section {
    position: relative;
}

.our-Team-text-contant-inner {
    padding: 144px 0px 155px;
}

.our-team-contant {
    position: relative;
}

.Our-Team-bg-img img {
    width: 100%;
    position: absolute;
    z-index: -1;
    height: 84.6%;
    bottom: 0;
    object-fit: cover;
}

.our-Team-image img {
    position: absolute;
    bottom: 0px;
    left: -34.5%;
    width: 124.58vw;
    height: 100%;
    object-fit: contain;
}

.Our-Team-row {
    align-items: center;
}

.Our-Team-text-contant h3 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 50px;
    color: #fff;
    max-width: 480px;
    margin-bottom: 20px;
}

.Our-Team-text-contant p {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 21.85px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 420px;
}

.Our-Team-text-contant {
    margin-top: 100px;
    margin-left: -64px;
}

/* social network section */

.social-network {
    padding: 100px 0 100px;
}

.social-network-mockup {
    margin-left: -165px;
}
a.fin.cta-btn.text-center {
    width: auto;
}
a.fin.cta-btn.text-center::after{
    display: none;
}
.social-network-mockup img {
    width: 31.1vw;
    height: auto;
}

.social-network-row {
    align-items: center;
}

.social-network-text-contant h3 {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 61.41px;
    max-width: 567px;
    margin-bottom: 60px;
}

.social-network-text-contant p {
    margin-bottom: 70px;
    font-family: 'MarketPro';
    font-weight: bold;
    font-size: 34.5px;
    color: #4394D0;
    line-height: 44px;
}

.social-network-insta,
.social-network-fb {
    width: 100%;
    height: auto;
    margin-bottom: 22px;
    max-width: 340px;
}

.social-network-insta a,
.social-network-fb a {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 20px 20px 20px 90px;
    width: 100% !important;
    display: inline-block;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-network-fb a {
    background-color: #4394D0;
}

.social-network-insta a:hover {
    background-color: #424242;
}

.social-network-fb a:hover {
    background-color: #4a65d8;
}

.social-network-insta a::before,
.social-network-fb a::before {
    content: "";
    position: absolute;
    left: 13%;
    top: 26%;
    width: 33.55px;
    height: 33.55px;
    background-repeat: no-repeat;
    background-image: url(../images/insta-icon.svg);
}

.social-network-fb a::before {
    background-image: url(../images/fb-icon.svg);
}

/*contact section  */

.contact-section {
    background-color: #4394D0;
    padding: 155px 0 160px;
}

.contact-left-anchor {
    padding-top: 170px;
}

.contact-left-anchor p {
    margin-bottom: 50px;
}

.contact-left-anchor p a {
    color: #fff;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
}

.contact-left-para {
    max-width: 319px;
    padding-bottom: 100px;
}

.contact-left-para p {
    color: #63ADDF;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 20px;
}

.contact-left-para-first {
    margin-bottom: 0 !important;
    padding-bottom: 50px;
    padding-top: 30px;
}

.contact-left-details p {
    padding-bottom: 30px;
    margin: 0;
}

.contact-left-details p a {
    color: #fff;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 27.12px;
    text-decoration: none;
}

.contact-bottom-text p {
    font-family: 'MarketPro';
    font-weight: bold;
    font-size: 34.5px;
    color: #fff;
    line-height: 44px;
    padding-top: 90px;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-left-details p a:hover {
    color: #000;
}

.contact-form-main {
    width: 100%;
    max-width: 638px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.contact-right-panel {
    background-color: #fff;
    width: 100%;
    max-width: 720px;
    border-radius: 28px;
}

.form-title h3 {
    color: #000;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 33.35px;
    padding-bottom: 50px;
}

.contact-form-inner {
    margin-bottom: 28px;
    width: 100%;
    max-width: 593px;
    text-align: center;
}

.contact-form-inner .form-input {
    background-color: #E0E0E0;
    color: #3c3a3a;
    border: none;
    border-radius: 5px;
    padding: 15px 60px;
    width: 100%;
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 27.44px;
    outline: none;
    border-radius: 50px;
}

.contact-form-inner .form-input::placeholder {
    color: #A5A4A4 !important;
}

.form-input-textarea {
    border-radius: 18px !important;
    min-height: 165px;
    resize: none;
}

.contact-form-checkbox {
    text-align: unset;
    margin-bottom: unset;
    margin-top: 70px;
}

.checkbox {
    font-family: 'ITC Avant Garde Pro Md';
    font-weight: 500;
    font-size: 19.28px;
    color: #A5A4A4;
    display: flex;
    align-items: center;
}

.contact-form-checkbox input {
    margin-right: 10px;
    width: 22.5px;
    height: 22.5px;
}

input[type='checkbox'] {
    background-color: #E0E0E0;
}

.contact-form-banner img {
    width: 100%;
    max-width: 94%;
    height: auto;
    border-radius: 35px;
    overflow: hidden;
}

.contact-form-banner {
    position: relative;
    z-index: 222;
    margin-bottom: 70px;
}

.contact-form-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: calc(100% - 83px);
    height: calc(100% - 60px);
    background: #4394D0;
    bottom: 0;
    z-index: -1;
    border-radius: 20px;
    margin: auto;
    left: 0;
    right: 0;
    top: 60px;
}

.stats-row-hidden-img img {
    display: none;
    max-width: 50%;
    width: 38.27vh;
    text-align: center;
}

/* blog-card-section */

.blog-card-section .row {
    gap: 72px 0;
}

.blog-newsletter-section {
    background-color: unset;
    padding: 0;
}

.blog-newsletter-section .newsletter-form-control {
    background: #3498db;
    padding: 21.5px 70px 21.5px 84px;
    font-size: 21px;
}

.blog-newsletter-section .newsletter-form-control::placeholder {
    text-align: left;
}

.blog-newsletter-section .newsletter-input-div::before {
    background-image: url(../images/blue-msg-icon.svg);
}

.blog-newsletter-section .newsletter-form-control::placeholder {
    color: #83BDE7;
}

.blog-newsletter-section .newsletter-heading-lable {
    margin-bottom: 30px;
    margin-left: 31px;
}

.blog-page .blue-section {
    top: 0px;
}

.blog-newsletter-section .row {
    align-items: center;
}

.newsletter-blog-img {
    text-align: right;
}

.newsletter-header-div {
    position: relative;
    right: -70px;
}

.newsletter-blog-img img {
    width: 28.13vw;
    height: auto;
    margin-top: -80px;
    position: relative;
}

.blue-section-row {
    display: flex;
    align-items: center;
}

.slick-initialized .slick-slide {
    display: flex !important;
    justify-content: space-around;
}

.blue-left-contant {
    width: 50%;
    margin-left: 135px;
    max-width: 336px;
}

.blue-right-contant {
    width: 50%;
}

.slick-prev::before {
    content: '';
    background-image: url(../images/pre-icon.svg);
    width: 14.5px !important;
    height: 29px !important;
    display: inline-block;
    background-repeat: no-repeat;
}

.slick-next::before {
    content: '';
    background-image: url(../images/next-icon.svg);
    width: 14.5px !important;
    height: 29px !important;
    display: inline-block;
    background-repeat: no-repeat;
}

.checkedBox {
    border: 1px solid red;
    height: 23px;
    width: 23px;
    position: absolute;
}

.customcheckBox input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.customcheckBox {
    position: relative;
    padding-left: 38px;
}

.checkedBox {
    border: 1px solid #E0E0E0;
    height: 23px;
    width: 23px;
    position: absolute;
    left: 0;
    background: #E0E0E0;
}

.checkedBox::after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #4394D0;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.customcheckBox input[type="checkbox"]:checked~.checkedBox::after {
    display: block;
}

/*  */
.navbar-toggler .hamburger-icon::before,
.navbar-toggler .hamburger-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #000;
    left: 0;
}

.navbar-toggler .hamburger-icon::before {
    top: -8px;
}

.navbar-toggler .hamburger-icon::after {
    top: 8px;
}

.navbar-toggler .close-icon {
    width: 28px;
    height: 26px;
    display: block;
}

.navbar-toggler .hamburger-icon {
    width: 33px;
    height: 30px;
    display: block;
}

.navbar-toggler .hamburger-icon::before,
.navbar-toggler .hamburger-icon::after {
    content: unset;
    display: none;
}

button:focus:not(:focus-visible) {
    outline: unset;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-toggler {
    border: unset;
    padding: 0;
}

.team-section-drop-icon img {
    width: 25px;
}

.contact-right-col {
    display: flex;
    justify-content: end;
    height: 100%;
}

@media screen and (max-width: 1650px) {
    .our-Team-image img {
        left: -39.5%;
    }
}

@media screen and (max-width: 1399px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: end;
    }

    li.nav-item {
        padding-right: 90px;
    }

    .stat-text {
        font-size: 52px;
    }

    .stat-number {
        font-size: 18px;
    }

    .card-col {
        margin: 0 0px;
        flex: 0 0 33%;
        max-width: 33%;
    }

    .map-person-img-div img {
        max-width: 490px;
    }

    .map-person {
        background-size: 100% 305px;
    }

    .map-person-text-div {
        transform: translate(-11%, -44%);
    }

    .info-with-heading {
        font-size: 56.41px;
        margin-bottom: 110px;
    }

    .info-with-heading {
        font-size: 48.41px;
        margin-bottom: 90px;
    }

    .info-with-right-contant img {
        right: 25px;
    }

    .why-me-right-contant h2 {
        font-size: 52.41px;
        margin-bottom: 43px;
    }

    .why-me {
        padding: 76px 0px;
    }

    .social-network {
        padding: 150px 0 145px;
    }

    .counter-content {
        padding: 0 85px;
    }

    .blue-left-contant {
        margin-left: 40px;
    }

    .newsletter-blog-img img {
        margin-left: 150px;
    }

    .team-col-box {
        margin-right: 0px;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .Our-Team-text-contant {
        margin-left: 0;
    }

    .social-network-mockup {
        margin-left: -100px;
    }

    .newsletter-header-div {
        right: 0px;
    }

    .newsletter-blog-img {
        text-align: left;
    }

    .hero-main-bg {
        left: 0;
    }

}

@media screen and (max-width: 1299px) {
    .map-person {
        background-size: 100% 303px;
    }

    .map-person-text-div {
        transform: translate(0%, -41%);
    }

    .map-person-img-div {
        max-width: 33%;
    }

    .Our-Team-text-contant {
        margin-top: 50px;
    }

    .newsletter-form-control {
        max-width: 390px;
        padding: 18px 20px;
    }

    .newsletter-input-btn {
        margin-left: -122px;
        max-width: 223px;
        padding: 17px 10px;
    }

    .contact-right-panel {
        max-width: 430px;
        border-radius: 18px;
        margin-left: auto;
    }

    .contact-form-banner img {
        max-width: 90%;
        border-radius: 22px;
    }

    .form-title h3 {
        font-size: 24.35px;
        padding-bottom: 35px;
    }

    .contact-form-inner {
        margin-bottom: 18px;
        max-width: 353px;
    }

    .contact-form-inner .form-input {
        padding: 8px 30px;
        font-size: 16.32px;
    }

    .checkbox {
        font-size: 12px;
    }

    .contact-form-checkbox {
        margin-top: 40px;
    }

    .contact-form-main {
        max-width: 430px;
        padding: 0 35px 48px;
    }

    .contact-form-banner {
        margin-bottom: 40px;
    }

    .contact-form-checkbox input {
        width: 13.5px;
        height: 13.5px;
    }

    .form-input-textarea {
        min-height: 98px;
    }

    .blog-newsletter-section .newsletter-input-div::before {
        top: 28%;
        width: 28.36px;
        height: 18.5px;
        left: 8%;
    }

    .social-network-mockup {
        margin-left: -20px;
    }

    .social-network-text-contant h3 {
        font-size: 55.41px;
    }

}

@media screen and (max-width: 1199px) {
    .hero-detail-contain {
        padding-top: 150px;
    }

    .hero-detail-contain h1 {
        font-size: 50px;
        max-width: 100%;
    }

    .stat-text {
        font-size: 38px;
    }

    .map-person-text-div {
        transform: translate(-1%, -44%);
    }

    .map-person-img-div {
        max-width: 41%;
        margin-left: 6%;
    }

    .cta-section h3 {
        font-size: 45.09px;
    }

    .cta-btn {
        max-width: 610px;
        padding: 10px 10px;
        font-size: 23px;
    }

    .cta-btn::after {
        right: 26%;
        top: 28%;
        width: 22px;
        height: 22px;
    }

    .info-with-icons {
        padding: 70px 0 0;
    }

    .info-with-bottom-text {
        max-width: 574px;
    }

    .newsletter-form-control {
        max-width: 370px;
        padding: 10px 70px;
        font-size: 19.98px;
    }

    .newsletter-input-btn {
        margin-left: -140px;
        font-size: 19.13px;
        max-width: 165px;
        padding: 11px 10px;
    }

    .why-me-right-contant h2 {
        font-size: 45.41px;
        margin-bottom: 30px;
    }

    .why-me .why-me-img img {
        height: 100%;
        left: 0%;
    }

    .team-profile-image img {
        min-height: auto;
    }

    .team-profile-image::before {
        min-height: 80%;
    }

    .team-section {
        padding: 100px 0 20px;
    }

    .team-heahing {
        font-size: 45px;
        margin-bottom: 0px;
    }

    .team-heading-lable {
        margin-bottom: 40px;
    }

    .our-Team-image img {
        position: absolute;
        bottom: 0px;
        left: 1%;
        width: 49.58vw;
        height: 100%;
        object-fit: contain;
    }

    .counter-content {
        padding: 0 50px;
    }

    .blog-newsletter-section .newsletter-form-control {
        max-width: 370px;
        padding: 11px 68px;
        font-size: 16px;
    }

    .blog-newsletter-section .newsletter-input-btn {
        margin-left: -140px;
        font-size: 16px;
        max-width: 165px;
        padding: 11px 10px;
    }

    .newsletter-input-div::before {
        top: 34%;
        width: 26px;
        height: 18px;
    }

    .our-Team-text-contant-inner {
        padding: 100px 0px 127px;
    }

    .social-network-mockup {
        margin-left: -50px;
    }
}

@media screen and (max-width: 991px) {
    .counter-content {
        padding: 0 26px;
    }
.finance .stats-row-hidden-img img {
    display: none;
    width: 46.27vh;
}
    .hero-detail-contain {
        padding-top: 50px;
    }

    .header-main-div {
        position: relative;
    }

    .navbar {
        position: unset;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px 0;
    }

    li.nav-item {
        padding-right: 0;
        padding-bottom: 15px;
    }

    .navbar-main {
        width: 100%;
        position: absolute;
        top: 110px;
        background-color: #fff;
        width: calc(100% + 24px);
        left: 0px;
        z-index: 2;
    }

    .hero-detail-contain h1 {
        font-size: 42px;
    }

    .scroll-down {
        bottom: 40px;
    }

    .hero-detail-contain p {
        font-size: 24px;
    }

    .blue-right-contant p {
        max-width: 100%;
    }

    .blue-heading-btn {
        max-width: 290px;
        padding: 13px 10px;
        font-size: 18px;
        margin-bottom: 30px;
        text-align: center;
    }

    .blue-heading-btn::before {
        top: 15px;
        left: 26px;
    }

    .card-col {
        margin: 0 0px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .card-section .row {
        gap: 20px 0;
    }

    .map-person-img-div img {
        max-width: 100%;
    }

    .map-person {
        background-size: 100% 85%;
    }

    .info-with-icons {
        padding: 90px 0 0;
    }

    .cta-section h3 {
        font-size: 40.09px;
        margin-bottom: 22px;
    }

    .info-with-right-contant img {
        max-width: 50%;

    }

    .info-with-right-contant {
        text-align: center;
    }

    .info-with-right-contant img {
        position: unset;
    }

    .newsletter .row {
        margin: 0 auto;
        max-width: 520px;
    }

    .newsletter .col-lg-8 {
        height: unset;
        padding-left: 12px;
    }

    .newsletter {
        background-color: #4394D0;
        padding: 60px 0 60px;
    }

    .why-me-right-contant h2 {
        font-size: 42.41px;
        margin-bottom: 28px;
    }

    .why-me-right-contant p br {
        display: none;
    }

    .why-me .why-me-img img {
        position: unset;
    }

    .why-me .row {
        flex-direction: column-reverse;
    }

    .why-me .col-md-6 {
        flex: 0 0 100%;
        width: 100%;
    }

    .why-me {
        padding: 0px 0px 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .why-me .why-me-img img {
        height: 100%;
        display: none;
    }

    .our-Team-image {
        text-align: center;
    }

    .our-Team-image img {
        position: absolute;
        width: 33.5vw;
        height: auto;
        bottom: unset;
        left: 50%;
        right: 50%;
        transform: translate(-50%, -93%);
    }

    .Our-Team-row {
        display: flex;
        flex-direction: column;
    }

    .Our-Team-text-contant {
        margin-top: 0;
    }

    .Our-Team-section {
        padding: 30px 0 8px;
    }

    .Our-Team-bg-img img {
        width: 100vw;
        position: absolute;
        z-index: -1;
        height: 94%;
        bottom: 0;
        object-fit: cover;
    }

    .our-Team-text-contant-inner {
        padding: 97px 0px;
    }

    .team-scroll-down {
        padding-top: 50px;
        padding-bottom: 375px;
    }

    .social-network {
        padding: 70px 0 85px;
    }

    .contact-section .row {
        flex-direction: column-reverse;
    }

    .contact-right-panel {
        max-width: 430px;
        margin: 0 auto;
        margin-bottom: 70px;
    }

    .contact-section {
        padding: 80px 0 120px;
    }

    .why-me-right-contant .team-scroll-down {
        display: block;
        padding-top: 100px;
        padding-bottom: 130px;
    }

    .stats-row-hidden-img img {
        display: block;
        width: 46.27vh;
    }

    .stats-row-hidden-img {
        display: flex;
        justify-content: center;

    }

    .card-section {
        padding: 10px 0 80px;
    }

    .blue-left-contant {
        margin-left: 0px;
        width: 100%;
        max-width: 500px;
    }

    .blue-right-contant {
        width: 100%;
        margin-top: 60px;
    }

    .blue-section img {
        width: 100%;
        max-width: 500px;
    }

    .slick-initialized .slick-slide {
        justify-content: center;
        flex-direction: column;
    }

    .blog-newsletter-section {
        padding: 0px 0 0px;
        background: unset;
        overflow: hidden;
        margin-top: -40px;
    }

    .newsletter-blog-img {
        text-align: center;
    }

    .newsletter-blog-img img {
        margin-left: 0px;
        margin-top: 0px;
    }

    .blog-newsletter-section .row {
        max-width: 100%;
        flex-direction: column-reverse;
    }

    .blog-newsletter-section .newsletter-heading-lable {
        margin-left: 0px;
        padding-top: 50px;
        color: #fff;
        max-width: 443px;
        margin: 0 auto 18px;
    }

    .blog-newsletter-section .newsletter-form {
        justify-content: center;
        padding-bottom: 50px;
    }

    .newsletter-header-div {
        position: relative;
    }

    .newsletter-header-div::before {
        content: '';
        background: #3498db;
        width: 154%;
        height: 100%;
        display: block;
        z-index: -1;
        position: absolute;
        left: -24%;
    }

    .blog-newsletter-section .newsletter-form-control {
        background: #fff;
    }

    .blog-newsletter-section .newsletter-form-control::placeholder {
        color: #BABABA;
    }

    .blog-newsletter-section .newsletter-input-div::before {
        background-image: url(../images/message-icon.svg);
    }

    .slick-prev {
        left: -5%;
        top: 25%;
    }

    .slick-next {
        right: -5%;
        top: 25%;
    }

    .team-col-box {
        margin-right: unset;
        flex: 0 0 50%;
        width: 50%;
    }

    .social-network-mockup {
        margin-left: 0px;
    }

    .contact-left-anchor {
        padding-top: 0px;
        text-align: center;
    }

    .contact-left-para {
        max-width: 100%;
        padding-bottom: 50px;
    }

    .contact-left-details {
        text-align: center;
    }

    .contact-bottom-text p {
        padding-top: 70px;
        text-align: center;
    }

    .social-network-text-contant h3 {
        font-size: 55.41px;
    }

    .social-network-text-contant h3 br {
        display: none;
    }

    .blue-section {
        padding: 80px 0px 30px;
    }

    .blog-page .card-section {
        padding: 50px 0 125px;
    }

    .contact-right-col {
        display: unset;
    }

    .team-scroll-down img {
        width: 27px;
    }
}

@media screen and (max-width: 767px) {
    .hero-detail-contain h1 {
        font-size: 32px;
    }

.hero-detail {
    flex-direction: row;
}

    .hero-detail-contain {
        padding-bottom: 100px;
        padding-left: 0;
    }

    .blue-section {
        padding: 70px 0px;
        top: 0px;
    }

    .blue-section .row {
        gap: 50px;
    }

    .blue-section img {
        border-radius: 15px;
        max-width: 100%;
        min-height: 100%;
    }

    .why-me .row {
        flex-direction: column-reverse;
    }

    .stat-number {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .stat-text {
        font-size: 26px;
    }

    .card-col {
        flex: 0 0 69.4%;
        max-width: 69.4%;
    }

    .main-card-inner-img img {
        max-width: 100%;
    }

    .main-card-inner-profile-img {
        max-width: 62px;
    }

    .card-section .row {
        gap: 47px 0;
    }

    .why-me-right-contant h2 {
        font-size: 38.97px;
        margin-bottom: 50px;
    }

    .why-me-right-contant p {
        font-size: 17px;
        max-width: 100%;
    }

    .why-me-right-contant p br {
        display: none;
    }

    .italic-style {
        font-size: 32.56px !important;
        max-width: 412px !important;
        margin-bottom: 0 !important;
    }

    .why-me-right-contant .team-scroll-down {
        padding-bottom: 30px;
    }

    .home .card-section {
        padding: 50px 0;
    }

    .cta-section h3 {
        font-size: 35.62px;
        margin-bottom: 24px;
    }

    .cta-btn {
        max-width: 476px;
        padding: 12px 10px;
        font-size: 20px;
        margin: 0 15px;
    }

    .cta-btn::after {
        top: 28%;
        width: 22px;
        height: 22px;
    }

    .clip-banner-bg {
        background-image: url(../images/clip-bg.png);
        width: 100%;
        height: auto;
        background-repeat: no-repeat;
        background-size: 174px 120px;
        padding: 15px 22px 24px 18px;
    }

    .clip-banner-top-text p {
        font-size: 8px;
    }

    .clip-banner-bg h3 {
        font-size: 18.71px;
    }

    .clip-banner-bg p a {
        font-size: 10.5px;
        margin-bottom: 0;
        padding: 4px 26px 4px 10px;
    }

    .clip-banner-bg p a::before {
        top: 25%;
        width: 12.5px;
        height: 12.5px;
    }

    .map-person-img-div {
        max-width: 50%;
        margin-left: 1%;
    }

    .map-person-text-div {
        transform: translate(18%, -52%);
    }

    .cta-section h3 {
        font-size: 35.62px;
        padding: 0 15px;
    }

    .card-section {
        padding: 0px 0 30px;
    }

    .info-with-heading {
        font-size: 38.37px;
        margin-bottom: 70px;
        margin-left: 0px;
    }

    .why-me .why-me-img img {
        position: unset;
        height: 100%;
    }

    .why-me {
        padding: 0px 0px;
    }

    .why-me-right-contant {
        margin-top: 90px;
    }

    .map-person {
        background-size: cover;
    }

    .team-profile-details {
        text-align: center;
    }

    .team-profile-name {
        text-align: start;
        margin: 0 79px;
    }

    .team-heading-lable {
        max-width: 400px;
    }

    .our-Team-image img {
        width: 40.5vw;
    }

    .social-network-row {
        flex-direction: column-reverse;
    }

    .social-network-text-contant {
        padding-top: 50px;
    }

    .social-network-mockup {
        text-align: center;
    }

    .info-with-contant-list p br {
        display: none;
    }

    .info-with-left-contant {
        padding: 0 12px;
        width: 100%;
    }
    .info-with-left-contant {
    padding: 0;
}
.info-with-contant-list img {
    max-width: 35px;
    margin-right: 22px;
}
    .navbar {
        padding: 30px 0;
    }

    .blue-left-contant {
        max-width: 350px;
    }

    .blue-right-contant {
        margin-top: 50px;
    }

    .navbar-main {
        top: 82px;
    }

    .slick-next {
        right: 5%;
        top: 18%;
    }

    .slick-prev {
        left: 5%;
        top: 18%;
    }

    .team-col-box {
        margin-right: unset;
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-main-bg::before {
        width: 78.5vw;
        height: 87.6vw;
        top: 40px;
        left: -26px;
    }

    .stats-section-hidden-img {
        position: relative;
        top: -60px;
    }

    .social-network-text-contant h3 {
        font-size: 42.41px;
        max-width: 100%;
    }
}

@media screen and (max-width: 575px) {
.container {
    padding: 0 15px;
}
img.mobile {
    display: block;
}
img.desktop {
    display: none;
}
section.blue-section .container {
    padding: 0 25px;
}
section.hero.container-fluid {
    padding: 0;
}
.stats-row-hidden-img {
    position: relative;
}
.stats-row-hidden-img::before {
    content: "";
    position: absolute;
    background-image: url(../images/bg-map.png);
    width: 100%;
    height: 100%;
    top: 60px;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 100% 80%;
}
.hero-main-bg{
    padding-top: 60px;
}
.blue-section img {
    border-radius: 15px;
    max-width: 200px;
    margin: 0 auto;
    height: auto;
    min-height: 200px;
}
.home .card-section {
    max-width: 300px;
    margin: 0 auto;
}
.hero img {
    height: 100%;
    position: relative;
    object-fit: cover;
}
.hero-detail-contain p {
    max-width: 150px;
    line-height: normal;
}
.stats-row-hidden-img img {
    max-width: 60%;
    z-index: 9;
}
    .counter-content-boxes {
        display: flex;
    }
    .counter-content {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .counter-content-middle {
        border-right: unset;
        border-left: unset;
    }
.stat-text {
    font-size: 16px;
}
.info-with-contant-list img {
    max-width: 25px;
    margin-right: 12px;
}
.counter-content-middle {
  border-right: 1px solid #fff;
}

.counter-content:first-child {
  border-right: 1px solid #fff;
}
    .stats-section.cmn-padding {
        padding: 40px 0 20px;
    }
.map-person-img-div {
    max-width: 58%;
    margin-left: 0;
    margin-top: -20px;
}
    .map-person-text-div {
        transform: translate(46%, -50%);
    }
    .clip-banner-bg h3 {
        font-size: 14px;
    }
.clip-banner-bg {
    background-size: 120px 115px;
    padding: 15px 17px 24px 10px;
}
    .clip-banner-bg p a {
        font-size: 10px;
        padding: 4px 7px 4px 26px;
    }
    .clip-banner-bg p a::before {
        top: 26%;
        width: 10px;
        height: 12px;
        left: 10%;
    }
    .clip-banner-bg span {
        font-size: 10px;
        letter-spacing: 0px;
    }
    .clip-banner-top-text p {
        margin-left: 12px;
    }
.cta-section h3 {
    font-size: 21.62px;
    padding: 0;
    margin-bottom: 20px;
}
.map-person {
    background-size: 100% 100%;
}
.cta-btn {
    max-width: 336px !important;
    padding: 10px 10px !important;
    font-size: 14px !important;
}
.cta-btn::after {
    right: 24%;
    top: 28%;
    width: 15px;
    height: 15px;
}
.team-heahing {
    font-size: 22px !important;
    margin-bottom: 0 !important;
}
.service-item-title {
    font-size: 26px !important;
}
.timeline-container p{
font-size: 14px !important;
}
.timeline-container{
    padding: 0 !important;
}
.service-icon img {
    height: 50px !important;
    width: auto !important;
}
    .team-heading-lable {
        font-size: 29.5px;
    }
    .Our-Team-text-contant h3 {
        font-size: 30.97px;
        max-width: 100%;
    }
    .services-section {
    padding: 50px 0 !important;
}
.Our-Team-text-contant p {
    font-size: 14px;
    max-width: 100%;
}
    .social-network-text-contant h3 {
        font-size: 31px;
        max-width: 400px;
    }
    .why-me-right-contant {
        margin-top: 0px;
    }
.why-me-right-contant h2 {
    font-size: 19px;
}
    .why-me-right-contant p {
        font-size: 16px;
    }
    .italic-style {
        font-size: 28px !important;
        margin-bottom: 0 !important;
        max-width: 330px !important;
    }
    .card-section {
        padding: 50px 0 30px;
    }
.info-with-icons {
    padding: 50px 25px 0;
}
.info-with-heading {
    font-size: 32px;
    margin-bottom: 50px;
    max-width: 370px;
    padding-left: 15px;
    margin: 0 auto 50px auto !important;
}
.info-with-contant-list p {
    font-size: 13px;
    max-width: 236px;
}
.team-section {
    padding: 50px 25px 20px;
}
.our-Team-text-contant-inner {
    padding: 97px 25px;
}
    .info-with-bottom-text p {
        margin-left: 0;
        font-size: 28px;
        line-height: 38px;
    }

    .team-heading-lable {
        font-size: 28px;
        max-width: 300px;
    }

    .team-profile-name h6 {
        font-size: 28px;
        margin-top: 22px;
        margin-bottom: 10px;
    }
    .team-scroll-down {
        padding-top: 50px;
        padding-bottom: 315px;
    }
.newsletter-heading-lable {
    font-size: 12px;
    line-height: 20px;
}
.newsletter-form-control {
    max-width: 100%;
    padding: 8px 117px 8px 28px;
    font-size: 11px;
    width: 100%;
}
    .newsletter-input-div::before {
        left: 4%;
        top: 32%;
        width: 20px;
        height: 15px;
    }
.newsletter {
    padding: 50px 0 50px;
}
    .newsletter-form {
        text-align: center;
    }
.newsletter-input-btn {
    margin-left: -112px;
    font-size: 12px;
    max-width: 112px;
    padding: 7px 10px;
}
    .newsletter-input-div {
        max-width: 430px;
    }

.social-network-text-contant p {
    margin-bottom: 35px;
    font-size: 19px;
    line-height: 30px;
}
.social-network-text-contant h3 {
    font-size: 28px;
    margin-bottom: 30px;
}
.social-network-insta a::before, .social-network-fb a::before {
    content: "";
    position: absolute;
    left: 10%;
    top: 33%;
    width: 20.55px;
    height: 20.55px;
    background-repeat: no-repeat;
    background-image: url(../images/insta-icon.svg);
}
.social-network-insta a, .social-network-fb a {
    padding: 15px 20px 15px 40px;
    font-size: 16px;
}
.contact-form-banner img {
    max-width: 90%;
    border-radius: 14px;
}
.contact-form-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: calc(100% - 33px);
    height: calc(100% - 60px);
    background: #4394D0;
    bottom: 0;
    z-index: -1;
    border-radius: 20px;
    margin: auto;
    left: 0;
    right: 0;
    top: 60px;
}
.contact-form-main {
    max-width: 430px;
    padding: 0 20px 48px;
}
.checkbox {
    font-size: 10px;
}
.customcheckBox {
    padding-left: 28px;
}
.form-title h3 {
    font-size: 16.35px;
    padding-bottom: 25px;
}
.social-network-insta, .social-network-fb {
    max-width: 250px;
}
    .contact-right-panel {
        margin-bottom: 70px;
    }
    .contact-left-anchor {
        text-align: left;
    }
    .contact-left-anchor p {
        margin-bottom: 20px;
    }
    .contact-left-anchor p a {
        font-size: 18px;
    }
.contact-left-para p {
    font-size: 16px;
}

    .contact-left-para {
        padding-top: 30px;
        max-width: 100%;
        padding-bottom: 50px;
    }
    .contact-left-details {
        text-align: left;
    }
    .contact-left-details p {
        padding-bottom: 20px;
    }
.contact-bottom-text p {
    font-size: 26px;
    line-height: 36px;
    padding-top: 60px;
    text-align: left;
}
.contact-info {
    margin-top: 50px;
}
section.bottom-part {
    padding: 0 25px;
}
.contact-section {
    padding: 50px 25px 80px;
}
.contact-form-inner .form-input {
    padding: 8px 22px;
    font-size: 14.32px;
}
    .contact-left-details p a {
        font-size: 22px;
    }
    .our-Team-image img {
        width: 49.5vw;
        position: unset;
        transform: translate(0%, -96%);
    }
    .our-Team-image {
        height: 0px;
    }
    .main-card-text-contant {
        padding: 36px 15px 30px 15px;
    }
.main-card-text-contant h6 {
    font-size: 15px;
    margin-bottom: 15px;
}
    .main-card-text-contant h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }
 .main-card-text-contant p {
    font-size: 14px;
    margin-bottom: 20px;
}
    .cta-section {
    max-width: 300px;
    margin: 0 auto;
}
    .card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-newsletter-section .newsletter-form-control {
        max-width: 100%;
        padding: 11px 0px 11px 50px;
    }

    .blog-newsletter-section .newsletter-form-control::placeholder {
        text-align: left;
        font-size: 12px;
    }

    .blog-newsletter-section .newsletter-input-btn {
        margin-left: -165px;
    }

  .scroll-down {
    left: 0;
}
    .hero-detail-contain {
        padding-bottom: 80px;
        padding-left: 0;
        padding-top: 30px;
    }
    .blue-right-contant {
        text-align: left;
    }
    .blue-right-contant {
        margin-top: 0px;
    }
    .blue-section .row {
        gap: 30px 0;
    }
.why-me-right-contant .team-scroll-down {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
}
    .info-with-right-contant img {
        max-width: 70%;
        width: 45.15vw;
    }
.social-network {
    padding: 50px 25px 60px;
}
    .checkedBox {
        height: 18px;
        width: 18px;
    }
    .checkedBox::after {
        left: 6px;
        top: 2px;
    }
    .social-network-mockup img {
        width: 41.1vw;
    }
    .blog-blue-slider .blue-right-contant {
        margin-top: 50px;
    }
    .slick-prev {
        left: 0;
        top: 15%;
        z-index: 1;
    }

.slick-next {
    right: 0;
    top: 15%;
    z-index: 1;
}

    .blue-left-contant {
        max-width: 300px;
    }

    .newsletter-blog-img img {
        width: 49.13vw;
    }

    .blog-newsletter-section .newsletter-input-div::before {
        left: 5%;
    }

    .info-with-bottom-text {
        margin-top: 20px;
        max-width: 358px;
        text-align: left;
        margin: 0 auto;
    }

.hero-detail-contain h1 {
    font-size: 30px;
    max-width: 852px;
    line-height: 35px;
}

    .team-profile-name {
        text-align: start;
        margin: 0 auto;
        max-width: 335px;
    }

    .team-heading-main-div {
        padding-left: 0;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 420px) {
    .map-person-text-div {
        transform: translate(33%, -50%);
    }

    .cta-btn {
        margin: 0;
    }

 .our-Team-image img {
    transform: translate(0%, -100%);
    width: 65.5vw;
}

    .team-scroll-down {
        padding-bottom: 220px;
    }
}

/* Finance Page Social Slider */
.finance .social-slider {
    padding-bottom: 60px;
    position: relative;
    margin-left: 0 !important;
}

.finance .social-slider .slick-slide {
    display: flex;
    justify-content: center;
}

.finance .social-slider .slick-slide img {
    max-width: 402px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.finance .social-slider .slick-prev,
.finance .social-slider .slick-next {
    top: auto;
    bottom: 0px;
    transform: none;
    z-index: 10;
}

/* Center the arrows */
.finance .social-slider .slick-prev {
    left: 40%;
}

.finance .social-slider .slick-next {
    right: 40%;
}

/* Make arrows grey (assuming original is white) */
.finance .social-slider .slick-prev::before,
.finance .social-slider .slick-next::before {
    filter: brightness(0.5); 
}

@media screen and (max-width: 767px) {
    .finance .social-slider .slick-prev {
        left: 40%;
    }
    .finance .social-slider .slick-next {
        right: 40%;
    }
}

/* Timeline / Services Section */
.timeline-container {
    padding: 50px 0;
    position: relative;
}

.timeline-img {
    position: absolute;
    left: -200px;
    top: -100px;
    height: 100%;
    width: 100%;
    max-width: 60%;
    right: 0;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .timeline-img {
        display: none;
    }
}