@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: rgba(0, 0, 0, 0.7);
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:focus,
button:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover {
    color: #0FC4A5;
}

a {
    transition: all 0.3s ease-out 0s;
}

    a,
    a:focus,
    a:hover {
        text-decoration: none;
    }

i,
span,
a {
    display: inline-block;
}

img {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin: 0px;
    font-family: "Lora", serif;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 45px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 36px;
    }
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 0px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 30px;
    }
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 17px 30px;
    font-size: 18px;
    line-height: 1;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: 2px solid transparent;
    background: #0FC4A5;
    overflow: hidden;
}

    .main-btn:hover {
        color: #fff;
    }

.btn-hover {
    position: relative;
    overflow: hidden;
}

    .btn-hover::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 0%;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.05);
        top: 50%;
        left: 50%;
        padding: 50%;
        z-index: -1;
        transition: all 0.3s ease-out 0s;
        transform: translate3d(-50%, -50%, 0) scale(0);
    }

    .btn-hover:hover::after {
        transform: translate3d(-50%, -50%, 0) scale(1.3);
    }

.scroll-top {
    width: 45px;
    height: 45px;
    background: #0FC4A5;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
}

    .scroll-top:hover {
        color: #fff;
        background: rgba(15, 196, 165, 0.8);
    }

/*===== All Preloader Style =====*/
.preloader {
    /* Body Overlay */
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    /* Change Background Color */
    background: #fff;
    z-index: 99999;
}

    .preloader .loader {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

        .preloader .loader .spinner {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 64px;
            margin-left: -32px;
            z-index: 18;
            pointer-events: none;
        }

            .preloader .loader .spinner .spinner-container {
                pointer-events: none;
                position: absolute;
                width: 100%;
                padding-bottom: 100%;
                top: 50%;
                left: 50%;
                margin-top: -50%;
                margin-left: -50%;
                animation: spinner-linspin 1568.2353ms linear infinite;
            }

                .preloader .loader .spinner .spinner-container .spinner-rotator {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
                }

                    .preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
                        position: absolute;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        overflow: hidden;
                        right: 50%;
                    }

                    .preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        overflow: hidden;
                        left: 50%;
                    }

        .preloader .loader .spinner-circle {
            box-sizing: border-box;
            position: absolute;
            width: 200%;
            height: 100%;
            border-style: solid;
            /* Spinner Color */
            border-color: #0FC4A5 #0FC4A5 rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-width: 6px;
        }

        .preloader .loader .spinner-left .spinner-circle {
            left: 0;
            right: -100%;
            border-right-color: rgba(0, 0, 0, 0.1);
            animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
        }

        .preloader .loader .spinner-right .spinner-circle {
            left: -100%;
            right: 0;
            border-left-color: rgba(0, 0, 0, 0.1);
            animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
        }

/* Preloader Animations */

@keyframes spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    87.5% {
        transform: rotate(945deg);
    }

    to {
        transform: rotate(1080deg);
    }
}

@keyframes spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(130deg);
    }
}

@keyframes right-spin {
    0% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }

    to {
        transform: rotate(-130deg);
    }
}

/*=========================== 
	NAVBAR CSS 
============================= */
.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar .navbar-nav .nav-item a {
    color: rgba(0, 0, 0, 0.9);
}

.sticky .navbar .navbar-nav .nav-item a.active, .sticky .navbar .navbar-nav .nav-item a:hover {
    color: #0FC4A5;
}

.sticky .navbar .navbar-nav .nav-item a.active::before, .sticky .navbar .navbar-nav .nav-item a:hover::before {
    background: #0FC4A5;
}

.sticky .navbar .header-btn .main-btn {
    color: #fff;
    background: #6875E9;
}

.sticky .navbar .navbar-toggler .toggler-icon {
    background: rgba(0, 0, 0, 0.9);
}

.navbar {
    padding: 20px 0px;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar {
        padding: 12px 0;
    }
}

