@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900|Poppins:300,400,500,600,700,800,900&display=swap");

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
/* custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    color: #2b044d;
    margin-top: 0px;
    font-style: normal;
    font-weight: 500;
}
p {
    color: #707b8e;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}

.f-right {
    float: right;
}
.fix {
    overflow: hidden;
}
a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
a,
button {
    color: #fff;
    outline: medium none;
}
button:focus,
input:focus {
    outline: 0;
}
input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
ul {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none;
}
.btn {
    background: #f9218d;
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 0;
    padding: 30px 44px;
    border-radius: 5px;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
    margin: 0;
}
.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #da1276;
    z-index: 1;
    border-radius: 5px;
    transition: transform 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
}
.btn:hover::before {
    transform: scaleX(1);
    color: #fff !important;
    z-index: -1;
}
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
.radius-btn {
    padding: 30px 43px;
    border-radius: 30px;
}
#scrollUp {
    background: #8f1bdc;
    height: 50px;
    width: 50px;
    right: 31px;
    bottom: 18px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
}
@media (max-width: 767px) {
    #scrollUp {
        right: 16px;
    }
}
#scrollUp:hover {
    color: #fff;
}
.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    background: #fff;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-70 {
    margin-bottom: 70px;
}
.pt-90 {
    padding-top: 90px;
}
.pb-90 {
    padding-bottom: 90px;
}
.heartbeat {
    animation: heartbeat 1s infinite alternate;
}
@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
}
.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}
.preloader .preloader-circle {
    width: 100px;
    height: 100px;
    position: relative;
    border: 3px solid transparent;
    border-top-color: #8f1bdc;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #ffffff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-img img {
    max-width: 55px;
}
.preloader .pere-text strong {
    font-weight: 800;
    color: #dca73a;
    text-transform: uppercase;
}
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
.section-padd4 {
    padding-top: 200px;
    padding-bottom: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .section-padd4 {
        padding-top: 200px;
        padding-bottom: 110px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-padd4 {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .section-padd4 {
        padding-top: 70px;
        padding-bottom: 15px;
    }
}
.footer-padding {
    padding-top: 200px;
    padding-bottom: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .footer-padding {
        padding-top: 200px;
        padding-bottom: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    .footer-padding {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}
.header-transparrent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
}
.main-header {
    z-index: 3;
}
@media only screen and (max-width: 991px) {
    .main-header {
        padding: 11px 0;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-header .main-menu {
        margin-right: 30px;
    }
}
.main-header .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0 5px;
}
.main-header .main-menu ul li > a {
    color: #450b78;
    font-weight: 400;
    padding: 39px 16px;
    display: block;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-header .main-menu ul li > a {
        padding: 39px 15px;
    }
}
.main-header .main-menu ul li > a::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 20px;
    background: #a60dcf;
    height: 2px;
    width: 0;
    transition: 0.3s;
    transform: translateX(-50%);
}
.main-header .main-menu ul li:hover > a::before {
    width: 100%;
}
.main-header .main-menu ul li > a.active::before {
    width: 100%;
}
.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.header-sticky ul li a {
    padding: 10px 19px;
}
.header-sticky.sticky-bar.sticky .main-menu ul > li > a {
    padding: 25px 16px;
}
.header-sticky.sticky-bar.sticky .main-menu ul > li > a::before {
    bottom: 11px;
}
.slicknav_menu .slicknav_icon-bar {
    background-color: #8f1bdc !important;
}
.slicknav_nav {
    margin-top: 0px;
}
.mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 99;
}

.slider-height {
    min-height: 1000px;
    background-repeat: no-repeat;
    background-position: center center;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-height {
        min-height: 900px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-height {
        min-height: 600px;
    }
}
@media (max-width: 767px) {
    .slider-height {
        min-height: 600px;
    }
}
.sky-blue {
    background: #f4feff;
}
.slider-area {
    margin-top: -1px;
    overflow: hidden;
}
.slider-area .hero__caption {
    position: relative;
}
@media (max-width: 767px) {
    .slider-area .hero__caption {
        padding-top: 17px;
    }
}
.slider-area .hero__caption span {
    display: inline-block;
    color: #2b044d;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.slider-area .hero__caption h1 {
    font-size: 65px;
    font-weight: 700;
    color: #2b044d;
    line-height: 1.3;
    margin-bottom: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .hero__caption h1 {
        font-size: 55px;
        line-height: 1.2;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption h1 {
        font-size: 50px;
        line-height: 1.2;
    }
}
@media (max-width: 767px) {
    .slider-area .hero__caption h1 {
        font-size: 29px;
        line-height: 1.4;
    }
}
.slider-area .hero__caption p {
    margin-bottom: 54px;
    padding-right: 155px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption p {
        margin-bottom: 54px;
        padding-right: 0px;
    }
}
@media (max-width: 767px) {
    .slider-area .hero__caption p {
        margin-bottom: 54px;
        padding-right: 0px;
    }
}
.slider-area .hero__caption .slider-btns a.video-btn {
    background: #d852e8;
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 16px;
}
.slider-area .hero__caption .slider-btns a.video-btn:hover.ani-btn {
    animation: 1.3s cubic-bezier(0.8, 0, 0, 1) 0s normal none infinite running
        pulse;
    box-shadow: 0 0 0 0 rgba(61, 1, 68, 0.302);
    -webkit-animation: 1.3s cubic-bezier(217, 70, 233, 1) 0s normal none
        infinite running pulse;
}
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(83, 16, 90, 0);
    }
}
@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(187, 22, 206, 0);
    }
}
.slider-area .hero__img img {
    position: relative;
    right: -63px;
}
@media only screen and (min-width: 992px) and (max-width: 1300px) {
    .slider-area .hero__img img {
        right: 0px;
    }
}
.best-features-area {
    position: relative;
}
.best-features-area .single-features {
    display: flex;
}
@media (max-width: 767px) {
    .best-features-area .single-features {
        margin-bottom: 30px;
    }
}
.best-features-area .single-features .features-icon span {
    position: relative;
    color: #fff;
    font-size: 30px;
    height: 67px;
    width: 67px;
    display: block;
    line-height: 67px;
    border-radius: 50%;
    text-align: center;
    background-image: -moz-linear-gradient(90deg, #e78ae9 0%, #926ef8 100%);
    background-image: -webkit-linear-gradient(90deg, #e78ae9 0%, #926ef8 100%);
    background-image: -ms-linear-gradient(90deg, #e78ae9 0%, #926ef8 100%);
}
.best-features-area .single-features .features-caption {
    padding-left: 19px;
}
.best-features-area .single-features .features-caption h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #23182c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .best-features-area .single-features .features-caption p {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .best-features-area .single-features .features-caption p {
        font-size: 13px;
    }
}
.best-features-area .features-shpae {
    position: absolute;
    left: 30px;
    top: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .best-features-area .features-shpae {
        top: 50%;
        transform: translateY(-50%);
    }
}
.best-features-area .features-shpae img {
    max-width: 90%;
}
@media (min-width: 1200px) and (max-width: 1500px) {
    .best-features-area .features-shpae img {
        max-width: 70%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .best-features-area .features-shpae img {
        max-width: 50%;
        top: 50%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .best-features-area .features-shpae img {
        display: none !important;
    }
}
.section-tittle h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 90px;
}
@media (max-width: 767px) {
    .section-tittle h2 {
        font-size: 30px;
        line-height: 1.3;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-tittle h2 {
        font-size: 40px;
    }
}
/* Available app */

