@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    /* font-family: 'Inter', sans-serif; */
    /* font-family: 'Prata', serif; */
    /* font-family: 'Raleway', sans-serif; */
    font-family: 'Open Sans', sans-serif;
    /* font-family: 'Montserrat', sans-serif; */
    background: #fff;
    overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #123363;
    --primary-color: #4CCC42;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #5f5f5f;
}

h1,
h2 {
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

h3,
h4 {
    font-family: 'Inter', sans-serif;
}

h5 {
    font-family: 'Prata', serif;
}

h6 {
    font-family: 'Raleway', sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
    background: linear-gradient(to right, var(--theme-color), var(--theme-color));
    background-size: 0 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    font-size: 0.875rem;
    padding: 15px 30px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.themeBtn:hover {
    color: #fff;
    background-size: 100% 100%;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */

/* navigation css */
.logo {
    display: block;
}

.topBar {
    background: #152e5b;
    padding: 1.7rem 0;
}

.calTop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4rem;
}

.calTop li a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calTop li a i {
    font-size: 1.375rem;
    color: var(--primary-color);
}

.calTop li a h2 {
    font-size: 0.875rem;
    color: #a5a5a5;
    margin: 0 0 5px;
}

.calTop li a span {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 600;
}

.calTop li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calTop li i {
    font-size: 1.375rem;
    color: var(--primary-color);
}

.calTop li h2 {
    font-size: 0.875rem;
    color: #a5a5a5;
    margin: 0 0 5px;
}

.calTop li p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 600;
}

.logo img {
    width: 203px;
    height: 93px;
}

.navbar-nav {
    align-items: center;
    justify-content: center;
    /* width: 74%; */
    gap: 4rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #1a1b1e;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2.5px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    border-radius: 5px;
}

.navbar .dropdown li {
    min-width: 220px;
    position: relative;
    list-style: none;
}

.navbar .dropdown ul li a {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    color: var(--primary-color);
    display: block;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #f5f5f5;
    letter-spacing: 3px;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown > a:after {
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    padding-left: 10px;
    font-weight: 300;
}

.navbar .dropdown ul li a:hover {
    background: #f5f5f5;
}

.navbar-collapse {
    justify-content: space-between;
}

.form-inline {
    gap: 2rem;
}

nav.navbar {
    background: var(--white);
    border-radius: 5px;
    margin: 0 -8rem;
    padding: 15px 50px;
    position: relative;
    z-index: 11;
}

.an-navbar {
    background: #152e5b;
    padding: 0;
    position: relative;
}

.an-navbar:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--white);
    width: 100%;
    height: 15px;
}

.number {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--black);
}

/* navigation css */

.mainBanner {
    background: #152E5B;
    height: 740px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.welcomeSec {
    background: url(../images-front/welcomebg.jpg) no-repeat top center/ cover;
    position: relative;
    padding: 5rem 0 10rem;
}

.welcomeSec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFF;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.subHeading {
    font-size: 2.125rem;
    font-weight: 600;
    color: #70B714;
    margin: 0 0 1.5rem;
}

.mainHeading {
    font-size: 2.8125rem;
    color: #1b1d21;
    margin: 0 0 1.5rem;
}

.oferBox figure {
    position: relative;
    z-index: 1;
    width: 119px;
    height: 119px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.oferBox figure .circle-animate {
    position: absolute;
    width: 119px;
    height: 119px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #FFFFFF4D;
    -webkit-animation: circle_animation 2s infinite linear;
    -moz-animation: circle_animation 2s infinite linear;
    -o-animation: circle_animation 2s infinite linear;
    animation: circle_animation 2s infinite linear;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
}

.oferBox figure .circle-animate:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #70B714;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -6px;
    margin-top: -6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.oferBox figure svg {
    width: 38px;
    display: block;
    fill: var(--white);
    margin: auto;
}

.oferBox figure:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: #70B714;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.oferBox {
    text-align: center;
    /*background: #123363;*/
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 50%);
    padding: 48px 35px;
    border-radius: 5px;
}

