@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap");

:root {
    --heading-font: "Jost", sans-serif;
    --body-font: "Inter", sans-serif;
    --heading: 0 0% 24%;
    --body: 0 0% 46%;
    --border: 227 100% 97%;
    --base-h: 227;
    --base-s: 100%;
    --base-l: 63%;
    --base: var(--base-h), var(--base-s),var(--base-l);
    --base-50: var(--base-h) var(--base-s) calc(var(--base-l) + 25%);
    --base-100: var(--base-h) var(--base-s) calc(var(--base-l) + 20%);
    --base-200: var(--base-h) var(--base-s) calc(var(--base-l) + 15%);
    --base-300: var(--base-h) var(--base-s) calc(var(--base-l) + 6%);
    --base-400: var(--base-h) var(--base-s) calc(var(--base-l) + 4%);
    --base-600: var(--base-h) var(--base-s) calc(var(--base-l) - 4%);
    --base-700: var(--base-h) var(--base-s) calc(var(--base-l) - 6%);
    --base-800: var(--base-h) var(--base-s) calc(var(--base-l) - 15%);
    --base-900: var(--base-h) var(--base-s) calc(var(--base-l) - 20%);
    --accent-h: 260;
    --accent-s: 92%;
    --accent-l: 10%;
    --accent-50: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 25%);
    --accent-100: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 20%);
    --accent-200: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 15%);
    --accent-300: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 10%);
    --accent-400: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 5%);
    --accent: var(--accent-h) var(--accent-s) var(--accent-l);
    --accent-600: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 5%);
    --accent-700: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 10%);
    --accent-800: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 15%);
    --accent-900: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 20%);
    --primary: 245 82% 67%;
    --secondary: 210 7% 56%;
    --success: 147 67% 47%;
    --danger: 360 78% 62%;
    --warning: 29 100% 63%;
    --info: 200 90% 53%;
    --dark: 206 70% 11%;
    --white: 0 0% 100%;
    --light-h: 225;
    --light-s: 100%;
    --light-l: 98%;
    --light-50: var(--light-h) var(--light-s) calc(var(--light-l) + 33%);
    --light-100: var(--light-h) var(--light-s) calc(var(--light-l) + 20%);
    --light-200: var(--light-h) var(--light-s) calc(var(--light-l) + 15%);
    --light-300: var(--light-h) var(--light-s) calc(var(--light-l) + 10%);
    --light-400: var(--light-h) var(--light-s) calc(var(--light-l) + 2%);
    --light: var(--light-h) var(--light-s) var(--light-l);
    --light-600: var(--light-h) var(--light-s) calc(var(--light-l) - 2%);
    --light-700: var(--light-h) var(--light-s) calc(var(--light-l) - 10%);
    --light-800: var(--light-h) var(--light-s) calc(var(--light-l) - 15%);
    --light-900: var(--light-h) var(--light-s) calc(var(--light-l) - 20%);
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: hsl(var(--body));
    line-height: 1.6;
    font-family: var(--body-font);
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: hsl(var(--body));
}

a:hover {
    color: hsl(var(--base));
}

span,
sub,
sup,
a {
    display: inline-block;
}

/* global css strat */
.text--primary {
    color: hsl(var(--primary)) !important;
}

.text--secondary {
    color: hsl(var(--secondary)) !important;
}

.text--success {
    color: hsl(var(--success)) !important;
}

.text--danger {
    color: hsl(var(--danger)) !important;
}

.text--warning {
    color: hsl(var(--warning)) !important;
}

.text--info {
    color: hsl(var(--info)) !important;
}

.text--dark {
    color: hsl(var(--dark)) !important;
}

.text--muted {
    color: hsl(var(--muted)) !important;
}

.text--base {
    color: hsl(var(--base)) !important;
}

.text--body {
    color: hsl(var(--body)) !important;
}

/* background color css start */
.bg--primary {
    background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.bg--success {
    background-color: hsl(var(--success)) !important;
}

.bg--danger {
    background-color: hsl(var(--danger)) !important;
}

.bg--warning {
    background-color: hsl(var(--warning)) !important;
}

.bg--info {
    background-color: hsl(var(--info)) !important;
}

.bg--dark {
    background-color: hsl(var(--dark)) !important;
}

.bg--light {
    background-color: hsl(var(--light)) !important;
}

.bg--base {
    background-color: hsl(var(--base)) !important;
}

/* background color css end */
.bg_img {
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.bg_fixed {
    background-attachment: fixed !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -999;
}

.overlay.active {
    z-index: 111;
}

.scrollToTop {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--white));
    z-index: 9999;
    bottom: 30px;
    right: 30px;
    font-size: 18px;
    position: fixed;
    transform: translateY(150px);
    background: hsl(var(--base));
    border-radius: 3px;
}

.scrollToTop:hover {
    color: hsl(var(--white));
}

.scrollToTop.active {
    transform: translateY(0);
    animation: bounceInDown 2s;
}

@media (max-width: 575px) {
    .container, .container-fluid {
        max-width: 450px;
    }
}

.radius-5px {
    border-radius: 5px;
}

.pt-120 {
    padding-top: clamp(70px, 6vw, 120px);
}

.pt-100 {
    padding-top: clamp(60px, 6vw, 100px);
}

.pt-80 {
    padding-top: clamp(50px, 6vw, 80px);
}

.pt-60 {
    padding-top: clamp(35px, 3vw, 60px);
}

.pt-50 {
    padding-top: clamp(30px, 6vw, 50px);
}

.pb-120 {
    padding-bottom: clamp(70px, 6vw, 120px);
}

.pb-100 {
    padding-bottom: clamp(60px, 6vw, 100px);
}

.pb-80 {
    padding-bottom: clamp(50px, 6vw, 80px);
}

.pb-60 {
    padding-bottom: clamp(35px, 3vw, 60px);
}

.pb-50 {
    padding-bottom: clamp(30px, 6vw, 50px);
}

.pb-40 {
    padding-bottom: clamp(30px, 6vw, 40px);
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.contact-info-item.style--two, .contact-info-item.how-item.style--three, .counter-wrapper, .sidebar, .footer-links, .menu, .header-bottom-area, .pagination, .list.list-column {
    display: flex;
    flex-wrap: wrap;
}

.account-section, .sec-box .sec-box-icon, .how-item-two__icon .icon, .how-item-two__icon .serial, .how-item.style--two .how-item__icon, .how-item.style--three .how-item__icon, .social-links li a, .video-button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.account-form::before, .testimonial-item.style--two::before, .testimonial-item.how-item.style--three::before, .plan-item::before, .how-section-two::before, .gradient-ball::before, .gradient-ball::after, .video-button::before, .video-button::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.account-section::before, .account-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
}