.available-app-area {
    position: relative;
    padding: 220px 0;
    background-image: -moz-linear-gradient(0deg, #6c19f6 0%, #f9218d 100%);
    background-image: -webkit-linear-gradient(0deg, #6c19f6 0%, #f9218d 100%);
    background-image: -ms-linear-gradient(0deg, #6c19f6 0%, #f9218d 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .available-app-area {
        padding: 150px 0;
    }
}
@media only screen and (max-width: 991px) {
    .available-app-area {
        padding: 100px 0;
    }
}
.available-app-area .app-caption .section-tittle3 h2 {
    color: #fff;
    margin-bottom: 35px;
    font-weight: 600;
}
.available-app-area .app-caption p {
    color: #fff;
    padding-right: 52px;
    padding-bottom: 26px;
}
.available-app-area .app-caption .app-btn .app-btn1 {
    padding-right: 15px;
}
@media (max-width: 767px) {
    .available-app-area .app-caption .app-btn .app-btn2 {
        display: block;
        padding-top: 10px;
    }
}
.available-app-area .app-img {
    position: relative;
    right: -88px;
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
    .available-app-area .app-img {
        right: 0px;
    }
}
@media only screen and (max-width: 1199px) {
    .available-app-area .app-img {
        top: 45px;
        right: 0;
    }
}
.available-app-area .app-img img {
    width: 100%;
}
.available-app-area .app-shape .app-shape-top {
    position: absolute;
    top: 100px;
    left: 125px;
}
.available-app-area .app-shape .app-shape-left {
    position: absolute;
    left: 0;
    bottom: 0;
}
.say-something-aera {
    position: relative;
    border-bottom: 1px solid #ffc9fd;
}
.say-something-aera .say-something-cap h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #282828;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .say-something-aera .say-something-cap h2 {
        font-size: 41px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .say-something-aera .say-something-cap h2 {
        margin-bottom: 25px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .say-something-aera .say-something-cap h2 {
        margin-bottom: 25px;
        font-size: 41px;
    }
}
@media (max-width: 767px) {
    .say-something-aera .say-something-cap h2 {
        margin-bottom: 25px;
        font-size: 30px;
    }
}
.say-something-aera .say-shape .say-shape1 {
    position: absolute;
    left: -99px;
    bottom: -140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
    .say-something-aera .say-shape .say-shape1 {
        left: -134px;
        bottom: -215px;
    }
}
.say-something-aera .say-shape .say-shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.footer-area .footer-logo {
    margin-bottom: 30px;
}
.footer-area .footer-pera .info1 {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-area .footer-pera.footer-pera2 p {
    padding: 0;
}
.footer-area .footer-tittle h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 48px;
    font-weight: 700;
}
.footer-area .footer-tittle ul li {
    color: #012f5f;
    margin-bottom: 15px;
}
.footer-area .footer-tittle ul li a {
    color: #868c98;
    font-weight: 300;
}
.footer-area .footer-tittle ul li a:hover {
    color: #8f1bdc;
    padding-left: 5px;
}
.footer-area .footer-form {
    margin-top: 40px;
}
.footer-area .footer-form form {
    position: relative;
}
.footer-area .footer-form form input {
    width: 100%;
    height: 43px;
    padding: 10px 20px;
    border: 1px solid #fff;
    background: #f9f9fe;
}
.footer-area .footer-form form .form-icon button {
    position: absolute;
    top: 1px;
    right: 0;
    border: 0;
    cursor: pointer;
    padding: 11px 22px;
    background: #8f1bdc;
    line-height: 1;
}
.footer-area .footer-copy-right {
    padding-top: 20px;
}
@media (max-width: 767px) {
    .footer-area .footer-copy-right {
        padding-top: 0px;
    }
}
.footer-area .footer-copy-right p {
    color: #888888;
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 12px;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
