@font-face {
    font-family: 'futurabold';
    src: url('../fonts/futura_bold-webfont.woff2') format('woff2'),
         url('../fonts/futura_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.lc_text-widget--btn {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    border: none;
    background: linear-gradient(90deg, rgba(34,194,246,1) 0%, rgba(34,42,246,1) 100%)!important;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
}

@font-face {
    font-family: 'futura_hv_btheavy';
    src: url('../fonts/futuraheavybt-webfont.woff2') format('woff2'),
         url('../fonts/futuraheavybt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futura_hv_btheavy_italic';
    src: url('../fonts/futuraheavyitalicbt-webfont.woff2') format('woff2'),
         url('../fonts/futuraheavyitalicbt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "futurabold";
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #000000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 0 0 0;
}
.container{
    max-width: 1350px;
}
h1,h2{
    font-family: 'futura_hv_btheavy';
}

/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background:transparent;
    padding: 25px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
    width: 100px;
    margin-left: 40px;
}
.navbar-brand img {
    max-width: 100%;
    width: 100px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin-left: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.nav-row{
    display: flex;
    align-items: center;
    width: 100%;
}
.navbar-light .navbar-nav {
    margin:0 auto;
    padding: 0 0 0 40px;
}
.navbar-light .navbar-nav li {
    margin-right: 72px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: #fff;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav .nav-link:after{
    position: absolute;
    content: '';
    width: 0%;
    height: 3px;
    background: rgb(34,194,246); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(34,194,246,1) 0%, rgba(34,42,246,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(34,194,246,1) 0%,rgba(34,42,246,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(34,194,246,1) 0%,rgba(34,42,246,1) 100%);
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .nav-link.active:after{
    width: 100%;
    right: auto;
    left:0;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #fff;
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: #fff;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

a.nav-btn{
    margin-left: auto;
    margin-right: 40px;
    padding: 12px 40px;
    border-radius: 30px;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
a.nav-btn span{
    position: relative;
    z-index: 1;
}
a.nav-btn:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    background: #fff;
    bottom: 0;
    left: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
a.nav-btn:hover{
    color: #22C2F6;
}
a.nav-btn:hover:after{
    height: 100%;
}
/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: auto;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #fff;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #fff;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */


/* ***** Fix Header **** */
header.nav-new{
    padding: 15px 0;
    background: #000;
    box-shadow: 0 3px 6px rgba(255,255,255,0.16);
}
header.nav-new .navbar-brand img{
    width: 75px;
}
/* ***** End Fix Header **** */

/* **** Banner **** */
.banner-wrapper{
    padding: 0 0;
    position: relative;
}
.videofrem{
    width: 100%;
    height: 100vh;
    position: relative;
}
.videofrem video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}
.banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    /* right: 0; */
    /* transform: translateY(-50%); */
    /* -webkit-transform: translateY(-50%); */
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    margin-right: -50%;
}
.banner-data{
    max-width: 1000px;
    margin: 25px auto;
}
.banner-data h6{
    font-size: 34px;
    font-weight: bold;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%), linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    font-style: italic;
    font-family: 'futura_hv_btheavy_italic';
    text-align: center;
    margin: 0 auto 5px;
    display: table;
}
.banner-data h1{
    font-size: 71px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 0 40px;
    line-height: 84px;
}

.banner-data-2{
    max-width: 1000px;
    margin: 25px auto;
    margin-top: 200px;
}
.banner-data-2 h6{
    font-size: 34px;
    font-weight: bold;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%), linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    font-style: italic;
    font-family: 'futura_hv_btheavy_italic';
    text-align: center;
    margin: 0 auto 5px;
    display: table;
}
.banner-data-2 h1{
    font-size: 71px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 0 40px;
    line-height: 84px;
}
.btn-main{
    padding: 15px 40px;
    border-radius: 30px;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: table;
    position: relative;
    overflow: hidden;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.btn-main span{
    position: relative;
    z-index: 1;
}
.btn-main:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    background: #fff;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.btn-main:hover{
    color: #22C2F6;
}
.btn-main:hover:after{
    height: 100%;
}

.banner-data .btn-main{
    width: 275px;
    text-align: center;
    margin: 0 auto 30px;
}
.banner-data h4{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-align: center;
}
.banner-data-2 .btn-main{
    width: 275px;
    text-align: center;
    margin: 0 auto 30px;
}
.banner-data h4{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-align: center;
}
/* **** End Banner **** */

/* **** Sponcer **** */
.sponcer-wrp{
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0,1);
    position: relative;
}
.sponcer-wrp:before{
    position: absolute;
    content: '';
    background: linear-gradient(92.27deg, rgba(34, 194, 246, 0.59) -28.96%, rgba(34, 42, 246, 0.59) 104.24%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.carouselTicker__item{
    border: none;
    padding: 0 15px;
}
.carouselTicker__wrap ul{
    align-items: center;
    display: flex;
}
/* **** End Sponcer **** */

/* **** Features **** */
.features-wrp{
    padding: 80px 0;
}
.titlebar{
    margin: 0 auto 30px;
    display: table;
}
.titlebar h6{
    font-size: 34px;
    font-weight: bold;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%), linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    font-style: italic;
    font-family: 'futura_hv_btheavy_italic';
    text-align: center;
    margin: 0 auto 5px;
    display: table;
}
.titlebar h2{
    font-size: 57px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 0 0px;
    line-height: 60px;
}

.features-block{
    position: relative;
    margin: 0 0 30px;
    padding: 30px 20px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.04);
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    min-height: 400px;
}
.features-block:after{
    position: absolute;
    content:'';
    background: linear-gradient(92.27deg, rgba(34, 194, 246, 0.84) -28.96%, rgba(34, 42, 246, 0.84) 104.24%);
    border-radius: 20px;
    opacity:0;
    visibility:hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.features-block-2{
    position: relative;
    margin: 0 0 30px;
    padding: 30px 20px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.04);
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    min-height: 400px;
}
.features-block-2:after{
    position: absolute;
    content:'';
    background: linear-gradient(92.27deg, rgba(34, 194, 246, 0.84) -28.96%, rgba(34, 42, 246, 0.84) 104.24%);
    border-radius: 20px;
    opacity:0;
    visibility:hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.features-box{
    position: relative;
    z-index: 1;
}
.features-box img{
    margin: 0 auto 25px;
    display: table;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.features-box h3{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 10px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.features-box p{
    font-size: 12px;
    font-weight: bold;
    color: #b7b7b7;
    margin: 0;
    line-height: 25px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.features-block-2:hover{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}
.features-block-2:hover:after{
    opacity: 1;
    visibility: visible;
}
.features-block-2:hover .features-box h3,
.features-block-2:hover .features-box p{
    color: #fff;
}
.features-block:hover{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}
.features-block:hover:after{
    opacity: 1;
    visibility: visible;
}
.features-block:hover .features-box h3,
.features-block:hover .features-box p{
    color: #fff;
}
.features-block-2:hover img{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.features-block:hover img{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
}
/* **** End Features **** */

/* **** Success Stories **** */
.success-stories-wrp{
    padding: 60px 0;
}
.success-stories-wrp .carouselTicker__item{
    width: auto;
    height: auto;
    margin: 0 10px;
}
.success-stories-block{
    position: relative;
    padding: 40px 20px 30px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.04);
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    width: 450px;
    margin: 10px 0 0;
}
.success-stories-block:after{
    position: absolute;
    content:'';
    background: linear-gradient(92.27deg, rgba(34, 194, 246, 0.84) -28.96%, rgba(34, 42, 246, 0.84) 104.24%);
    border-radius: 20px;
    opacity:0;
    visibility:hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.success-stories-block .stories-box{
    position: relative;
    z-index: 1;
}
.stories-box p{
    font-size: 12px;
    font-weight: bold;
    color: #757575;
    line-height: 25px;
    text-align: left;
    margin: 0 0 25px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.story-act-rw{
    display: flex;
    align-items: center;
}
.story-nm{
    display: flex;
    align-items: center;
}
.story-nm img{
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.story-nm h3{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.raitings{
    margin-left: auto;
    height: 20px;
    display: flex;
}
.raitings i{
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%), linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 18px;
    margin-right: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.raitings i:last-child{
    margin: 0;
}

.success-stories-block:hover{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}
.success-stories-block:hover:after{
    opacity: 1;
    visibility: visible;
}
.success-stories-block:hover .stories-box p{
    color: #fff;
}
.success-stories-block:hover .story-nm h3{
    color: #fff;
}
.success-stories-block:hover .raitings i{
    -webkit-text-fill-color: #fff;
    text-fill-color: #fff;
}
/* **** End Success Stories **** */

/* **** FAQs **** */
.faq-wrp{
    padding: 60px 0;
}
.faq-wrp .accordion .accordion-item {
    margin: 0 0 15px;
    background-color: rgba(255,255,255,0.04);
    border: none;
    border-radius: 12px;
}
.faq-wrp .accordion .accordion-item:last-child{
    margin: 0;
}
.faq-wrp .accordion .accordion-item .accordion-button {
    font-size: 22px;
    padding: 25px 50px 25px 50px;
    color: #fff;
    font-weight: 700;
    background: transparent;
    border-radius: 20px;
    position: relative;
}
.faq-wrp .accordion .accordion-item .accordion-button:not(.collapsed) {
    background: linear-gradient(92.27deg, rgba(34, 194, 246, 0.84) -28.96%, rgba(34, 42, 246, 0.84) 104.24%);
    box-shadow: none;
}
.faq-wrp .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.faq-wrp .accordion .accordion-item .accordion-button::after {
    display: none;
}
.faq-wrp .accordion .accordion-item .accordion-button:before {
    position: absolute;
    content: "\f077";
    font-family: "Font Awesome 5 Pro";
    right:30px;
    top: 50%;
    font-size: 16px;
    color: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.faq-wrp .accordion .accordion-item .accordion-button.collapsed:before {
    content: "\f078";
}
.faq-wrp .accordion .accordion-body {
    padding: 20px 30px;
}
.faq-wrp .accordion .accordion-body p{
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #bbbbbb;
    line-height: 25px;
}
/* **** End FAQs **** */

/* **** Contact **** */
.contact-wrp{
    padding: 40px 0 80px;
}
.contact-frm{
    max-width: 1080px;
    margin: 0 auto;
    padding: 35px 0 0;
}
.contact-frm .form-group{
    margin: 0 0 25px;
}
.contact-frm .form-group .form-control{
    padding: 15px 15px;
    background: #0a0a0a;
    border-radius: 10px;
    height: auto;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    box-shadow: none;
    resize: none;
}
.contact-frm .form-group textarea.form-control{
    height: 135px;
}
.contact-frm .btn-main{
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 30px;
    border: none;
    padding: 15px 15px;
}
/* **** End Contact **** */

/* **** Footer **** */
footer{
    padding: 80px 0 60px;
}
.footer-rw{
    display: flex;
    align-items: center;
}
.logobx img{
    width: 100px;
}
.quicklinks{
    margin: 0 auto;
}
.quicklinks ul{
    display: flex;
    align-items: center;
}
.quicklinks ul li{
    margin-right:60px;
}
.quicklinks ul li:last-child{
    margin: 0;
}
.quicklinks ul li a{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    display: block;
}
.quicklinks ul li a:hover{
    color: #22C2F6;   
}
.social-bx{
    display: flex;
    align-items: center;
}
.social-bx a{
    width: 50px;
    height: 50px;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    display: block;
    margin-right: 15px;
}
.social-bx a:last-child{
    margin: 0;
}
.social-bx a:hover{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}
footer p{
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(92.27deg, #22C2F6 -28.96%, #222AF6 104.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    margin: 15px 0 0;
}
/* **** End Footer **** */