.faq-item__title .title::before, .feature-item, .testimonial-item, .plan-item, .how-item-two, .how-item, .header-trigger span::after, .header-trigger span::before, .header, .custom--checkbox label::before, .btn,
.cmn--btn, a,
img,
.title,
.name {
    transition: all 0.3s;
}

.post-item__content .post-single-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-item__title .title::before, .menu li.has-sub-menu > a::after, .list.list-style-two li::before, .list.list-style-check li::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
}

.list.list-column {
    flex-direction: column;
}

.list.list-style-check li {
    position: relative;
    padding: 7px 0;
    padding-left: 28px;
    font-size: 14px;
}

.list.list-style-check li.active {
    color: hsl(var(--heading));
}

.list.list-style-check li.active::before {
    content: "\f00c";
}

.list.list-style-check li.disabled {
    color: hsl(var(--body)/0.65);
}

.list.list-style-check li.disabled::before {
    content: "\f00d";
}

.list.list-style-check li::before {
    left: 0;
    top: 6px;
}

.list.list-style-one li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.list.list-style-one li::before {
    position: absolute;
    content: "";
    left: 0;
    width: 10px;
    height: 10px;
    top: 12px;
    background-color: hsl(var(--base));
    border-radius: 50%;
}

.list.list-style-two li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.list.list-style-two li::before {
    content: "\f101";
    left: 0;
    top: 6px;
    color: hsl(var(--base));
}

@media (min-width: 576px) {
    .list.list-50 li {
        width: 50%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    color: hsl(var(--heading));
    font-family: var(--heading-font);
    word-break: break-word;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    color: hsl(var(--heading));
}

h1 {
    font-size: 56px;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 36px;
    }
}

h2 {
    font-size: 40px;
}

@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

@media (max-width: 1199px) {
    h4 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    h4 {
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
}

@media (max-width: 1199px) {
    h5 {
        font-size: 18px;
    }
}

h6 {
    font-size: 16px;
}

.fs--12px {
    font-size: 12px;
}

.fs--13px {
    font-size: 13px;
}

.fs--14px {
    font-size: 14px;
}

.fs--15px {
    font-size: 15px;
}

.fs--16px {
    font-size: 16px;
}

.fs--18px {
    font-size: 18px;
}

.fs--20px {
    font-size: 20px;
}

.fs--22px {
    font-size: 22px;
}

@keyframes coin1 {
    0% {
        transform: translate(0px, 0px) scale(0.3) rotate(0deg);
        transform-origin: bottom;
    }

    40% {
        opacity: 1;
    }

    50% {
        transform: translate(0px, -80px) scale(1) rotate(360deg);
        opacity: 0.2;
    }

    51% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: translate(0px, -80px) scale(1) rotate(360deg);
    }
}

@keyframes coin2 {
    0% {
        transform: translate(0px, 50px) scale(0.3) rotate(360deg);
        opacity: 0;
    }

    49% {
        transform: translate(0px, 50px) scale(0.3) rotate(360deg);
        opacity: 0;
        transform-origin: bottom;
    }

    50% {
        transform: translate(0px, -80px) scale(1) rotate(0deg);
        transform-origin: bottom;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate(0px, 50px) scale(0.3) rotate(360deg);
        opacity: 0.2;
    }
}

@keyframes move-tb {
    0% {
        transform: translate(0);
    }

    25% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(20px);
    }

    100% {
        transform: translate(0);
    }
}

.btn,
.cmn--btn {
    padding: 12px 35px;
    font-weight: 700;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 5px;
    z-index: 1;
}

@media (max-width: 575px) {
    .btn,
.cmn--btn {
        padding: 10px 30px;
    }
}

.btn.btn--lg,
.cmn--btn.btn--lg {
    padding: 13px 35px !important;
    font-size: 16px;
}

@media (max-width: 575px) {
    .btn.btn--lg,
.cmn--btn.btn--lg {
        padding: 11px 30px !important;
    }
}

.btn.btn--md,
.cmn--btn.btn--md {
    padding: 10px 25px !important;
    font-size: 15px;
}

.btn.btn--sm,
.cmn--btn.btn--sm {
    padding: 5px 15px !important;
    font-size: 14px;
}

.btn.btn--xs,
.cmn--btn.btn--xs {
    padding: 0px 10px !important;
    font-size: 13px;
}

.btn.btn--rounded,
.cmn--btn.btn--rounded {
    border-radius: 50px;
}

.cmn--btn {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border: 1px solid hsl(var(--base));
}

.cmn--btn::before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: hsl(var(--base));
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cmn--btn:hover {
    background-color: hls(var(--white));
}

.cmn--btn:hover::before {
    width: 200%;
    height: 300%;
}