.navbar-brand {
    padding: 0;
}

    .navbar-brand img {
        max-width: 180px;
    }

.navbar-toggler {
    padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-toggler {
        position: absolute;
        right: 0;
        top: 25px;
    }
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.9);
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-toggler .toggler-icon {
        background: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    padding: 8px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item {
        padding: 0px;
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item:first-child {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item:last-child {
        margin-bottom: 20px;
    }
}

.navbar-nav .nav-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-out 0s;
    padding: 8px 17px;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 0px;
        color: rgba(0, 0, 0, 0.9);
    }
}

.navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0FC4A5;
    bottom: -3px;
    transition: all 0.3s ease-out 0s;
    transform: scale(0);
}

.navbar-nav .nav-item a:hover, .navbar-nav .nav-item a.active {
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item a:hover, .navbar-nav .nav-item a.active {
        color: #0FC4A5;
    }
}

.navbar-nav .nav-item a:hover::after, .navbar-nav .nav-item a.active::after {
    transform: scale(2);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item a:hover::after, .navbar-nav .nav-item a.active::after {
        transform: scale(0);
    }
}

@media (max-width: 767px) {
    .header-btn {
        display: none;
    }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .header-btn {
        display: flex;
    }
}

.header-btn .main-btn {
    color: #6875E9;
    background: #fff;
    padding: 9px 20px;
    margin-left: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .header-btn .main-btn {
        color: #fff;
        background: #6875E9;
        margin-left: 0;
        margin-right: 60px;
    }
}

/* ====================
		HERO CSS
======================= */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 820px;
    display: flex;
    align-items: center;
    background-image: url("../images/hero/hero-bg.svg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section {
        height: 750px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        height: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .hero-section {
        height: auto;
        padding: 150px 0 50px;
    }
}

.hero-section .hero-content h1 {
    margin-bottom: 15px;
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .hero-section .hero-content h1 {
        font-size: 45px;
    }
}

.hero-section .hero-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.hero-section .hero-image {
    padding-top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section .hero-image img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .hero-section .hero-image img {
        max-width: 100%;
        margin: auto;
    }
}

/* ===============================
    FEATURE SECTION ONE CSS
================================== */
.feature-section {
    position: relative;
    padding-top: 120px;
}

    .feature-section .section-title {
        padding: 0 20px;
    }

.single-feature {
    margin-bottom: 10px;
    padding: 40px 30px;
    transition: all 0.3s ease-out 0s;
    border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-feature {
        padding: 35px 25px;
    }
}

.single-feature:hover {
    box-shadow: 8px 8px 25px rgba(222, 222, 222, 0.25);
}

    .single-feature:hover .feature-icon {
        background-color: #0FC4A5;
    }

.single-feature .feature-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #6875E9;
    color: #fff;
    font-size: 40px;
    transition: all 0.3s ease-out 0s;
}

.single-feature .feature-content h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

.single-feature .feature-content p {
    font-size: 15px;
}

/* ======== feature-section-1 ======== */

/* ======== feature-section-2 ======== */
@media only screen and (min-width: 1400px) {
    .feature-section-2 .feature-content-wrapper {
        padding-right: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .feature-section-2 .feature-image {
        margin-top: 60px;
    }
}

.feature-section-2 .feature-image img {
    max-width: 100%;
}

/* =====================
    HOW WORKS CSS
======================== */
.pricing-section {
    padding-top: 160px;
}

    .pricing-section .section-title {
        margin-bottom: 60px;
    }

@media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .pricing-section .section-title {
        padding: 0px 40px;
    }
}

.pricing-section .section-title h2 {
    margin-bottom: 15px;
}

