@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;
    --textColor: #4c4c4c;
    --themeColor: #1e3a8a;
    --themeColor2: #4d70d4;
    --headingColor: #0e0e0e;
    --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: 'NexaBold';
    src: url(../fonts/Nexa-Heavy.ttf);
}


@font-face {
    font-family: 'NexaLight';
    src: url(../fonts/NexaLight.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: 4.2vw;
    margin: 0 0 0px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    font-family: 'NexaBold';
    text-transform: uppercase;
}

h2 {
    font-size: 50px;
    margin: 0 0 0px;
    font-weight: 500;
    letter-spacing: -2px;
    font-family: 'NexaBold';
    text-transform: uppercase;
    color: var(--headingColor);
}

h3 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    letter-spacing: -2px;
    font-family: 'NexaBold';
    color: var(--themeColor);
    text-transform: uppercase;
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'NexaBold';
    color: var(--headingColor);
}

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

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

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

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

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

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

.theme-btn-1 {
    display: block;
    width: fit-content;
}

.theme-btn-1 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 18px 30px;
    width: fit-content;
    color: var(--white);
    border-radius: 50px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: linear-gradient(25deg, var(--themeColor2) 0%, var(--themeColor) 100%);
}

.theme-btn-1:hover {
    transition: ease-in;
    font-weight: 600;
    color: var(--themeColor);
    background: var(--white);
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
}

.theme-btn-2 {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 25px;
    color: var(--black);
    width: fit-content;
    border-radius: 50px;
    transition: ease-in-out;
    background: var(--white);
    transition-duration: 0.5s;
    text-transform: uppercase;
    border: 1px solid transparent;
}

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

/* Preloader */

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    background-color: var(--white);
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes dot8567 {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dots723423 {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    width: 142px;
    height: 40px;
    position: relative;
    background: transparent;
}

.preloader-inner .dot {
    top: 12px;
    left: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    transform: translateX(0);
    background: var(--themeColor2);
    -webkit-transform: translateX(0);
    -webkit-animation: dot8567 2.8s infinite;
    animation: dot8567 2.8s infinite;
}

.preloader-inner .dots {
    margin-top: 12px;
    margin-left: 31px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dots723423 2.8s infinite;
    animation: dots723423 2.8s infinite;
}

.preloader-inner .dots span {
    float: left;
    width: 16px;
    height: 16px;
    display: block;
    margin-left: 16px;
    border-radius: 50%;
    background: var(--themeColor2);
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

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

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

.menuSec li ul {
    display: none;
}

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

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

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--white);
}

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

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

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

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

.header-right .header-login {
    width: 60px;
    height: 60px;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    align-items: center;
    color: var(--themeColor);
    justify-content: center;
    background-color: var(--white);
}




/*header css start */

/*banner css start */

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

.main_slider::before {
    left: 0;
    right: 0;
    bottom: 0;
    top: -60%;
    content: '';
    width: 100%;
    height: 150%;
    position: absolute;
    background: radial-gradient(circle, rgba(77, 112, 212, 0.69) 0%, rgba(77, 112, 212, 0) 50%);
}

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

.main_sliderbefore {
    left: 0px;
    z-index: 1;
    height: 90%;
    width: 100%;
    bottom: -1px;
    position: absolute;
    background-color: var(--white);
    clip-path: polygon(50% 55%, 100% 0, 100% 100%, 0 100%, 0 0);
}

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

.banner_heading {
    text-align: center;
}

.banner_img {
    width: 100%;
    display: flex;
    height: 680px;
    align-content: center;
    justify-content: center;
}

.banner_img img {
    width: 100%;
    height: 100%;
    margin-top: -50px;
    object-fit: contain;
}

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

.banner_list ul li {
    gap: 10px;
    display: flex;
    margin-bottom: 15px;
    align-items: baseline;
    justify-content: flex-start;
}

.banner_list ul li h6 {
    font-weight: 600;
    color: var(--black);
    font-family: 'Montserrat';
}



/*banner css end*/

/* about sec */

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

.about-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

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

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

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

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

.about-img-2 {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 0px 10px 10px 10px;
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-img-2::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.8;
    position: absolute;
    background-color: var(--themeColor);
}

