@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@font-face {
    font-family: 'PT Sans';
    src: url('../../public/fonts/PTSans-Regular.woff2') format('woff2'), 
    url('../../public/fonts/PTSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
 @font-face {
    font-family: 'PT Sans';
    src: url('../../public/fonts/PTSans-Bold.woff2') format('woff2'), 
    url('../../public/fonts/PTSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/*-------- Landing Page --------*/
 body {
    font-family: "Figtree";
}
a {
    text-decoration: none;
    color: #3F68B3;
}
a:hover {
    color: #3F68B3;
}
::-moz-selection {
    color: #fff;
    background: #3F68B3;
}
::selection {
    color: #fff;
    background: #3F68B3;
}
#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    width: 45px;
    height: 45px;
    background-color: #3F68B3;
    color: #fff;
    border-radius: 0.625rem;
    transition: 0.3s ease-in;
    cursor: pointer;
    z-index: 99;
}
.w-mathscanner section {
    padding: 50px 0;
    scroll-margin-top: 80px;
}
.w-mathscanner .title {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}
.w-mathscanner .title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #24272c;
    margin: 0;
}
.w-mathscanner .title h2 span {
    color: #3F68B3;
}
.w-mathscanner .title p {
    font-size: 16px;
    color: #6c737d;
    margin-top: 0.5rem;
    margin-bottom: 0;
}
 @media (max-width: 991.98px) {
    .w-mathscanner section {
        padding: 45px 0;
	}
    .w-mathscanner .title {
        margin-bottom: 38px;
	}
    .w-mathscanner .title h2 {
        font-size: 32px;
	}
    .w-mathscanner .title p br {
        display: none;
	}
}
 @media (max-width: 767.98px) {
	 .w-mathscanner section {
		 padding: 40px 0;
	}
	 .w-mathscanner .title {
		 margin-bottom: 36px;
	}
	 .w-mathscanner .title h2 {
		 font-size: 30px;
	}
	 .w-mathscanner .title p {
		 font-size: 17px;
	}
}
 @media (max-width: 575.98px) {
	 .w-mathscanner section {
		 padding: 35px 0;
	}
	 .w-mathscanner .title {
		 margin-bottom: 34px;
	}
	 .w-mathscanner .title h2 {
		 font-size: 28px;
	}
	 .w-mathscanner .title p {
		 font-size: 16px;
	}
}
 @media (max-width: 399.98px) {
	 .w-mathscanner section {
		 padding: 30px 0;
	}
	 .w-mathscanner .title {
		 margin-bottom: 30px;
	}
	 .w-mathscanner .title h2 {
		 font-size: 26px;
	}
	 .w-mathscanner .title p {
		 font-size: 15px;
	}
}
 @media (max-width: 319.98px) {
    .w-mathscanner section {
        padding: 25px 0;
    }
    .w-mathscanner .title {
        margin-bottom: 25px;
    }
    .w-mathscanner .title h2 {
        font-size: 24px;
    }
    .w-mathscanner .title p {
        font-size: 14px;
    }
}
/* ---------------------------
    Header 
------------------------------*/
.w-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    padding: 0.625rem 0;
    z-index: 1000;
    transform: translateY(0);
    transition: all 0.3s ease-out;
}
.w-header .navbar {
    background-color: #1B4188;
    padding: 1rem;
    border-radius: .625rem;
    transition: all 0.3s ease-out;
}
.w-header .navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}
.w-header .navbar .navbar-brand img {
    display: block;
    height: 60px;
    border-radius: 0.625rem;
    transition: all 0.3s ease-out;
}
.w-header .navbar .navbar-brand span {
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    margin-left: 1rem;
}
.w-header .navbar .navbar-nav .nav-item a {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0 1rem;
    padding: 0 !important;
    transition: all 200ms linear;
}
.w-header .navbar .navbar-nav .nav-item a.active::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.w-header .navbar .navbar-nav .nav-item a.active {
    color: #fff;
}
.w-header .navbar-appbtn {
    display: flex;
    align-items: center;
}
.w-header .navbar-appbtn a {
    display: block;
}
.w-header.scroll-on {
    /* background-color: #fff;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.0509803922); */
    padding: 0;
}
.w-header.scroll-on .navbar{
    padding: .5rem 1rem;
}
.navbar-toggler-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: .325rem;
}
.navbar-toggler-icon i{
    font-size: 20px;
    color: #fff;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: unset;
}
@media (max-width: 1399.98px) {
    .w-header .navbar .navbar-brand span {
        display: none;
   }
}
@media (max-width: 991.98px) {
    .w-header .navbar{
        padding: .75rem;
    }
    .w-header .navbar .navbar-brand span {
        font-size: 20px;
        display: inline-block;
   }
    .w-header .navbar .navbar-brand img {
        height: 50px;
   }
    .w-header .navbar .navbar-collapse {
        margin-top: 0.625rem;
   }
    .w-header .navbar .navbar-collapse .navbar-nav {
        background-color: #fff;
        padding: 1rem;
        border-radius: 1rem;
   }
   .w-header .navbar .navbar-collapse .navbar-nav .nav-item{
        display: block;
        width: 100%;
   }
    .w-header .navbar .navbar-collapse .navbar-nav a {
        color: #24272c;
        text-align: left;
        width: 100%;
        padding: 0.5rem 0 !important;
        margin: 0;
   }
   .w-header .navbar .navbar-collapse .navbar-nav a.active{
        color: #1B4188;
   }
    .w-header .navbar .navbar-appbtn {
        display: none;
   }
}
@media (max-width: 767.98px) {
    .w-header .navbar .navbar-brand span {
        font-size: 19px;
   }
}
@media (max-width: 575.98px) {
    .w-header .navbar .navbar-brand span {
        font-size: 18px;
   }
    .w-header .navbar .navbar-brand img {
        height: 45px;
   }
}
@media (max-width: 399.98px) {
    .w-header .navbar .navbar-brand span {
        font-size: 17px;
        margin-left: 0.75rem;
   }
}
/* ---------------------------
    Hero 
------------------------------*/
.w-hero {
    position: relative;
    height: auto;
    width: 100%;
    padding-top: 125px !important;
}
.w-hero::before, .w-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.w-hero::before{
    top: 0;
    background-image: url(../img/hero/bg.jpg);
    height: 100%;
}
.w-hero::after {
    background-image: url(../img/hero/shape.svg);
    height: 114px;
}
.w-hero .hero-content {
    position: relative;
    z-index: 2;
}
.w-hero .hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: #24272c;
    margin: 0;
}
.w-hero .hero-content h1 span {
    display: block;
    color: #3F68B3;
}
.w-hero .hero-content p {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    color: #6c737d;
    margin: 1rem 0 2rem;
}
.w-hero .hero-content .hero-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.w-hero .hero-media {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
@media (max-width: 1599.98px) {
  
}
@media (max-width: 1499.98px) {
   
}
@media (max-width: 1399.98px) {
    .w-hero .hero-content h1 {
        font-size: 45px;
   }
}
@media (max-width: 1199.98px) {
    .w-hero {
        padding-top: 120px !important;
    }
}
@media (max-width: 991.98px) {
    .w-hero .hero-content{
        text-align: center;
    }
    .w-hero .hero-content h1 {
        font-size: 40px;
    }
    .w-hero .hero-content p {
        font-size: 17px;
    }
    .w-hero .hero-content .hero-btn{
        justify-content: center;
    }
    .w-hero .hero-media img{
        max-width: 80%;
        margin: 1.25rem auto 0;
    }
}
@media (max-width: 767.98px) {
    .w-hero .hero-content h1 {
        font-size: 36px;
   }
    .w-hero .hero-content p {
        font-size: 16px;
        margin: 1rem 0 1.5rem;
   }
}
@media (max-width: 575.98px) {
    .w-hero {
        padding-top: 100px !important;
        padding-bottom: 1rem !important;
   }
    .w-hero .hero-content h1 {
        font-size: 32px;
   }
   .w-hero .hero-content h1 span {
        display: inline;
    }
   .w-hero .hero-content .hero-btn a img{
        height: 55px;
    }
}
@media (max-width: 399.98px) {
    .w-hero .hero-content h1 {
        font-size: 30px;
   }
    .w-hero .hero-content p {
        font-size: 15px;
        margin: 1rem 0 1rem;
   }
   .w-hero .hero-content .hero-btn a{
    margin: .25rem .5rem;
   }
   .w-hero .hero-content .hero-btn a img{
    height: 50px;
}
}
@media (max-width: 349.98px) {
    .w-hero .hero-content h1 {
        font-size: 28px;
   }
    .w-hero .hero-content p {
        font-size: 14px;
   }
}
/* ---------------------------
    Appinfo 
------------------------------*/
.w-appinfo {
    background: #eaf6ff;
    background: linear-gradient(180deg, #fff 0%, #eaf6ff 100%);
}
.w-appinfo .appinfo-content {
    text-align: center;
}
.w-appinfo .appinfo-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #24272c;
    margin-bottom: 0.5rem;
}
.w-appinfo .appinfo-content p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    color: #6c737d;
}
@media (max-width: 1399.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 30px;
   }
}
@media (max-width: 1199.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 28px;
   }
}
@media (max-width: 991.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 26px;
   }
    .w-appinfo .appinfo-media {
        text-align: center;
   }
    .w-appinfo .appinfo-media img {
        max-width: 80%;
   }
}
@media (max-width: 767.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 24px;
   }
}
@media (max-width: 575.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 22px;
        margin-bottom: 0.35rem;
   }
}
@media (max-width: 399.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 20px;
        margin-bottom: 0.25rem;
   }
    .w-appinfo .appinfo-content p {
        font-size: 14px;
   }
}
@media (max-width: 349.98px) {
    .w-appinfo .appinfo-content h3 {
        font-size: 18px;
   }
}
/* ---------------------------
    About 
------------------------------*/
.w-about .about-media {
    text-align: center;
}
.w-about .about-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: #24272c;
    margin-bottom: 1rem;
}
.w-about .about-content h3 span {
    color: #3F68B3;
}
.w-about .about-content p {
    font-size: 18px;
    color: #6c737d;
    margin: 0;
}
@media (max-width: 1199.98px) {
    .w-about .about-content p {
        font-size: 17px;
   }
}
@media (max-width: 991.98px) {
    .w-about .about-content h3 {
        font-size: 32px;
   }
    .w-about .about-content p {
        font-size: 16px;
   }
}
@media (max-width: 767.98px) {
    .w-about .about-content h3 {
        font-size: 30px;
   }
    .w-about .about-media img {
        max-width: 40%;
   }
}
@media (max-width: 575.98px) {
    .w-about .about-content h3 {
        font-size: 28px;
        margin-bottom: 0.75rem;
   }
    .w-about .about-media img {
        max-width: 50%;
   }
}
@media (max-width: 399.98px) {
    .w-about .about-content h3 {
        font-size: 26px;
        margin-bottom: 0.625rem;
   }
    .w-about .about-content p {
        font-size: 14px;
   }
}
@media (max-width: 349.98px) {
    .w-about .about-content h3 {
        font-size: 24px;
   }
}
/* ---------------------------
    Features 
------------------------------*/
.w-features {
    position: relative;
    background: rgb(248, 248, 248);
    background: linear-gradient(360deg, rgb(248, 248, 248) 0%, rgba(247, 247, 247, 0) 100%);
    z-index: 1;
}
.w-features .features-card {
    padding: 1.5rem;
    height: 100%;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 1rem;
    transition: 0.3s;
}
.w-features .features-card.fb-1:hover {
    border-color: #1db2f3;
    box-shadow: 0 0 10px 0 rgba(29, 178, 243, 0.15);
}
.w-features .features-card.fb-2:hover {
    border-color: #ff8a23;
    box-shadow: 0 0 10px 0 rgba(255, 138, 35, 0.15);
}
.w-features .features-card.fb-3:hover {
    border-color: #ff4050;
    box-shadow: 0 0 10px 0 rgba(255, 64, 80, 0.15);
}
.w-features .features-card.fb-4:hover {
    border-color: #5748fa;
    box-shadow:0 0 10px 0 rgba(87, 72, 250, 0.15);
}
.w-features .features-card.fb-5:hover {
    border-color: #00b364;
    box-shadow: 0 0 10px 0 rgba(0, 179, 100, 0.15);
}
.w-features .features-card.fb-6:hover {
    border-color: #b97a66;
    box-shadow: 0 0 10px 0 rgba(185, 122, 102, 0.15);
}
.w-features .features-card .features-card-body h3 {
    font-size: 18px;
    color: #24272c;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}
.w-features .features-card .features-card-body p {
    font-size: 14px;
    color: #6c737d;
    margin-bottom: 0;
}
.w-features .w-shape .shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.w-features .w-shape .shape-right {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .w-features .features-card {
        padding: 1.25rem;
   }
    .w-features .features-card .features-card-body h3 {
        margin: 1.25rem 0 0.5rem;
   }
}
@media (max-width: 991.98px) {
    .w-features .features-card .features-card-body h3 {
        margin: 1rem 0 0.5rem;
   }
}
@media (max-width: 767.98px) {
    .w-features .features-card {
        padding: 1rem;
   }
    .w-features .w-shape {
        display: none;
   }
}
@media (max-width: 399.98px) {
    .w-features .features-card .features-card-body h3 {
        font-size: 17px;
        margin: 0.75rem 0 0.5rem;
   }
}
@media (max-width: 349.98px) {
    .w-features .features-card {
        padding: 0.75rem;
   }
    .w-features .features-card .features-card-body h3 {
        font-size: 16px;
   }
    .w-features .features-card .features-card-body p {
        font-size: 13px;
   }
}
/* ---------------------------
    Works 
------------------------------*/
.w-how-works {
    background: #eaf6ff;
    background: linear-gradient(180deg, #f3f6ff 0%, #fff 100%);
}
.w-how-works .work-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.w-how-works .work-list-container ul li {
    position: relative;
    margin-bottom: 1.25rem;
    padding-left: 4rem;
}
.w-how-works .work-list-container ul li:before {
    content: attr(data-slide);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(108, 115, 125, 0.3);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #6c737d;
    background-color: #fff;
    transition: 0.3s;
}
.w-how-works .work-list-container ul li:after {
    content: "";
    position: absolute;
    height: 100%;
    border: 1px dashed rgba(108, 115, 125, 0.3);
    left: 22.5px;
    top: 45px;
}
.w-how-works .work-list-container ul li:last-child::after {
    content: unset;
}
.w-how-works .work-list-container ul li h4 {
    font-size: 22px;
    font-weight: 700;
    color: #24272c;
    padding-top: 0.65rem;
    margin-bottom: 0.75rem;
    transition: 0.3s;
    cursor: pointer;
}
.w-how-works .work-list-container ul li p {
    font-size: 15px;
    color: #6c737d;
    margin: 0;
}
.w-how-works .work-list-container ul li.active:before {
    border-color: #3F68B3;
    color: #fff;
    background-color: #3F68B3;
}
.w-how-works .work-list-container ul li.active h4 {
    color: #3F68B3;
}
.w-how-works .swiper {
    position: relative;
    text-align: center;
}
.w-how-works .swiper .swiper-wrapper .swiper-slide .work-media {
    position: relative;
    background-image: url(../img/screen/mockup.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.w-how-works .swiper .swiper-wrapper .swiper-slide .work-media img {
    position: relative;
    padding: 12px;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .w-how-works .work-list-container ul li h4 {
        font-size: 20px;
   }
}
@media (max-width: 991.98px) {
    .w-how-works .work-list-container ul li h4 {
        font-size: 19px;
   }
}
@media (max-width: 767.98px) {
    .w-how-works .work-list-container ul li {
        margin-bottom: 1rem;
        padding-left: 3.5rem;
   }
    .w-how-works .work-list-container ul li h4 {
        font-size: 18px;
        margin-bottom: 0.5rem;
   }
}
@media (max-width: 575.98px) {
    .w-how-works .work-list-container ul li {
        margin-bottom: 0.75rem;
        padding-left: 3.25rem;
   }
    .w-how-works .work-list-container ul li::before {
        width: 40px;
        height: 40px;
        font-size: 15px;
   }
    .w-how-works .work-list-container ul li::after {
        left: 20px;
        top: 40px;
   }
    .w-how-works .work-list-container ul li h4 {
        padding-top: 0.45rem;
        margin-bottom: 0.35rem;
   }
}
@media (max-width: 399.98px) {
    .w-how-works .work-list-container ul li {
        padding-left: 3rem;
   }
    .w-how-works .work-list-container ul li::before {
        width: 35px;
        height: 35px;
        font-size: 14px;
   }
    .w-how-works .work-list-container ul li::after {
        left: 17px;
        top: 35px;
   }
    .w-how-works .work-list-container ul li h4 {
        font-size: 17px;
        padding-top: 0.35rem;
        margin-bottom: 0.25rem;
   }
    .w-how-works .work-list-container ul li p {
        font-size: 14px;
   }
}
@media (max-width: 349.98px) {
    .w-how-works .work-list-container ul li h4 {
        font-size: 16px;
   }
}
/* ---------------------------
    Step 
------------------------------*/
.w-step {
    position: relative;
    background: #fafdff;
    z-index: 1;
}
.w-step .step {
    position: relative;
}
.w-step .step::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    width: 400px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.w-step .step.step-1::before {
    background-image: url(../img/step/shape-1.svg);
}
.w-step .step.step-1 .step-box {
    border-color: #1db2f3;
}
.w-step .step.step-1 .step-box span {
    color: #1db2f3;
}
.w-step .step.step-2::before {
    background-image: url(../img/step/shape-2.svg);
}
.w-step .step.step-2 .step-box {
    border-color: #5748fa;
}
.w-step .step.step-2 .step-box span {
    color: #5748fa;
}
.w-step .step.step-3::before {
    background-image: url(../img/step/shape-3.svg);
}
.w-step .step.step-3 .step-box {
    border-color: #ff4050;
}
.w-step .step.step-3 .step-box span {
    color: #ff4050;
}
.w-step .step-box {
    position: relative;
    padding: 3.5rem 2rem;
    background-color: #fff;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    text-align: center;
    border: 3px solid rgba(108, 115, 125, 0.3);
    margin: 0 auto 20px;
}
.w-step .step-box span {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    color: #24272c;
    margin-bottom: 1rem;
}
.w-step .step-box h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    color: #24272c;
    margin-bottom: 1.25rem;
}
.w-step .step-box p {
    font-size: 14px;
    font-weight: 400;
    color: #6c737d;
    margin: 0;
}
@media (max-width: 1399.98px) {
    .w-step .step::before {
        content: "";
        width: 370px;
        height: 370px;
   }
    .w-step .step .step-box {
        padding: 2rem 2.5rem;
        width: 320px;
        height: 320px;
   }
    .w-step .step .step-box h3, .w-step .step .step-box span {
        margin-bottom: 0.75rem;
   }
}
@media (max-width: 1199.98px) {
    .w-step .step::before {
        content: unset;
   }
    .w-step .step .step-box {
        padding: 1.25rem;
        width: auto;
        height: 100%;
        border-radius: 1rem;
        border-width: 2px;
   }
    .w-step .step .step-box span {
        font-size: 34px;
   }
}
@media (max-width: 991.98px) {
    .w-step .step .step-box span {
        font-size: 32px;
   }
}
@media (max-width: 767.98px) {
    .w-step .step .step-box {
        padding: 1rem;
   }
    .w-step .step .step-box span {
        font-size: 30px;
   }
}
@media (max-width: 575.98px) {
    .w-step .step .step-box {
        border-width: 1px;
        height: auto;
        margin: 0;
   }
    .w-step .step .step-box span {
        font-size: 28px;
   }
}
@media (max-width: 399.98px) {
    .w-step .step .step-box span {
        font-size: 26px;
   }
    .w-step .step .step-box h3 {
        font-size: 17px;
   }
}
@media (max-width: 349.98px) {
    .w-step .step .step-box span {
        font-size: 24px;
   }
}
/* ---------------------------
    Screen 
------------------------------*/
.w-screen {
    overflow: hidden;
}
.w-screen .swiper {
    padding: 20px 0;
}
.w-screen .swiper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/screen/mockup.png) no-repeat;
    background-size: cover;
    width: 288px;
    height: 586px;
    margin: 0 auto;
    z-index: 3;
}
.w-screen .swiper .swiper-wrapper .swiper-slide {
    text-align: center;
    opacity: 0.6;
    transform: scale(0.8);
    transition: 0.3s;
}
.w-screen .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev, .w-screen .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.9) !important;
    opacity: 0.8 !important;
}
.w-screen .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 1399.98px) {
    .w-screen .swiper {
        padding: 14px 0;
   }
    .w-screen .swiper::before {
        width: 247px;
        height: 504px;
   }
}
@media (max-width: 1199.98px) {
    .w-screen .swiper {
        padding: 20px 0;
   }
    .w-screen .swiper::before {
        width: 288px;
        height: 586px;
   }
}
@media (max-width: 991.98px) {
    .w-screen .swiper {
        padding: 14px 0;
   }
    .w-screen .swiper::before {
        width: 257px;
        height: 524px;
   }
}
@media (max-width: 767.98px) {
    .w-screen .swiper {
        padding: 10px 0;
   }
    .w-screen .swiper::before {
        width: 226px;
        height: 460px;
   }
}
@media (max-width: 575.98px) {
    .w-screen .swiper::before {
        width: 288px;
        height: 586px;
   }
}
@media (max-width: 319.98px) {
    .w-screen .swiper::before {
        display: none;
   }
}
/* ---------------------------
    Review 
------------------------------*/
.w-review {
    position: relative;
    z-index: 1;
}
.w-review .review-content {
    border: 1px solid rgba(118, 118, 128, 0.12);
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    height: 100%;
}
.w-review .review-content .review-star {
    margin-bottom: 0.5rem;
}
.w-review .review-content .review-star i {
    color: #d6d7d9;
    font-size: 26px;
    margin-right: 0.25rem;
}
.w-review .review-content .review-star i.fill {
    color: #febb36;
}
.w-review .review-content h4 {
    display: -webkit-box;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    color: #24272c;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.w-review .review-content p {
    display: -webkit-box;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #6c737d;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.w-review .review-content .review-user {
    display: flex;
    align-items: center;
}
.w-review .review-content .review-user .review-user-details {
    margin-left: 0.75rem;
}
.w-review .review-content .review-user .review-user-details h4 {
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
}
.w-review .review-content .review-user .review-user-details span {
    font-size: 14px;
    font-weight: 500;
    color: #6c737d;
}
.w-review .w-shape .shape-left {
    position: absolute;
    top: 100px;
    left: 90px;
    z-index: -1;
}
.w-review .w-shape .shape-right {
    position: absolute;
    bottom: 50px;
    right: 90px;
    z-index: -1;
}
@media (max-width: 1599.98px) {
    .w-review .w-shape .shape-left {
        top: 130px;
        left: 1rem;
   }
    .w-review .w-shape .shape-right {
        bottom: 1rem;
        right: 1rem;
   }
}
@media (max-width: 1199.98px) {
    .w-review .w-shape {
        display: none;
   }
}
@media (max-width: 991.98px) {
    .w-review .review-content .review-star i {
        font-size: 24px;
   }
}
@media (max-width: 767.98px) {
    .w-review .review-content .review-star i {
        font-size: 22px;
   }
    .w-review .review-content h4 {
        font-size: 17px;
   }
    .w-review .review-content .review-user img {
        width: 50px;
        height: 50px;
   }
    .w-review .review-content .review-user .review-user-details h4 {
        font-size: 17px;
   }
}
@media (max-width: 575.98px) {
    .w-review .review-content {
        padding: 1rem;
   }
    .w-review .review-content h4 {
        font-size: 16px;
   }
    .w-review .review-content .review-star i {
        font-size: 20px;
   }
    .w-review .review-content .review-user img {
        width: 45px;
        height: 45px;
   }
    .w-review .review-content .review-user .review-user-details h4 {
        font-size: 16px;
   }
}
@media (max-width: 399.98px) {
    .w-review .review-content h4 {
        font-size: 15px;
   }
    .w-review .review-content .review-user img {
        width: 40px;
        height: 40px;
   }
    .w-review .review-content .review-user .review-user-details h4 {
        font-size: 15px;
   }
}
@media (max-width: 349.98px) {
    .w-review .review-content h4 {
        font-size: 14px;
   }
    .w-review .review-content p {
        font-size: 13px;
   }
    .w-review .review-content .review-user .review-user-details h4 {
        font-size: 14px;
   }
    .w-review .review-content .review-user .review-user-details p {
        font-size: 13px;
   }
}
/* ---------------------------
    Downloads 
------------------------------*/
.w-download .download-box {
    position: relative;
    padding: 90px 70px;
    border-radius: 1rem;
    background-image: url(../img/download/bg.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.w-download .download-box .download-content {
    text-align: center;
}
.w-download .download-box .download-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #24272c;
}
.w-download .download-box .download-content p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 1.75rem;
    color: #6c737d;
}
.w-download .download-box .download-content .download-app-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.w-download .download-box .shape .shape-1 {
    position: absolute;
    top: 40px;
    left: 180px;
}
.w-download .download-box .shape .shape-2 {
    position: absolute;
    top: 170px;
    left: 70px;
}
.w-download .download-box .shape .shape-3 {
    position: absolute;
    bottom: 30px;
    left: 225px;
}
.w-download .download-box .shape .shape-4 {
    position: absolute;
    top: 50px;
    right: 180px;
}
.w-download .download-box .shape .shape-5 {
    position: absolute;
    top: 170px;
    right: 70px;
}
.w-download .download-box .shape .shape-6 {
    position: absolute;
    bottom: 40px;
    right: 195px;
}
@media (max-width: 1199.98px) {
    .w-download .download-box {
        padding: 80px 60px;
   }
    .w-download .download-box .shape .shape-1 {
        left: 160px;
   }
    .w-download .download-box .shape .shape-3 {
        left: 180px;
   }
    .w-download .download-box .shape .shape-4 {
        top: 40px;
        right: 150px;
   }
}
@media (max-width: 991.98px) {
    .w-download .download-box {
        padding: 70px 50px;
   }
    .w-download .download-box .shape img {
        width: 60px;
   }
    .w-download .download-box .shape .shape-1 {
        left: 110px;
   }
    .w-download .download-box .shape .shape-2 {
        left: 10px;
        top: 190px;
   }
    .w-download .download-box .shape .shape-3 {
        bottom: 15px;
        left: 115px;
   }
    .w-download .download-box .shape .shape-4 {
        right: 110px;
   }
    .w-download .download-box .shape .shape-5 {
        right: 10px;
        top: 190px;
   }
    .w-download .download-box .shape .shape-6 {
        bottom: 15px;
        right: 115px;
   }
}
@media (max-width: 767.98px) {
    .w-download .download-box {
        padding: 70px 35px;
   }
    .w-download .download-box .download-content h2 {
        font-size: 30px;
        margin-bottom: 0.5rem;
   }
    .w-download .download-box .download-content p {
        margin-bottom: 1.5rem;
   }
    .w-download .download-box .shape {
        display: none;
   }
}
@media (max-width: 575.98px) {
    .w-download .download-box {
        padding: 1.25rem;
   }
    .w-download .download-box .download-content h2 {
        font-size: 28px;
   }
    .w-download .download-box .download-content p {
        margin-bottom: 1.25rem;
   }
    .w-download .download-box .download-content .download-app-btn a {
        margin: 0.5rem;
   }
    .w-download .download-box .shape {
        display: none;
   }
}
@media (max-width: 399.98px) {
    .w-download .download-box {
        padding: 1rem;
   }
    .w-download .download-box .download-content h2 {
        font-size: 26px;
   }
    .w-download .download-box .download-content p {
        font-size: 14px;
        margin-bottom: 1rem;
   }
}
@media (max-width: 349.98px) {
    .w-download .download-box .download-content h2 {
        font-size: 24px;
   }
    .w-download .download-box .download-content p {
        font-size: 14px;
   }
    .w-download .download-box .download-content .download-app-btn a {
        margin: 0.25rem;
   }
}
/* ---------------------------
    Download App Notifications 
------------------------------*/
.downloadapp {
    position: fixed;
    bottom: 1rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    padding-left: 0.25rem;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #000;
    box-shadow: 0 0 20px 0 #000;
    transition: 0.3s;
    z-index: 999;
}
.downloadapp .dapplogo {
    height: 32px;
    margin-right: 0.5rem;
}
.downloadapp a img {
    height: 32px;
}
.downloadapp .dappclose {
    font-size: 20px;
    line-height: normal;
    color: #111;
    border-radius: 8px;
    padding: 0.25rem;
    margin-right: 0.25rem;
}
@media (max-width: 349.98px) {
    .downloadapp .dapplogo {
        height: 28px;
   }
    .downloadapp a img {
        height: 28px;
   }
}
@media (max-width: 319.98px) {
    .downloadapp {
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem;
   }
    .downloadapp .dapplogo {
        height: 26px;
        margin-right: 0.25rem;
   }
    .downloadapp a img {
        height: 26px;
   }
    .downloadapp .dappclose {
        font-size: 18px;
        padding: 0.15rem;
        margin-right: 0.15rem;
   }
}
@media (max-width: 279.98px) {
    .headermenu .downloadapp {
        display: none;
   }
}
/* ---------------------------
    Footer 
------------------------------*/
.w-footer {
    background-color: #0c101b;
    padding-top: 50px;
}
.w-footer .footer-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.625rem;
}
.w-footer .footer-content p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
}
.w-footer .footer-content ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
}
.w-footer .footer-content ul li {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}
.w-footer .footer-content ul li:last-child {
    margin-right: 0;
}
.w-footer .footer-content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}
.w-footer .footer-content ul li a:hover {
    border: transparent;
}
.w-footer .footer-content ul li a:hover.ins {
    background: linear-gradient(49.12deg, #fd5 6.62%, #ff543e 50.06%, #c837ab 93.5%);
}
.w-footer .footer-content ul li a:hover.pin {
    background: #e60023;
}
.w-footer .footer-content ul li a:hover.fb {
    background: #0b69ed;
}
.w-footer .footer-content ul li a:hover.yt {
    background: #f00;
}
.w-footer .footer-content ul li a:hover.x {
    background: #fff;
}
.w-footer .footer-content ul li a:hover.x img {
    filter: brightness(0.1);
}
.w-footer .footer-content ul li a:hover.tik {
    background: #000;
}
.w-footer .footer-app-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.w-footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #404a63;
    margin: 1.25rem 0;
    padding-top: 1.25rem;
}
.w-footer .copyright ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.w-footer .copyright ul li {
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid #404a63;
}
.w-footer .copyright ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.w-footer .copyright ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s;
}
.w-footer .copyright ul li a:hover {
    color: #3F68B3;
}
.w-footer .copyright .footer-copyright {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 991.98px) {
    .w-footer {
        padding-top: 45px;
   }
    .w-footer .footer-content h3 {
        font-size: 28px;
   }
    .w-footer .copyright {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
   }
    .w-footer .copyright ul {
        margin-bottom: 0.75rem;
   }
    .w-footer .copyright ul li a {
        font-size: 17px;
   }
    .w-footer .copyright .footer-copyright {
        font-size: 17px;
   }
}
@media (max-width: 767.98px) {
    .w-footer {
        padding-top: 40px;
        text-align: center;
   }
    .w-footer .footer-content h3 {
        font-size: 26px;
   }
    .w-footer .footer-content ul {
        justify-content: center;
        margin-bottom: 1rem;
   }
    .w-footer .footer-content ul li a {
        width: 42px;
        height: 42px;
   }
    .w-footer .footer-app-btn {
        justify-content: center;
   }
    .w-footer .footer-app-btn a img {
        height: 55px;
   }
    .w-footer .copyright {
        margin-top: 0.75rem;
   }
    .w-footer .copyright ul li a {
        font-size: 16px;
   }
    .w-footer .copyright .footer-copyright {
        font-size: 16px;
   }
}
@media (max-width: 575.98px) {
    .w-footer {
        padding-top: 35px;
   }
    .w-footer .footer-content h3 {
        font-size: 24px;
   }
    .w-footer .footer-content p {
        font-size: 15px;
   }
    .w-footer .footer-content ul li a {
        width: 40px;
        height: 40px;
   }
    .w-footer .footer-content ul li a img {
        width: 19px;
   }
    .w-footer .copyright {
        margin: 1rem 0;
        padding-top: 1rem;
   }
    .w-footer .copyright ul li a {
        font-size: 15px;
   }
    .w-footer .copyright .footer-copyright {
        font-size: 15px;
   }
}
@media (max-width: 399.98px) {
    .w-footer {
        padding-top: 30px;
   }
    .w-footer .footer-content h3 {
        font-size: 22px;
   }
    .w-footer .footer-content ul li a {
        width: 38px;
        height: 38px;
   }
    .w-footer .footer-content ul li a img {
        width: 18px;
   }
    .w-footer .footer-app-btn a img {
        height: 50px;
   }
}
@media (max-width: 349.98px) {
    .w-footer .footer-content h3 {
        font-size: 20px;
   }
    .w-footer .footer-content p {
        font-size: 14px;
   }
    .w-footer .copyright {
        margin: 0.75rem 0;
        padding-top: 0.75rem;
   }
    .w-footer .copyright ul li a {
        font-size: 14px;
   }
    .w-footer .copyright .footer-copyright {
        font-size: 14px;
   }
}
/* ---------------------------
    Loader 
------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: opacity 0.3s ease; 
    z-index: 1010;
}
.preloader .preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.preloader .preloader-inner .spinner-border {
    border-color: #3F68B3;
    border-right-color: transparent !important;
}
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader .lottie-player {
    height: 100px;
    width: 100px;
}
/* ---------------------------
    Not Found Page 
------------------------------*/
.nofoundpage {
    position: relative;
    background-color: #f4fafd;
    margin-top: 75px;
    padding-top: 40px !important;
    text-align: center;
}
.nofoundpage .nfcard {
    position: relative;
    z-index: 3;
}
.nofoundpage .nfcard img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    margin-bottom: 2.5rem;
}
.nofoundpage .nfcard h1 {
    font-size: 1.75rem;
    font-weight: 700;
}
.nofoundpage .nfcard p {
    margin-bottom: 1.75rem;
    font-weight: 400;
    color: #6d7172;
}
.nofoundpage .nfcard .btn {
    font-size: 1rem;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}
