@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
/*================ Css Variables Start ===============*/
:root {
  /* === Font Family === */
    --heading-font: "Lato", sans-serif;
    --body-font: "Lato", sans-serif;
  /* === TypoGraphy ===*/
    --heading-one: clamp(1.5rem, 2.8vw + 1rem, 3.75rem);
    --heading-two: clamp(1.375rem, 1.7vw + 1rem, 2.5rem);
    --heading-three: clamp(1.25rem, .8vw + 1rem, 1.875rem);
    --heading-four: clamp(1.125rem, .5vw + 1rem, 1.5rem);
    --heading-five: clamp(1.0625rem, .3vw + 1rem, 1.25rem);
    --heading-six: 1.2rem;
  /* ======================== Color Variables Start ===========================*/
  /*== White Color ==*/
    --white: 0 0% 100%;
  /*== Light Color ==*/
    --light-h: 0;
    --light-s: 0%;
    --light-l: 78%;
    --light: var(--light-h) var(--light-s) var(--light-l);
  /*== Black Color ==*/
    --black-h: 0;
    --black-s: 0%;
    --black-l: 0%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --heading-color: 224, 78%, 20%;
    --body-color: 0, 0%, 0%;
    --border-color: 0 0% 88%;
    --background: 0, 0%, 100%;
    --section-bg: hsl(240, 1%, 15%);
  /*================================ Border-radius ===============================*/
    --border-radius: 16px;
    --border-radius-sm: 4px;
  /*================================ Box Shadow Start ===============================*/
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) /.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) /.92);
    --box-shadow: 0px 2px 15px hsl(var(--black) /.05);
    --gradient-bg: linear-gradient( 95.26deg, hsl(var(--base)) 0%, hsl(var(--secondary)) 100%);
    --card-bg: hsl(240, 1%, 15%);
    --section-bg: hsl(240, 1%, 15%);
    --header-bg: hsl(240, 1%, 15%);
    --header--bg: hsl(0, 0%, 11.8%);
  /* ================================ Base Light Color =============================== */
    --base-light-h: 152;
    --base-light-s: 100%;
    --base-light-l: 50%;
    --base-light: var(--base-light-h) var(--base-light-s) var(--base-light-l);
  /*========================= Base component Color =============================*/
    --base-component-h: 213;
    --base-component-s: 100%;
    --base-component-l: 17%;
    --base-component: var(--base-component-h) var( --base-component-s) var(--base-component-l);
  /*========================= Base Color =============================*/
    --base-h: 7;
    --base-s: 66%;
    --base-l: 48%;
    --base: var(--base-h) var( --base-s) var(--base-l);
  /*=== Secondary Color ===*/
    --secondary-h: 232;
    --secondary-s: 87%;
    --secondary-l: 34%;
    --secondary: var(--secondary-h) var( --secondary-s) var(--secondary-l);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px hsl(var(--base)/0.2);
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--base)/0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

/*==================== Color Variables End =====================*/
/*====================== Section Heading ====================*/
.section-heading {
    margin-bottom: 50px;
    position: relative;
}

@media screen and (max-width: 374px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

.section-heading .section-title-top {
    font-size: 26px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: hsl(var(--white));
    z-index: 1;
    margin: 5px 0px 20px 20px;
}

.section-heading .section-title-top::before {
    position: absolute;
    left: -9px;
    top: -6px;
    height: 50px;
    width: 50px;
    background: hsl(var(--base));
    content: "";
    z-index: -1;
    border-radius: 25px 10px 25px 10px;
}

.section-heading .subtitle {
    font-size: 20px;
    font-weight: 800;
    color: hsl(var(--base));
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.section-heading__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: capitalize;
    position: relative;
}

.section-heading__title .animate-shape {
    position: relative;
    width: 70%;
    top: 0;
    position: absolute;
    left: 0;
}

@media screen and (max-width: 770px) {
    .section-heading__title .animate-shape {
        width: 65%;
    }
}

.section-heading__title .animate-shape img {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: -1;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}

@media screen and (max-width: 770px) {
    .section-heading__title .animate-shape img {
        top: 19px;
    }
}

.section-heading__title .animate-shape.center {
    left: 37%;
    width: 50%;
}

@media screen and (max-width: 770px) {
    .section-heading__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 374px) {
    .section-heading__title {
        font-size: 25px;
    }
}

.section-heading__desc {
    max-width: 750px;
    left: 0px;
}

.item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(var(--black)/0.8);
}

.text-center .section-heading__subtitle-big {
    right: 0;
}

.text-center .section-heading__desc {
    margin: auto;
}

.slick-initialized.slick-slider {
    margin: 0;
}

.slick-initialized.slick-slider .slick-track {
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    height: auto;
    padding: 0;
}

.slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s linear;
    background-color: hsl(var(--base/0.1));
    color: hsl(var(--black));
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    .slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        width: 45px;
        height: 45px;
    }
}

.slick-arrow:hover {
    border-color: hsl(var(--base));
}

.slick-next {
    right: 0px;
}

@media screen and (max-width: 991px) {
    .slick-next {
        right: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-next {
        right: 10px;
    }
}

.slick-prev {
    left: 0px;
}

@media screen and (max-width: 991px) {
    .slick-prev {
        left: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-prev {
        left: 10px;
    }
}

.slick-slide img {
    display: inline-block;
}

.slick-arrow {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: 0.4s;
    border: 1px solid hsl(var(--black)/0.3);
    color: hsl(var(--black));
}

@media screen and (max-width: 770px) {
    .slick-arrow {
        top: auto;
        bottom: -50px;
        right: 50%;
    }
}

.slick-arrow:hover {
    color: hsl(var(--base));
}

.slick-next {
    right: 0px;
    background-color: transparent;
}

@media screen and (max-width: 770px) {
    .slick-next {
        top: auto;
        right: calc(50% - 37px);
    }
}

.slick-prev {
    right: 0px;
}

@media screen and (max-width: 770px) {
    .slick-prev {
        top: auto;
        right: calc(50% + 5px);
    }
}

.slick-dots {
    text-align: center;
    padding-top: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    border: none;
    background-color: hsl(var(--white)/0.5);
    color: hsl(var(--white));
    margin: 0 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    text-indent: -9999px;
    transform: rotate(45deg);
}

.slick-dots li.slick-active button {
    background-color: hsl(var(--white));
    width: 8px;
    height: 8px;
}

/*================= Text Underline Hover ================*/
.text-hover a {
    background-image: linear-gradient(to right, hsl(var(--base)) 0%, hsl(var(--base)) 100%);
    background-position: 0 calc(100% - 0.02em);
    background-size: 0 2px;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: 0;
    display: inline;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.text-hover a:hover {
    background-size: 100% 2px;
}

/*========== Magnific Popup button style ========*/
button.mfp-close {
    top: -15px;
    font-size: 21px;
    font-weight: 800;
    height: 35px;
    background: hsl(var(--base));
    line-height: 32px;
    padding: 0;
    opacity: 1;
    border-radius: 5px;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: hsl(var(--white));
    right: 0px;
    text-align: right;
    padding-right: 13px;
    width: 42px;
}

.cookies-card {
    position: fixed;
    bottom: 16px;
    width: 40%;
    padding: 20px;
    background: hsl(var(--white));
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    right: 16px;
    z-index: 99;
    border: 2px solid hsl(var(--base));
}

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

.bg--img-2 {
    background-repeat: no-repeat !important;
    background-position: top !important;
    background-size: cover !important;
}

.w-20 {
    width: 20% !important;
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fa-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base))), to(hsl(var(--secondary))));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: initial;
}

.card-bg {
    background: var(--card-bg-2);
}

.header-bg {
    background: var(--header-bg);
}

.border-top {
    border-top: 1px solid hsl(var(--black)/0.1) !important;
}

.border-left {
    border-left: 1px solid hsl(var(--black)/0.1) !important;
}

.border-right {
    border-right: 1px solid hsl(var(--black)/0.1) !important;
}

.border-bottom {
    border-bottom: 1px solid hsl(var(--black)/0.1) !important;
}

.global-card {
    padding: 30px;
    border: 1px solid hsl(var(--black)/0.3);
    border-radius: 4px;
    background: hsl(var(--white));
}

.bg--transparent {
    background: transparent !important;
}

.recent-item {
    padding: 30px 40px 0px;
}

.how-work {
    padding: 30px 40px 0px;
}

.browse-page {
    padding: 30px 40px 0px;
}

.product-details {
    padding: 30px 40px 0px;
}

@media (max-width: 1023px) {
    .recent-item {
        padding: 30px 0px 0px;
    }

    .how-work {
        padding: 30px 0px 0px;
    }

    .browse-page {
        padding: 30px 0px 0px;
    }

    .product-details {
        padding: 30px 0px 0px;
    }
}

