/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Helvetica Neue";
    --body-font: "Helvetica Neue";
    /* ========================= Theme Color Start ============================= */
    --base-h: 196;
    --base-s: 100%;
    --base-l: 50%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
    /* ========================= Theme Color End ============================= */
    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --black: 0 0% 0%;
    /* Danger Color */
    --danger: 0 100% 52%;
    --border-color: 0 0% 89%;
    --section-bg: 0 0% 94%;
    /* ========================= Color Variables End =========================== */
}

/* ========================= Css Variables End =========================== */
/* Fully Fit image Css */
.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend {
    position: absolute;
    content: "";
}

.top-center-extend,
.accordion .accordion-button[aria-expanded=true]::after,
.accordion .accordion-button[aria-expanded=false]::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.left-center-extend {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.top-left-center-extend {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ============================= Positioning Css Class End ===================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--black));
    word-break: break-word;
    background-color: hsl(var(--white));
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.container {
    max-width: 1500px;
}

@media screen and (max-width: 1499px) {
    .container {
        max-width: 1320px;
    }
}

@media screen and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 32px;
    }
}

p {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: hsl(var(--black));
}

@media screen and (max-width: 1399px) {
    p {
        font-size: 18px;
    }
}

@media screen and (max-width: 1199px) {
    p {
        font-size: 16px;
    }
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 24px 0;
    font-family: var(--heading-font);
    color: hsl(var(--black));
    font-weight: 500;
    line-height: 1.1;
}

h1 {
    font-size: 84px;
}

@media screen and (max-width: 1499px) {
    h1 {
        font-size: 72px;
    }
}

@media screen and (max-width: 1399px) {
    h1 {
        font-size: 62px;
    }
}

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

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

h2 {
    font-size: 64px;
    margin-bottom: 32px;
}

@media screen and (max-width: 1499px) {
    h2 {
        font-size: 60px;
    }
}

@media screen and (max-width: 1399px) {
    h2 {
        font-size: 52px;
    }
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
}

h3 {
    font-size: 50px;
}

h4 {
    font-size: 40px;
}

@media screen and (max-width: 1499px) {
    h4 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1399px) {
    h4 {
        font-size: 32px;
    }
}

h5 {
    font-size: 36px;
}

@media screen and (max-width: 1499px) {
    h5 {
        font-size: 30px;
    }
}

@media screen and (max-width: 1399px) {
    h5 {
        font-size: 26px;
    }
}

h6 {
    font-size: 30px;
}

@media screen and (max-width: 1199px) {
    h6 {
        font-size: 24px;
    }
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: inherit;
}

a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    color: hsl(var(--black));
}

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

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

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

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xsm-6 {
        width: 50%;
    }
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-bg {
    background-color: hsl(var(--section-bg));
}

/* ================================= Custom Classes Css End =========================== */
/* ======================  Global Section Start  ======================*/
.pulse {
    -webkit-animation: animate-pulse 3s linear infinite;
    animation: animate-pulse 3s linear infinite;
}

@-webkit-keyframes animate-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--white)/0.7), 0 0 0 0 hsl(var(--white)/0.7);
        box-shadow: 0 0 0 0 hsl(var(--white)/0.7), 0 0 0 0 hsl(var(--white)/0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px transparent, 0 0 0 0 hsl(var(--white)/0.7);
        box-shadow: 0 0 0 50px transparent, 0 0 0 0 hsl(var(--white)/0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
        box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
        box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
    }
}

@keyframes animate-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--white)/0.7), 0 0 0 0 hsl(var(--white)/0.7);
        box-shadow: 0 0 0 0 hsl(var(--white)/0.7), 0 0 0 0 hsl(var(--white)/0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px transparent, 0 0 0 0 hsl(var(--white)/0.7);
        box-shadow: 0 0 0 50px transparent, 0 0 0 0 hsl(var(--white)/0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
        box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
        box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
    }
}

/* ======================  Global Section End  ======================*/
/* ======================  Swiper Start  ======================*/
.swiper-button-next,
.swiper-button-prev {
    position: unset;
    width: 50px;
    height: 50px;
    margin-top: 0;
    color: hsl(var(--white));
    background-color: hsl(var(--black));
    border-radius: 50%;
    font-size: 26px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--black));
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