.nofoundpage .nfcard .btn.btn-primary {
    color: #fff;
    border-color: #3F68B3;
    background: #3F68B3;
}
.nofoundpage .nfcard .btn.btn-primary:hover, .nofoundpage .nfcard .btn.btn-primary :active {
    color: #fff;
    border-color: #3F68B3;
    background: #3F68B3;
}
@media (max-width: 1199.98px) {
    .nofoundpage .nfcard img {
        margin-bottom: 2.25rem;
   }
}
@media (max-width: 767.98px) {
    .nofoundpage {
        padding-top: 100px;
   }
    .nofoundpage .nfcard img {
        height: 250px;
        margin-bottom: 2rem;
   }
    .nofoundpage .nfcard h1 {
        font-size: 1.5rem;
   }
}
@media (max-width: 575.98px) {
    .nofoundpage .nfcard img {
        margin-bottom: 1.75rem;
   }
    .nofoundpage .nfcard h1 {
        font-size: 1.25rem;
   }
    .nofoundpage .nfcard p {
        margin-bottom: 1.5rem;
   }
}
@media (max-width: 399.98px) {
    .nofoundpage .nfcard img {
        margin-bottom: 1.75rem;
   }
    .nofoundpage .nfcard h1 {
        font-size: 1.25rem;
   }
    .nofoundpage .nfcard p {
        margin-bottom: 1.5rem;
   }
}
/* ---------------------------
    ContactUs 
------------------------------*/
.contactus {
    position: relative;
    height: auto;
    width: 100%;
    padding-top: 125px !important;
    z-index: 1;
}
/* .contactus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/hero/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
} */
.contactus .cu-heading {
    text-align: center;
}
.contactus .cu-heading h1 {
    font-size: 34px;
    font-weight: 700;
    color: #24272c;
    margin-bottom: 0.5rem;
}
.contactus .cu-heading h1 span {
    color: #3F68B3;
}
.contactus .cu-heading p {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: #6c737d;
    margin-bottom: 2.75rem;
}
.contactus .contactus-box {
    position: relative;
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 10px 22px 3px rgba(125,143,178,.16);
    z-index: 1;
}
.contactus .contactus-box .cub-media {
    text-align: center;
}
.contactus .contactus-box .cub-form .form-control {
    font-size: 1rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}