.how-work-item-wrap {
    background-color: hsl(var(--white));
    padding: 40px;
    border-radius: 12px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.google-map-wrap {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.google-map-wrap iframe {
    height: 100%;
    width: 100%;
}

.google-map-wrap1 {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.google-map-wrap1 iframe {
    height: 100%;
    width: 100%;
}

.grp-btn-wrap {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;
}

/* drag and drop box */
.photo_upload .drag_area {
    height: 400px;
    border-radius: 8px;
    border: 1px dashed hsl(var(--black)/0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    user-select: none;
    --webkit-user-select: none;
}

.photo_upload .drag_area .visible {
    font-size: 18px;
}

.photo_upload .select {
    cursor: pointer;
    transition: 0.4s;
}

.photo_upload .select:hover {
    opacity: 0.6;
}

.photo_upload .container_area {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 30px;
}

.photo_upload .container_area .image {
    height: 75px;
    margin-left: 5px;
    width: 75px;
    position: relative;
    margin-bottom: 8px;
}

.photo_upload .container_area .image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.photo_upload .container_area .image .delete {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: hsl(var(--black)/0.6);
    top: 0px;
    right: 0px;
    font-size: 12px;
    cursor: pointer;
    color: hsl(var(--base));
    z-index: 9;
}

.photo_upload input,
.photo_upload .drag_area .on-drop,
.photo_upload .drag_area.dragover .visible {
    display: none;
}

.drag_drop_content {
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drag_drop_content .icon_wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: hsl(var(--black)/0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drag_drop_content .icon_wrap i {
    font-size: 30px;
}

/* xxxl breakpoints */
@media (max-width: 1920px) and (min-width: 1799px) {
    .xxxl {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
}

@media (max-width: 1800px) and (min-width: 1562px) {
    .xxxl {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (max-width: 1563px) and (min-width: 1440px) {
    .xxxl {
        width: 25% !important;
    }
}

.full-display {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-transparent {
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9;
}

.text-sm {
    font-size: 12px !important;
}

/*====================== Bg Variable ====================*/
.bg--white {
    background-color: hsl(var(--white)) !important;
}

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

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

.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--violet {
    background-color: hsl(var(--violet)) !important;
}

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

/*====================== Color Variable ====================*/
.text--base {
    color: hsl(var(--base)) !important;
}

.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--violet {
    color: hsl(var(--violet)) !important;
}

.my-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

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

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

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

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

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

.my-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

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

@media (max-width: 992px) {
    .mt-60 {
        margin-top: 30px;
    }
}

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

@media (max-width: 992px) {
    .mt-25 {
        margin-top: 20px;
    }
}

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

@media (max-width: 992px) {
    .mb-60 {
        margin-bottom: 30px;
    }
}

.my-80 {
    margin-top: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.my-40 {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

@media (max-width: 992px) {
    .mb-20 {
        margin-bottom: 10px;
    }
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 1399px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

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

.py-115 {
    padding-top: 115px;
    padding-bottom: 115px;
}

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

@media (max-width: 1399px) {
    .py-115 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

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

@media (max-width: 1399px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

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

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

@media (max-width: 1399px) {
    .py-100 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

.py-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media (max-width: 1399px) {
    .py-110 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

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

.py-155 {
    padding-top: 155px;
    padding-bottom: 155px;
}

@media (max-width: 1399px) {
    .py-155 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

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

.py-290 {
    padding-top: 290px;
    padding-bottom: 290px;
}

@media (max-width: 1399px) {
    .py-290 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

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

.py-180 {
    padding-top: 180px;
    padding-bottom: 180px;
}

@media (max-width: 1399px) {
    .py-180 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

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

.py-175 {
    padding-top: 175px;
    padding-bottom: 175px;
}

@media (max-width: 1399px) {
    .py-175 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

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

.pb-115 {
    padding-bottom: 115px;
}

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

@media (max-width: 1399px) {
    .pb-115 {
        padding-bottom: 80px;
    }
}

.pb-40 {
    padding-bottom: 40px;
}

@media (max-width: 576px) {
    .pb-40 {
        padding-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .pb-40 {
        padding-bottom: 30px;
    }
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 1399px) {
    .py-40 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .py-40 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.pt-120 {
    padding-top: 120px;
}

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

@media (max-width: 576px) {
    .pt-120 {
        padding-top: 80px;
    }
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 992px) {
    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .py-80 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.py--80 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 576px) {
    .py--80 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .py--80 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.pt-80 {
    padding-top: 80px;
}

@media (max-width: 992px) {
    .pt-80 {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {
    .pt-80 {
        padding-top: 50px;
    }
}

.pb-40 {
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .pb-40 {
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .pb-40 {
        padding-bottom: 30px;
    }
}

.pb-80 {
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .pb-80 {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .pb-80 {
        padding-bottom: 40px;
    }
}

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

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

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

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

@media (max-width: 576px) {
    .py-60 {
        padding-top: 90px;
        padding-bottom: 40px;
    }
}

.pt-60 {
    padding-top: 60px !important;
}

@media (max-width: 992px) {
    .pt-60 {
        padding-top: 50px;
    }
}

@media (max-width: 576px) {
    .pt-60 {
        padding-top: 40px;
    }
}

.pt-40 {
    padding-top: 30px;
}

@media (max-width: 576px) {
    .pt-40 {
        padding-top: 35px;
    }
}

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

.pb-60 {
    padding-bottom: 60px;
}

@media (max-width: 576px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .pb-60 {
        padding-bottom: 50px;
    }
}

.pb-30 {
    padding-bottom: 20px;
}

@media (max-width: 576px) {
    .pb-30 {
        padding-bottom: 25px;
    }
}

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

.pt-md-60 {
    padding-top: 60px;
}

@media (max-width: 576px) {
    .pt-md-60 {
        padding-top: 80px;
    }
}

@media (max-width: 992px) {
    .pt-md-60 {
        padding-top: 60px;
    }
}

.pb-md-60 {
    padding-bottom: 60px;
}

@media (max-width: 576px) {
    .pb-md-60 {
        padding-bottom: 80px;
    }
}

@media (max-width: 992px) {
    .pb-md-60 {
        padding-bottom: 60px;
    }
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: var(--heading-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--background));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-family: var(--body-font);
    font-size: 17px;
    margin: 0;
    font-weight: 400;
    word-break: break-word;
    color: hsl(var(--black)/0.7);
}

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

@media screen and (max-width: 770px) {
    h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
        margin: 0 0 10px 0;
    }
}

h1 {
    font-size: var(--heading-one);
    font-weight: 700;
}

h2 {
    font-size: var(--heading-two);
    font-weight: 600;
    margin: 0px;
}

h3 {
    font-size: var(--heading-three);
    font-weight: 500;
}

h4 {
    font-size: var(--heading-four);
    font-weight: 500;
}

h5 {
    font-size: var(--heading-five);
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 1399px) {
    h6 {
        font-size: 14px !important;
    }
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-weight: 400;
    transition: 0.2s linear;
    line-height: 1.4;
    word-break: break-word;
    color: hsl(var(--heading-color));
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: hsl(var(--body-color));
}

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

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

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

select {
    cursor: pointer;
}

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

*:focus {
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

/*====================== Border Color ====================*/
.border--base {
    border-color: hsl(var(--base)) !important;
}

.border--primary {
    border-color: hsl(var(--primary)) !important;
}

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

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

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

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

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

.border--violet {
    border-color: hsl(var(--violet)) !important;
}

/*=========================== Accodion style start =============================*/
.accordion-area {
    position: relative;
    z-index: 1;
}

.custom--accordion .accordion-item {
    background-color: hsl(var(--white)/0.02) !important;
    overflow: hidden;
    border: 1px solid hsl(var(--black)/0.2) !important;
    border-radius: 8px;
}

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

.custom--accordion .accordion-body {
    background-color: hsl(var(--white)/0.02);
    color: hsl(var(--black)/0.7);
}

.custom--accordion .accordion-body .text {
    max-width: 60%;
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-body .text {
        max-width: 100%;
    }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
    border-radius: 0px;
    font-weight: 500;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
    border-radius: 0px;
    color: hsl(var(--body-color));
    background: hsl(var(--white)/0.02);
}

.custom--accordion .accordion-button {
    background-color: hsl(var(--white));
    color: hsl(var(--black)) !important;
    font-size: 20px;
    padding: 16px 28px;
    border-radius: 8px;
}

.custom--accordion .accordion-button .number {
    margin: 0px !important;
    margin-right: 12px !important;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.29;
    -webkit-text-fill-color: hsl(var(--white));
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: hsl(var(--black));
}

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

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

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

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--white));
    background-color: hsl(var(--white)/0.02) !important;
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
    background-image: none;
    color: hsl(var(--black));
}

.custom--accordion .accordion-button[aria-expanded=true]::after, .custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f077";
    display: inline-block;
    position: relative;
    margin-left: auto;
    width: 0 !important;
    right: 16px;
    color: hsl(var(--black)) !important;
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-button[aria-expanded=true]::after, .custom--accordion .accordion-button[aria-expanded=false]::after {
        right: -13px;
        font-size: 14px;
    }
}

.custom--accordion .accordion-button[aria-expanded=false]::after {
    content: "\f078";
    color: hsl(var(--body-color));
}

@media (max-width: 1023px) {
    .custom--accordion:last-of-type .accordion-button.collapsed {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom--accordion .accordion-button[aria-expanded=false]::after {
        content: none;
    }

    .custom--accordion .accordion-button[aria-expanded=true]::after, .custom--accordion .accordion-button[aria-expanded=false]::after {
        content: none;
    }

    .custom--accordion .accordion-button:not(.collapsed) {
        flex-direction: column;
        align-items: flex-start;
    }
}
/*====================== Button Style ====================*/
button {
    border: none;
    transition: 0.2s linear;
}

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

.btn {
    color: hsl(var(--white));
    font-weight: 500;
    padding: 11px 20px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.5s;
    font-family: var(--heading-font);
    font-size: 16px;
    transition: 0.5s;
    overflow: hidden;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (max-width: 1025px) {
    .btn {
        padding: 10px 18px;
    }
}

@media screen and (max-width: 770px) {
    .btn {
        padding: 11px 25px;
    }
}

@media screen and (max-width: 575px) {
    .btn {
        padding: 6px 7px;
    }
}

.btn:hover, .btn:focus {
    color: hsl(var(--white));
    border-color: transparent;
    border-radius: 4px;
}

.btn--lg {
    padding: 15px 35px;
}

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

@media screen and (max-width: 575px) {
    .btn--lg {
        padding: 11px 25px;
    }
}

.btn--sm {
    padding: 4px 12px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 14px;
}

.btn--sm:hover, .btn--sm:focus {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base)) !important;
}

@media screen and (max-width: 770px) {
    .btn--sm {
        padding: 5px 8px;
    }
}

.btn--ssm {
    padding: 2px 10px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 12px;
}

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

@media screen and (max-width: 770px) {
    .btn--ssm {
        padding: 3px 8px;
    }
}

.btn--icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    padding: 0;
}

.btn--base {
    background: hsl(var(--base));
    background-size: cover;
    background-repeat: no-repeat;
    color: hsl(var(--white));
    border-radius: 4px;
}

.btn--base:hover, .btn--base:focus {
    background: hsl(var(--base)/0.8);
}

.btn--base.pill {
    border-radius: 35px;
}

.btn--base.outline {
    background: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
    color: hsl(var(--black));
    border-radius: 4px;
    border: 1px solid hsl(var(--black)/0.05) !important;
}

.btn--base.outline.hover-white-c:hover, .btn--base.outline.hover-white-c:focus {
    color: hsl(var(--white));
}

.btn--base.outline:hover, .btn--base.outline:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.btn--base.outline-2 {
    background-color: hsl(var(--black)/0.06);
    border: none !important;
    color: hsl(var(--black));
    border-radius: 4px;
    font-weight: 500;
}

.btn--base.outline-2.hover-white-c:hover, .btn--base.outline-2.hover-white-c:focus {
    color: hsl(var(--white));
}

.btn--base.outline-2:hover, .btn--base.outline-2:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.btn--copy {
    background: var(--gradient-bg);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    color: hsl(var(--white));
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.btn--copy:hover, .btn--copy:focus {
    color: hsl(var(--white)/0.8) !important;
    border-radius: 12px;
}

.btn--copy.pill {
    border-radius: 35px;
}

.btn--copy.outline {
    background: var(--gradient-bg);
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
    color: hsl(var(--base));
    border-radius: 8px;
}

.btn--copy.outline.hover-white-c:hover, .btn--copy.outline.hover-white-c:focus {
    color: hsl(var(--white));
}

.btn--copy.outline:hover, .btn--copy.outline:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.btn--copy.outline-2 {
    background-color: hsl(var(--black)/0.06);
    border: none !important;
    color: hsl(var(--base));
    border-radius: 8px;
}

.btn--copy.outline-2.hover-white-c:hover, .btn--copy.outline-2.hover-white-c:focus {
    color: hsl(var(--white));
}

.btn--copy.outline-2:hover, .btn--copy.outline-2:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.btn--base-2 {
    background: hsl(var(--white)/0.1);
    background-size: cover;
    background-repeat: no-repeat;
    color: hsl(var(--white));
}

.btn--base-2:hover, .btn--base-2:focus {
    color: hsl(var(--white)) !important;
    background: hsl(var(--white)/0.2);
}

.btn--base-2.pill {
    border-radius: 35px;
}

.btn--base-2.outline {
    background: var(--gradient-bg);
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
    color: hsl(var(--base));
    border-radius: 8px;
}

.btn--base-2.outline.hover-white-c:hover, .btn--base-2.outline.hover-white-c:focus {
    color: hsl(var(--white));
}

.btn--base-2.outline:hover, .btn--base-2.outline:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.btn--base-2.outline-2 {
    background-color: hsl(var(--black)/0.06);
    border: none !important;
    color: hsl(var(--base));
    border-radius: 8px;
}

.btn--base-2.outline-2.hover-white-c:hover, .btn--base-2.outline-2.hover-white-c:focus {
    color: hsl(var(--white));
}

.btn--base-2.outline-2:hover, .btn--base-2.outline-2:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.btn--simple__icon {
    font-size: 13px;
    margin-left: 5px;
}

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

.btn--primary:hover, .btn--primary:focus {
    background-color: hsl(var(--primary-d-100));
}

.btn--primary.pill {
    border-radius: 35px;
}

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

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

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

.btn--secondary:hover, .btn--secondary:focus {
    background-color: hsl(var(--secondary-d-100));
}

.btn--secondary.pill {
    border-radius: 35px;
}

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

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

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

.btn--success:hover, .btn--success:focus {
    background-color: hsl(var(--success-d-100));
}

.btn--success.pill {
    border-radius: 35px;
}

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

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

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

.btn--danger:hover, .btn--danger:focus {
    background-color: hsl(var(--danger-d-100));
}

.btn--danger.pill {
    border-radius: 35px;
}

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

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

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

.btn--warning:hover, .btn--warning:focus {
    background-color: hsl(var(--warning-d-100));
}

.btn--warning.pill {
    border-radius: 35px;
}

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

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

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

.btn--info:hover, .btn--info:focus {
    background-color: hsl(var(--info-d-100));
}

.btn--info.pill {
    border-radius: 35px;
}

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

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

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

.btn--violet:hover, .btn--violet:focus {
    background-color: hsl(var(--violet-d-100));
}

.btn--violet.pill {
    border-radius: 35px;
}

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

.btn--violet.outline:hover, .btn--violet.outline:focus {
    background-color: hsl(var(--violet));
    color: hsl(var(--white));
}

/*========= Very small btn ======== */
.btn--small {
    color: hsl(var(--base));
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    text-align: center;
    border: 1px solid hsl(var(--base));
    text-transform: capitalize;
    font-weight: 600;
    transition: 0.5s;
    font-family: var(--heading-font);
    font-size: 13px;
    transition: 0.5s;
}

.btn--small:hover, .btn--small .btn--small:focus {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
    border-radius: 6px;
}

.copytext {
    border-radius: 0px 6px 6px 0px !important;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.base-card {
    background: hsl(var(--white));
    padding: 16px;
    border-radius: 12px;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.base-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    box-shadow: 0px 14px 11px 0px rgba(0, 0, 0, 0.1);
}

.how-work-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.how-work-box::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -116px;
    width: 300px;
    height: 1px;
    background: hsl(var(--black)/0.04);
}

.how-work-box .icon-wrap {
    width: 106px;
    height: 106px;
    border: 1px solid hsl(var(--black));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-work-box .icon-wrap i {
    font-size: 38px;
    color: hsl(var(--base));
}

.how-work-box .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.how-work-box .content-wrap .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.how-work-box .content-wrap .subtitle {
    width: 80%;
    text-align: center;
}

@media (max-width: 1440px) {
    .how-work-box::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -50px;
        width: 180px;
        height: 1px;
        background: hsl(var(--black)/0.04);
    }
}

@media (max-width: 1356px) {
    .how-work-box::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -80px;
        width: 180px;
        height: 1px;
        background: hsl(var(--black)/0.04);
    }
}

@media (max-width: 1166px) {
    .how-work-box::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -60px;
        width: 150px;
        height: 1px;
        background: hsl(var(--black)/0.04);
    }
}

@media (max-width: 1100px) {
    .how-work-box::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -80px;
        width: 150px;
        height: 1px;
        background: hsl(var(--black)/0.04);
    }
}

@media (max-width: 1025px) {
    .how-work-box::after {
        content: none;
    }
}

.box__3::after {
    content: none;
}

.why-choose-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.why-choose-box .icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-box .icon-wrap i {
    font-size: 38px;
    color: hsl(var(--base));
}

.why-choose-box .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-choose-box .content-wrap .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.why-choose-box .content-wrap .subtitle {
    width: 80%;
    text-align: center;
}

.game-card {
    border-radius: 4px;
    overflow: hidden;
    background: hsl(var(--white));
    transition: 0.2s ease-in-out;
    position: relative;
}

.game-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    box-shadow: 0px 14px 11px 0px rgba(0, 0, 0, 0.1);
}

.game-card .dis-tag {
    background: hsl(var(--base));
    padding: 0px 2px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.game-card .dis-tag p {
    font-size: 14px;
    font-weight: 400;
}

.game-card .thumb img {
    width: 100%;
    object-fit: cover;
}

.game-card .content {
    padding: 15px 13px 20px 13px;
}

.game-card .content .title {
    color: hsl(var(--black));
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 18px;
}

.game-card .content .price-wrap {
    display: flex;
    align-items: baseline;
}

.game-card .content .price-wrap .price {
    color: hsl(var(--black));
    font-size: 24px;
    font-weight: 600;
    line-height: 1.16;
}

.game-card .content .price-wrap .dis-price {
    font-size: 14px;
    font-weight: 600;
    color: hsl(var(--black)/0.4);
    text-decoration: line-through;
    margin: 0;
    padding: 0;
}

.game-card .content ul {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.game-card .content ul li {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: hsl(var(--black)/0.04);
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-card .content ul li i {
    font-size: 14px;
}

.gift-card {
    display: flex;
}

.gift-card .thumb img {
    width: 126px;
    height: 126px;
    object-fit: cover;
    border-radius: 4px;
}

.gift-card .content {
    padding-left: 14px;
}

.gift-card .content .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.71;
    margin-bottom: 4px;
}

.gift-card .content .rating-wrap {
    display: flex;
    margin-bottom: 8px;
}

.gift-card .content .rating-wrap ul {
    display: flex;
    gap: 6px;
}

.gift-card .content .rating-wrap ul li i {
    color: hsl(var(--yellow));
    font-size: 14px;
}

.gift-card .content .price-wrap {
    display: flex;
    align-items: baseline;
}

.gift-card .content .price-wrap .price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.gift-card .content .price-wrap .dis-price {
    font-size: 14px;
    font-weight: 600;
    color: hsl(var(--black)/0.4);
    text-decoration: line-through;
    margin: 0;
    padding: 0;
}

.gift-card .content .price-wrap .dis-tag {
    font-size: 12px;
    font-weight: 600;
    background: hsl(var(--base));
    padding: 0px 4px;
    border-radius: 4px;
    margin-left: 8px;
    color: hsl(var(--black));
}

.about-key-card {
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
}

.about-key-card i {
    font-size: 50px;
    color: hsl(var(--base));
}

.about-key-card .key-card-title {
    font-size: 20px !important;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-key-card .key-card-subtitle {
    color: hsl(var(--black));
    font-size: 16px;
    line-height: 28px;
}

.getin-touch-card {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
}

.getin-touch-card i {
    font-size: 50px;
    color: hsl(var(--base));
}

.getin-touch-card .key-card-title {
    font-size: 20px !important;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.getin-touch-card .key-card-subtitle {
    color: hsl(var(--black));
    font-size: 16px;
    line-height: 28px;
}

.getin-touch-card .key-card-subtitle .live-support {
    color: hsl(var(--base));
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.key-feature {
    display: flex;
    align-items: center;
    gap: 24px;
}

.key-feature .key-title {
    font-size: 20px !important;
    font-weight: 600;
    line-height: 1.4;
}

.key-feature:hover .icon-wrapper .svg-bg {
    stroke: hsl(var(--base)) !important;
    -webkit-animation: draw 3s ease;
    animation: draw 3s ease;
}

.key-feature .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.key-feature .icon-wrapper:hover .svg-bg {
    stroke: hsl(var(--base)) !important;
    -webkit-animation: draw 3s ease;
    animation: draw 3s ease;
}

.key-feature .icon-wrapper .svg-bg {
    fill: none;
    stroke: hsl(var(--black)/0.2);
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
}

.key-feature .icon-wrapper i {
    position: absolute;
    color: hsl(var(--base));
    font-size: 32px;
}

.price-card {
    background: hsl(var(--black));
    border-radius: 20px;
    border: 1px solid hsl(var(--white)/0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 90px 0px 50px 0px;
    position: relative;
}

.price-card .price-card-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.price-card .price-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.price-card .price-content .title span {
    font-size: 20px;
}

.price-card .price-content .subtitle {
    text-transform: uppercase;
    color: hsl(var(--white));
}

.price-card .price-tag {
    border-radius: 16px;
    padding: 4px 13px;
    border: 1px solid hsl(var(--white)/0.1);
    background: hsl(var(--white)/0.1);
}

.price-card .price-card-icon {
    width: 114px;
    height: 114px;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    background: hsl(var(--black));
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card .price-card-icon::before {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "";
    background-size: 300% 300%;
    background-position: 0 50%;
    border-radius: 50%;
    animation: moveGradient 4s alternate infinite;
}

.price-card .price-card-icon span {
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: hsl(var(--black));
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card .price-card-icon span i {
    font-size: 34px;
}

.price-card .price-item {
    width: 100%;
}

.price-card .price-item ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.price-card .price-item ul li {
    padding: 26px 80px;
    display: flex;
    border-top: 1px solid hsl(var(--white)/0.1);
    gap: 32px;
}

.price-card .price-item ul li .icon-wrap {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card .price-item ul li .icon-wrap i {
    color: hsl(var(--white));
    font-size: 10px;
}

.faq-card1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0px 72px 56px 0px;
}

.faq-card1 .number {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: var(--gradient-bg);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq-card1 .number::before {
    content: "?";
    position: absolute;
    font-size: 60px;
    font-weight: 800;
    color: hsl(var(--white)/0.08);
}

.faq-card1 .number h6 {
    font-size: 40px;
    font-weight: 700;
    margin: 0px;
}

.faq-card1 .content-wrap {
    width: 80%;
}

.faq-card2 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0px 0px 56px 96px;
}

.faq-card2 .number {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: var(--gradient-bg);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq-card2 .number::before {
    content: "?";
    position: absolute;
    font-size: 60px;
    font-weight: 800;
    color: hsl(var(--white)/0.08);
}

.faq-card2 .number h6 {
    font-size: 40px;
    font-weight: 700;
    margin: 0px;
}

.faq-card2 .content-wrap {
    width: 80%;
}

.testimonial-card-wrap {
    border: 1px solid hsl(var(--black)/0.2);
    border-radius: 9px;
    padding: 6px;
    margin-left: 12px;
}

.testimonial-card {
    border-radius: 8px;
    background: hsl(var(--white));
    padding: 38px 24px;
    border: 1px solid hsl(var(--black)/0.2);
}

.testimonial-card .content .discription {
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.88;
    color: hsl(var(--black)/0.7);
    margin-bottom: 12px;
}

.testimonial-card .user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.testimonial-card .user-info .user-thumb {
    position: relative;
}

.testimonial-card .user-info .user-thumb img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonial-card .user-info .user-description .user-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.testimonial-card .user-info .user-description .user-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: hsl(var(--black)/0.7);
}

.testimonial-card .rating-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.testimonial-card .rating-wrap .rating i {
    color: hsl(var(--yellow));
    font-size: 18px;
}

.testimonial-card .rating-wrap .number {
    color: hsl(var(--black)/0.8);
}

.blog-card1 {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.blog-card1 .thumb {
    width: 100%;
}

.blog-card1 .thumb img {
    width: 100%;
}

.blog-card1 .blog-content {
    position: absolute;
    background: linear-gradient(0deg, rgb(19, 15, 17) 0%, rgba(32, 32, 40, 0) 100%);
    bottom: 0;
    padding: 30px 24px;
}

.blog-card1 .blog-content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    color: hsl(var(--white));
}

.blog-card1 .blog-content .title a {
    color: hsl(var(--white));
}

.blog-card1 .blog-content .date-time {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.28;
    text-align: left;
    color: hsl(var(--white)/0.7);
}

.blog-card1 .blog-content .tag {
    width: 67px;
    height: 25px;
    border-radius: 8px;
    background: var(--gradient-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.blog-card1 .blog-content .tag p {
    font-size: 12px;
    text-align: center;
}

.blog-card2 {
    display: flex;
    gap: 24px;
    padding: 32px;
}

.blog-card2 .thumb {
    width: 130px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card2 .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card2 .content .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.27;
    text-align: left;
    margin-bottom: 12px;
}

.blog-card2 .content .title a {
    color: hsl(var(--white));
}

.blog-card2 .content .date-time {
    font-size: 12px;
    font-weight: 500;
    line-height: 2.08;
    text-align: left;
}

.blog-card2 .content .tag {
    width: 60px;
    height: 17px;
    border-radius: 2px;
    background: var(--gradient-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.blog-card2 .content .tag p {
    font-size: 12px;
    text-align: center;
}

.product-search-box {
    width: 100%;
    padding: 40px 24px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
    background: hsl(var(--white));
}

.product-search-box .price-wrap {
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid hsl(var(--black)/0.1);
}

.product-search-box .price-wrap .price {
    color: hsl(var(--base));
    font-size: 24px;
    font-weight: 600;
    line-height: 2;
    margin: 0px;
}

.product-search-box .price-wrap .price .discount {
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: hsl(var(--black)/0.5);
}

.product-search-box .price-wrap .end-offer {
    color: hsl(var(--black)/0.5);
    font-weight: 600;
}

.product-search-box .form--group1 {
    margin-bottom: 20px;
}

.product-search-box .form--group1 label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.43;
    margin-bottom: 12px;
}

.product-search-box .payble-mount {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.product-search-box .payble-mount li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-search-box .payble-mount li .text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: hsl(var(--black));
}

.product-search-box .payble-mount li .number {
    color: hsl(var(--black)/0.5);
}

.product-search-box .total-amount li {
    display: flex;
    justify-content: space-between;
}

.product-search-box .total-amount li .title {
    font-weight: 600;
}

.product-search-box .total-amount li .price {
    color: hsl(var(--base));
    font-weight: 600;
}

.cookie-box {
    width: 100%;
    padding: 40px 24px;
    border-radius: 8px;
    position: sticky;
    border: 1px solid hsl(var(--black)/0.06);
}

.cookie-box .item-wrap {
    padding-bottom: 24px;
}

.cookie-box .item-wrap ul {
    margin-left: 16px;
}

.cookie-box .item-wrap ul li {
    list-style: disc;
}

.cookie-box .question-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
    padding: 30px 20px 0px 20px;
}

.cookie-box .question-box span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: hsl(var(--base)/0.09);
    border-radius: 50%;
}

.cookie-box .question-box span i {
    font-size: 31px;
    color: hsl(var(--base));
}

.cookie-box .question-box .support-text {
    text-align: center;
    width: 80%;
}

.cookie-box .question-box .support-number {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.16;
}

.cookie-box .license-wrap {
    padding-top: 40px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info-card .tagg {
    height: 78px;
    width: 78px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-bg);
    margin-bottom: 30px;
}

.contact-info-card .tagg i {
    color: hsl(var(--white));
    font-size: 30px;
}

.contact-info-card .subtitle {
    text-align: center;
}

.contact-info-card .subtitle a {
    color: hsl(var(--white)/0.8);
}

.dashboard-card2 {
    background: hsl(var(--white));
    border-radius: 12px;
}

.dashboard-card2 .card--header {
    padding: 14px 12px;
    border-bottom: 1px solid hsl(var(--black)/0.2);
}

.dashboard-card2 ul {
    padding: 0px 12px;
}

.dashboard-card2 ul li {
    padding: 12px 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed hsl(var(--black)/0.08);
}

.dashboard-card2 ul li:last-child {
    border-bottom: none;
}

.dashboard_profile-card {
    border-radius: 12px;
    overflow: hidden;
    background: hsl(var(--white));
}

.dashboard_profile-card .user-profile {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: hsl(var(--base));
}

.dashboard_profile-card .user-profile::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid hsl(var(--white)/0.09);
}

.dashboard_profile-card .user-profile::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid hsl(var(--white)/0.09);
}

.dashboard_profile-card .contact-info {
    padding: 0px 20px;
    width: 100%;
}

.dashboard_profile-card .contact-info .info-wrap {
    padding: 20px 0px;
    border-bottom: 1px dashed hsl(var(--black)/0.2);
}

.dashboard_profile-card .contact-info .info-wrap p {
    color: hsl(var(--black)/0.7);
}

.dashboard_profile-card .contact-info .info-wrap .info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    color: hsl(var(--black)/0.4);
    margin-bottom: 8px;
}

.dashboard_profile-card .contact-info .info-wrap .info i {
    color: hsl(var(--black)/0.8);
}

.dashboard_profile-card .contact-info .info-wrap .info p {
    color: hsl(var(--black)/0.8);
}

.dashboard_profile-card .contact-info:last-child .info-wrap {
    border: none;
}

.cart-box {
    display: none;
    background: hsl(var(--white));
    height: 100vh;
    width: 584px;
    position: fixed;
    right: -600px;
    z-index: 9999;
    padding: 100px 60px;
    top: 0;
    overflow-y: scroll;
    transition: all 0.4s ease-in-out;
}

.cart-box::-webkit-scrollbar {
    display: none;
}

.cart-box .close--btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: hsl(var(--black));
    font-size: 18px;
    background: hsl(var(--black)/0.09);
    position: absolute;
    top: 14px;
    right: 17px;
    display: none;
}

.cart-item-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid hsl(var(--black)/0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cart-item-card .thumb {
    padding-left: 32px;
    width: 115px;
    height: 110px;
}

.cart-item-card .thumb img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-card .content {
    margin-left: 20px;
    width: 200px;
}

.cart-item-card .content .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 4px;
}

.cart-item-card .content .price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.cart-item-card .user-cta {
    display: flex;
    gap: 12px;
}

.cart-item-card .user-cta button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: hsl(var(--black)/0.1);
}

.cart-item-card .user-cta button:hover {
    background: hsl(var(--base)/0.09);
}

.cart-item-card .user-cta .trash-btn:hover i {
    color: hsl(var(--danger));
}

.cart-item-card .user-cta .active-fav i {
    color: hsl(var(--base));
}

.show-cart-box {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.87);
    z-index: 12;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s linear;
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
}

.details-right-content .product-name .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 14px;
}

.details-right-content .rating-wrap {
    display: flex;
    margin-bottom: 8px;
}

.details-right-content .rating-wrap ul {
    display: flex;
    gap: 6px;
}

.details-right-content .rating-wrap ul li i {
    color: hsl(var(--yellow));
    font-size: 16px;
}

.details-right-content .stock-status {
    margin-bottom: 10px;
}

.details-right-content .stock-status h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    margin: 0px;
}

.details-right-content .stock-status span {
    color: hsl(var(--yellow));
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.details-right-content .subtitle {
    margin-bottom: 17px;
}

.details-right-content .key-details-wrap {
    margin-bottom: 40px;
}

.details-right-content .key-details-wrap .key {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.details-right-content .key-details-wrap .key span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: hsl(var(--black)/0.04);
}

.details-right-content .key-details-wrap .key span i {
    font-size: 17px;
}

.details-right-content .price-wrap {
    display: flex;
    margin-bottom: 30px;
}

.details-right-content .price-wrap .price {
    display: flex;
}

.details-right-content .price-wrap .price .main-price {
    font-size: 36px;
    font-weight: 600;
    line-height: 0.77;
}

.details-right-content .price-wrap .price .discount-price {
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
    color: hsl(var(--black)/0.4);
    text-decoration: line-through;
}

.details-right-content .price-wrap .saving-tag span {
    display: block;
    width: 79px;
    height: 20px;
    background: hsl(var(--base));
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 4px 0px 0px 4px;
}

.details-right-content .cta-btn-wrap .add-fav-btn {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid hsl(var(--black)/0.05) !important;
}

.details-right-content .cta-btn-wrap .add-fav-btn i {
    font-size: 22px;
}

.details-right-content .cta-btn-wrap .active-fav i {
    color: hsl(var(--base));
}

@keyframes moveGradient {
    50% {
        background-position: 100% 50%;
    }
}

@keyframes draw {
    0% {
        stroke-dasharray: 2000;
        stroke-dashoffset: 2000;
    }

    100% {
        stroke-dasharray: 2000;
        stroke-dashoffset: 0;
    }
}

@media (max-width: 1399px) {
    .price-card .price-item ul li {
        padding: 26px 50px;
    }

    .hero-game-card .thumb {
        height: 121px;
    }

    .details-right-content .key-details-wrap {
        margin-bottom: 24px;
    }

    .details-right-content .price-wrap {
        margin-bottom: 24px;
    }

    .details-right-content .price-wrap .price .main-price {
        margin: 0px;
    }

    .product-details-left__nav .nav-tabs .nav-link img {
        width: 56px !important;
        height: 54px;
    }

    .game-search-box .item-wrap .new-product .thumb {
        width: 100%;
    }

    .game-search-box .item-wrap .new-product .content {
        width: 100%;
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .about {
        padding-top: 50px !important;
    }

    .key-item {
        padding-bottom: 50px !important;
    }

    .price-card {
        margin-top: 60px;
    }

    .price-card .price-item ul li {
        padding: 26px 30px;
    }

    .faq-card2 {
        padding: 40px 0px;
        border: none !important;
    }

    .faq-card1 {
        border: none !important;
    }

    .blog-card2 {
        padding: 20px 0px;
        border: none !important;
    }

    .about-key-card {
        padding: 20px 0px;
    }

    .login-section .logo-wrap {
        display: none;
    }

    .login-box .close--btn {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .faq-card1 {
        padding: 0px;
    }

    .faq-card1 .content-wrap {
        width: 100%;
    }

    .faq-card2 .content-wrap {
        width: 100%;
    }

    .cart-box .close--btn {
        display: block;
    }
}

@media (max-width: 550px) {
    .cart-box {
        width: 100%;
        padding: 40px 15px;
    }

    .close--btn {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 375px) {
    .cart-item-card .thumb {
        padding-left: 12px;
        width: 115px;
        height: 110px;
    }

    .cart-item-card .content {
        margin-left: 12px;
        width: 200px;
    }
}

@media (max-width: 425px) {
    .details-right-content .product-name .title {
        font-size: 24px;
    }
}

@media (max-width: 350px) {
    .cart-item-card .thumb {
        height: 72px;
    }
}
/*====================== Form Style ====================*/
.search-box .input--group .form--control {
    color: hsl(var(--white));
    padding-right: 30px;
}

.search-box .form--control {
    color: hsl(var(--dark));
    padding-right: 40px;
}

.search-box .form--control::placeholder {
    color: hsl(var(--black)/0.5);
}

.form--label {
    color: hsl(var(--black));
}

.form--control {
    font-weight: 500;
    outline: none;
    width: 100%;
    padding: 17px 10px;
    border-radius: 4px;
    background-color: hsl(var(--white));
    color: hsl(var(--black));
    line-height: 1;
    border: 1px solid hsl(var(--black)/0.1);
}

.form--control::placeholder {
    color: hsl(var(--black)/0.5) !important;
    font-size: 16px;
}

.form--control:focus {
    color: hsl(var(--dark));
    box-shadow: none;
    border: 1px solid hsl(var(--base)/0.3);
    border-radius: 4px;
}

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

.form--control[type=password] {
    color: hsl(var(--dark)/0.5);
}

.form--control[type=password]:focus {
    color: hsl(var(--dark));
}

.form--control[type=file] {
    line-height: 60px;
    padding: 0;
    position: relative;
}

.form--control[type=file]::file-selector-button {
    border: 1px solid hsl(var(--black)/0.08);
    padding: 4px 6px;
    border-radius: 0.2em;
    background-color: hsl(var(--base)/0.3);
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 15px;
    color: hsl(var(--white));
}

.form--control[type=file]::file-selector-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.form--control:focus ~ .form--label,
.form--control:not(:placeholder-shown).form--control:not(:focus) ~ .form--label {
    top: -14px;
    left: 8px;
    font-size: 14px;
    background: hsl(var(--white));
    z-index: 9;
}

.search-form--control {
    font-weight: 500;
    outline: none;
    width: 100%;
    padding: 20px 44px;
    background-color: hsl(var(--body-color)/0.1);
    border: 1px solid hsl(var(--base)/0.2);
    color: hsl(var(--dark)) !important;
    line-height: 1;
    border-radius: 0px !important;
    padding-right: 160px !important;
}

.search-form--control::placeholder {
    color: hsl(var(--black)/0.5);
    font-size: 16px;
}

.search-form--control:focus {
    color: hsl(var(--dark));
    box-shadow: none;
    border-color: hsl(var(--base));
    background-color: hsl(var(--body-color)/0.05);
}

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

.search-form--control[type=password] {
    color: hsl(var(--dark)/0.5);
}

.search-form--control[type=password]:focus {
    color: hsl(var(--dark));
}

.search-form--control[type=file] {
    line-height: 60px;
    padding: 0;
    position: relative;
}

.search-form--control[type=file]::file-selector-button {
    border: 1px solid hsl(var(--black)/0.08);
    padding: 4px 6px;
    border-radius: 0.2em;
    background-color: hsl(var(--base)/0.9);
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 15px;
    color: hsl(var(--body-color));
}

.search-form--control[type=file]::file-selector-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

textarea.form--control {
    height: 220px;
    padding: 15px;
}

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(--dark)) !important;
}

.input--group {
    position: relative;
}

.input--icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--base));
}

.password-show-hide {
    position: absolute;
    right: 20px;
    z-index: 3;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--dark)/0.5);
}

#send-amount input[type=file] {
    color: hsl(var(--base));
    cursor: pointer;
}

input #send-amount::file-selector-button {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

/*====== Country code ======*/
.input-group.country-code {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}

.input-group.country-code .input-group-text {
    background-color: hsl(var(--base)/0.5);
    border: 1px solid hsl(var(--base)/0.7);
    border-radius: 10px 0 0 10px;
}

.select {
    color: hsl(var(--dark)/0.6);
}

.select:focus {
    border-color: hsl(var(--base));
}

.select option {
    background-color: hsl(var(--dark));
    color: hsl(var(--white));
}

/*=========== Custom Checkbox Design ===========*/
.form--check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form--check a {
    display: inline;
}

.form--check .form-check-input {
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--black)/0.3);
}

.form--check .form-check-input:checked {
    background-color: hsl(var(--base)/0.3) !important;
    border-color: hsl(var(--base)) !important;
    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 5 Free";
    font-weight: 900;
    color: hsl(var(--base));
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form--check .form-check-label {
    width: calc(100% - 16px);
    padding-left: 12px;
    color: hsl(var(--black));
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    font-family: var(--body-font);
}

.form--check label {
    color: hsl(var(--black));
}

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

@media screen and (max-width: 424px) {
    .form--check a {
        font-size: 15px;
    }
}

.order-form-title2 {
    display: none;
  }


/*==========  Custom Radion Design ============*/
.form--radio {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form--radio .form-check-input {
    box-shadow: none;
    border: 2px solid hsl(var(--base));
    position: relative;
    margin: 0px;
    height: 20px;
    width: 20px;
}

.form--radio .form-check-input:active {
    filter: brightness(100%);
}

.form--radio .form-check-input:checked {
    background-color: transparent;
    border-color: hsl(var(--base));
}

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

.form--radio .form-check-input:checked::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    z-index: 999;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
    width: unset;
    border-radius: 3px;
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
    background-color: hsl(var(--base-two)/0.5) !important;
    padding: 12px 30px !important;
    margin-left: 0;
    margin-bottom: 5px;
}

.form--switch .form-check-input:focus {
    width: unset;
    border-radius: 3px;
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
}

.form--switch .form-check-input::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 15px;
    background-color: hsl(var(--base-two));
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    left: 5px;
    transition: 0.2s linear;
}

.form--switch .form-check-input:checked {
    background-color: hsl(var(--base));
}

.form--switch .form-check-input:checked::before {
    left: calc(100% - 25px);
}

.form-check.form--switch {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
}

.form-check.form--switch .form-check-label {
    margin-right: 10px;
    color: hsl(var(--white));
    font-weight: 500;
    margin-bottom: 0;
    line-height: 2;
}

@media screen and (max-width: 424px) {
    .choose-domain .input-group.country-code {
        flex-direction: column;
    }

    .choose-domain .input-group.country-code .form--control {
        margin: 5px;
        border-radius: 10px !important;
    }

    .choose-domain .input-group.country-code .input-group-text {
        width: 70px;
        border-radius: 10px !important;
    }
}

.choose-domain .input-group.country-code select.select.form--control {
    width: 120px;
    color: hsl(var(--dark));
}

/*  Custom Switch End Design */
::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}

::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23bbbbbb" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

.f-dropdown {
    --max-scroll: 3;
    position: relative;
    z-index: 2;
}

.f-dropdown select {
    display: none;
}

.f-dropdown > span {
    cursor: pointer;
    padding: 12px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid hsl(var(--black)/0.1);
    background: hsl(var(--white));
    transition: color 0.2s ease, border-color 0.2s ease;
}

.f-dropdown > span > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 12px;
}

.f-dropdown > span img {
    width: 30px;
    margin-right: 10px;
}

.f-dropdown > span:before, .f-dropdown > span:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    right: 12px;
    background: #000;
    transition: all 0.3s ease;
}

.f-dropdown > span:before {
    margin-right: 4px;
    transform: scale(0.96, 0.8) rotate(50deg);
}

.f-dropdown > span:after {
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.f-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(var(--max-scroll) * 46px);
    top: 40px;
    left: 0;
    z-index: 1;
    right: 0;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 6px;
    overflow-x: hidden;
    overflow-y: auto;
    transform-origin: 0 0;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transform: translate(0, 5px);
}

.f-dropdown ul li {
    padding: 0;
    margin: 0;
}

.f-dropdown ul li a {
    cursor: pointer;
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    outline: none;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.f-dropdown ul li a img {
    width: 30px;
    margin-right: 10px;
}

.f-dropdown ul li a:hover {
    color: #5C6BC0;
}

.f-dropdown ul li.active a {
    color: #FFF;
    background: #303F9F;
}

.f-dropdown ul li.active a:before, .f-dropdown ul li.active a:after {
    --scale: 0.6;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    right: 12px;
    top: 50%;
    opacity: 0;
    background: #FFF;
    transition: all 0.2s ease;
}

.f-dropdown ul li.active a:before {
    transform: rotate(45deg) scale(var(--scale));
}

.f-dropdown ul li.active a:after {
    transform: rotate(-45deg) scale(var(--scale));
}

.f-dropdown ul li.active a:hover:before, .f-dropdown ul li.active a:hover:after {
    --scale: 0.9;
    opacity: 1;
}

.f-dropdown ul li:first-child a {
    border-radius: 6px 6px 0 0;
}

.f-dropdown ul li:last-child a {
    border-radius: 0 0 6px 6px;
}

.f-dropdown.disabled {
    opacity: 0.7;
}

.f-dropdown.disabled > span {
    cursor: not-allowed;
}

.f-dropdown.filled > span {
    color: #000;
}

.f-dropdown.open {
    z-index: 15;
}

.f-dropdown.open > span {
    border-color: #AAA;
}

.f-dropdown.open > span:before, .f-dropdown.open > span:after {
    background: #000;
}

.f-dropdown.open > span:before {
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.f-dropdown.open > span:after {
    transform: scale(0.96, 0.8) rotate(50deg);
}

.f-dropdown.open ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

/* --------------------------- */
/*================== Tab Content =============*/
.coustome-tabs {
    border-color: hsl(var(--base));
    width: 100%;
    padding: 12px 0px;
    border-radius: 12px;
}

.coustome-tabs li {
    margin: 0px 8px 8px 0px;
}

.coustome-tabs li .nav-link {
    color: hsl(var(--white));
    border-radius: 4px 4px 0px 0px;
}

@media screen and (max-width: 1199px) {
    .coustome-tabs li .nav-link {
        padding: 8px 8px !important;
    }
}

.coustome-tabs li :hover {
    border-color: hsl(var(--base)) !important;
}

.nav-tabs {
    border-bottom: 1px solid transparent !important;
}

.btn-check:active + .btn, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:active {
    color: hsl(var(--white)) !important;
    background: hsl(var(--base)) !important;
}

.btn--base.outline-2:hover, .btn--base.outline-2:focus {
    background-color: hsl(var(--base)/0.5);
    color: hsl(var(--black));
}

.btn-check:active + .btn, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:active:hover {
    color: hsl(var(--base));
    background: hsl(var(--white));
}

.category-section {
    padding: 0px 40px;
    background: hsl(var(--white));
}

@media screen and (max-width: 1022px) {
    .menu-btm {
        display: none;
    }
}

.menu-btm {
    padding: 0px 60px;
}

.sub-menu-list .category-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: hsl(var(--black)/0.4);
    position: relative;
}

.sub-menu-list .category-item .category-name {
    color: hsl(var(--black)/0.4);
}

.sub-menu-list .category-item:hover {
    color: hsl(var(--black));
}

.sub-menu-list .category-item:hover::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: hsl(var(--base));
}

.sub-menu-list .category-item:hover .category-name {
    color: hsl(var(--black));
}

.menu-btm .sub-menu {
    display: inline-flex;
    gap: 50px;
    padding: 0px 116px 0px 116px;
}

.menu-btm .sub-menu .sub-menu-list {
    padding: 18px 0px;
    position: relative;
    font-size: 16px;
    margin-right: 26px;
}

.menu-btm .sub-menu .sub-menu-list a {
    font-weight: 100;
}

.menu-btm .sub-menu .sub-menu-list button {
    position: relative;
    color: hsl(var(--body-color));
}

.menu-btm .sub-menu .sub-menu-list:hover .sub-content-item {
    visibility: visible;
    opacity: 1;
}

.menu-btm .sub-content-item {
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border: 1px solid hsl(var(--base));
    display: flex;
    flex-direction: column;
    top: 50px;
    gap: 16px;
    background-color: hsl(var(--white));
    z-index: 5 !important;
}

.menu-btm .sub-content-item .nav-item-category--wraper {
    width: 166px;
}

.menu-btm .sub-content-item .nav-item-category--wraper p {
    padding: 0px 6px;
    font-weight: 400;
}

.menu-btm .sub-content-item .nav-item-category--wraper ul li {
    padding: 5px 6px;
}

.menu-btm .sub-content-item .nav-item-category--wraper ul li a {
    background-color: transparent !important;
    color: hsl(var(--black)/0.6) !important;
}

.menu-btm .sub-content-item .nav-item-category--wraper ul :hover {
    background: hsl(var(--base));
    color: hsl(var(--white)) !important;
    transition: 0.4s all !important;
}

.menu-btm .sub-content-item .nav-item-category {
    display: flex;
    flex-direction: row;
}

@media (max-width: 1024px) {
    .menu-btm .sub-menu {
        display: inline-flex;
        gap: 50px;
        padding: 0px 68px 0px 68px;
    }
}
/*====================== Preloader Style ====================*/
#loading {
    background-color: hsl(var(--base));
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 150px;
    margin-top: -75px;
    margin-left: -75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 60px;
    height: 60px;
    display: grid;
}

.loader:before,
.loader:after {
    content: "";
    grid-area: 1/1;
    background: hsl(var(--white));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 75% 25%, 0 0, 0 100%, 100% 100%, 25% 75%, 0 0);
    animation: l20 1.5s infinite linear;
}

.loader:after {
    clip-path: polygon(0 0, 76% 24%, 100% 100%, 24% 76%);
    --s: 0;
}

@keyframes l20 {
    0% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, 0);
    }

    25% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, -90deg);
    }

    25.01% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, -90deg);
    }

    40%, 60% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, -180deg);
    }

    75% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, -270deg);
    }

    75.01% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, -270deg);
    }

    90%, 100% {
        transform: perspective(100px) rotate3d(1, var(--s, 1), 0, -360deg);
    }
}

