/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
    --green-teal:#01B994;
    --dark-turquoise:#01D6B5;
    --night-black:#000101;
    --mint-tulip:#C3F6EE;
    --bright-turquoise:#00EFD1;
    --bluish-green:#02AE88;
    --aqua-blue:#1DCFD6;
    --clear-blue:#008DFF;
    --dark-jungle-green:#211F1F;
    --clover-green: #419B3A;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}
@font-face {
    font-family: 'Roundkey';
    src: url('../fonts/Roundkey-Light.eot');
    src: url('../fonts/Roundkey-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roundkey-Light.woff2') format('woff2'),
        url('../fonts/Roundkey-Light.woff') format('woff'),
        url('../fonts/Roundkey-Light.ttf') format('truetype'),
        url('../fonts/Roundkey-Light.svg#Roundkey-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roundkey';
    src: url('../fonts/Roundkey-Medium.eot');
    src: url('../fonts/Roundkey-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roundkey-Medium.woff2') format('woff2'),
        url('../fonts/Roundkey-Medium.woff') format('woff'),
        url('../fonts/Roundkey-Medium.ttf') format('truetype'),
        url('../fonts/Roundkey-Medium.svg#Roundkey-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roundkey';
    src: url('../fonts/Roundkey-Bold.eot');
    src: url('../fonts/Roundkey-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roundkey-Bold.woff2') format('woff2'),
        url('../fonts/Roundkey-Bold.woff') format('woff'),
        url('../fonts/Roundkey-Bold.ttf') format('truetype'),
        url('../fonts/Roundkey-Bold.svg#Roundkey-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.eot');
    src: url('../fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Light.woff2') format('woff2'),
        url('../fonts/Gilroy-Light.woff') format('woff'),
        url('../fonts/Gilroy-Light.ttf') format('truetype'),
        url('../fonts/Gilroy-Light.svg#Gilroy-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Roundkey', sans-serif;
    font-weight: 300;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 70px;
    line-height: 65px;
    letter-spacing: 2px;
}
h2 {
    font-size: 60px;
    line-height: 70px;
    color: var(--green-teal);
}
h3 {
    font-size: 40px;
    line-height: 35px;
}
h4 {
    font-size: 30px;
    line-height: 35px;
}
h6 {
    font-size: 18px;
    font-family: 'Gilroy';
    font-weight: 300;
    line-height: 30px;
    color: var(--white);
}
p {
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--white);
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section{
    padding: 80px 0;
    overflow: hidden;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.mobile-show {
    display: none;
}
.mobile-hide {
    display: block;
}
img, video {
    max-width: 100%;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
/* .section-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00EFD1, #02AE88);
    opacity: .5;
} */

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.header {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
/* .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .5s all;
} */
.header .navbar-brand {
    padding: 0;
}
.header .logo img {
    max-width: 80px;
    width: 100%;
}
.header.show {
    background-color: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
}
.header .join-now-btn .btn {
    background: linear-gradient(to right, var(--bright-turquoise), var(--bluish-green));
    color: var(--black);
    line-height: 28px;
    font-size: 26px;
    border: 0;
    border-radius: 9px;
    padding: 12px 42px;
}
.header .join-now-btn .btn:hover{
    background: linear-gradient(to left, var(--bright-turquoise), var(--bluish-green));
}

/* homeBanner css ******************************************************************************/
.banner-section {
    overflow: hidden;
    margin-top: -140px;
}
.banner-section .homeBanner-part {
    background: url("../images/banner-bg-img.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 200px 0 60px;
    position: relative;
}
.banner-section .container{
    position: relative;
    z-index: 1;
}
.banner-section .box1 img {
    position: relative;
    z-index: 2;
}
.banner-section .box2 {
    background: linear-gradient(to left, var(--white), var(--dark-turquoise));
    position: absolute;
    width: 100%;
    left: 38%;
    padding: 50px 190px;
    top: 16%;
}
.banner-section .box2 p{
    color: var(--night-black);
}
.banner-section .shape-img {
    text-align: right;
    position: relative;
    z-index: 1;
    top: -100px;
    right: -250px;
}
.banner-btn {
    position: absolute;
    bottom: 0;
    margin-left: 20px;
}
.banner-btn .btn {
    color: var(--black);
    font-size: 27px;
    line-height: 31px;
    background-image: linear-gradient(to top , var(--dark-turquoise), var(--white));
    text-transform: uppercase;
    padding: 17px 45px;
    border: 0;
}
.banner-btn .btn:hover{
    background-image: linear-gradient(to bottom , var(--dark-turquoise), var(--white));
}

/* about-us-section css ******************************************************************************/
.about-us-section h4 {
    color: var(--white);
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
    font-weight: 300;
}

/* three-col-section css ******************************************************************************/
.three-col-card {
    background: linear-gradient(to bottom, var(--white), var(--dark-turquoise));
    border-radius: 30px;
    padding: 55px 50px 44px;
    margin-bottom: 30px;
    text-align: center;
}
.three-col-section.section {
    padding-top: 0;
    padding-bottom: 580px;
}
.three-col-card img {
    margin-bottom: 15px;
}
.three-col-card h3 {
    text-transform: uppercase;
}
.three-col-card p {
    color: var(--black);
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
}
.three-col-card.middle-card img {
    margin-bottom: 40px;
}
.three-col-card.middle-card h3 {
    margin-bottom: 30px;
}
.three-col-row {
    display: flex;
    flex-wrap: wrap;
}
.three-col-section .col-section{
    width: 33.33%;
    padding: 0 15px;
}
.three-col-section .col-section .three-col-card:last-child {
    margin-bottom: 0;
}

/* image-with-text-section css ******************************************************************************/
.image-with-text-section .mobile-image {
    text-align: center;
}
.image-with-text-section{
    background-image: url(../images/background-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
}
.image-with-text-section .container {
    position: relative;
    z-index: 1;
}
.image-with-text-section .mobile-image img {
    margin-top: -560px;
}
.image-with-text-section .left-content-heading h3,
.image-with-text-section .right-content-heading h3{
    color: var(--white);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.image-with-text-section .left-content-heading h3::after, 
.image-with-text-section .right-content-heading h3::after {
    content: "";
    background-color: var(--clover-green);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 0;
    max-width: 60px;
}
.image-with-text-section .left-heading-one {
    margin-top: -150px;
}
.image-with-text-section .left-content-heading {
    width: 28%;
    position: absolute;
    top: 0;
}
.image-with-text-section .left-heading-two h3{
    text-align: left;
}
.image-with-text-section .left-heading-two{
    bottom: -240px;
    position: absolute;
    right: 0;
}
.image-with-text-section .right-content-heading {
    position: absolute;
    right: 0;
    width: 30%;
    top: 0;
}
.image-with-text-section .right-heading-one {
    position: absolute;
    top: -370px;
    left: 0;
}
.image-with-text-section .right-heading-two {
    position: absolute;
    top: -220px;
    left: -60px;
}
.image-with-text-section .bg-img img {
    filter: grayscale(100%);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* boottm-contact-section css ******************************************************************************/
.boottm-contact-section {
    padding: 50px 0 25px;
}
.boottm-contact-section .boottm-contact-heading h3{
    color: var(--mint-tulip);
    display: inline-block;
    max-width: 350px;
    margin: 0 auto 70px;
    width: 100%;
}
.boottm-contact-section .boottm-contact-row {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}
.boottm-contact-section .telegram-btn .btn {
    background: linear-gradient(to left, var(--aqua-blue), var(--clear-blue));
}
.boottm-contact-section .telegram-btn .btn,
.boottm-contact-section .whatsapp-btn .btn{
    color: var(--white);
    font-size: 25px;
    font-weight: 300;
    border-radius: 9px;
    border: 0;
    padding: 15px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 190px;
    width: 100%;
}
.boottm-contact-section .telegram-btn .btn img,
.boottm-contact-section .whatsapp-btn .btn img {
    margin-right: 10px;
}
.boottm-contact-section .middle-icon-logo-block a {
    margin-right: 50px;
}
.boottm-contact-section .middle-icon-logo-block a:last-child {
    margin-right: 0;
}
.boottm-contact-section .telegram-btn,
.boottm-contact-section .whatsapp-btn {
    display: flex;
    justify-content: center;
}
.boottm-contact-section .whatsapp-btn .btn{
    background: linear-gradient(to bottom, var(--bright-turquoise), var(--bluish-green));
    color: var(--black);
}
.boottm-contact-section .telegram-btn .btn:hover {
    background: linear-gradient(to right, var(--aqua-blue), var(--clear-blue));
}
.boottm-contact-section .whatsapp-btn .btn:hover {
    background: linear-gradient(to top, var(--bright-turquoise), var(--bluish-green));
    color: var(--white);
}

/* footer css ******************************************************************************/
.footer .text-box {
    text-align: center;
}
.footer {
    background-color: var(--dark-jungle-green);
    padding: 15px 0;
}