.btn--primary {
    background-color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.btn--primary:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

button.btn--primary:hover {
    background-color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.btn--secondary {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.btn--secondary:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

button.btn--secondary:hover {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.btn--success {
    background-color: hsl(var(--success));
    border: 1px solid hsl(var(--success));
    color: hsl(var(--white));
}

.btn--success:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

button.btn--success:hover {
    background-color: hsl(var(--success));
    border: 1px solid hsl(var(--success));
    color: hsl(var(--white));
}

.btn--danger {
    background-color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.btn--danger:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

button.btn--danger:hover {
    background-color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.btn--warning {
    background-color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.btn--warning:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

button.btn--warning:hover {
    background-color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.btn--info {
    background-color: var(--info);
    border: 1px solid var(--info);
    color: hsl(var(--white));
}

.btn--info:hover {
    background-color: transparent;
    border: 1px solid var(--info);
    color: var(--info);
}

button.btn--info:hover {
    background-color: var(--info);
    border: 1px solid var(--info);
    color: hsl(var(--white));
}

.btn--light {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--light));
    color: hsl(var(--white));
}

.btn--light:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--light));
    color: hsl(var(--base));
}

button.btn--light:hover {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--light));
    color: hsl(var(--base));
}

.btn--dark {
    background-color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.btn--dark:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

button.btn--dark:hover {
    background-color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.btn--base {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.btn--base:hover {
    background-color: transparent;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

button.btn--base:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.btn--light {
    color: hsl(var(--base));
}

.btn--outline-primary {
    background-color: transparent;
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.btn--outline-primary:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-secondary {
    background-color: transparent;
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.btn--outline-secondary:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-success {
    background-color: transparent;
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.btn--outline-success:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-danger {
    background-color: transparent;
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.btn--outline-danger:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-warning {
    background-color: transparent;
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.btn--outline-warning:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-info {
    background-color: transparent;
    border: 1px solid var(--info);
    color: var(--info);
}

.btn--outline-info:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-light {
    background-color: transparent;
    border: 1px solid hsl(var(--light));
    color: hsl(var(--light));
}

.btn--outline-light:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-dark {
    background-color: transparent;
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

.btn--outline-dark:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-base {
    background-color: transparent;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.btn--outline-base:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline-light {
    color: hsl(var(--white));
    border: 1px solid hsl(var(--border));
}

.btn--outline-light:hover {
    background-color: hsl(var(--white));
    color: hsl(var(--base));
    border: 1px solid hsl(var(--white));
}

.video-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 22px;
    position: relative;
    color: hsl(var(--base));
    background-color: hsl(var(--white));
    z-index: 1;
}

.video-button::before, .video-button::after {
    left: 50%;
    top: 50%;
    background-color: hsl(var(--white));
    z-index: -1;
    border-radius: 50%;
    animation: play-button 1.5s linear infinite;
}

.video-button::after {
    animation-delay: 0.7s;
}

.badge--base {
    background-color: hsl(var(--base)/0.15);
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.badge--primary {
    background-color: hsl(var(--primary)/0.15);
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.badge--secondary {
    background-color: hsl(var(--secondary)/0.15);
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.badge--success {
    background-color: hsl(var(--success)/0.15);
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.badge--danger {
    background-color: hsl(var(--danger)/0.15);
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.badge--warning {
    background-color: hsl(var(--warning)/0.15);
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.badge--info {
    background-color: hsl(var(--info)/0.15);
    border: 1px solid hsl(var(--info));
    color: hsl(var(--info));
}

.badge--dark {
    background-color: hsl(var(--dark)/0.15);
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

.badge {
    border-radius: 18px;
    padding: 4px 15px;
}

.badge.badge--icon {
    padding: 5px;
    border-radius: 5px;
}

.badge.badge--lg {
    padding: 6px 16px;
}

.badge.badge--md {
    padding: 4px 12px;
}

.badge.badge--sm {
    padding: 3px 10px;
}

.badge--fill-primary {
    background-color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--white));
}

.badge--fill-primary:hover {
    color: hsl(var(--white));
}

.badge--fill-secondary {
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--white));
}

.badge--fill-secondary:hover {
    color: hsl(var(--white));
}

.badge--fill-success {
    background-color: hsl(var(--success));
    border: 1px solid hsl(var(--success));
    color: hsl(var(--white));
}

.badge--fill-success:hover {
    color: hsl(var(--white));
}

.badge--fill-danger {
    background-color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--white));
}

.badge--fill-danger:hover {
    color: hsl(var(--white));
}

.badge--fill-warning {
    background-color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--white));
}

.badge--fill-warning:hover {
    color: hsl(var(--white));
}

.badge--fill-info {
    background-color: hsl(var(--info));
    border: 1px solid hsl(var(--info));
    color: hsl(var(--white));
}

.badge--fill-info:hover {
    color: hsl(var(--white));
}

.badge--fill-light {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--light));
    color: hsl(var(--white));
}

.badge--fill-light:hover {
    color: hsl(var(--white));
}

.badge--fill-dark {
    background-color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--white));
}

.badge--fill-dark:hover {
    color: hsl(var(--white));
}

.badge--fill-base {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.badge--fill-base:hover {
    color: hsl(var(--white));
}

.table {
    margin: 0;
    font-size: 15px;
    background-color: hsl(var(--white));
    box-shadow: 0 0 8px hsl(var(--base)/0.06);
}

.table thead tr th {
    background: hsl(var(--base));
    text-align: center;
    font-size: 15px;
    padding: 15px;
    color: hsl(var(--white));
    font-family: var(--heading-font);
    font-weight: 500;
}

.table thead tr th:first-child {
    text-align: left;
    border-radius: 5px 0 0 0;
}

.table thead tr th:last-child {
    border-radius: 0 5px 0 0;
    text-align: right;
}

.table tbody {
    border: 0 !important;
}

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 20px 15px;
    border-width: 1px;
    font-family: var(--heading-font);
}

.table tbody tr td::before {
    content: attr(data-label);
    font-family: var(--heading-font);
    font-size: 15px;
    color: hsl(var(--heading));
    font-weight: 500;
    display: none;
}

.table tbody tr td:first-child {
    text-align: left;
}

.table tbody tr td:last-child {
    text-align: right;
}

.table tbody tr:nth-child(even) {
    background: hsl(var(--light));
}

.table .amount span {
    margin-right: 4px;
}

@media (max-width: 767px) {
    .table--responsive--md thead {
        display: none;
    }

    .table--responsive--md tbody tr {
        display: block;
    }

    .table--responsive--md tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--border));
    }
}

@media (max-width: 767px) and (max-width: 991px) {
    .table--responsive--md tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .table--responsive--md tbody tr td:last-child {
        border: none;
    }
}

@media (max-width: 767px) {
    .table--responsive--md tbody tr td::before {
        display: block;
    }
}

@media (min-width: 768px) {
    .table--responsive--md tbody tr td {
        border: 0;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table--responsive--lg tbody tr {
        display: block;
    }

    .table--responsive--lg tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--border));
    }
}

@media (max-width: 991px) and (max-width: 991px) {
    .table--responsive--lg tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td:last-child {
        border: none;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td::before {
        display: block;
    }
}

@media (min-width: 992px) {
    .table--responsive--lg tbody tr td {
        border: none;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table--responsive--xl tbody tr {
        display: block;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--border));
    }
}

@media (max-width: 1199px) and (max-width: 991px) {
    .table--responsive--xl tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl tbody tr td:last-child {
        border: none;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl tbody tr td::before {
        display: block;
    }
}

@media (min-width: 1200px) {
    .table--responsive--xl tbody tr td {
        border: 0;
    }
}

.form-label {
    font-size: 15px;
    color: hsl(var(--heading));
    font-weight: 400;
}

.form--control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid hsl(var(--border));
    outline: 0 !important;
    box-shadow: none !important;
    color: hsl(var(--body));
}

.form--control:focus {
    border: 1px solid hsl(var(--base));
}

textarea.form--control {
    height: 130px;
}

::placeholder {
    font-weight: 300;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: hsl(var(--heading));
    transition: background-color 5000s ease-in-out 0s;
}

.custom--radio {
    position: relative;
    padding-left: 0;
}

.custom--radio input[type=radio] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom--radio input[type=radio]:checked ~ label::before {
    border-width: 2px;
    border-color: hsl(var(--base)) !important;
}

.custom--radio input[type=radio]:checked ~ label::after {
    opacity: 1;
}

.custom--radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
    font-size: rem(14px);
    font-weight: 400;
}

.custom--radio label::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #888888;
}

.custom--radio label::after {
    position: absolute;
    content: "";
    top: 8px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: hsl(var(--base)) !important;
    opacity: 0;
}

.custom--checkbox {
    padding-left: 25px;
}

.custom--checkbox input {
    display: none;
}

.custom--checkbox input:checked ~ label::before {
    content: "\f14a";
    color: hsl(var(--base));
}