.oferBox:hover figure .circle-animate {
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes circle_animation {
    0% {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    100% {
        -webkit-transform: rotate(585deg);
        transform: rotate(585deg);
    }
}

@-moz-keyframes circle_animation {
    0% {
        -moz-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    100% {
        -moz-transform: rotate(585deg);
        transform: rotate(585deg);
    }
}

@-o-keyframes circle_animation {
    0% {
        -o-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    100% {
        -o-transform: rotate(585deg);
        transform: rotate(585deg);
    }
}

@keyframes circle_animation {
    0% {
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -o-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    100% {
        -webkit-transform: rotate(585deg);
        -moz-transform: rotate(585deg);
        -o-transform: rotate(585deg);
        transform: rotate(585deg);
    }
}

.oferBox h5 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 400;
    margin: 0 0 1rem;
}

.oferBox p {
    margin: 0;
    color: #AFC1CD;
}

.oferBox.green {
    background: #4CCC42;
}

.oferBox.green figure:before {
    background: var(--white);
}

.oferBox.green figure svg {
    fill: var(--black);
}

.oferBox.green figure .circle-animate:after {
    background: var(--white);
}

.oferBox.green p {
    color: var(--white);
}

.oferBox.gray {
    background: #F5F5F5;
}

.oferBox.gray figure .circle-animate {
    border-color: #1B1D2126;
}

.oferBox.gray figure:before {
    background: #30344D;
}

.oferBox.gray figure .circle-animate:after {
    background: #30344D;
}

.oferBox.gray h5 {
    color: #1B1D21;
}

.oferBox.gray p {
    color: #5F5F5F;
}

.trustSec {
    background: url(../images-front/partnerbg.jpg) no-repeat top center/ cover;
    position: relative;
    text-align: center;
    padding: 11rem 0;
}

.trustSec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.trustSec .mainHeading {
    color: var(--white);
    font-size: 2.25rem;
}

.trustSec .subHeading {
    font-size: 0.875rem;
    color: var(--white);
    margin: 0 0 1.2rem;
}

.trustSec p {
    color: var(--white);
    font-style: italic;
}

.trustSec .nav-tabs {
    border-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: center;
    gap: 0.7rem;
}

.trustSec .nav-tabs .nav-link {
    background: #FFFFFF33;
    border-radius: 3px 3px 0px 0px;
    padding: 17px 50px;
    display: block;
    font-size: 0.875rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.trustSec .nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.fixSec {
    background: url(../images-front/welcomebg.jpg) no-repeat top center/ cover;
    position: relative;
    padding: 6rem 0 8rem;
}

.fixSec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFF;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.fixContent h5 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.fixContent h6 {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-left: 2.3rem;
}

.fixContent h6:before {
    content: '\f00c';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}

.fixContent p {
    padding-left: 2.3rem;
    color: #5f5f5f;
    margin: 0 0 2rem;
}

.fixContent {
    padding-left: 2rem;
}

.chooseSec {
    background: var(--theme-color);
    padding: 7rem 0;
}

.chooseSec .subHeading {
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.chooseSec .mainHeading {
    font-size: 2.25rem;
    color: var(--white);
    margin: 0 0 1.6rem;
}

.chooseSec p {
    color: var(--white);
    margin: 0;
}

.chooseSec p + p {
    margin-top: 20px;
}

.requestSec .welcomeHeading .subHeading {
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.requestSec .welcomeHeading .mainHeading {
    font-size: 2.25rem;
    margin: 0 0 1.2rem;
}

.digitalBox {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 5rem;
}

.icon-main {
    width: 75px;
    height: 75px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.icon-main svg {
    fill: var(--white);
    width: 35px;
}

.content-box h5 a {
    font-size: 20px;
    color: #1b1d21;
    font-family: "Inter", Sans-serif;
}

.content-box p {
    margin: 0;
}

.content-box {
    position: relative;
    padding-bottom: 25px;
    border-bottom: 1px solid #E5E5E5;
}

.content-box:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0;
    background: #2D3365;
    height: 1px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}

.digitalBox:hover .content-box:before {
    left: 0;
    right: auto;
    width: 100%;
}

.digitalBox:hover .icon-main {
    background: var(--primary-color);
}

.requestSec {
    background: url(../images-front/digitalbg.jpg) no-repeat top center/ cover;
    position: relative;
    z-index: 1;
    padding-bottom: 3.5rem;
}

.requestSec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFF;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.testimonialSec {
    padding: 0;
    background: var(--theme-color);
}

.testimonialSec .welcomeHeading .subHeading {
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.testimonialSec .welcomeHeading .mainHeading {
    font-size: 2.625rem;
    color: var(--white);
}

.testimonialSec .welcomeHeading p {
    color: var(--white);
}

.leftImg img {
    height: 942px;
    object-fit: cover;
}

.testiMain {
    padding: 0 8rem;
}

.testiBox {
    text-align: center;
}

.testiBox figure {
    position: relative;
    display: inline-flex;
    margin: 0 0 1.5rem;
}

.testiBox figure span {
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    position: absolute;
    right: -10px;
    border-radius: 50%;
    top: -10px;
}

.testiBox figure span:after {
    content: '\f10d';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testiSlider {
    padding-top: 10px;
}

.testiBox p {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 300;
    margin: 0 0 2rem;
}

.testiBox h5 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.blogSec {
    background: url(../images-front/blogbg.jpg) no-repeat top center/ cover;
    position: relative;
    padding-bottom: 0px;
    z-index: 11;
    padding-top: 13rem;
}

.blogSec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #123363;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blogSec .welcomeHeading .subHeading {
    font-size: 0.875rem;
    color: var(--white);
    margin: 0 0 1rem;
}

.blogSec .welcomeHeading .mainHeading {
    font-size: 2.625rem;
    color: var(--white);
    margin: 0 0 1rem;
}

.blogSec .welcomeHeading p {
    color: var(--white);
    margin: 0;
}

.contactSec .welcomeHeading .subHeading {
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.contactSec .welcomeHeading .mainHeading {
    font-size: 2.25rem;
    margin: 0 0 1rem;
}

.contactSec .welcomeHeading p {
    color: #5f5f5f;
}

.blogHeading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 3rem;
}

.blogHeading .welcomeHeading {
    flex: 0 0 50%;
}

.blogHeading .themeBtn {
    background: var(--white);
    color: var(--black);
}

.blogBox {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blogBox figure img {
    border-radius: 6px 6px 0 0;
}

.blogContent {
    background: var(--white);
    padding: 2rem 0 0;
    border-radius: 0 0 6px 6px;
    height: 100%;
}

.blogContent h5 {
    font-size: 1.5rem;
    color: #1b1d21;
    padding: 0 1.9rem;
    margin: 0 0 1rem;
}

.blogContent h5 a {
    color: #1b1d21;
}

.blogContent ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding: 1rem 2rem;
}

.blogContent ul li span {
    color: #818181;
}

.blogContent ul li .coment {
    font-size: 0.8125rem;
    color: #818181;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.blogContent ul li {
    display: flex;
    align-items: center;
    gap: 0.27rem;
}

.arow {
    width: 38px;
    height: 38px;
    border-radius: 3px;
    background: rgba(220, 219, 219, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b1d21;
    font-size: 1.2rem;
}

.arow i {
    font-weight: 500;
}

.blogBox:hover {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.blogSlider {
    padding-top: 1.1rem;
}

.cntctHeading {
    font-size: 1.875rem;
    color: #1b1d21;
    font-weight: 400;
    margin: 0 0 1.5rem;
}

.contactForm input {
    color: #666666;
    border: 1px solid #dbdbdb;
    padding: 11px 24px;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    margin: 0 0 1rem;
}

.contactForm textarea {
    color: #666666;
    border: 1px solid #dbdbdb;
    padding: 11px 24px;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    width: 100%;
    height: 120px;
    border-radius: 5px;
    margin: 0 0 1rem;
    resize: none;
}

.contactForm .themeBtn {
    border: 0;
}

.contactSec {
    padding: 7rem 0 5rem;
}

footer {
    background: #2D3365;
    padding-top: 4rem;
}

.quickList h3 {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    margin: 0 0 1rem;
}

.quickList p {
    color: #fff;
    margin: 0 0 20px;
}

.quickList span {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    display: block;
}

.quickList span a {
    color: var(--white);
}

.quickList span + img {
    width: 30%;
    margin-top: 20px;
}

.corporateLst {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.corporateLst label {
    color: #c0c1c2;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 6px;
    display: block;
}

.corporateLst p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.corporateLst a {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
    word-break: break-all;
}

.corporateLst i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.corporateLst + .corporateLst {
    margin-top: 1.3rem;
}

.quickList ul li a {
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.quickList ul li + li {
    margin-top: 22px;
}

.calFoter p {
    color: var(--white);
    margin: 0 0 1.5rem;
}

.calFoter ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calFoter ul li a {
    background-color: #13364F;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
}

.copyRight {
    background-color: #1F2238;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 1.8rem 0;
    margin-top: 7rem;
}

.copyRight p {
    margin: 0;
    text-align: center;
    color: var(--white);
}

/* inner pages css start */

.innerBanner {
    background: url(../images-front/inerbg1.jpg) no-repeat top center/ cover;
    margin-top: -33px;
    position: relative;
    z-index: 1;
    padding: 10rem 0;
}

.innerBanner h5 {
    font-size: 2.625rem;
    color: var(--white);
    margin: 0;
}

.innerBanner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.innerBanner ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.innerBanner ul li {
    color: rgba(255, 255, 255, 0.6);
}

.innerBanner ul li span {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.purchasepage {
    padding: 7rem 0;
}

.prchspgContent .mainHeading {
    font-size: 2.25rem;
}

.prchspgContent p {
    margin: 0;
}

.prchspgContent p + p {
    margin: 1.5rem 0 0;
}

.refinancePage {
    padding: 5rem 0;
}

.refinancePgsecng {
    background-color: #F8F8F8;
    padding: 5.5rem 0;
}

.loanpg1 {
    padding: 5rem 0;
}

.prchspgContent.grenLoan .subHeading {
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.shadow img {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
}

.loanpg1 {
    padding: 7rem 0;
}

.loanpg2 {
    background: url(../images-front/welcomebg.jpg) no-repeat top center/ cover;
    position: relative;
    background-position: center center;
}

.loanpg2:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #598AFF;
    opacity: 0.91;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.whiteContent h5 {
    color: var(--white);
    margin: 0 0 1.5rem;
}

.whiteContent p {
    color: var(--white);
    padding: 0;
    margin: 0;
}

.whiteContent p + p {
    margin: 1.5rem 0 0;
}

.loanpg3 {
    background: url(../images-front/purchaseimg.jpg) no-repeat top center/ cover;
    position: relative;
    background-position: center center;
}

.loanpg3:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFF;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.greenContent .grenClr {
    color: var(--primary-color);
}

.loanpg4 {
    background: url(../images-front/purchaseimg.jpg) no-repeat top center/ cover;
    position: relative;
    background-position: center center;
}

.loanpg4:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #598AFF;
    opacity: 0.91;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.loanpg5 {
    background: url(../images-front/welcomebg.jpg) no-repeat top center/ cover;
    position: relative;
    /* background-position: center center; */
}

.loanpg5:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #FFFFFF;
    opacity: 0.82;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.loanpg6 {
    background: url(../images-front/purchaseimg.jpg) no-repeat top center/ cover;
    position: relative;
    /* background-position: center center; */
}

.loanpg6:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #598AFF;
    opacity: 0.91;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
}

.adjstrate {
    padding: 1.8rem 0;
}

.adjstrate li {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    list-style: disc;
    margin-left: 19px;
}

.adjstrate li + li {
    margin-top: 13px;
}

.whatSec {
    background: url(../images-front/whatbg.jpg) no-repeat top center/ cover;
    text-align: center;
    padding: 6rem 0;
}

.whatSec .mainHeading {
    font-size: 2.25rem;
    color: var(--white);
    margin: 0 0 1.2rem;
}

.whatSec p {
    color: var(--white);
}


.progress-bar {
    all: unset;
    margin: 0 0 10px;
    overflow: hidden;
    padding-right: 24px;
    /* Separate bars from container */
}

.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
    margin: 5px 0;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    color: #2e2e2e;
    font-family: 'Prata', serif;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.progress-title {
    z-index: 100;
}

.progress-number-wrapper {
    width: 100%;
    z-index: 10;
}

.progress-number-mark {
    margin-bottom: 4px;
    border-radius: 3px;
    background-color: rgb(22, 23, 29);
    padding: 0 8px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.progress-number-wrapper,
.progress-number-mark {
    font-family: Open Sans, sans-serif;
    font-size: 11px;
    line-height: 24px;
    height: 24px;
    letter-spacing: 0px;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    color: #ffffff;
}

.down-arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #16171d;
    position: absolute;
    left: 50%;
    top: 100%;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.progress-content-outter {
    height: 7px;
    background-color: #efefef;
}

.progress-content {
    height: 7px;
    background-color: var(--primary-color);
    width: 0%;
    /* Initial value */
}

.progresBar {
    margin-top: 2rem;
}

.privacyPage h6 {
    font-size: 1.5rem;
    font-weight: 500;
}

.privacyPage ul li {
    list-style: disc;
    margin-bottom: 1rem;
}

.privacyPage ul {
    margin-bottom: 2rem;
}

/* inner pages css end */


.applynowSec h2 {
    font-size: 2.625rem;
    color: #000;
    margin: 0;
    text-align: center;
    font-family: 'Prata';
    margin-bottom: 2rem;
}


form.applyform .form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #585858;
}

form.applyform .form-group input.form-control {
    border-radius: 3px;
    border-color: #dbdbdb;
    height: 47px;

}

.nolabel {
    margin-top: 7px;
}

.blogSec .row{
    gap: 2rem 0;
}