.about-video {
    width: 100%;
    display: flex;
    min-height: 100%;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.about-video a {
    left: 40px;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    max-width: 425px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.about-video a i {
    width: 80px;
    height: 80px;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    position: relative;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border: 7px solid var(--white);
    background: linear-gradient(25deg, var(--themeColor2) 0%, var(--themeColor) 100%);
}

.about-video a span {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: var(--black);
    text-transform: uppercase;
}

.about-video a span::before {
    top: 0;
    bottom: 0;
    left: 110%;
    content: '';
    height: 1px;
    width: 100vw;
    margin: auto;
    opacity: 0.2;
    position: absolute;
    background-color: var(--black);
}

.about-video a span::after {
    top: 0;
    bottom: 0;
    left: 110%;
    content: '';
    height: 1px;
    width: 30px;
    margin: auto;
    position: absolute;
    background-color: var(--themeColor);
}


/* about sec */

/* service sec */


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

.serviceSlider .slick-slide {
    opacity: 0;
    margin: 0px auto;
}

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

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

.service-box {
    margin: 0px auto;
    overflow: hidden;
    max-width: 420px;
    border-radius: 10px;
    transition: ease-in-out;
    background: var(--white);
    transition-duration: 0.5s;
    box-shadow: 0px 0px 111px 0px rgba(0, 0, 0, 0.06);
}

.service-box:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background: linear-gradient(25deg, var(--themeColor2) 0%, var(--themeColor) 100%);
}

.service-box:hover * {
    color: var(--white);
}

.service-img {
    width: 100%;
    height: 280px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

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

.service-text {
    padding: 40px 30px;
}

.service-text h4 {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: uppercase;
}

.service-text p {
    margin-bottom: 15px;
}

.service-text a {
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline;
}

/* service sec */

/* join-sec */

.join-sec {
    display: flex;
    min-height: 550px;
    position: relative;
    padding: 100px 0px;
    align-items: center;
    justify-content: center;
    background-image: url(../images/join-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.join-sec::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.75;
    position: absolute;
    background-color: var(--themeColor);
}

.join-text {
    gap: 10px;
    z-index: 1;
    display: flex;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.join-text h2,
.join-text p {
    color: var(--white);
}

.join-text p {
    opacity: 0.8;
    margin-bottom: 10px;
}

/* join-sec */

/* why-choose-sec */

.why-choose-sec {
    padding: 100px 0px;
}

.why-choose-text {
    padding: 40px 0px;
}

.why-choose-text h2 {
    margin-bottom: 5px;
}

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

.why-choose-text h3 {
    margin-bottom: 10px;
}

.why-choose-img {
    width: 100%;
    height: 450px;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-image: url(../images/why-choose-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.why-choose-img::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.75;
    position: absolute;
    background-color: var(--themeColor2);
}

.why-choose-img>img {
    z-index: 2;
    width: 100%;
    height: 165%;
    position: relative;
    object-fit: contain;
    object-position: top;
}

.why-choose-img ul {
    right: 0;
    gap: 15px;
    bottom: 0;
    z-index: 3;
    width: 90%;
    display: flex;
    position: absolute;
    height: fit-content;
    max-width: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0px 40px 40px;
    background-color: var(--white);
    border-radius: 10px 0px 0px 0px;
}

.why-choose-img ul li {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.why-choose-img ul li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    object-fit: contain;
}

.why-choose-img ul li h6 {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Montserrat';
    text-transform: uppercase;
}

/* why-choose-sec */

/* blog sec */

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

.blog-box-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
}

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

.blogSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.blog-box-text {
    padding: 35px 20px;
}

.blog-box-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--black);
}

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

.blog-box-text ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-link {
    width: 50px;
    height: 50px;
    display: flex;
    flex-shrink: 0;
    border-radius: 50%;
    align-items: center;
    color: var(--white);
    justify-content: center;
    background-color: var(--themeColor);
}

.blog-box-text ul li {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog-box-text ul li h6 {
    font-family: 'Montserrat';
}

.blog-box-text ul li h6 i {
    margin-right: 5px;
    color: var(--themeColor);
}

/* blog sec */


/* footer */


.ftr_contact_icon a {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in;
    background: var(--themeColor);
}

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

.ftr_contact ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.ftr_contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.footer_top {
    padding: 0px 4%;
}

.ftr_contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--headingColor);
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
}

.ftr_contact_info a {
    color: var(--headingColor);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    font-family: "Montserrat", sans-serif;
}

.ftr_contact p {
    margin-bottom: 0;
}

.ftr_lgo p {
    margin: 30px 0;
    color: var(--white);
    width: 80%;
}

.footer_mid h4 {
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer_mid h5 {
    font-size: 25px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer_mid .ftr_form p {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 30px;
}

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

.ftr_lgo ul li a {
    width: 50px;
    height: 50px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    opacity: 0.5;
    font-size: 16px;
    transition: all .3s ease-in;
    border: 1px solid var(--white);
    background-color: var(--themeColor);
}

.ftr_lgo ul li a:hover {
    opacity: 1;
    border: 1px solid var(--themeColor2);
    color: var(--white);
    background: var(--themeColor2);
}

.footer_mid {
    position: relative;
    padding: 95px 4% 0px;
    background-color: var(--themeColor);
}

.quick_links ul li a {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.quick_links ul {
    column-count: 2;
}

.ftr_form {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    max-width: 600px;
    margin: -40% 0 0 auto;
}

.ftr_form h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--themeColor);
}

.ftr_form form input,
.ftr_form form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 14px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    border: 1px solid #0000001c;
    border-radius: 10px;
}

.ftr_form form input::placeholder,
.ftr_form form textarea::placeholder {
    color: #4c4c4c;
    text-transform: capitalize;
}

.ftr_form form textarea {
    resize: none;
    height: 120px;
}


.copy_right p {
    color: var(--white);
    margin-bottom: 0;
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.quick_links {
    padding-left: 50px;
}

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