.single-pricing {
    background: #fff;
    box-shadow: 0px 0px 50px rgba(183, 199, 240, 0.25);
    border-radius: 14px;
    padding: 52px 30px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

    .single-pricing::after, .single-pricing::before {
        content: '';
        position: absolute;
        width: 25px;
        height: 117px;
        left: 0;
        bottom: 0;
        background: #6875E9;
        border-radius: 21px;
        transform: rotate(32.85deg);
        opacity: .2;
    }

    .single-pricing::before {
        background: #6875E9;
        left: -18px;
        bottom: -44px;
    }

    .single-pricing::after {
        background: #0FC4A5;
        left: 16px;
        bottom: -50px;
    }

    .single-pricing .pricing-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

        .single-pricing .pricing-header h5 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .single-pricing .pricing-header h2 {
            font-size: 40px;
            margin-bottom: 30px;
        }

            .single-pricing .pricing-header h2 span {
                font-size: 16px;
                color: rgba(0, 0, 0, 0.5);
                font-weight: 400;
            }

    .single-pricing .pricing-body {
        padding-top: 30px;
        padding-bottom: 25px;
    }

        .single-pricing .pricing-body ul li {
            margin-bottom: 12px;
        }

            .single-pricing .pricing-body ul li p {
                margin-bottom: 0px;
            }

    .single-pricing.standard::before {
        opacity: 1;
        right: -18px;
        top: -44px;
        left: auto;
    }

    .single-pricing.standard::after {
        opacity: 1;
        right: 16px;
        top: -50px;
        left: auto;
    }

    .single-pricing.standard .pricing-header .package-price {
        color: #0FC4A5;
    }

/* =====================
    TEAM SECTION CSS
======================== */

/* ========================
		TESTIMONIAL CSS
=========================== */
.testimonial-section {
    position: relative;
    padding-top: 120px;
    z-index: 1;
}

    .testimonial-section::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 95%;
        height: 80%;
        background: linear-gradient(172.7deg, #D1D0FF 5.68%, #EFF0FF 72.76%);
        opacity: 0.2;
        border-radius: 5px;
    }

    .testimonial-section .testimonial-active-wrapper {
        position: relative;
    }

@media (max-width: 767px) {
    .testimonial-section .testimonial-active-wrapper {
        padding-bottom: 80px;
    }
}

.testimonial-section .testimonial-active-wrapper .tns-controls {
    position: absolute;
    right: 0;
    top: -50px;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .testimonial-section .testimonial-active-wrapper .tns-controls {
        justify-content: center;
        top: auto;
        bottom: 0;
    }
}

.testimonial-section .testimonial-active-wrapper .tns-controls button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #fff;
    color: rgba(0, 0, 0, 0.9);
    border: 1px solid #0FC4A5;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0px 3px 10px rgba(232, 232, 232, 0.25);
    margin: 0 5px;
}

    .testimonial-section .testimonial-active-wrapper .tns-controls button:hover {
        background: #0FC4A5;
        color: #fff;
    }

.testimonial-section .testimonial-active-wrapper .single-testimonial {
    background: #fff;
    box-shadow: 0px 0px 50px rgba(183, 199, 240, 0.25);
    border-radius: 5px;
    padding: 35px 40px;
    margin: 40px 0;
    border: 2px solid transparent;
    transition: all 0.3s ease-out 0s;
}

    .testimonial-section .testimonial-active-wrapper .single-testimonial:hover {
        border-color: #0FC4A5;
    }

/* ==========================
    FOOTER CSS
============================= */
.footer .footer-widget {
    margin-bottom: 50px;
}

    .footer .footer-widget .logo {
        margin-bottom: 30px;
    }

    .footer .footer-widget .desc {
        margin-bottom: 25px;
    }

@media only screen and (min-width: 1400px) {
    .footer .footer-widget .desc {
        padding-right: 50px;
    }
}

.footer .footer-widget h3 {
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 500;
}

.footer .footer-widget .links li a {
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.7);
}

    .footer .footer-widget .links li a:hover {
        padding-left: 8px;
        color: #0FC4A5;
    }

/* ======================
    DEFAULT CSS
========================= */

.mt-100 {
    margin-top: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-160 {
    padding-top: 160px;
}

.features {
    padding-left: 20px;
    margin-bottom: 20px
}

.features li::before {
    content: "\2022";
    color: white;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}