.custom--checkbox label {
    position: relative;
    font-size: rem(15px);
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.custom--checkbox label::before {
    position: absolute;
    content: "\f04d";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 0px;
    left: -25px;
    font-size: 18px;
    line-height: 1;
}

/* form css end*/
.custom--card {
    border: 1px solid hsl(var(--border));
    border-radius: 5px;
}

.custom--card .card-header,
.custom--card .card-footer {
    background-color: hsl(var(--base));
    text-align: center;
}

.custom--card .card-header .title,
.custom--card .card-footer .title {
    color: hsl(var(--white));
    margin: 0;
}

.custom--card.card--primary .card-header,
.custom--card.card--primary .card-footer {
    background: hsl(var(--base));
}

.custom--card .card-header,
.custom--card .card-footer {
    padding: 15px 25px;
    border-color: hsl(var(--border)) !important;
}

@media (max-width: 575px) {
    .custom--card .card-header,
.custom--card .card-footer {
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {
    .custom--card .card-header,
.custom--card .card-footer {
        padding: 8px 15px;
    }
}

.custom--card .card-body {
    padding: 25px;
}

@media (max-width: 575px) {
    .custom--card .card-body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card .card-body {
        padding: 15px;
    }
}

.custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
    padding: 20px 35px;
}

@media (max-width: 767px) {
    .custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
        padding: 15px 25px;
    }
}

@media (max-width: 575px) {
    .custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
        padding: 10px 20px;
    }
}

@media (max-width: 450px) {
    .custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
        padding: 8px 15px;
    }
}

.custom--card.card--lg .card-body {
    padding: 35px;
}