.contactus .contactus-box .cub-form .form-control::placeholder {
    color: #a9b2bd;
}
.contactus .contactus-box .cub-form .form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: unset;
}
.contactus .contactus-box .cub-form .btn {
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
}
.contactus .contactus-box .cub-form .btn.btn-primary {
    color: #fff;
    background-color: #3F68B3;
    border-color: #3F68B3;
}
.contactus .contactus-box .cub-form .btn:focus {
    box-shadow: unset;
}
.contactus .contactus-box .cub-form .cub-policy {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #6c737d;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.contactus .contactus-box .cub-form .form-error {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    background-color: rgba(253, 21, 21, .1);
    color: #fd1515;
    margin-top: 0.5rem;
    margin-bottom: 0;
    border-radius: 0.425rem;
    padding: 2px 10px;
}
.contactus .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contactus .form-control-lg {
    padding: .75rem 1rem;
    font-size: 1rem;
    border-radius: .75rem;
}
.contactus .form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: unset;
}
@media (max-width: 1399.98px) {
    .contactus .cu-heading p {
        margin-bottom: 2.5rem;
   }
    .contactus .contactus-box {
        padding: 2.25rem;
   }
}
@media (max-width: 1199.98px) {
    .contactus .cu-heading p {
        margin-bottom: 2.25rem;
   }
    .contactus .contactus-box {
        padding: 2rem;
   }
    .contactus .contactus-box .cub-media img {
        max-width: 90%;
   }
    .contactus .contactus-box .cub-form .cub-policy {
        margin-top: 0.5rem;
   }
}
@media (max-width: 991.98px) {
    .contactus {
        padding-top: 120px !important;
   }
    .contactus .cu-heading h1 {
        font-size: 32px;
   }
    .contactus .cu-heading p {
        margin-bottom: 2rem;
   }
    .contactus .contactus-box {
        padding: 1.75rem;
   }
    .contactus .contactus-box .cub-media img {
        max-width: 80%;
        margin-bottom: 2rem;
   }
}
@media (max-width: 767.98px) {
    .contactus {
        padding-top: 110px !important;
   }
    .contactus .cu-heading h1 {
        font-size: 30px;
   }
    .contactus .cu-heading p {
        font-size: 17px;
        margin-bottom: 1.75rem;
   }
    .contactus .contactus-box {
        padding: 1.5rem;
   }
    .contactus .contactus-box .cub-media img {
        margin-bottom: 1.75rem;
   }
    .contactus .contactus-box .cub-form .form-control {
        padding: 0.6rem 1rem;
   }
}
@media (max-width: 575.98px) {
    .contactus {
        padding-top: 100px !important;
   }
    .contactus .cu-heading h1 {
        font-size: 28px;
   }
    .contactus .cu-heading p {
        font-size: 16px;
        margin-bottom: 1.5rem;
   }
    .contactus .contactus-box {
        padding: 1.25rem;
   }
    .contactus .contactus-box .cub-media img {
        margin-bottom: 1.5rem;
   }
    .contactus .contactus-box .cub-form .form-control {
        padding: 0.5rem 1rem;
   }
    .contactus .contactus-box .cub-form .cub-policy {
        margin-top: 0.25rem;
   }
}
@media (max-width: 399.98px) {
    .contactus .cu-heading h1 {
        font-size: 26px;
   }
    .contactus .cu-heading p {
        font-size: 15px;
        margin-bottom: 1.25rem;
   }
    .contactus .contactus-box {
        padding: 1rem;
   }
    .contactus .contactus-box .cub-media img {
        max-width: 70%;
        margin: 1.25rem 0;
   }
    .contactus .contactus-box .cub-form .cub-policy {
        margin-top: 0;
   }
}
@media (max-width: 349.98px) {
    .contactus .cu-heading h1 {
        font-size: 24px;
   }
    .contactus .cu-heading p {
        font-size: 14px;
        margin-bottom: 1rem;
   }
    .contactus .contactus-box {
        padding: 0.75rem;
   }
    .contactus .contactus-box .cub-media img {
        max-width: 80%;
        margin: 1rem 0;
   }
}