.hero {
    overflow-x: hidden !important;
    z-index: 1;
    background-color: hsl(var(--black));
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(200deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    z-index: -1;
}

.hero-left-thumb {
    border-radius: 40px 0px;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.hero-left-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-left-content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.hero-left-content .hero-title {
    font-size: 75px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 34px !important;
    color: hsl(var(--white));
}

.hero-left-content .hero-btn {
    padding: 10px 64px;
    font-size: 24px;
    border-radius: 14px 0px;
}

.hero-search-box-wrap {
    padding: 12px;
    border-radius: 10px;
    background: hsl(var(--white));
    width: 85%;
}

.hero-search-box-wrap form {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-search-box-wrap form .hero-input-group {
    width: 300px;
    position: relative;
}

.hero-search-box-wrap form .hero-input-group::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0px;
    width: 1px;
    height: 50px;
    background: hsl(var(--black)/0.1);
}

.hero-search-box-wrap form .hero-input-group:nth-child(3)::after {
    content: none;
}

.hero-search-box-wrap form .hero-input-group label {
    margin-left: 12px;
    color: hsl(var(--black)/0.5);
}

.hero-search-box-wrap form .hero-input-group .hero-search-input {
    border-radius: 0;
    border: none;
    padding-top: 4px;
    position: relative;
}

.hero-search-box-wrap form .hero-input-group .hero-search-input::placeholder {
    color: hsl(var(--black)) !important;
}

.hero-search-box-wrap form .btn_wrap {
    position: absolute;
    right: 0;
}

.hero-search-box-wrap form .btn_wrap .hero-serch-btn {
    border-radius: 5px;
    color: hsl(var(--white));
    padding: 16px 38px;
    font-weight: 400;
}

@media (max-width: 993px) {
    .hero-search-box-wrap form .btn_wrap {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-search-box-wrap form {
        flex-wrap: wrap;
    }

    .hero-search-box-wrap form .hero-input-group {
        width: 100%;
        margin-bottom: 12px;
    }

    .hero-search-box-wrap form .hero-input-group::after {
        content: none;
    }
}

.gallery-thumb {
    height: 450px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-lable {
    border: 1px solid hsl(var(--black)/0.1);
    width: 100%;
    height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-lable::before {
    content: attr(data-content);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: -40px;
    font-size: 12px;
    background: hsl(var(--base));
    width: 150px;
    height: 24px;
    rotate: 50deg;
    color: hsl(var(--white));
}

.input-active {
    border: 1px solid hsl(var(--base));
    position: relative;
    overflow: hidden;
}

.service-title {
    font-weight: 400;
    color: hsl(var(--black));
    font-size: 16px;
}

.service-wrap {
    padding: 0px !important;
}

.order-info {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.order-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed hsl(var(--base));
    margin-bottom: 16px;
    padding: 12px;
}

.video-iframe {
    width: 100%;
    height: 400px;
    padding: 20px;
    border: 1px solid hsl(var(--base));
    border-radius: 40px 0px;
    margin-top: 80px;
}

.video-iframe iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 425px) {
    .gallery-thumb {
        height: 220px;
    }

    .hero-left-thumb {
        height: 250px;
    }

    .hero-left-content .hero-title {
        font-size: 34px;
    }
}

.quantity_box {
    position: relative;
}

.quantity_box .count-input {
    width: 52px;
    padding: 11px 16px;
    border: none;
    text-align: center;
    background: none;
}

.quantity_box .sub {
    padding: 2px 5px;
    margin-right: -4px;
    z-index: 1;
    position: relative;
    border-radius: 4px;
    border: 1px solid hsl(var(--black)/0.5);
}

.quantity_box .add {
    padding: 2px 5px;
    margin-right: -4px;
    z-index: 1;
    position: relative;
    border-radius: 4px;
    right: 4px;
    border: 1px solid hsl(var(--black)/0.5);
}

/*============= Footer Start Here =======================*/
.footer-area {
    position: relative;
    z-index: 2;
    background-color: hsl(var(--black)/0.05);
    margin-top: 40px;
}

.footer-item .latest-blog__title a {
    color: hsl(var(--white));
}

.footer-item .latest-blog {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.footer-item span.latest-blog__date {
    color: hsl(var(--black)/0.6);
}

.footer-item__desc {
    color: hsl(var(--black)/0.8);
    margin-bottom: 36px;
    width: 80%;
}

.footer-item__logo {
    margin-bottom: 20px;
}

.footer-item__logo a img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 64px;
    filter: brightness(1);
}

.footer-item__title {
    color: hsl(var(--black));
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
}

.footer-item .social-list {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

@media screen and (max-width: 991px) {
    .footer-item .social-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 575px) {
    .footer-item .social-list {
        margin-top: 15px;
    }
}

.footer-item .social-list__item .social-list__link {
    font-size: 20px;
    border: 0px;
    color: hsl(var(--black));
}

.footer-item .social-list__item .social-list__link:hover {
    color: hsl(var(--white)) !important;
}

.icon-wrapper .icon {
    background: hsl(var(--black)/0.06);
}

.icon-wrapper .icon:hover {
    background: hsl(var(--base));
}

.icon-wrapper div {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: hsl(var(--base)/0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: -5px 0;
}

.footer-menu__item {
    display: block;
    padding: 8px 0;
}

.footer-menu__link {
    position: relative;
    color: hsl(var(--black)/0.7);
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-menu__link i {
    font-size: 14px;
    color: hsl(var(--base));
}

.footer-menu__link:hover {
    color: hsl(var(--black));
    margin-left: 4px;
}

.footer-contact-menu {
    margin: -6px 0;
}

.footer-contact-menu__item {
    display: flex;
    padding: 1px 0;
}

.footer-contact-menu__item p {
    color: hsl(var(--white));
}

.footer-contact-menu__item-icon {
    width: 15px;
    color: hsl(var(--white));
    font-size: 15px;
}

.footer-contact-menu__item-content {
    width: calc(100% - 15px);
    padding-left: 15px;
}

.search-box.footer button {
    position: absolute;
    right: 9px;
    top: 9px;
    border: 1px solid transparent;
}

.search-box.footer input.form--control {
    padding-right: 135px;
    border-radius: 10px;
    border: 0;
    padding: 16px;
    color: hsl(var(--white));
}

.search-box.footer input.form--control::placeholder, .search-box.footer input.form--control :focus {
    color: hsl(var(--white));
}

.footer-subscribe-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-subscribe-box form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-subscribe-box .footer-input {
    width: 376px;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.footer-subscribe-box .footer-input::placeholder {
    color: hsl(var(--white)/0.7) !important;
    font-size: 14px;
}

.footer-subscribe-box .search-btn {
    padding: 7px 20px;
    border-radius: 4px;
}

.bottom-footer .bottom-footer-text {
    color: hsl(var(--black));
}

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

@media screen and (max-width: 424px) {
    .bottom-footer .bottom-footer-text {
        font-size: 14px;
    }
}

.bottom-footer-menu ul {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
    .bottom-footer-menu ul {
        justify-content: center;
    }
}

.bottom-footer-menu ul li {
    padding-left: 14px;
    margin-left: 14px;
    position: relative;
}

.bottom-footer-menu ul li::after {
    content: "";
    position: absolute;
    left: 0px;
    background: hsl(var(--body-color));
    height: 5px;
    width: 5px;
    bottom: 6px;
    border-radius: 50%;
}

.bottom-footer-menu ul li:first-child::after {
    content: none;
}

.bottom-footer-menu ul li a {
    color: hsl(var(--body-color));
}

@media screen and (max-width: 424px) {
    .bottom-footer-menu ul li a {
        font-size: 14px;
    }
}

.mobile-app-link-items {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.mobile-app-link-items .app-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 1px solid hsl(var(--base)/0.2);
    padding: 4px 20px;
}

.mobile-app-link-items .app-link .icon-sprite {
    font-size: 24px;
}

.mobile-app-link-items .app-link-text {
    display: flex;
    flex-direction: column;
}

.mobile-app-link-items .app-link-text .download {
    font-size: 14px;
    color: rgb(138, 138, 138);
}

.subscribe-box {
    position: relative;
}

.subscribe-box form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.subscribe-box input {
    background-color: hsl(var(--white)/0.07);
    outline: none;
    padding-right: 128px;
    color: hsl(var(--black)) !important;
}

.subscribe-box input::placeholder {
    color: hsl(var(--black)) !important;
}

.subscribe-box input:focus {
    border: 1px solid hsl(var(--base)/0.3);
}

.subscribe-box .sub-btn {
    position: absolute;
    right: 6px;
    padding: 8px 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.footer-contact-info p {
    color: hsl(var(--white)/0.8);
    width: 60%;
}

.footer-contact-info p a {
    color: hsl(var(--white)/0.8);
}

.footer-contact-info i {
    font-size: 20px;
    color: hsl(var(--white));
}

.stay-tune-box {
    box-shadow: rgba(0, 0, 0, 0.05) 1px 1px 2px 1px;
    border-radius: 12px;
    margin: -320px 0px 20px;
    padding: 60px 0px;
    position: relative;
    border: 1px solid transparent;
}

.stay-tune-box .tune-box-title {
    color: hsl(var(--white));
}

.stay-tune-box .tune-box-subtitle {
    color: hsl(var(--white));
}

.stay-tune-box::after {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 12px;
    content: "";
    background-color: hsl(var(--dark)/0.6);
    width: 100%;
    height: 100%;
    z-index: -99;
}

@media (max-width: 376px) {
    .footer-subscribe-box .footer-input {
        width: 100%;
    }
}

@media (max-width: 426px) {
    .footer-subscribe-box .footer-input {
        border: 1px solid hsl(var(--base));
    }

    .footer-subscribe-box .footer-input::placeholder {
        color: hsl(var(--white)/0.7) !important;
        font-size: 14px;
    }

    .footer-subscribe-box .search-btn {
        margin: 16px 0 0 0px;
    }

    .footer-item__title {
        padding-bottom: 0px;
        margin-bottom: 10px;
    }
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 42px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.scroll-top svg {
    color: hsl(var(--base));
    border-radius: 50%;
    background: hsl(var(--white));
}

.scroll-top svg path {
    fill: none;
}

.scroll-top::after {
    content: "\f062";
    font-family: FontAwesome;
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: hsl(var(--base));
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid hsl(var(--base)/0.5);
    box-shadow: none;
    border-radius: 50%;
}

.scroll-top .progress-circle path {
    stroke: hsl(var(--base));
    stroke-width: 10px;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 430px) {
    .scroll-top {
        right: 20px;
        bottom: 70px;
    }
}

.section-content {
    margin-bottom: 34px;
}

.section-content .title-wrap {
    display: flex;
    justify-content: space-between;
}

.section-content .title-wrap .title {
    color: hsl(var(--black));
    font-size: 24px !important;
    font-weight: 700;
    line-height: 1.16;
    margin: 0px;
}

.section-content .title-wrap .title-2 {
    color: hsl(var(--black));
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.16;
    margin: 0px;
}

.section-content-2 {
    margin-bottom: 34px;
}

.section-content-2 .title-wrap {
    display: flex;
    justify-content: space-between;
}

.section-content-2 .title-wrap .title {
    color: hsl(var(--white));
    font-size: 24px !important;
    font-weight: 700;
    line-height: 1.16;
    margin: 0px;
}

.section-content-3 {
    margin-bottom: 34px;
}

.section-content-3 .title {
    font-size: 36px !important;
    font-weight: 700;
    margin: 0px;
}

.section-content-4 {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-content-4 .title {
    color: hsl(var(--black));
    text-align: center;
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.16;
}

.section-content-4 .subtitle {
     color:var(--body-font); /* hsl(var(--black)/0.3); */
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.section-content-5 {
    margin-bottom: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content-5 .title {
    color: hsl(var(--black));
    text-align: center;
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.16;
    margin: 0px;
}

@media (max-width: 990px) {
    .section-content .title-wrap .title {
        font-size: 18px !important;
    }

    .section-content .title-wrap .title-2 {
        font-size: 26px !important;
    }

    .section-content-2 .title-wrap .title {
        font-size: 18px !important;
    }

    .section-content-3 .title {
        font-size: 26px !important;
    }

    .section-content-4 .title {
        font-size: 26px !important;
    }

    .section-content-5 .title {
        font-size: 26px !important;
    }
}

.faq-section-2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.faq-section-2 .circle-1 {
    position: absolute;
    height: 200px;
    width: 200px;
    bottom: 14%;
    left: 8%;
    background-color: hsl(var(--base));
    filter: blur(100px);
    -webkit-filter: blur(100px);
    border-radius: 50%;
    z-index: -2;
    transform: translateX(-50%);
    opacity: 0.7;
}

.faq-section-2 .circle-2 {
    position: absolute;
    height: 280px;
    width: 280px;
    bottom: -8%;
    right: 2%;
    background-color: hsl(var(--secondary));
    filter: blur(100px);
    -webkit-filter: blur(100px);
    border-radius: 50%;
    z-index: -2;
    transform: translateX(-50%);
    opacity: 0.3;
}

.faq-title-wrap {
    padding-bottom: 12px;
    border-bottom: 1px solid hsl(var(--black)/0.2);
    margin-bottom: 28px;
    position: relative;
}

.faq-title-wrap::after {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 63px;
    height: 1px;
    background: hsl(var(--base));
}
/*# sourceMappingURL=main.css.map */