/* ======================  Swiper End  ======================*/
/* ================================= Margin Css Start =========================== */
.my-100 {
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (min-width: 576px) {
    .my-100 {
        margin-top: 70px;
        margin-bottom: 70px;
    }
}

@media (min-width: 992px) {
    .my-100 {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

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

@media (min-width: 576px) {
    .mt-100 {
        margin-top: 70px;
    }
}

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

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

@media (min-width: 576px) {
    .mb-100 {
        margin-bottom: 70px;
    }
}

@media (min-width: 992px) {
    .mb-100 {
        margin-bottom: 100px;
    }
}

/* ================================= Margin Css End =========================== */
/* ================================= Padding Css Start =========================== */
.py-100 {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 576px) {
    .py-100 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

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

.pt-100 {
    padding-top: 50px;
}

@media (min-width: 576px) {
    .pt-100 {
        padding-top: 70px;
    }
}

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

.pb-100 {
    padding-bottom: 50px;
}

@media (min-width: 576px) {
    .pb-100 {
        padding-bottom: 70px;
    }
}

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

/* ================================= Padding Css End =========================== */
/* =========================== Accordion Css start ============================= */
.accordion .accordion-item {
    border: none;
    background-color: hsl(var(--section-bg)) !important;
    border-radius: 4px;
    overflow: hidden;
}

.accordion .accordion-item:not(:last-child) {
    margin-bottom: 18px;
}

.accordion .accordion-header {
    line-height: 1.3;
}

.accordion .accordion-body {
    padding: 32px;
    padding-top: 0;
    background-color: transparent;
    font-size: 20px;
    color: hsl(var(--black));
}

@media screen and (max-width: 1199px) {
    .accordion .accordion-body {
        padding: 24px;
        padding-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .accordion .accordion-body {
        padding: 30px 18px;
        padding-top: 0;
        font-size: 16px;
    }
}

.accordion:first-of-type .accordion-button.collapsed {
    border-radius: 4px;
}

.accordion:last-of-type .accordion-button.collapsed {
    border-radius: 4px;
}

.accordion .accordion-button {
    background-color: transparent;
    color: var(--black);
    font-size: 24px;
    font-weight: 500;
    padding: 32px;
    padding-right: 50px;
}

@media screen and (max-width: 1199px) {
    .accordion .accordion-button {
        padding: 24px;
        padding-right: 50px;
    }
}

@media screen and (max-width: 767px) {
    .accordion .accordion-button {
        padding: 30px 18px;
        padding-right: 50px;
        font-size: 18px;
    }
}

.accordion .accordion-button::after {
    background-image: none;
}

.accordion .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--black));
    background-color: transparent !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    color: hsl(var(--black));
}

.accordion .accordion-button[aria-expanded=true]::after,
.accordion .accordion-button[aria-expanded=false]::after {
    content: "";
    position: absolute;
    right: 24px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
}

.accordion .accordion-button[aria-expanded=true]::after {
    background-image: url("../images/minus.svg");
}

.accordion .accordion-button[aria-expanded=false]::after {
    background-image: url("../images/plus.svg");
}

/* ================================= Accordion Css End =========================== */
/* ================================= Form Css Start =========================== */
.form-label {
    margin-bottom: 24px;
    font-size: 20px;
    color: hsl(var(--black));
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (max-width: 1199px) {
    .form-label {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .form-label {
        font-size: 16px;
        margin-bottom: 26px;
    }
}

.form-control {
    border-radius: 0;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 20px 16px;
    background-color: #F9F9F9;
    border: 1px solid #D9D9D9;
    color: hsl(var(--black));
    line-height: 1.3;
}

.form-control::-webkit-input-placeholder {
    color: #D9D9D9;
}

.form-control::-moz-placeholder {
    color: #D9D9D9;
}

.form-control:-ms-input-placeholder {
    color: #D9D9D9;
}

.form-control::-ms-input-placeholder {
    color: #D9D9D9;
}

.form-control::placeholder {
    color: #D9D9D9;
}

.form-control:focus {
    background-color: #F9F9F9;
    border-color: hsl(var(--black)/0.6);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: hsl(var(--black)/0.2);
    opacity: 1;
    border: 0;
}

textarea.form-control {
    height: 260px;
    resize: none;
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--black)) !important;
    caret-color: hsl(var(--black));
}

.form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
    padding-left: 0;
}

.form-check .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #F9F9F9;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 2px;
    width: 40px;
    height: 40px;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    margin-left: 0;
    margin-top: 0;
}

.form-check .form-check-input:checked {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-check .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form-check .form-check-input:checked::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: hsl(var(--black));
    font-size: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.form-check .form-check-label {
    font-weight: 400;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (max-width: 1199px) {
    .form-check .form-check-label {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .form-check .form-check-label {
        font-size: 16px;
    }
}

/* ================================= Form Css End =========================== */
/* ======================  Button Section Start  ======================*/
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 30px 40px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 20px 2px 20px 2px;
    color: hsl(var(--white));
    line-height: 1;
}

@media screen and (max-width: 1199px) {
    .btn {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .btn {
        font-size: 16px;
        padding: 26px 24px;
    }
}

@media screen and (max-width: 767px) {
    .btn {
        font-size: 14px;
    }
}

.btn--lg {
    padding: 40px 30px;
}

@media screen and (max-width: 1199px) {
    .btn--lg {
        padding: 30px 30px;
    }
}

.btn--black {
    background-color: hsl(var(--black));
}

.btn--black:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--black));
}

.hover--white:hover {
    background-color: hsl(var(--white)) !important;
    color: hsl(var(--black)) !important;
}

.btn--white {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

.btn--white:hover {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

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

.btn--base:hover {
    background-color: hsl(var(--base-d-100));
    color: hsl(var(--black));
}

/* ======================  Button Section End  ======================*/
/* ================================= Preloader Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: hsl(var(--white));
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader .loader__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 600;
    font-family: var(--heading-font);
    letter-spacing: 2px;
    font-size: 30px;
    background: radial-gradient(circle closest-side, hsl(var(--base)) 94%, transparent) right/calc(200% - 1em) 100%;
    -webkit-animation: loader__circle 1s infinite alternate linear;
    animation: loader__circle 1s infinite alternate linear;
}

@media screen and (max-width: 575px) {
    .preloader .loader__text {
        font-size: 1.875rem;
    }
}

.preloader .loader__text::before {
    content: attr(data-text);
    line-height: 1em;
    color: transparent;
    background: inherit;
    background-image: radial-gradient(circle closest-side, hsl(var(--black)) 94%, hsl(var(--black)/0.2));
    -webkit-background-clip: text;
    background-clip: text;
}

@-webkit-keyframes loader__circle {
    100% {
        background-position: left;
    }
}

@keyframes loader__circle {
    100% {
        background-position: left;
    }
}

/* ================================= Preloader Css End ===========================  */
/* ======================  Offcanvas Section Start  ======================*/
.offcanvas__area {
    position: fixed !important;
    left: -100%;
    height: 100%;
    width: 18.75rem;
    padding: 1.25rem;
    padding-right: 0 !important;
    background-color: hsl(var(--white));
    border-right: 0.0625rem solid hsl(var(--black)/0.03);
    z-index: 15 !important;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    top: 0;
    overflow: hidden;
}

.offcanvas__area.active {
    left: 0;
    visibility: visible;
}

.offcanvas__area .offcanvas__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
    margin-right: 1.25rem;
    margin-bottom: 2.5rem;
}

.offcanvas__area .offcanvas__topbar a img {
    width: 170px;
}

.offcanvas__area .offcanvas__topbar .menu__close {
    width: 1.875rem;
    height: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    color: hsl(var(--black));
    font-size: 1.25rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.offcanvas__area .offcanvas__topbar .menu__close:hover {
    color: hsl(var(--danger));
}

.offcanvas__area .offcanvas__main {
    overflow-y: auto;
    height: 100%;
    scrollbar-width: thin;
    padding-right: 1.25rem;
    padding-bottom: 3.75rem;
}

.offcanvas__menu ul li a {
    font-size: 18px;
    color: hsl(var(--black));
    transition: 0.3s;
    display: block;
    border-bottom: 1px solid hsl(var(--black) / 0.1);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.offcanvas__menu ul li:last-child a {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.offcanvas__menu ul li a:hover {
    padding-left: 10px;
    color: hsl(var(--base));
}

.offcanvas__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--black)/0.4);
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 12;
}

.offcanvas__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======================  Offcanvas Section End  ======================*/
/* ======================  Header Start Here  ======================*/
.header__area {
    position: absolute;
    left: 0;
    right: 0;
    top: 55px;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 1199px) {
    .header__area {
        top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .header__area {
        top: 79px;
    }
}

.header__area .header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.header__area .header__logo a img {
    max-width: 300px;
    width: 100%;
}

@media screen and (max-width: 1199px) {
    .header__area .header__logo a img {
        max-width: 260px;
    }
}

@media screen and (max-width: 767px) {
    .header__area .header__logo a img {
        max-width: 182px;
    }
}

@media screen and (max-width: 767px) {
    .header__area .header__menu {
        display: none;
    }
}

.header__area .header__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 100px;
}

@media screen and (max-width: 1199px) {
    .header__area .header__menu ul {
        gap: 60px;
    }
}

@media screen and (max-width: 991px) {
    .header__area .header__menu ul {
        gap: 40px;
    }
}

.header__area .header__menu ul li a {
    color: hsl(var(--black));
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.header__area .header__menu ul li a::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    content: "";
    background-color: hsl(var(--black));
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .header__area .header__menu ul li a {
        font-size: 18px;
    }
}

.header__area .header__menu ul li a:hover::after,
.header__area .header__menu ul li a.active::after {
    width: 100%;
}

.menu__open {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .header__menu {
        display: none;
    }

    .menu__open {
        display: flex;
    }
}

/* ======================  Header End Here  ======================*/
/* ======================  Footer Section Start  ======================*/
.footer__area {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .footer__area {
        margin-top: 0;
    }
}

.footer__area::after {
    position: absolute;
    left: 0;
    top: -59px;
    content: "";
    background-color: hsl(var(--base));
    width: 450px;
    height: 60px;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .footer__area::after {
        width: 300px;
        height: 38px;
        top: -37px;
    }
}

@media screen and (max-width: 991px) {
    .footer__area::after {
        display: none;
    }
}

.footer__topbar {
    background-color: hsl(var(--base));
    padding: 75px 0;
    border-bottom: 1px solid hsl(var(--black));
}

@media screen and (max-width: 1399px) {
    .footer__topbar {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1199px) {
    .footer__topbar {
        padding: 50px 0;
    }
}

.footer__topbar__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
}

@media screen and (max-width: 991px) {
    .footer__topbar__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 50px;
    }
}