@media (max-width: 767px) {
    .custom--card.card--lg .card-body {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .custom--card.card--lg .card-body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card.card--lg .card-body {
        padding: 15px;
    }
}

.custom--card.card--md .card-header,
.custom--card.card--md .card-footer {
    padding: 10px 20px;
}

.custom--card.card--md .card-body {
    padding: 20px 20px;
}

.custom--modal .modal--footer,
.custom--modal .modal--body,
.custom--modal .modal--header {
    border-color: hsl(var(--border)) !important;
}

.custom--modal .modal--footer .modal-title,
.custom--modal .modal--header .modal-title {
    margin: 0;
    color: hsl(var(--heading));
}

.custom--modal .modal--footer .btn-close,
.custom--modal .modal--header .btn-close {
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: hsl(var(--danger)) !important;
}

.pagination {
    justify-content: center;
    gap: 12px;
}

.pagination .page-item {
    text-align: center;
}

.pagination .page-item a,
.pagination .page-item span {
    font-weight: 600;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    border-radius: 50% !important;
    color: hsl(var(--body));
    border-color: hsl(var(--border)/0.5);
    background-color: hsl(var(--border)/0.5);
    box-shadow: none;
}

.pagination .page-item.active span,
.pagination .page-item.active a, .pagination .page-item:hover span,
.pagination .page-item:hover a {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.pagination .page-item.disabled {
    cursor: no-drop !important;
}

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
    background: hsl(var(--dark)/0.1);
    border: none;
}

.section-header {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.section-header__subtitle {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
}

.section-header__title {
    margin-bottom: 25px;
}

@media (max-width: 575px) {
    .section-header__title {
        margin-bottom: 15px;
    }
}

.section-header__title span {
    color: hsl(var(--base));
}

.section-header-wrapper {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .section-header-wrapper {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .section-header-wrapper .section-header {
        width: 400px;
    }
}

@media (min-width: 992px) {
    .section-header-wrapper .section-header {
        width: 350px;
        padding-right: 20px;
        border-right: 1px solid hsl(var(--border));
    }
}

@media (min-width: 1200px) {
    .section-header-wrapper .right-text {
        width: calc(100% - 400px);
    }
}

@media (min-width: 992px) {
    .section-header-wrapper .right-text {
        width: calc(100% - 350px);
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .section-header-wrapper .right-text {
        margin-top: 15px;
    }
}

.social-links li a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.social-links.social-light li a {
    background-color: hsl(var(--white));
    color: hsl(var(--base));
}

.header {
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 111;
}

.header.sticky {
    top: 0;
    background-color: hsl(var(--white));
    box-shadow: 0 3px 15px hsl(var(--dark)/0.06);
}

.header-bottom {
    width: 100%;
    padding: 15px 0;
}

@media (max-width: 991px) {
    .header-bottom {
        padding: 10px 0;
    }
}

.header-bottom-area {
    justify-content: space-between;
    position: relative;
}

.logo img {
    max-width: 180px;
    max-height: 55px;
}

@media (max-width: 1199px) {
    .logo img {
        max-width: 130px;
        max-height: 50px;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-width: 130px;
        max-height: 50px;
    }
}

.menu {
    align-items: center;
    margin: 0;
    position: relative;
}

.menu > .has-sub-menu {
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .menu > .has-sub-menu {
        margin-right: 18px;
    }
}

@media (min-width: 992px) {
    .menu > .has-sub-menu.open .sub-menu {
        display: block !important;
    }
}

.menu .sub-menu li {
    width: 100%;
}

@media (min-width: 992px) {
    .menu .sub-menu {
        display: block !important;
    }
}

.menu li {
    position: relative;
}

.menu li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu li.has-sub-menu > a {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.menu li.has-sub-menu > a::after {
    content: "\f107";
    right: 0;
    top: 50%;
    transform: translate(8px, -50%);
    font-size: 14px;
}

.menu li a {
    display: block;
    padding: 4px 15px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.menu li a.active{
    color: hsl(var(--base));
}

@media (max-width: 1199px) {
    .menu li a {
        padding-inline: 10px;
    }
}

.menu .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (min-width: 992px) {
    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0px;
        opacity: 0;
        visibility: hidden;
        min-width: 200px;
        transition: all ease 0.3s;
        transform: translateY(15px);
        box-shadow: 0 3px 12px 3px hsl(var(--base)/0.15);
        overflow: hidden;
        z-index: 11;
        padding: 10px;
        background-color: hsl(var(--white));
    }

    .sub-menu li {
        padding: 0;
    }

    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        font-size: 14px;
        padding: 7px 15px;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
    }

    .sub-menu li a:hover {
        padding-left: 20px;
        background: hsl(var(--base));
        color: hsl(var(--white)) !important;
    }

    .sub-menu:hover {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .sub-menu .sub-menu {
        visibility: hidden;
        opacity: 0;
        top: 5px;
        left: -100%;
        transform: translateY(-20px);
    }

    .sub-menu.has-sub-menu > a::after {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .menu > li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        padding: 50px 30px 50px;
        max-height: calc(100vh - 50px);
        min-width: 200px;
        width: 100%;
        visibility: hidden;
        transform-origin: top;
        transform: translateY(-100px) scaleY(0.6);
        opacity: 0;
        overflow-y: auto;
        transition: all ease 0.3s;
        background: hsl(var(--base));
    }

    .menu.active {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        visibility: visible;
        z-index: 999;
        top: 0px;
    }

    .menu .has-sub-menu {
        margin-right: 0;
    }

    .menu .has-sub-menu > a::after {
        transform: translate(-20px, -50%) !important;
    }

    .menu li {
        padding: 3px 0;
        width: 100%;
    }

    .menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu li a {
        padding-left: 0;
        color: hsl(var(--white));
    }

    .menu li.has-sub-menu a::after {
        transform: translate(-20px, -50%) !important;
    }

    .sub-menu {
        display: none;
        padding-left: 25px;
    }
}

.header-trigger {
    cursor: pointer;
    margin-top: -10px;
}

.header-trigger.active span {
    background: none !important;
}

.header-trigger.active span::before {
    transform: rotate(-45deg) translate(-11px, 0px);
    background: hsl(var(--white));
}

.header-trigger.active span::after {
    transform: rotate(45deg) translate(-11px, 0px);
    background: hsl(var(--white));
}

.header-trigger span {
    width: 25px;
    height: 2px;
    background: hsl(var(--base));
    position: relative;
    transition: all ease 0.3s;
}

.header-trigger span::after, .header-trigger span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: hsl(var(--base));
}

.header-trigger span::after {
    bottom: -8px;
}

.header-trigger span::before {
    top: -8px;
}

.footer {
    background-color: #031e44;
    padding: 70px 0 50px;
}

@media (min-width: 992px) {
    .footer {
        padding-top: 100px;
    }
}

@media (min-width: 992px) {
    .footer.style--two, .footer.how-item.style--three {
        padding-top: 180px;
    }
}

@media (min-width: 1200px) {
    .footer.style--two, .footer.how-item.style--three {
        padding-top: 200px;
    }
}

.footer-widget__title {
    margin-bottom: 30px;
}

.footer-links li {
    padding: 6px 0;
    width: 50%;
}

.footer-links li a {
    color: hsl(var(--white));
}

.footer-links li a:hover {
    color: hsl(var(--base));
}

.sidebar {
    position: sticky;
    top: 100px;
    flex-flow: column;
    gap: 24px;
}

.sidebar-item > .title {
    border-radius: 5px 5px 0 0;
    padding: 15px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}
@media (max-width:1399px) {
    .sidebar-item > .title {
        margin-bottom: 25px;
    }
}

@media (min-width: 1400px) {
    .sidebar-item > .content {
        background-color: hsl(var(--border)/0.4);
        padding: 25px;
    }
}

.sidebar-search .form-group {
    position: relative;
}

.sidebar-search .form-group .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    color: hsl(var(--body));
}

.news-item:not(:last-child) {
    margin-bottom: 24px;
}

.news-item .thumb {
    width: 80px;
    height: 70px;
    flex-shrink: 0;
}

.news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.tags li:not(:first-child) {
    border-top: 1px dashed hsl(var(--dark)/0.1);
}

.tags li:first-child a {
    padding-top: 0 !important;
}

.tags li:last-child a {
    padding-bottom: 0 !important;
}

.gradient-ball::before, .gradient-ball::after {
    height: 1120px;
    width: 1120px;
    background: linear-gradient(135deg, hsl(var(--base)) 10%, hsl(var(--base),0) 78%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .gradient-ball::before, .gradient-ball::after {
        transform: translate(-60%, -60%);
    }
}

.gradient-ball::after {
    left: auto;
    right: 0;
    background: linear-gradient(225deg, hsl(var(--base)) 10%, hsl(var(--base),0) 78%);
    transform: translate(50%, -50%);
}

@media (max-width: 1199px) {
    .gradient-ball::after {
        transform: translate(60%, -60%);
    }
}

.gradient-ball .container {
    position: relative;
    z-index: 1;
}

.banner-section {
    padding: 220px 0 0;
}

@media (max-width: 991px) {
    .banner-section {
        padding-top: 180px;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding-top: 150px;
    }
}

@media (max-width: 575px) {
    .banner-section {
        padding-top: 120px;
    }
}

.banner-content {
    max-width: 600px;
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 530px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        max-width: 100%;
    }
}

.banner-content .title {
    font-weight: 800;
}

.banner-thumb {
    width: calc(100% - 600px);
}

@media (max-width: 991px) {
    .banner-thumb {
        width: 100%;
    }

    .banner-thumb img {
        max-width: 100%;
    }
}

.banner-thumb .icon1 {
    left: 28%;
    bottom: 25%;
    animation: coin1 9s linear infinite;
}

@media (max-width: 1199px) {
    .banner-thumb .icon1 {
        left: 42%;
    }
}

@media (max-width: 991px) {
    .banner-thumb .icon1 {
        left: 20%;
        width: 70px;
    }
}

@media (max-width: 575px) {
    .banner-thumb .icon1 {
        width: 45px;
    }
}

.banner-thumb .icon2 {
    right: -35%;
    top: 25%;
    animation: coin2 9s linear infinite;
}

@media (max-width: 1199px) {
    .banner-thumb .icon2 {
        right: -65%;
    }
}

@media (max-width: 991px) {
    .banner-thumb .icon2 {
        right: 0%;
        width: 70px;
    }
}

@media (max-width: 575px) {
    .banner-thumb .icon2 {
        width: 45px;
        top: 10%;
    }
}

.inner-banner {
    padding: 160px 0 60px;
    background-color: hsl(var(--base),0.02);
}

@media (max-width: 991px) {
    .inner-banner {
        padding-top: 140px;
    }
}

@media (max-width: 767px) {
    .inner-banner {
        padding-top: 120px;
    }
}
@media (max-width: 575px) {
    .inner-banner {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

.inner-banner .content {
    max-width: 450px;
}

@media (max-width: 991px) {
    .inner-banner .content {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .inner-banner .content {
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .inner-banner .content {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .inner-banner .content .breadcrumb {
        justify-content: center;
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .inner-banner .thumb {
        max-width: 450px;
    }
}

@media (max-width: 991px) {
    .inner-banner .thumb {
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .inner-banner .thumb {
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .inner-banner .thumb {
        max-width: 250px;
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .inner-banner .title {
        font-size: 36px;
    }
}

.inner-banner .blog-breadcrumb-title {
    font-size: 40px;
}

@media (max-width: 991px) {
    .inner-banner .blog-breadcrumb-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .inner-banner .blog-breadcrumb-title {
        font-size: 32px;
    }
}

.inner-banner .thumb .shape1 {
    right: 0;
    top: 0;
    animation: move-tb 5s linear infinite;
}

@media (max-width: 1399px) {
    .inner-banner .thumb .shape1 {
        max-width: 230px;
    }
}

@media (max-width: 1199px) {
    .inner-banner .thumb .shape1 {
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .inner-banner .thumb .shape1 {
        max-width: 140px;
    }
}

@media (max-width: 767px) {
    .inner-banner .thumb .shape1 {
        max-width: 100px;
    }
}

.inner-banner .thumb .shape2 {
    right: 30%;
    top: 35%;
    animation: move-tb 5s linear infinite;
}

@media (max-width: 1399px) {
    .inner-banner .thumb .shape2 {
        max-width: 250px;
    }
}

@media (max-width: 1199px) {
    .inner-banner .thumb .shape2 {
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .inner-banner .thumb .shape2 {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .inner-banner .thumb .shape2 {
        max-width: 80px;
    }
}

.inner-banner .thumb .shape3 {
    left: 0%;
    top: 40%;
    animation: pulse 2s linear infinite;
}

@media (max-width: 1399px) {
    .inner-banner .thumb .shape3 {
        max-width: 200px;
    }
}

@media (max-width: 1199px) {
    .inner-banner .thumb .shape3 {
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .inner-banner .thumb .shape3 {
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .inner-banner .thumb .shape3 {
        max-width: 80px;
    }
}

.counter-wrapper {
    border-radius: 20px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 2px 20px hsl(var(--border));
    padding: 55px 0;
}

@media (max-width: 1199px) {
    .counter-wrapper {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .counter-wrapper {
        padding: 25px 0;
    }
}

@media (max-width: 575px) {
    .counter-wrapper {
        padding: 0;
        box-shadow: none;
        border: 0;
    }
}

@media (min-width: 576px) {
    .counter-wrapper.bg--base .title,
.counter-wrapper.bg--base .info {
        color: hsl(var(--white));
    }
}

@media (max-width: 575px) {
    .counter-wrapper.bg--base {
        background-color: transparent !important;
    }
}

.counter-item {
    width: 33.3333333333%;
    padding: 15px 0;
}

.counter-item:not(:last-child) {
    border-right: 1px solid hsl(var(--border));
}

@media (max-width: 575px) {
    .counter-item {
        width: 100%;
        border-right: 0 !important;
    }

    .counter-item:first-child {
        padding-top: 0;
    }

    .counter-item:last-child {
        padding-bottom: 0;
    }
}

.counter-item .title {
    font-size: 56px;
}

@media (max-width: 1199px) {
    .counter-item .title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .counter-item .title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .counter-item .title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .counter-item .info {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .counter-item .info {
        font-size: 14px;
    }
}

.how-item {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 0 20px hsl(var(--base),0.06);
    display: flex;
    gap: 20px 25px;
}

@media (max-width: 575px) {
    .how-item {
        padding: 25px 20px;
    }
}

.how-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 5px 25px 3px hsl(var(--base)/0.1);
}

@media (max-width: 450px) {
    .how-item {
        flex-wrap: wrap;
    }
}

.how-item:not(:last-child) {
    margin-bottom: 24px;
}

.how-item__icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.how-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-item.style--two, .how-item.style--three {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

@media (max-width: 1199px) {
    .how-item.style--two, .how-item.style--three {
        gap: 20px;
    }
}

.how-item.style--two .how-item__icon, .how-item.style--three .how-item__icon {
    width: 100px;
    height: 100px;
    background-color: hsl(var(--border)/0.5);
    border-radius: 50%;
}

.how-item.style--two .how-item__icon img, .how-item.style--three .how-item__icon img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .how-item.style--two .how-item__icon, .how-item.style--three .how-item__icon {
        width: 80px;
        height: 80px;
    }

    .how-item.style--two .how-item__icon img, .how-item.style--three .how-item__icon img {
        max-width: 30px;
        max-height: 30px;
    }
}

.how-item.style--three .how-item__icon {
    width: 60px;
    height: 60px;
    background-color: hsl(var(--base));
}

.how-item.style--three .how-item__icon img {
    max-width: 30px;
    max-height: 30px;
}

@media (min-width: 992px) {
    div[class*=col]:nth-of-type(2n + 1) .how-item.style--three {
        transform: translateY(-24px);
    }
}

.section-thumb .like {
    right: 15%;
    top: 5%;
    animation: tada 3s linear infinite;
}

@media (max-width: 1199px) {
    .section-thumb .like {
        max-width: 50px;
    }
}

.section-thumb .like2 {
    left: 15%;
    top: 25%;
    animation: bounceIn 4s linear infinite;
}

@media (max-width: 1199px) {
    .section-thumb .like2 {
        max-width: 50px;
    }
}

.section-thumb .arrow {
    top: 5%;
    left: 35%;
    animation: move-tb 2s linear infinite;
}

@media (max-width: 1199px) {
    .section-thumb .arrow {
        max-width: 50px;
    }
}

.section-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100px;
    background-color: hsl(var(--white)/0.05);
    transform: translateX(-60%) rotate(45deg);
    left: 0;
}

.section-shape.section-shape-two {
    width: 350px;
    height: 200px;
    left: auto;
    right: 0;
    top: 100px;
    transform: translateX(60%) rotate(45deg);
    border-radius: 50px;
}

.section-shape.section-shape-three {
    width: 200px;
    height: 200px;
    left: auto;
    right: 0;
    top: 250px;
    transform: translateX(60%) rotate(45deg);
    border-radius: 50px;
}

.how-section-two::before {
    background-color: hsl(var(--base));
    height: calc(100% - 210px);
}

@media (max-width: 767px) {
    .how-section-two::before {
        height: 100%;
    }
}

.how-item-two {
    padding: 0 25px 50px;
    border-radius: 20px;
    background-color: hsl(var(--white));
    text-align: center;
    margin-top: 65px;
    box-shadow: 0 4px 55px -5px hsl(var(--base)/0.06);
    border: 1px solid hsl(var(--border));
    height: calc(100% - 65px);
}

.how-item-two:hover {
    transform: translateY(-7px);
    box-shadow: 0 5px 25px 3px hsl(var(--base)/0.1);
}

.how-item-two__icon {
    position: relative;
    display: inline-block;
    transform: translateY(-50%);
    margin-bottom: -30px;
}

.how-item-two__icon .serial {
    position: absolute;
    left: -15px;
    top: -15px;
    width: 50px;
    height: 50px;
    border: 7px solid hsl(var(--base-400));
    border-radius: 50%;
    background-color: hsl(var(--base-600));
}

.how-item-two__icon .icon {
    width: 115px;
    height: 115px;
    margin-inline: auto;
    border-radius: 50%;
    border: 15px solid hsl(var(--base-400));
    background-color: hsl(var(--base-600));
}

.how-item-two__icon .icon img {
    max-width: 100%;
}

.how-item-two__content .title {
    margin-bottom: 20px;
}

.plan-item {
    padding: 50px 45px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 0 20px hsl(var(--base),0.06);
    border-radius: 15px;
    position: relative;
    background-color: hsl(var(--white));
    z-index: 1;
}
.plan-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 5px 25px 3px hsl(var(--base)/0.1);
}

@media (max-width: 1399px) {
    .plan-item {
        padding: 40px 30px;
    }
}
@media (max-width: 450px) {
    .plan-item {
        padding: 40px 25px;
    }
}

.plan-item .discount {
    position: absolute;
    right: 20px;
    top: 20px;
}

.plan-item.active, .plan-item:hover {
    background-color: hsl(var(--base-600));
}

.plan-item.active .plan-inner *, .plan-item:hover .plan-inner * {
    color: hsl(var(--white));
}

.plan-item.active .list-style-check li.active, .plan-item:hover .list-style-check li.active {
    color: hsl(var(--white));
}

.plan-item.active .list-style-check li.disabled, .plan-item:hover .list-style-check li.disabled {
    color: hsl(var(--white)/0.65);
}

.plan-item::before {
    background: url(../images/shape/plan.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.plan-item__header .plan-price {
    font-size: 56px;
    color: hsl(var(--heading));
    font-family: var(--heading-font);
}
@media (max-width: 1400px) {
    .plan-item__header .plan-price {
        font-size: 42px;
    }
}

.plan-item__header .plan-price .currency-symbol {
    font-size: 24px;
    top: -28px;
    font-family: var(--body-font);
}

.plan-item__header .plan-price .duration {
    font-size: 16px;
    font-family: var(--body-font);
}

.plan-item .btn {
    margin-top: 35px;
}

@media (max-width: 450px) {
    .plan-item .btn {
        margin-top: 25px;
    }
}

.testimonial-slider .slick-list,
.testimonial-slider-two .slick-list {
    margin: -50px 0 -5px;
    padding: 0 !important;
}

.testimonial-slider .slick-track,
.testimonial-slider-two .slick-track {
    padding: 50px 0 !important;
}

.testimonial-slider .single-slide,
.testimonial-slider-two .single-slide {
    padding-inline: 12px;
}

.testimonial-slider .slick-dots,
.testimonial-slider-two .slick-dots {
    left: 50%;
    width: auto !important;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .testimonial-slider .slick-dots,
.testimonial-slider-two .slick-dots {
        bottom: 0 !important;
    }
}

.testimonial-item {
    padding: 30px 50px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 0 60px hsl(var(--base),0.06);
    background-color: hsl(var(--white));
    max-width: 650px;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .testimonial-item .name-area {
        margin-top: 25px;
    }
}

@media (min-width: 1400px) {
    .testimonial-item {
        max-width: 750px;
    }
}

@media (max-width: 767px) {
    .testimonial-item {
        max-width: 540px;
    }

    .testimonial-item .quote-icon {
        max-width: 60px;
        max-height: 60px;
        object-fit: contain;
    }
}

@media (max-width: 575px) {
    .testimonial-item {
        max-width: 450px;
        padding: 20px 30px;
    }

    .testimonial-item .quote-text {
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .testimonial-item {
        max-width: 320px;
    }

    .testimonial-item .quote-icon {
        max-width: 45px;
        max-height: 45px;
        object-fit: contain;
    }
}

.testimonial-item.style--two, .testimonial-item.how-item.style--three {
    max-width: unset !important;
    padding: 20px;
    box-shadow: 0 0 20px hsl(var(--base),0.06);
    z-index: 1;
    position: relative;
    opacity: 1;
}

.testimonial-item.style--two::before, .testimonial-item.how-item.style--three::before {
    background: url(../images/shape/plan.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.testimonial-item.style--two .quote-icon, .testimonial-item.how-item.style--three .quote-icon {
    margin-left: 0 !important;
}

.testimonial-item.style--two .from, .testimonial-item.how-item.style--three .from {
    font-weight: 300;
}

.testimonial-item.style--two .name, .testimonial-item.how-item.style--three .name {
    margin-bottom: 4px;
}

.testimonial-item.style--two .rating, .testimonial-item.how-item.style--three .rating {
    margin-top: 5px;
    margin-bottom: 0;
}

.slick-center .testimonial-item {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    opacity: 1;
}

.slick-center .testimonial-item.style--two .name, .slick-center .testimonial-item.how-item.style--three .name {
    color: hsl(var(--white));
}

.slick-center .testimonial-item.style--two .quote-icon, .slick-center .testimonial-item.how-item.style--three .quote-icon {
    filter: brightness(0) invert(1) contrast(100);
}

@media (max-width: 1199px) {
    .slick-center .testimonial-item.style--two .quote-icon, .slick-center .testimonial-item.how-item.style--three .quote-icon {
        max-width: 60px;
        max-height: 60px;
    }
}

.feature-item {
    padding: 25px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 0 20px hsl(var(--base),0.06);
}

.feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 5px 25px 3px hsl(var(--base)/0.1);
}

.feature-item p {
    margin-top: 15px;
}

.faq-item {
    background-color: hsl(var(--white));
    border-radius: 8px;
}

.faq-item:not(:last-child) {
    margin-bottom: 24px;
}

.faq-item.active .faq-item__content {
    display: block;
}

.faq-item.open .faq-item__title .title::before {
    transform: rotate(-180deg);
}

.faq-item__title {
    padding: 20px 30px;
    cursor: pointer;
}

@media (max-width: 450px) {
    .faq-item__title {
        padding: 20px;
    }
}

.faq-item__title .title {
    position: relative;
    padding-right: 25px;
}

.faq-item__title .title::before {
    content: "\f107";
    right: 0;
    top: 2px;
    font-size: 14px;
    color: hsl(var(--heading));
}

.faq-item__content {
    padding: 25px 30px;
    padding-top: 0;
    display: none;
}

.faq-item.style--two, .faq-item.how-item.style--three {
    border: 1px solid hsl(var(--border));
    box-shadow: 0 0 5px hsl(var(--base)/0.06);
}

.slick-dots {
    left: 0;
    text-align: left;
    bottom: -10px;
}

.slick-dots li {
    margin-inline: 1px;
}

.slick-dots li button {
    margin-left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid hsl(var(--base));
}

.slick-dots li button::before {
    display: none;
}

.slick-dots li.slick-active button {
    background-color: hsl(var(--base));
}

.video-thumb img {
    border-radius: 10px;
}

.video-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.subscription-section {
    z-index: 1;
    position: relative;
}

@media (min-width: 992px) {
    .subscription-section {
        margin-bottom: -170px;
    }
}

@media (min-width: 1400px) {
    .subscription-section {
        margin-bottom: -180px;
    }
}

@media (min-width: 1500px) {
    .subscription-section {
        margin-bottom: -200px;
    }
}

@media (min-width: 1800px) {
    .subscription-section {
        margin-bottom: -215px;
    }
}

.subscription-wrapper {
    padding: 70px;
    border-radius: 15px;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 0 20px hsl(var(--base),0.06);
    background-color: hsl(var(--white));
}

.subscription-wrapper .border-bottom {
    border-color: hsl(var(--border)) !important;
}

@media (max-width: 1199px) {
    .subscription-wrapper {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .subscription-wrapper {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .subscription-wrapper {
        padding: 0;
        box-shadow: none;
        border: 0;
    }
}

.subs-form .input-group {
    border: 1px solid hsl(var(--base));
    padding: 10px;
    border-radius: 8px;
}

.contact-info-item {
    text-align: center;
    height: 100%;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background-color: hsl(var(--base)/0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.contact-info-item .icon i{
    color: #fff;
    font-size: 35px;
}

.contact-info-item .icon img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    margin: 0 auto;
}

.contact-info-item .title {
    margin: 10px;
}

.contact-info-item.style--two, .contact-info-item.how-item.style--three {
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--border)/0.3);
    padding: 25px;
    padding-left: 0;
    margin-left: 25px;
}

@media (min-width: 576px) {
    .contact-info-item.style--two, .contact-info-item.how-item.style--three {
        margin-left: 35px;
    }
}

.contact-info-item.style--two .icon, .contact-info-item.how-item.style--three .icon {
    margin-top: auto;
    margin-bottom: auto;
    background-color: hsl(var(--base));
    outline: 5px solid hsl(var(--base-400));
    transform: translateX(-50%);
}

.contact-info-item.style--two .icon img, .contact-info-item.how-item.style--three .icon img {
    max-width: 25px;
    max-height: 25px;
}

@media (min-width: 576px) {
    .contact-info-item.style--two .icon, .contact-info-item.how-item.style--three .icon {
        width: 65px;
        height: 65px;
    }

    .contact-info-item.style--two .icon img, .contact-info-item.how-item.style--three .icon img {
        max-width: 28px;
        max-height: 28px;
    }
}

.contact-info-item.style--two .content, .contact-info-item.how-item.style--three .content {
    width: calc(100% - 50px);
    text-align: left;
    font-size: 15px;
}

@media (min-width: 576px) {
    .contact-info-item.style--two .content, .contact-info-item.how-item.style--three .content {
        width: calc(100% - 65px);
    }
}

.contact-info-item.style--two .content .title, .contact-info-item.how-item.style--three .content .title {
    margin: 0;
    margin-bottom: 12px;
}

.subs-thumb .icon1 {
    position: absolute;
    bottom: 5px;
    right: 20%;
    animation: zoomInDown 5s linear infinite;
}

@media (max-width: 1199px) {
    .subs-thumb .icon1 {
        max-width: 60px;
    }
}

@media (max-width: 991px) {
    .subs-thumb .icon1 {
        max-width: 100px;
    }
}

@media (max-width: 575px) {
    .subs-thumb .icon1 {
        max-width: 60px;
    }
}

.subs-thumb .icon2 {
    position: absolute;
    top: 29%;
    right: 37%;
    animation: tada 3s linear infinite;
}

@media (max-width: 1199px) {
    .subs-thumb .icon2 {
        max-width: 50px;
    }
}

@media (max-width: 991px) {
    .subs-thumb .icon2 {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .subs-thumb .icon2 {
        max-width: 70px;
    }
}

@media (max-width: 575px) {
    .subs-thumb .icon2 {
        max-width: 50px;
    }
}

.sec-box {
    border: 1px solid hsl(var(--border));
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px hsl(var(--base),0.06);
}

@media (max-width: 575px) {
    .sec-box {
        padding: 25px;
    }
}

@media (max-width: 450px) {
    .sec-box {
        padding: 20px;
    }
}

.sec-box .sec-box-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: hsl(var(--border)/0.5);
    flex-shrink: 0;
}

.sec-box .sec-box-icon img {
    max-width: 35px;
    max-height: 35px;
    object-fit: contain;
}

.sec-box:last-child {
    margin-bottom: 0;
}

.post-item__thumb img {
    border-radius: 8px 8px 0 0;
}

.post-item__content {
    background: hsl(var(--border)/0.3);
    border: 1px solid hsl(var(--border));
    border-radius: 0 0 5px 5px;
}

.post-item__content .content {
    padding: 25px 25px 20px;
}

@media (max-width: 575px) {
    .post-item__content .content {
        padding: 20px;
    }
}

.post-item__content .title {
    margin-bottom: 15px;
}

.post-item__content .read-more {
    margin-top: 12px;
}

.post-item__content .post-single-text {
    -webkit-line-clamp: 3;
}

.post-item__content .content-footer {
    border-top: 1px solid hsl(var(--border));
}

.post-item__content .content-footer .info {
    padding: 13px 20px;
}

.blog-details blockquote {
    padding: 25px;
}

.blog-details p:not(:last-child) {
    margin-bottom: 25px;
}

.blog-details .post-item__content .content > .title {
    margin-top: 25px;
}

.blog-details .post-footer {
    border-radius: 0 0 10px 10px;
}

.account-section {
    background-color: #031e44;
    min-height: 100vh;
    flex-flow: column;
    position: relative;
}

.account-section::before, .account-section::after {
    background: url(../images/shape/shape2.png);
    background-repeat: no-repeat;
    max-width: 500px;
    max-height: 400px;
    left: 0;
    top: 0;
    background-position: center;
    background-size: contain;
}

.account-section::after {
    background: url(../images/shape/shape2.png);
    left: auto;
    top: auto;
    bottom: 0;
    right: 0;
}

.account-form {
    padding: 20px;
    background-color: hsl(var(--base-800));
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .account-form {
        padding: 40px 30px;
    }
}

@media (min-width: 1400px) {
    .account-form {
        padding: 60px 40px;
    }
}

.account-form::before {
    background: url(../images/shape/shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.account-form .input-group-text {
    color: hsl(var(--white));
    background-color: hsl(var(--base-700));
    border-color: hsl(var(--base-900));
}

.account-form .form--control {
    border-color: hsl(var(--base-900));
    color: hsl(var(--white));
    background-color: hsl(var(--base-700));
}

.account-form ::placeholder {
    color: hsl(var(--white));
}

.account-form button.btn {
    background-color: #03218a;
    border: 0 !important;
}

.account-form button.btn:hover {
    background-color: hsl(var(--base));
}

@media (max-width: 991px) {
    .account-thumb img {
        width: 100%;
    }
}

.hover-underline:hover {
    text-decoration: underline;
}