@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins: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');

/***** General CSS *****/
body {
    overflow-x: hidden;
    color: var(--white);
    word-break: break-word;
    background-color: var(--black);
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --themeColor: #3e4a87;
    --themeColor2: #222544;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    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);
}

/***** Custom Classes *****/
.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h1 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Lora';
    color: var(--white);
}

h2 {
    font-size: 39px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Lora';
}

h3 {
    margin: 0 0 0px;
    font-size: 25px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Lora';
}

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

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

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

p {
    margin: 0px;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0px;
    font-family: 'Poppins';
}

.theme-btn-1 {
    font-size: 17px;
    padding: 20px 60px;
    color: var(--white);
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%);
    background-size: contain;
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    gap: 10px;
    padding: 0;
    display: flex;
    list-style: none;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    text-transform: capitalize;
    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: 16px;
    font-weight: 600;
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
}

.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);
    text-decoration: underline;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(20px) rotate(-315deg);
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-20px) rotate(315deg);
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 50px;
    height: 44px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 20px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menuSec {
    top: 0;
    width: 100%;
    left: -100%;
    height: 100%;
    display: flex;
    z-index: 9;
    position: fixed;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    backdrop-filter: blur(10px);
    background-color: #00000098;
}

.menuSec.active {
    left: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-logo {
    z-index: 999;
    position: relative;
}

.menuSection {
    padding: 40px 0px;
}

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

.header-video {
    width: 70px;
    height: 70px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #ffffff24 0%, #ffffffa3 100%);
}

/*header css start */

/*banner css start */

.main_slider {
    padding: 100px 0px 0px;
}

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

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

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

.about-img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.about-img h3 {
    margin: 0px auto;
    max-width: 330px;
    font-weight: 400;
    line-height: 40px;
    font-style: italic;
    text-align: center;
}

.about-video {
    width: 90%;
    height: 610px;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    border-radius: 0px;
    border: 1px solid #ffffff79;
}

.about-video .play-btn {
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.about-video .play-btn::before {
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.7;
    position: absolute;
    background-color: #000;
}

.about-video .play-btn i {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 65px;
    margin: auto;
    height: 65px;
    color: #fff;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #ffffff48;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff7e;
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px #ffffff7e;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff7e;
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #ffffff7e;
        box-shadow: 0 0 0 0 #ffffff7e;
    }

    70% {
        -moz-box-shadow: 0 0 0 10px #ffffff7e;
        box-shadow: 0 0 0 10px #ffffff7e;
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #ffffff7e;
        box-shadow: 0 0 0 0 #ffffff7e;
    }
}

.about-video .play-btn img {
    width: 105%;
    height: 100%;
    max-width: 105%;
    object-fit: cover;
    animation: moveLeftToRight 4s linear infinite;
    filter: grayscale(4);
}

.about-video .vid {
    width: 100%;
    height: 100%;
}

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

.about-img-1 {
    text-align: center;
}

.about-img-1 h2 {
    margin-bottom: 30px;
}

.about-img-1 img {
    width: 90%;
    height: 340px;
    object-fit: contain;
    margin: 0px auto 35px;
    background-color: var(--white);
}

.about-img-1 h6 {
    font-size: 15px;
    font-family: 'Lora';
    margin-bottom: 20px;
}

.about-img-1 h4 {
    font-size: 18px;
    max-width: 300px;
    margin: 0px auto;
    line-height: 30px;
}

/* about-sec */
/* logo-sec */
.logo-box {
    display: flex;
    height: 125px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-box-1 {
    height: 365px;
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.logo-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-row-space {
    margin-top: 70px;
}

.logo-box-3 {
    gap: 70px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.logo-box-3 img {
    width: 100%;
    height: 330px;
    object-fit: contain;
}

.logo-box-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

.logo-box-4 .theme-btn-1 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo-box-4 form {
    display: flex;
    max-width: 312px;
    align-items: center;
    justify-content: center;
}

.logo-box-4 form input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 15px;
    color: #505b73;
    border-radius: 0px;
}

.logo-box-4 form input::placeholder {
    color: #505b73;
    font-weight: 600;
}

.logo-box-4 form button {
    border: none;
    height: 50px;
    color: #fff;
    flex-shrink: 0;
    padding: 0 18px;
    width: fit-content;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%);
}

/* logo-sec */
/* video-sec */
.video-sec {
    padding: 100px 0px;
}

.join-box {
    padding-top: 60px;
}

.join-box h2 {
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.join-box ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.join-box ul li a {
    width: 100px;
    height: auto;
    display: flex;
    font-size: 25px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    aspect-ratio: 1 / 1;
    justify-content: center;
    background: radial-gradient(circle, #00296e 20%, #005fc3 100%);
}

.video-box .about-video {
    width: 100%;
    border: none;
    height: 500px;
    margin-bottom: 40px;
}

.video-box h4 {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.video-box h6 {
    font-size: 24px;
    font-weight: 300;
    line-height: 35px;
    text-align: center;
    margin-bottom: 15px;
}

.video-box p {
    font-size: 22px;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
}

/* video-sec */

/*Footer Start*/

.footer-sec {
    width: 100%;
    height: 100%;
    background-size: cover;
    padding-top: 55px;
}

.footer-sec h2 {
    margin-bottom: 30px;
    color: var(--white);
}

.footer-quick-link ul li a {
    font-size: 14px;
    color: #fff;
}

.footer-sec h2 {
    font-size: 25px;
}

.footer-quick-link {
    margin-left: 50px;
}

.footer-contact ul {
    line-height: 45px;
}

.footer-contact ul li a {
    color: #ffff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-newsletter h2 {
    font-size: 25px;
    margin-bottom: 30px;
}

.footer-newsletter .theme-btn-1 {
    padding: 20px 50px;
    margin-bottom: 30px;
}

.footer-newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 15px;
    color: #505b73;
    border-radius: 0px;
}

.footer-newsletter input::placeholder {
    color: #505b73;
    font-weight: 600;
}

.footer-newsletter form {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 25px;
}

.footer-newsletter form button {
    border: none;
    height: 50px;
    color: #fff;
    flex-shrink: 0;
    padding: 0 18px;
    width: fit-content;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%);
}

.footer-logo {
    display: flex;
    height: 210px;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copy-right-sec {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ffffff2d;
    margin-top: 40px;
}

.copy-right-sec p {
    margin: 0;
    opacity: 0.5;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
}

/*Footer End*/

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