.footer__topbar__content a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.footer__topbar__content h2 {
    margin-bottom: 0;
    max-width: 900px;
}

@media screen and (max-width: 1399px) {
    .footer__topbar__content h2 {
        max-width: 720px;
    }
}

.footer__contact {
    background-color: hsl(var(--base));
    padding: 85px 0;
}

@media screen and (max-width: 1399px) {
    .footer__contact {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1199px) {
    .footer__contact {
        padding: 50px 0;
    }
}

.footer__bottombar {
    background-color: hsl(var(--white));
    padding: 42px 0;
}

.footer__contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
    .footer__contact__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 24px;
    }
}

.footer__contact__content h5 {
    margin-bottom: 0;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .footer__contact__content h5 {
        font-size: 18px;
        font-weight: 400;
    }
}

.footer__contact__content a {
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
}

.footer__contact__content a:hover {
    color: hsl(var(--black));
}

.footer__bottombar__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer__bottombar__content>a img {
    max-width: 300px;
    width: 100%;
}

@media screen and (max-width: 1399px) {
    .footer__bottombar__content>a img {
        max-width: 260px;
    }
}

@media screen and (max-width: 767px) {
    .footer__bottombar__content>a img {
        max-width: 180px;
    }
}

.footer__bottombar__content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 100px;
}

@media screen and (max-width: 1199px) {
    .footer__bottombar__content ul {
        gap: 60px;
    }
}

@media screen and (max-width: 991px) {
    .footer__bottombar__content ul {
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .footer__bottombar__content ul {
        display: none;
    }
}

.footer__bottombar__content ul li a {
    font-size: 20px;
}

.footer__bottombar__content ul li a:hover {
    color: hsl(var(--black));
}

.footer__copyright {
    padding: 38px 0;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .footer__copyright {
        padding: 32px 0;
    }

    .footer__bottombar {
        padding: 32px 0;
    }
}

.footer__copyright__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright__content p {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .footer__copyright__content p {
        font-size: 14px;
    }
}

.footer__copyright__content a {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .footer__copyright__content a {
        font-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    .footer__contact__content a {
        font-size: 28px;
    }
}

.footer__copyright__content a:hover {
    color: hsl(var(--black));
}

/* ======================  Footer Section End  ======================*/
/* ===================== Scroll to Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: hsl(var(--black));
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: hsl(var(--base));
}

.scroll-top:hover {
    color: hsl(var(--black));
    background-color: hsl(var(--base-d-200));
}

.scroll-top.show {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ======================  Select2 Section Start  ======================*/
.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container .selection {
    width: 100%;
}

.select2-container--default .select2-selection--single {
    background-color: #F9F9F9;
    border: 1px solid #D9D9D9;
    border-radius: 0;
    height: auto;
    padding: 21px 30px 21px 14px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0;
    padding-right: 0;
    line-height: normal;
    color: hsl(var(--black));
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(100% - 2px);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1px;
    width: 64px;
    border-left: 1px solid #D9D9D9;
    background-color: hsl(var(--white));
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    color: hsl(var(--black));
    font-weight: 900;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-dropdown {
    background-color: hsl(var(--white));
    border: 1px solid #D9D9D9;
    border-radius: 0;
    overflow: hidden;
}

.select2-search--dropdown {
    padding: 6px;
}

.select2-search--dropdown .select2-search__field {
    padding: 8px 12px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #D9D9D9;
    background-color: hsl(var(--white)/0.2);
}

.select2-results__option {
    padding: 20px 16px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    background-color: transparent;
    border-bottom: 1px solid #D9D9D9;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.select2-results__option:last-child {
    border-bottom: none;
}

.select2-container--default .select2-results>.select2-results__options {
    scrollbar-width: thin;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--black));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--base)/0.1);
    border-color: hsl(var(--base)/0.1);
}

.select2-results__option.select2-results__message {
    text-align: center;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 400px;
}

/* ======================  Select2 Section End  ======================*/
/* ======================  Hero Section Start  ======================*/
.hero__area {
    padding-top: 172px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .hero__area {
        padding-top: 150px;
    }
}

@media screen and (max-width: 991px) {
    .hero__area {
        padding-top: 160px;
        background-image: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hero__area {
        padding-top: 150px;
    }
}

.hero__sp {
    position: absolute;
    right: -600px;
    top: 0;
    z-index: -3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    display: none;
}

@media screen and (max-width: 991px) {
    .hero__sp {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .hero__sp {
        right: -400px;
    }
}

@media screen and (max-width: 575px) {
    .hero__sp {
        right: -600px;
    }
}

.hero__sp img {
    width: 1800px;
    max-width: inherit;
}

@media screen and (max-width: 767px) {
    .hero__sp img {
        width: 1400px;
    }
}

.hero__video {
    width: 100%;
    height: 100%;
    min-height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 200px 0 200px 0;
    padding: 24px;
}

@media screen and (max-width: 1499px) {
    .hero__video {
        min-height: 650px;
        border-radius: 150px 0 150px 0;
    }
}

@media screen and (max-width: 1399px) {
    .hero__video {
        min-height: 600px;
        border-radius: 130px 0 130px 0;
    }
}

@media screen and (max-width: 1199px) {
    .hero__video {
        min-height: 530px;
        border-radius: 100px 0 100px 0;
    }
}

@media screen and (max-width: 767px) {
    .hero__video {
        min-height: 370px;
    }
}

.hero__video a {
    width: 130px;
    height: 130px;
    background-color: hsl(var(--white));
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 40px;
    color: #333333;
}

@media screen and (max-width: 1399px) {
    .hero__video a {
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width: 1199px) {
    .hero__video a {
        width: 100px;
        height: 100px;
        font-size: 34px;
    }
}

@media screen and (max-width: 767px) {
    .hero__video a {
        width: 114px;
        height: 114px;
        font-size: 40px;
    }
}

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

.hero__content {
    padding-bottom: 40px;
}

@media screen and (max-width: 991px) {
    .hero__content {
        max-width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .hero__content {
        max-width: 100%;
        padding-bottom: 26px;
    }
}

@media screen and (max-width: 991px) {
    .hero__content a {
        display: none;
    }
}

.hero__content h1 {
    margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .hero__content h1 {
        margin-bottom: 24px;
    }
}

.hero__content p {
    margin-bottom: 100px;
    max-width: 675px;
}

@media screen and (max-width: 1399px) {
    .hero__content p {
        margin-bottom: 70px;
        max-width: 560px;
    }
}

@media screen and (max-width: 1199px) {
    .hero__content p {
        max-width: 400px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .hero__content p {
        margin-bottom: 0;
    }
}

.hero__btn {
    display: none;
    padding: 70px 0;
}

@media screen and (max-width: 991px) {
    .hero__btn {
        display: block;
    }
}

.mfp-iframe-holder .mfp-content {
    max-width: 1200px;
}

/* ======================  Hero Section End  ======================*/
/* ======================  Core Feature Section Start  ======================*/
.core__feature {
    background-color: hsl(var(--base));
}

@media screen and (max-width: 767px) {

    .core__feature .g-5,
    .core__feature .gy-5 {
        --bs-gutter-y: 2.5rem;
    }

    .core__feature .g-5,
    .core__feature .gx-5 {
        --bs-gutter-x: 2.5rem;
    }
}

.core__feature__single p {
    color: hsl(var(--white));
}

/* ======================  Core Feature Section End  ======================*/
/* ======================  Custodial Section Start  ======================*/
.custodial__area {
    background-color: hsl(var(--section-bg));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.custodial__sp {
    position: absolute;
    right: -100px;
    bottom: -400px;
    z-index: -2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 900px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .custodial__sp {
        bottom: -180px;
        max-width: inherit;
        width: 600px;
    }
}

.custodial__content {
    max-width: 600px;
}

@media screen and (max-width: 1199px) {
    .custodial__content {
        max-width: 420px;
    }
}

@media screen and (max-width: 991px) {
    .custodial__content {
        max-width: 86%;
    }
}

@media screen and (max-width: 767px) {
    .custodial__content {
        max-width: 100%;
    }
}

.custodial__thumb {
    text-align: end;
}

@media screen and (max-width: 991px) {
    .custodial__thumb {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .custodial__thumb {
        margin-top: 41px;
    }
}

/* ======================  Custodial Section End  ======================*/
/* ======================  Bitcoin Section Start  ======================*/
.bitcoin__area {
    background-color: hsl(var(--section-bg));
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

@media screen and (max-width: 991px) {
    .bitcoin__area {
        padding-top: 88px !important;
        overflow: hidden;
    }
}

.bitcoin__area .swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
    z-index: 2;
}

.bitcoin__area .bitcoin__card {
    height: 100%;
}

.bitcoin__area::after {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -2;
    content: "";
    width: 200px;
    height: 60px;
    background-color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .bitcoin__area::after {
        width: 150px;
        height: 38px;
    }
}

.bitcoin__heading {
    text-align: center;
    max-width: 870px;
    margin-inline: auto;
    margin-bottom: 70px;
}

@media screen and (max-width: 1399px) {
    .bitcoin__heading {
        max-width: 730px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .bitcoin__heading {
        max-width: 580px;
    }
}

.bitcoin__card {
    background-color: hsl(var(--white));
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .bitcoin__card {
        -webkit-box-shadow: 12px 16px 16px 0 hsl(var(--black)/0.1);
        box-shadow: 12px 16px 16px 0 hsl(var(--black)/0.1);
    }
}

.bitcoin__img {
    width: 100%;
}

.bitcoin__img img {
    width: 100%;
}

.bitcoin__content {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 160px;
}

@media screen and (max-width: 1499px) {
    .bitcoin__content p {
        font-size: 17px;
    }
}

@media screen and (max-width: 1399px) {
    .bitcoin__content {
        padding: 30px;
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .bitcoin__content {
        padding: 15px 14px;
        min-height: 110px;
    }

    .bitcoin__content p {
        font-size: 12px;
    }
}

.bitcoin__content h5 {
    margin-bottom: 0;
    max-width: 320px;
}

@media screen and (max-width: 991px) {
    .bitcoin__content h5 {
        font-size: 20px;
    }
}

.bitcoin__wrap {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .bitcoin__wrap {
        max-width: 720px;
        padding: 0 32px;
        margin-inline: auto;
    }

    .bitcoin__wrap .swiper {
        overflow: visible;
    }
}

.bitcoin__next,
.bitcoin__prev {
    position: absolute;
    right: 22%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

@media screen and (max-width: 1399px) {

    .bitcoin__next,
    .bitcoin__prev {
        right: 20%;
    }
}

.bitcoin__prev {
    right: auto;
    left: 22%;
}

@media screen and (max-width: 1399px) {
    .bitcoin__prev {
        left: 20%;
    }
}

@media screen and (max-width: 991px) {
    .bitcoin__arrow {
        display: none;
    }
}

/* ======================  Bitcoin Section End  ======================*/
/* ======================  Facility Section Start  ======================*/
.facility__content h2 {
    margin-bottom: 80px;
}

@media screen and (max-width: 1399px) {
    .facility__content h2 {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .facility__content h2 {
        margin-bottom: 50px;
    }
}

.facility__content ul li {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid hsl(var(--black));
    line-height: 1;
    font-size: 30px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

@media screen and (max-width: 1399px) {
    .facility__content ul li {
        font-size: 26px;
        gap: 24px;
    }
}

@media screen and (max-width: 991px) {
    .facility__content ul li {
        font-size: 24px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) {
    .facility__content ul li {
        font-size: 20px;
        gap: 17px;
    }
}

.facility__content ul li span {
    font-size: 20px;
    font-weight: 400;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (max-width: 767px) {
    .facility__content ul li span {
        font-size: 10px;
    }
}

.facility__content ul li:last-child {
    margin-bottom: 0;
}

/* ======================  Facility Section End  ======================*/
/* ======================  Tutorial Section Start  ======================*/
.tutorial__area {
    background-color: hsl(var(--section-bg));
}

.tutorial__heading h2 {
    margin-bottom: 100px;
}

@media screen and (max-width: 1399px) {
    .tutorial__heading h2 {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 991px) {
    .tutorial__heading h2 {
        margin-bottom: 50px;
    }
}

.tutorial__heading {
    max-width: 545px;
}

@media screen and (max-width: 991px) {
    .tutorial__heading {
        max-width: 82%;
    }
}

@media screen and (max-width: 767px) {
    .tutorial__heading {
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .tutorial__heading a {
        display: none;
    }
}

.tutorial__single {
    padding: 30px;
    background-color: hsl(var(--section-bg));
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .tutorial__single {
        padding: 16px;
    }
}

.tutorial__sp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -2;
    user-select: none;
    pointer-events: none;
}

.tutorial__img img {
    width: 100%;
    border-radius: 50px 0 50px 0;
}

@media screen and (max-width: 767px) {
    .tutorial__img img {
        border-radius: 25px 0 25px 0;
    }
}

.tutorial__img {
    margin-bottom: 32px;
}

.tutorial__content h5 {
    border-bottom: 1px solid hsl(var(--border-color));
    margin-bottom: 18px;
    padding-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .tutorial__content h5 {
        padding-bottom: 2px;
        margin-bottom: 8px;
    }
}

.tutorial__content {
    max-width: 444px;
}

.swiper-pagination-bullet {
    width: 21px;
    height: 3px;
    display: inline-block;
    border-radius: 0;
    background: hsl(var(--black));
    opacity: 1;
    transition: 0.3s;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: hsl(var(--base));
}

.swiper-pagination {
    position: unset;
    text-align: left;
    margin-top: 40px;
    padding-left: 30px;
}

@media screen and (max-width: 767px) {
    .swiper-pagination {
        position: unset;
        text-align: left;
        margin-top: 26px;
        padding-left: 16px;
    }

    .swiper-pagination {
        text-align: center;
        padding-left: 0;
    }

    .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        border-radius: 50%;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 4px;
    }
}

/* ======================  Tutorial Section End  ======================*/
/* ======================  Responsibility Section Start  ======================*/
.responsibility__area {
    background-color: hsl(var(--black));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.res__sp {
    position: absolute;
    right: -300px;
    bottom: -200px;
    z-index: -2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 800px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .res__sp {
        right: -232px;
        bottom: 46%;
        -webkit-transform: rotate(38deg);
        transform: rotate(38deg);
    }
}

.res__sp.sp-2 {
    right: auto;
    left: -300px;
    bottom: -300px;
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg);
}

.responsibility__heading h2 {
    color: hsl(var(--white));
}

.responsibility__heading p {
    color: hsl(var(--section-bg));
    max-width: 780px;
    margin-inline: auto;
}

.responsibility__heading {
    text-align: center;
    margin-bottom: 100px;
}

@media screen and (max-width: 1399px) {
    .responsibility__heading {
        margin-bottom: 50px;
    }
}

.responsibility__card {
    background-color: rgba(45, 45, 45, 0.5);
    padding: 32px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.responsibility__card h6 {
    color: hsl(var(--white));
    min-height: 224px;
}

@media screen and (max-width: 1399px) {
    .responsibility__card h6 {
        min-height: 140px;
    }
}

@media screen and (max-width: 1199px) {
    .responsibility__card h6 {
        min-height: 100px;
    }
}

@media screen and (max-width: 991px) {
    .responsibility__card h6 {
        min-height: auto;
        margin-bottom: 64px;
    }
}

.responsibility__card ul {
    list-style: disc;
    padding-left: 32px;
    max-width: 95%;
}

@media screen and (max-width: 1399px) {
    .responsibility__card ul {
        padding-left: 16px;
        max-width: 98%;
    }
}

@media screen and (max-width: 767px) {
    .responsibility__card ul {
        max-width: 100%;
    }
}

.responsibility__card ul li {
    color: hsl(var(--white));
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

@media screen and (max-width: 1199px) {
    .responsibility__card ul li {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .responsibility__card ul li {
        font-size: 16px;
    }
}

.responsibility__card ul li:last-child {
    margin-bottom: 0;
}

/* ======================  Responsibility Section End  ======================*/
/* ======================  Top Choice Section Start  ======================*/
.top__choice__heading {
    max-width: 900px;
    margin-bottom: 100px;
}

@media screen and (max-width: 1399px) {
    .top__choice__heading {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .top__choice__heading {
        max-width: 615px;
    }
}

@media screen and (max-width: 991px) {
    .top__choice__heading {
        max-width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .top__choice__heading {
        max-width: 100%;
    }
}

.tc__table .table> :not(caption)>*>* {
    padding: 24px 30px;
    color: hsl(var(--black));
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 20px;
    font-weight: 500;
}

@media screen and (max-width: 1199px) {
    .tc__table .table> :not(caption)>*>* {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .tc__table .table> :not(caption)>*>* {
        font-size: 14px;
        padding: 16px 32px;
    }
}

.tc__table .table {
    border-color: hsl(var(--border-color));
    min-width: 900px;
}

@media screen and (max-width: 767px) {
    .tc__table .table {
        min-width: 682px;
    }
}

.tc__table .table tr:nth-child(even) td {
    background-color: #F8F8F8;
}

.tc__table .table th {
    border-width: 0;
    font-size: 24px;
    padding-top: 0;
}

@media screen and (max-width: 1199px) {
    .tc__table .table th {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .tc__table .table th {
        font-size: 14px;
    }
}

.tc__table .table tr {
    border-top-width: 0;
}

/* ======================  Top Choice Section End  ======================*/
/* ======================  Testimonial Section Start  ======================*/
.testimonial__card {
    background-color: hsl(var(--black));
    padding: 24px 32px;
    padding-bottom: 55px;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    .testimonial__card {
        padding: 24px;
        border-radius: 5px;
    }
}

.testimonial__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 90px;
}

@media screen and (max-width: 1399px) {
    .testimonial__topbar {
        margin-bottom: 74px;
    }
}

.testimonial__topbar h4 {
    color: hsl(var(--white));
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .testimonial__topbar h4 {
        font-size: 14px;
    }
}

.testimonial__topbar p {
    color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .testimonial__topbar p {
        font-size: 14px;
    }
}

.testimonial__content p {
    font-size: 36px;
    color: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
    .testimonial__content p {
        font-size: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial__content p {
        font-size: 28px;
    }
}

.testimonial__content span {
    width: 72px;
    height: 72px;
    background-color: hsl(var(--base));
    border-radius: 10px;
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 500;
}

@media screen and (max-width: 1199px) {
    .testimonial__content span {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__content span {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
        font-size: 30px;
    }
}

.testimonial__title {
    max-width: 820px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
    .testimonial__title {
        max-width: 620px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__title {
        max-width: 500px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__title {
        margin-bottom: 24px;
    }
}

.testimonial__title h2 {
    margin-bottom: 0;
}

.testimonial__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 32px;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    .testimonial__arrow {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__area {
        overflow: hidden;
    }

    .testimonial__wrap .swiper {
        overflow: visible;
    }
}

/* ======================  Testimonial Section End  ======================*/
/* ======================  Use Cases Section Start  ======================*/
@media screen and (max-width: 991px) {
    .use__cases {
        overflow: hidden;
        padding-right: 40px;
    }

    .use__cases .swiper {
        overflow: visible;
    }
}

.use__cases__title {
    margin-bottom: 70px;
}

@media screen and (max-width: 1399px) {
    .use__cases__title {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .use__cases__title {
        margin-bottom: 24px;
    }
}

.use__cases__title h2 {
    margin-bottom: 0;
}

.use__cases__card img {
    width: 100%;
    border-radius: 50px 0 50px 0;
    margin-bottom: 32px;
}

@media screen and (max-width: 1199px) {
    .use__cases__card img {
        border-radius: 30px 0 30px 0;
    }
}

@media screen and (max-width: 767px) {
    .use__cases__card img {
        border-radius: 38px 0 38px 0;
        margin-bottom: 24px;
    }
}

.use__cases__card h6 {
    margin-bottom: 0;
    max-width: 260px;
}

@media screen and (max-width: 767px) {
    .faq__title h2 {
        margin-bottom: 0;
    }
}

/* ======================  Use Cases Section End  ======================*/
.pricing-treasury {
    padding-top: 218px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .pricing-treasury {
        padding-top: 170px;
    }
}

@media screen and (max-width: 767px) {
    .pricing-treasury {
        padding-top: 150px;
    }

    .pricing-treasury .bitcoin__heading {
        text-align: start;
        margin-bottom: 50px;
    }
}

.pricing-treasury .treasury__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 930px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .pricing-treasury .treasury__bg {
        width: auto;
        top: 30%;
        bottom: auto;
    }
}

.pricing-treasury .treasury__bg img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .pricing-treasury .treasury__bg img {
        width: 700px;
        max-width: inherit;
    }
}

.service__card {
    max-width: 1246px;
    margin-inline: auto;
    -webkit-box-shadow: 20px 50px 70px hsl(var(--black)/0.15);
    box-shadow: 20px 50px 70px hsl(var(--black)/0.15);
    border-radius: 20px;
    padding: 60px 40px 40px 40px;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .service__card {
        -webkit-box-shadow: 12px 30px 40px hsl(var(--black)/0.15);
        box-shadow: 12px 30px 40px hsl(var(--black)/0.15);
    }
}

@media screen and (max-width: 767px) {
    .service__card {
        padding: 24px;
        -webkit-box-shadow: 10px 18px 40px hsl(var(--black)/0.15);
        box-shadow: 10px 18px 40px hsl(var(--black)/0.15);
    }
}

.service__card .title__wrap {
    padding-bottom: 100px;
}

@media screen and (max-width: 1199px) {
    .service__card .title__wrap {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 767px) {
    .service__card .title__wrap {
        padding-bottom: 50px;
    }
}

.service__card .title__wrap h6 {
    margin-bottom: 0;
}

.service__card .content__wrap p {
    margin-bottom: 38px;
}

.service__card .feature__list {
    list-style: disc;
    padding-left: 32px;
}

.service__card .feature__list li {
    font-size: 20px;
}

.service__price h4 {
    font-size: 84px;
}

@media screen and (max-width: 1499px) {
    .service__price h4 {
        font-size: 72px;
    }
}

@media screen and (max-width: 1399px) {
    .service__price h4 {
        font-size: 62px;
    }
}

@media screen and (max-width: 1199px) {
    .service__price h4 {
        font-size: 54px;
    }
}

@media screen and (max-width: 767px) {
    .service__price h4 {
        font-size: 40px;
        margin-bottom: 14px;
    }
}

.service__price h4 span {
    font-size: 40px;
}

@media screen and (max-width: 1199px) {
    .service__price h4 span {
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {
    .service__price {
        margin-bottom: 66px;
    }
}

.price__card {
    background-color: hsl(var(--white));
    -webkit-box-shadow: 20px 50px 70px hsl(var(--black)/0.15);
    box-shadow: 20px 50px 70px hsl(var(--black)/0.15);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    .price__card {
        padding: 32px;
    }
}

.price__card .title__wrap {
    padding-bottom: 50px;
}

.price__card .title__wrap h6 {
    margin-bottom: 0;
}

.price__card .price__wrap {
    margin-bottom: 68px;
}

@media screen and (max-width: 767px) {
    .price__card .price__wrap {
        margin-bottom: 57px;
    }
}

.price__card .price__wrap h5 {
    font-size: 84px;
}

@media screen and (max-width: 1499px) {
    .price__card .price__wrap h5 {
        font-size: 72px;
    }
}

@media screen and (max-width: 1399px) {
    .price__card .price__wrap h5 {
        font-size: 62px;
    }
}

@media screen and (max-width: 1199px) {
    .price__card .price__wrap h5 {
        font-size: 50px;
    }
}

@media screen and (max-width: 767px) {
    .price__card .price__wrap h5 {
        font-size: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.price__card .price__wrap h5 span {
    font-size: 40px;
}

@media screen and (max-width: 1199px) {
    .price__card .price__wrap h5 span {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .price__card .price__wrap h5 span {
        font-size: 24px;
    }
}

.price__card .content__wrap p {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .price__card .content__wrap p {
        margin-bottom: 24px;
    }
}

.price__card .feature__list {
    list-style: disc;
    padding-left: 32px;
    padding-bottom: 80px;
}

@media screen and (max-width: 991px) {
    .price__card .feature__list {
        padding-bottom: 0;
        padding-left: 17px;
    }
}

.price__card .feature__list li {
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .price__card .feature__list li {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .price__card .feature__list li:last-child {
        margin-bottom: 0;
    }
}

.onboarding__heading h2 {
    font-size: 84px;
}

@media screen and (max-width: 1499px) {
    .onboarding__heading h2 {
        font-size: 72px;
    }
}

@media screen and (max-width: 1399px) {
    .onboarding__heading h2 {
        font-size: 62px;
    }
}

@media screen and (max-width: 1199px) {
    .onboarding__heading h2 {
        font-size: 54px;
    }
}

@media screen and (max-width: 767px) {
    .onboarding__heading h2 {
        font-size: 40px;
    }
}

.onboarding__heading {
    text-align: center;
    margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
    .onboarding__heading {
        margin-bottom: 62px;
    }
}

.callout__title h2 {
    font-size: 84px;
}

@media screen and (max-width: 1499px) {
    .callout__title h2 {
        font-size: 72px;
    }
}

@media screen and (max-width: 1399px) {
    .callout__title h2 {
        font-size: 62px;
    }
}

@media screen and (max-width: 1199px) {
    .callout__title h2 {
        font-size: 54px;
    }
}

@media screen and (max-width: 767px) {
    .callout__title h2 {
        font-size: 40px;
    }
}

.callout--section .content--wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 60px 120px 60px 40px;
    background-color: hsl(var(--black));
    border-radius: 20px;
}

@media screen and (max-width: 1199px) {
    .callout--section .content--wrap {
        padding: 60px 80px 60px 40px;
    }
}

@media screen and (max-width: 767px) {
    .callout--section .content--wrap {
        padding: 24px;
    }
}

.callout--section .content--wrap .callout__sp {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 720px;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .callout--section .content--wrap .callout__sp {
        right: -352px;
        max-width: inherit;
        width: auto;
    }
}

@media screen and (max-width: 767px) {
    .callout--section .content--wrap .callout__sp {
        right: -446px;
    }
}

.callout--section .content--wrap .callout__sp img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .callout--section .content--wrap .callout__sp img {
        max-width: inherit;
        width: 800px;
    }
}

@media screen and (max-width: 767px) {
    .callout--section .content--wrap .callout__sp img {
        width: 700px;
    }
}

.callout--section .callout__btn {
    text-align: end;
}

@media screen and (max-width: 991px) {
    .callout--section .callout__btn {
        text-align: start;
        margin-top: 96px;
    }
}

/* ======================  Welcome Section Start  ======================*/
.welcome__area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 90px;
}

@media screen and (max-width: 767px) {
    .welcome__area {
        padding-top: 214px;
        padding-bottom: 214px;
    }
}

.coin__sp {
    position: absolute;
    right: 8%;
    top: 15%;
    z-index: -2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 325px;
    width: 100%;
}

@media screen and (max-width: 1399px) {
    .coin__sp {
        max-width: 250px;
        right: 5%;
    }
}

@media screen and (max-width: 1199px) {
    .coin__sp {
        max-width: 200px;
    }
}

@media screen and (max-width: 991px) {
    .coin__sp {
        max-width: 160px;
        right: 2%;
    }
}

@media screen and (max-width: 767px) {
    .coin__sp {
        max-width: 120px;
        right: -50px;
    }
}

.coin__sp img {
    width: 100%;
}

.coin__sp.two {
    right: auto;
    left: 8%;
    top: 10%;
    max-width: 230px;
}

@media screen and (max-width: 1399px) {
    .coin__sp.two {
        max-width: 180px;
    }
}

@media screen and (max-width: 1199px) {
    .coin__sp.two {
        max-width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .coin__sp.two {
        left: 4%;
        top: 4%;
    }
}

.coin__sp.three {
    top: auto;
    bottom: 4%;
    max-width: 230px;
    right: 16%;
}

@media screen and (max-width: 1399px) {
    .coin__sp.three {
        max-width: 180px;
    }
}

@media screen and (max-width: 1199px) {
    .coin__sp.three {
        right: 10%;
        max-width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .coin__sp.three {
        right: 4%;
        bottom: 2%;
    }
}

.coin__sp.four {
    right: auto;
    top: auto;
    left: 10%;
    bottom: 15%;
    max-width: 230px;
}

@media screen and (max-width: 1399px) {
    .coin__sp.four {
        max-width: 180px;
    }
}

@media screen and (max-width: 1199px) {
    .coin__sp.four {
        left: 6%;
        max-width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .coin__sp.four {
        left: -40px;
        max-width: 120px;
        bottom: 8%;
    }
}

.welcome__logo {
    margin-bottom: 174px;
    text-align: center;
}

@media screen and (max-width: 1399px) {
    .welcome__logo {
        margin-bottom: 140px;
    }
}

@media screen and (max-width: 1199px) {
    .welcome__logo {
        margin-bottom: 110px;
    }
}

@media screen and (max-width: 767px) {
    .welcome__logo {
        margin-bottom: 45px;
    }
}

.welcome__logo a img {
    width: 224px;
}

@media screen and (max-width: 767px) {
    .welcome__logo a img {
        width: 182px;
    }
}

.welcome__content {
    text-align: center;
    max-width: 730px;
    margin-inline: auto;
}

@media screen and (max-width: 1399px) {
    .welcome__content {
        max-width: 650px;
    }
}

@media screen and (max-width: 1199px) {
    .welcome__content {
        max-width: 560px;
    }
}

@media screen and (max-width: 991px) {
    .welcome__content {
        max-width: 420px;
    }
}

.welcome__content h1 {
    font-size: 100px;
    margin-bottom: 45px;
}

@media screen and (max-width: 1399px) {
    .welcome__content h1 {
        font-size: 80px;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .welcome__content h1 {
        font-size: 70px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 991px) {
    .welcome__content h1 {
        font-size: 52px;
    }
}

@media screen and (max-width: 767px) {
    .welcome__content h1 {
        font-size: 40px;
    }
}

.welcome__content p {
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: 70px;
}

@media screen and (max-width: 1399px) {
    .welcome__content p {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .welcome__content p {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .welcome__content p {
        margin-bottom: 32px;
    }
}

.welcome__content h6 {
    font-size: 24px;
    margin-bottom: 100px;
}

@media screen and (max-width: 1199px) {
    .welcome__content h6 {
        font-size: 20px;
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 991px) {
    .welcome__content h6 {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .welcome__content h6 {
        margin-bottom: 45px;
    }
}

.welcome__content .btn {
    padding: 38px 70px;
}

@media screen and (max-width: 1199px) {
    .welcome__content .btn {
        padding: 28px 50px;
    }
}

@media screen and (max-width: 767px) {
    .welcome__content .btn {
        padding: 26px 47px;
    }
}

@media screen and (max-width: 991px) {
    .mobile__bg {
        background-color: hsl(var(--section-bg));
    }
}

/* ======================  Welcome Section End  ======================*/
/* ======================  Details Section Start  ======================*/
.details__wrap {
    padding-top: 55px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.details__wrap.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

@media screen and (max-width: 991px) {

    .details__wrap .g-4,
    .details__wrap .gy-4 {
        --bs-gutter-y: 2.5rem;
    }

    .details__wrap .row.mt-100 {
        margin-top: 68px !important;
    }
}

.details__topbar a {
    margin-bottom: 70px;
}

.details__topbar a img {
    width: 224px;
}

.details__topbar h2 {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .details__topbar h2 {
        font-size: 40px;
    }
}

.details__topbar {
    margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
    .details__topbar {
        margin-bottom: 50px;
    }
}

.details__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .details__btn {
        margin-top: 100px;
        display: none;
    }
}

.details__btn__mobile {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .details__btn__mobile {
        margin-top: 100px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.details__btn__mobile a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
}

.details__btn__mobile a span {
    width: 56px;
    height: 56px;
    background-color: hsl(var(--black));
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.details__btn__mobile a span.back {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

.details__btn__mobile a:hover {
    color: hsl(var(--black));
}

.details__btn__mobile a:hover span {
    background-color: hsl(var(--base));
    color: hsl(var(--black));
}

.details__send {
    width: 120px;
    height: 56px;
    background-color: hsl(var(--base));
    border-radius: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.details__form p {
    color: #9E9E9E;
    font-size: 14px;
    margin-top: 24px;
}

@media screen and (max-width: 991px) {
    .details__form p {
        margin-top: 16px;
    }
}

.details__check {
    padding-top: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 70px;
}

@media screen and (max-width: 1199px) {
    .details__check {
        gap: 50px;
    }
}

@media screen and (max-width: 767px) {
    .details__check {
        gap: 40px;
        padding-top: 24px;
    }
}

/* ======================  Details Section End  ======================*/
/* ======================  Thank You Section Start  ======================*/
.thank__you__wrap {
    padding-top: 58px;
    padding-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100vh;
}

.thank__you__logo {
    text-align: center;
}

.thank__you__logo a img {
    width: 224px;
}

.thank__you__content {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.thank__you__content h1 {
    font-size: 100px;
    margin-bottom: 60px;
}

@media screen and (max-width: 1399px) {
    .thank__you__content h1 {
        font-size: 80px;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .thank__you__content h1 {
        font-size: 70px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 991px) {
    .thank__you__content h1 {
        font-size: 52px;
    }
}

@media screen and (max-width: 767px) {
    .thank__you__content h1 {
        font-size: 40px;
    }
}

.thank__you__btn {
    text-align: center;
}

.thank__you__btn a {
    border-radius: 0;
    padding: 38px 47px;
}

@media screen and (max-width: 1199px) {
    .thank__you__btn a {
        padding: 28px 40px;
    }
}

@media screen and (max-width: 767px) {
    .thank__you__btn a {
        padding: 24px 30px;
    }
}

@media screen and (max-width: 767px) {
    .thank__you {
        background-image: none !important;
    }
}

/* ======================  Thank You Section End  ======================*/
/*# sourceMappingURL=main.css.map */