/*
============================
Name:  Email Marketing Sass Landing Page
Version: 1.0.0
Description:
Author:  VikingLab
Author URI:
Location:
============================
*/
/*

CSS LIST

=<::::::::::::::::::::::::::=>
  HEADER AREA CSS
=<::::::::::::::::::::::::::=>
  NAV MENU AREA CSS
=<::::::::::::::::::::::::::=>
  WELCOME AREA CSS
=<::::::::::::::::::::::::::=>
  ABOUT AREA CSS
=<::::::::::::::::::::::::::=>
  SERVICE AREA CSS
=<::::::::::::::::::::::::::=>
  ACCOUNT AREA CSS
=<::::::::::::::::::::::::::=>
  FEATURES AREA CSS
=<::::::::::::::::::::::::::=>
  BRAND AREA CSS
=<::::::::::::::::::::::::::=>
  CHOOSE AREA CSS
=<::::::::::::::::::::::::::=>
  PRRELOADER AREA CSS
=<::::::::::::::::::::::::::=>
  PRICING AREA CSS
=<::::::::::::::::::::::::::=>
  TEAM AREA CSS
=<::::::::::::::::::::::::::=>
  TESTIMONIAL AREA CSS
=<::::::::::::::::::::::::::=>
  WORK AREA CSS
=<::::::::::::::::::::::::::=>
  OTHERS AREA CSS
=<::::::::::::::::::::::::::=>
  CONMMON AREA CSS
=<::::::::::::::::::::::::::=>
  BLOG AREA CSS
=<::::::::::::::::::::::::::=>
  CTA AREA CSS
=<::::::::::::::::::::::::::=>
 ANIMATION AREA CSS
=<::::::::::::::::::::::::::=>
  BUTTONS AREA CSS
=<::::::::::::::::::::::::::=>
  TYPOGRAPHY AREA CSS
=<::::::::::::::::::::::::::=>
  FOOTER AREA CSS
=<::::::::::::::::::::::::::=>
*/
/*
::::::::::::::::::::::::::
 TYPOGRAPHY AREA CSS
::::::::::::::::::::::::::
*/
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&amp;display=swap");

/*
 ::::::::::::::::::::::::::
  fonts area css
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 BUTTONS AREA CSS
::::::::::::::::::::::::::
*/
.btn {
    position: relative;
    display: inline-block;
    padding: 18px 24px;
    color: var(--qt-bg-bg-w);
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-blod);
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    box-sizing: border-box;
    position: relative;
    z-index: 99;
    line-height: var(--f-fs-font-fs16);
}

.btn:hover {
    color: var(--qt-bg-bg-w);
}

.btn--ripple {
    border-radius: 4px;
    background: var(--Project-Management-Color-Linner-Color, linear-gradient(95deg, #603BF3 0.75%, #8F00FF 101.34%));
    overflow: hidden;
}

.btn--ripple span {
    position: absolute;
    background: #cbb2de;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: rippleAnimation 1s linear infinite;
    z-index: 98;
}

@keyframes rippleAnimation {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

.btn--hoverEffect3 {
    display: inline-block;
    background: #8F00FF;
    color: #333;
    overflow: hidden;
    z-index: 1;
}

.btn--hoverEffect3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 101%;
    width: 101%;
    -webkit-clip-path: polygon(0 0, 100% 0, 10% 25%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 10% 25%, 0 100%);
    background: #444;
    border-radius: 5px;
    transition: 0.3s cubic-bezier(0.38, 1.15, 0.7, 1.12);
    box-sizing: border-box;
    z-index: 1000;
}

.btn--hoverEffect3:hover::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn--hoverEffect3:hover {
    color: var(--qt-bg-bg-w);
}

.btn.btn2 {
    background: #fff;
    color: #603BF3;
    margin-left: 12px;
}

.btn.btn3 {
    background: #101537;
    color: #fff;
    margin-left: 12px;
}

.btn.btn4 {
    background: #fff;
    color: #101537;
    margin-left: 12px;
    line-height: 16px;
}

.btn.btn4 img {
    margin-top: -3px;
    margin-right: 2px;
}

.theme-btn2 {
    display: inline-block;
    border-radius: 210px;
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    color: var(--qt-bg-bg-w);
    font-weight: var(--f-fw-semibold);
    padding: 17px 24px;
    border: 4px solid #ffead9;
    position: relative;
    z-index: 3;
    transition: all 0.4s;
    overflow: hidden;
}

.theme-btn2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 210px;
    background-color: var(--qt-bg-bg-7);
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    width: 0%;
    border-radius: 210px;
    background-color: var(--qt-bg-bg-w);
    z-index: -1;
    transition: all 0.4s;
    transition-timing-function: linear;
}

.theme-btn2:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.theme-btn2:hover::before {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.4s;
}

.login-btn {
    color: #072762;
    display: inline-block;
    font-weight: var(--f-fw-semibold);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    margin-right: 10px;
    position: relative;
    z-index: 9;
}

.login-btn:hover {
    color: var(--qt-bg-bg-7);
}

.header2-buttons {
    display: flex;
    align-items: center;
}

.header2-buttons .user-btn {
    margin-right: 20px;
    position: relative;
    z-index: 9;
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 106, 106, 0.1843137255);
}

.theme-btn3 {
    display: inline-block;
    border-radius: 210px;
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    color: var(--qt-bg-bg-7);
    font-weight: var(--f-fw-semibold);
    padding: 17px 24px;
    border: 4px solid #E7E8FF;
    position: relative;
    z-index: 3;
    transition: all 0.4s;
    overflow: hidden;
    margin-left: 12px;
}

.theme-btn3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 210px;
    background-color: var(--qt-bg-bg-w);
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    width: 0%;
    border-radius: 210px;
    background-color: var(--qt-bg-bg-7);
    z-index: -1;
    transition: all 0.4s;
    transition-timing-function: linear;
}

.theme-btn3:hover {
    transition: all 0.4s;
    color: var(--qt-bg-bg-w);
}

.theme-btn3:hover::before {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.4s;
}

.others {
    display: inline-block;
    border-radius: 210px;
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    color: var(--qt-bg-bg-w);
    font-weight: var(--f-fw-semibold);
    padding: 17px 24px;
    border: 4px solid rgba(231, 232, 255, 0.262745098);
    position: relative;
    z-index: 3;
    transition: all 0.4s;
    overflow: hidden;
}

.others::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 210px;
    background-color: var(--qt-bg-bg-7);
    z-index: -2;
    transition: all 0.4s;
}

.others::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    width: 0%;
    border-radius: 210px;
    background-color: var(--qt-bg-bg-w);
    z-index: -1;
    transition: all 0.4s;
    transition-timing-function: linear;
}

.others:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.others:hover::before {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.4s;
}

.immiPressBtn span.arrow {
    display: inline-block;
    font-size: 16px;
    position: relative;
    margin-left: 5px;
    transform: rotate(-45deg);
}

.immiPressBtn::before,
.immiPressBtn::after,
.immiPressBtn span::before,
.immiPressBtn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background: #FF9494;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.immiPressBtn span::before,
.immiPressBtn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background: #FF9494;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.immiPressBtn::before {
    left: 0;
}

.immiPressBtn::after {
    left: 50%;
}

.immiPressBtn span::before,
.immiPressBtn span::after {
    top: auto;
    bottom: 0;
}

.immiPressBtn span::before {
    left: 25%;
}

.immiPressBtn span::after {
    left: 75%;
}

.immiPressBtn:hover::before,
.immiPressBtn:hover::after,
.immiPressBtn:hover span::before,
.immiPressBtn:hover span::after {
    height: 100%;
}

.immiPressBtn:hover {
    color: #fff;
}

.immiPressBtn {
    position: relative;
    overflow: hidden;
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    border-radius: 4px;
    text-align: center;
    padding: 18px 24px;
    border: none;
    outline: none;
    text-transform: capitalize;
    display: inline-block;
    background: var(--qt-bg-bg-8);
    color: var(--qt-text-h-text1);
    z-index: 2;
    transition: all ease 0.3s;
}

.header4-buttons {
    position: relative;
    z-index: 2;
}

.header4-buttons a {
    display: inline-block;
}

.theme-btn4 {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 111px;
    background-color: var(--qt-bg-bg-12);
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.theme-btn4:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background-color: #494893;
}

@media screen and (max-width: 426px) {
    .btn.btn4 {
        margin-top: 20px;
        margin-left: 0;
    }
}

@media screen and (max-width: 426px) {
    .btn.btn2 {
        margin-top: 20px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 426px) {
    .btn.btn3 {
        margin-top: 20px;
        margin-left: 10px;
    }
}

.theme-btn5 {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 111px;
    background-color: var(--qt-bg-bg-15);
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.theme-btn5:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background-color: #6b78e1;
}

.theme-btn6 {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 111px;
    background-color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-bg-bg-15);
    transition: all 0.4s;
    margin-left: 20px;
}

.theme-btn6:hover {
    color: var(--qt-bg-bg-15);
    transition: all 0.4s;
    transform: translateY(-5px);
}

@media screen and (max-width: 767px) {
    .theme-btn6 {
        margin-top: 20px;
        margin-left: 0;
    }
}

.sidebar3-btn {
    display: inline-block;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    border-radius: 4px;
    text-align: center;
    padding: 18px 24px;
    background-color: #fff;
    width: 100%;
    color: var(--qt-bg-bg-8);
    margin-top: 30px;
}

.sidebar3-btn span.arrow {
    display: inline-block;
    font-size: 16px;
    position: relative;
    margin-left: 5px;
    transform: rotate(-45deg);
}

.sidebar1-btn {
    display: inline-block;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    border-radius: 4px;
    text-align: center;
    padding: 18px 24px;
    background-color: #fff;
    width: 100%;
    color: var(--qt-bg-bg-3);
    margin-top: 30px;
}

.sidebar1-btn span.arrow {
    display: inline-block;
    font-size: 16px;
    position: relative;
    margin-left: 5px;
    transform: rotate(-45deg);
}

.theme-btn7 {
    color: var(--Main-Text, #110D39);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    letter-spacing: -0.16px;
    border-radius: 100px;
    display: inline-block;
    padding: 6px 16px 6px 6px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(214, 39, 247, 0.1);
    border: 1px solid var(--Gradient, #662FFF);
}

.theme-btn7 span.arrow {
    display: inline-table;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    overflow: hidden;
}

.theme-btn7 span.arrow::after {
    content: "";
    position: absolute;
    left: auto;
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 50%;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in-out;
}

.theme-btn7 span.arrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    border-radius: 50%;
    z-index: -2;
    transition: all 0.4s;
    animation-timing-function: ease-in-out;
}

.theme-btn7 span.arrow img {
    transition: all 0.4s;
}

.theme-btn7::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 100px;
    z-index: -3;
    transition: all 0.4s;
    animation-timing-function: ease-in-out;
}

.theme-btn7::after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    border-radius: 100px;
    z-index: -3;
    transition: all 0.4s;
    animation-timing-function: ease-in-out;
}

.theme-btn7:hover {
    transition: all 0.4s;
    color: #fff;
}

.theme-btn7:hover::after {
    width: 100%;
    transition: all 0.4s;
    left: 0;
    right: auto;
    animation-timing-function: ease-in-out;
}

.theme-btn7:hover span.arrow::after {
    width: 100%;
    transition: all 0.4s;
    left: 0;
    right: auto;
    animation-timing-function: ease-in-out;
}

.theme-btn7:hover span.arrow img {
    transition: all 0.4s;
    filter: brightness(0);
}

.theme-btn8 {
    display: inline-block;
    color: var(--Text-Color, #0A0726);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    padding: 18px 22px;
    border-radius: 80px;
    position: relative;
    border: none;
}

.theme-btn8::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #fff;
    width: 100%;
    z-index: -2;
    border-radius: 80px;
}

.theme-btn8 .arrow {
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

.theme-btn8 .tb8 {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.theme-btn8 .tb8::after {
    content: "";
    position: absolute;
    left: -11px;
    top: -11px;
    height: 40px;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
    opacity: 0.2;
    width: 40px;
    border-radius: 80px;
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn8:hover {
    color: var(--Text-Color, #0A0726);
}

.theme-btn8:hover .tb8 {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.theme-btn8:hover .tb8::after {
    content: "";
    position: absolute;
    left: -11px;
    top: -11px;
    height: 40px;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
    opacity: 0.2;
    width: 116%;
    border-radius: 80px;
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn9 {
    display: inline-block;
    color: var(--Text-Color, #ffffff);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    padding: 18px 22px;
    border-radius: 80px;
    position: relative;
    border: none;
    background: none;
}

.theme-btn9::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
    width: 100%;
    z-index: -2;
    border-radius: 80px;
}

.theme-btn9 .arrow {
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

.theme-btn9 .tb8 {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.theme-btn9 .tb8::after {
    content: "";
    position: absolute;
    left: -11px;
    top: -11px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2588235294);
    opacity: 0.9;
    width: 40px;
    border-radius: 80px;
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn9:hover {
    color: var(--Text-Color, #fff);
}

.theme-btn9:hover .tb8 {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.theme-btn9:hover .tb8::after {
    width: 116%;
    transition: all 0.4s;
}

.header7-btn {
    display: inline-block;
    padding: 18px 22px 14px 22px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
    border-radius: 111px;
    position: relative;
    overflow: hidden;
}

.header7-btn img {
    margin-right: 2px;
    transform: translateY(-3px);
}

.header7-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
    border-radius: 111px;
    z-index: -2;
    transition: all 0.4s;
}

.header7-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #726EFC 0%, #5132A6 100%));
    border-radius: 111px;
    z-index: -1;
    transition: all 0.4s;
}

.header7-btn:hover {
    transition: all 0.4s;
    color: #fff;
}

.header7-btn:hover::before {
    width: 100%;
    transition: all 0.4s;
}

.theme-btn10 {
    display: inline-block;
    padding: 18px 22px 18px 22px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
    border-radius: 111px;
    position: relative;
    overflow: hidden;
    color: #603BF3;
}

.theme-btn10::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 111px;
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn10::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #726EFC 0%, #5132A6 100%));
    border-radius: 111px;
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn10:hover {
    transition: all 0.4s;
    color: #fff;
    background: none;
}

.theme-btn10:hover::before {
    width: 100%;
    transition: all 0.4s;
}

.theme-btn11 {
    color: var(--White-Color, #FFF);
    font-size: 16px;
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
    text-transform: uppercase;
    border-radius: 4px;
    padding: 20px 22px 20px 22px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
}

.theme-btn11::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-bottom: 4px solid var(--Home-Page-8-Stroke-Linner, #652AC4);
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn11::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-bottom: 4px solid var(--Home-Page-8-Stroke-Linner, #652AC4);
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #EA25F5 -17.5%, #662FFF 100%));
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn11:hover {
    transition: all 0.4s;
    color: #fff;
}

.theme-btn11:hover::before {
    width: 100%;
    transition: all 0.4s;
}

.theme-btn12 {
    display: inline-block;
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
    text-decoration-line: underline;
    text-transform: uppercase;
    transition: all 0.4s;
}

.theme-btn12:hover {
    color: var(--Home-Page-8-Text-Color, #662FFF);
    transition: all 0.4s;
    text-decoration-line: underline;
}

.theme-btn13 {
    color: var(--White-Color, #000000);
    font-size: 16px;
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
    text-transform: uppercase;
    border-radius: 4px;
    padding: 20px 22px 20px 22px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
}

.theme-btn13 span.text {
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s;
}

.theme-btn13::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-bottom: 4px solid #E3C0FF;
    background: #fff;
    z-index: -2;
    transition: all 0.4s;
}

.theme-btn13::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-bottom: 4px solid var(--Home-Page-8-Stroke-Linner, #652AC4);
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #EA25F5 -17.5%, #662FFF 100%));
    z-index: -1;
    transition: all 0.4s;
}

.theme-btn13:hover {
    transition: all 0.4s;
    color: #fff;
}

.theme-btn13:hover span.text {
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #ffffff -17.5%, #ffffff 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    transition: all 0.4s;
}

.theme-btn13:hover::before {
    width: 100%;
    transition: all 0.4s;
}

.theme-btn14 {
    display: inline-block;
    color: var(--Home-Page-8-Text-Color, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
    text-decoration-line: underline;
    text-transform: uppercase;
    transition: all 0.4s;
}

.theme-btn14:hover {
    color: var(--Home-Page-8-Text-Color, #bda4ff);
    transition: all 0.4s;
    text-decoration-line: underline;
}

.theme-btn15 {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: uppercase;
    background: #7371FC;
    border-radius: 111px;
    padding: 18px 22px;
    transition: all 0.4s;
}

.theme-btn15 span {
    display: inline-block;
    transform: rotate(-45deg);
}

.theme-btn15:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
    background: #807ef8;
    color: #fff;
}

/*
::::::::::::::::::::::::::
 BUTTONS AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  ANIMATION AREA CSS
 ::::::::::::::::::::::::::
 */
@keyframes shape-animaiton1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100px);
    }
}

@keyframes shape-animaiton2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(30px);
    }
}

@keyframes shape-animaiton3 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

@keyframes animate1 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.shape-animaiton1 {
    position: relative;
    animation-name: shape-animaiton1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.shape-animaiton2 {
    position: relative;
    animation-name: shape-animaiton2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.shape-animaiton3 {
    position: relative;
    animation-name: shape-animaiton3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.animate1 {
    position: relative;
    animation-name: animate1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

/*
::::::::::::::::::::::::::
 ANIMATION AREA CSS
::::::::::::::::::::::::::
*/
body.body,
html {
    overflow-x: hidden;
}

body {
    font-family: var(--f-ff-font-1) !important;
    font-size: 18px;
}

@media screen and (min-width: 769px) {
    body.body2.body.unic-body {
        overflow-x: initial !important;
    }
}

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

input,
textarea,
select,
option {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

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

p {
    padding: 0;
    margin: 0;
}

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

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

body.body {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
}

.sp {
    padding: 100px 0px;
}

.sp2 {
    padding: 120px 0px;
}

.pt120 {
    padding-top: 120px;
}

.pb120 {
    padding-bottom: 120px;
}

.pb100 {
    padding-bottom: 100px;
}

.pl60 {
    padding-left: 60px;
}

.pr60 {
    padding-right: 60px;
}

@media (max-width: 768px) {
    .sp {
        padding: 50px 0px;
    }

    .pt120 {
        padding-top: 60px;
    }

    .pb120 {
        padding-bottom: 60px;
    }

    .sp2 {
        padding: 60px 0px;
    }

    .pl60 {
        padding-left: 0;
    }

    .pr60 {
        padding-right: 0;
    }

    .pb100 {
        padding-bottom: 50px;
    }
}

.space4 {
    height: 4px;
}

.space6 {
    height: 6px;
}

.space28 {
    height: 28px;
}

.space8 {
    height: 8px;
}

.space12 {
    height: 12px;
}

.space14 {
    height: 14px;
}

.space16 {
    height: 16px;
}

.space24 {
    height: 24px;
}

.space32 {
    height: 32px;
}

.space10 {
    height: 10px;
}

.space5 {
    height: 5px;
}

.space5 {
    height: 5px;
}

@media (max-width: 767px) {
    .space10 {
        height: 5px;
    }

    .sp5 {
        padding-bottom: 50px;
    }
}

.space20 {
    height: 20px;
}

@media (max-width: 767px) {
    .space20 {
        height: 10px;
    }
}

.space30 {
    height: 30px;
}

@media (max-width: 767px) {
    .space30 {
        height: 15px;
    }
}

.space40 {
    height: 40px;
}

@media (max-width: 767px) {
    .space40 {
        height: 20px;
    }
}

.space50 {
    height: 50px;
}

.space45 {
    height: 45px;
}

@media (max-width: 767px) {
    .space50 {
        height: 25px;
    }
}

.space60 {
    height: 60px;
}

.space55 {
    height: 55px;
}

.space70 {
    height: 70px;
}

.space80 {
    height: 80px;
}

.space90 {
    height: 90px;
}

.space100 {
    height: 100px;
}

.space120 {
    height: 120px;
}

.text-right {
    text-align: right;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-padding2 {
    padding: 120px 0 90px;
}

@media (max-width: 991px) {
    .section-padding2 {
        padding: 60px 0 30px;
    }
}

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

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

.padding-bottom2 {
    padding-bottom: 90px;
}

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

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

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

.padding-top2 {
    padding-top: 90px;
}

@media (max-width: 991px) {
    .padding-top2 {
        padding-top: 30px;
    }
}

.padding-90 {
    padding: 90px 0;
}

@media (max-width: 991px) {
    .padding-90 {
        padding: 50px 0;
    }
}

.w-full {
    width: 100%;
}

@media (min-width: 992px) {
    .w-lg-full {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}

@media (min-width: 992px) {
    .text-lg-center {
        text-align: center;
    }
}

.text-left {
    text-align: left !important;
}

.weight-400 {
    font-weight: 400 !important;
}

.weight-500 {
    font-weight: 500 !important;
}

.weight-600 {
    font-weight: 600 !important;
}

.weight-700 {
    font-weight: 700 !important;
}

.weight-800 {
    font-weight: 800 !important;
}

.weight-900 {
    font-weight: 900 !important;
}

.font-f-1 {
    font-family: "Hind", sans-serif !important;
}

.font-f-2 {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.font-f-3 {
    font-family: "Spline Sans", sans-serif !important;
}

.font-f-4 {
    font-family: "Catamaran", sans-serif !important;
}

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

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

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

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

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

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

.font-24 {
    font-size: 24px;
}

.font-26 {
    font-size: 26px;
}

.font-28 {
    font-size: 28px;
}

.font-30 {
    font-size: 30px;
}

.font-32 {
    font-size: 32px;
}

.font-34 {
    font-size: 34px;
}

.font-36 {
    font-size: 36px;
}

.font-40 {
    font-size: 40px;
}

.font-42 {
    font-size: 42px;
}

.font-44 {
    font-size: 44px;
}

.font-46 {
    font-size: 48px;
}

.font-48 {
    font-size: 48px;
}

.font-50 {
    font-size: 60px;
}

.font-52 {
    font-size: 52px;
}

.font-54 {
    font-size: 54px;
}

.font-56 {
    font-size: 56px;
}

.font-58 {
    font-size: 58px;
}

.font-60 {
    font-size: 60px;
}

.font-62 {
    font-size: 62px;
}

.font-70 {
    font-size: 70px;
}

.font-72 {
    font-size: 72px;
}

.font-74 {
    font-size: 74px;
}

.font-76 {
    font-size: 76px;
}

.font-78 {
    font-size: 78px;
}

.font-80 {
    font-size: 80px;
}

.font-82 {
    font-size: 82px;
}

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

.font-86 {
    font-size: 86px;
}

.font-88 {
    font-size: 88px;
}

.font-90 {
    font-size: 90px;
}

.font-92 {
    font-size: 92px;
}

.font-94 {
    font-size: 94px;
}

.font-96 {
    font-size: 96px;
}

.font-98 {
    font-size: 98px;
}

.font-100 {
    font-size: 100px;
}

@media screen and (min-width: 1024px) {
    .text-md-right {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }

    .text-md-left {
        text-align: left;
    }

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

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

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

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

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

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

    .font-lg-24 {
        font-size: 24px;
    }

    .font-lg-26 {
        font-size: 26px;
    }

    .font-lg-28 {
        font-size: 28px;
    }

    .font-lg-30 {
        font-size: 30px;
    }

    .font-lg-32 {
        font-size: 32px;
    }

    .font-lg-34 {
        font-size: 34px;
    }

    .font-lg-36 {
        font-size: 36px;
    }

    .font-lg-40 {
        font-size: 40px;
    }

    .font-lg-42 {
        font-size: 42px;
    }

    .font-lg-44 {
        font-size: 44px;
    }

    .font-lg-45 {
        font-size: 45px;
    }

    .font-lg-46 {
        font-size: 48px;
    }

    .font-lg-48 {
        font-size: 48px;
    }

    .font-lg-50 {
        font-size: 60px;
    }

    .font-lg-52 {
        font-size: 52px;
    }

    .font-lg-54 {
        font-size: 54px;
    }

    .font-lg-56 {
        font-size: 56px;
    }

    .font-lg-58 {
        font-size: 58px;
    }

    .font-lg-60 {
        font-size: 60px;
    }

    .font-lg-62 {
        font-size: 62px;
    }

    .font-lg-66 {
        font-size: 66px;
    }

    .font-lg-70 {
        font-size: 70px;
    }

    .font-lg-72 {
        font-size: 72px;
    }

    .font-lg-74 {
        font-size: 74px;
    }

    .font-lg-76 {
        font-size: 76px;
    }

    .font-lg-78 {
        font-size: 78px;
    }

    .font-lg-80 {
        font-size: 80px;
    }

    .font-lg-82 {
        font-size: 82px;
    }

    .font-lg-84 {
        font-size: 84px;
    }

    .font-lg-86 {
        font-size: 86px;
    }

    .font-lg-88 {
        font-size: 88px;
    }

    .font-lg-90 {
        font-size: 90px;
    }

    .font-lg-92 {
        font-size: 92px;
    }

    .font-lg-94 {
        font-size: 94px;
    }

    .font-lg-96 {
        font-size: 96px;
    }

    .font-lg-98 {
        font-size: 98px;
    }

    .font-lg-100 {
        font-size: 100px;
    }

    .line-height-lg-14 {
        line-height: 14px;
    }

    .line-height-lg-16 {
        line-height: 16px;
    }

    .line-height-lg-18 {
        line-height: 18px;
    }

    .line-height-lg-20 {
        line-height: 20px;
    }

    .line-height-lg-22 {
        line-height: 22px;
    }

    .line-height-lg-24 {
        line-height: 24px;
    }

    .line-height-lg-26 {
        line-height: 26px;
    }

    .line-height-lg-28 {
        line-height: 28px;
    }

    .line-height-lg-30 {
        line-height: 30px;
    }

    .line-height-lg-32 {
        line-height: 32px;
    }

    .line-height-lg-34 {
        line-height: 34px;
    }

    .line-height-lg-36 {
        line-height: 36px;
    }

    .line-height-lg-38 {
        line-height: 38px;
    }

    .line-height-lg-40 {
        line-height: 40px;
    }

    .line-height-lg-42 {
        line-height: 42px;
    }

    .line-height-lg-44 {
        line-height: 44px;
    }

    .line-height-lg-48 {
        line-height: 48px;
    }

    .line-height-lg-50 {
        line-height: 50px;
    }

    .line-height-lg-52 {
        line-height: 52px;
    }

    .line-height-lg-54 {
        line-height: 54px;
    }

    .line-height-lg-56 {
        line-height: 56px;
    }

    .line-height-lg-58 {
        line-height: 58px;
    }

    .line-height-lg-60 {
        line-height: 60px;
    }

    .line-height-lg-62 {
        line-height: 62px;
    }

    .line-height-lg-64 {
        line-height: 64px;
    }

    .line-height-lg-66 {
        line-height: 66px;
    }

    .line-height-lg-68 {
        line-height: 68px;
    }

    .line-height-lg-70 {
        line-height: 70px;
    }

    .line-height-lg-72 {
        line-height: 72px;
    }

    .line-height-lg-74 {
        line-height: 74px;
    }

    .line-height-lg-76 {
        line-height: 76px;
    }

    .line-height-lg-78 {
        line-height: 78px;
    }

    .line-height-lg-80 {
        line-height: 80px;
    }

    .line-height-lg-82 {
        line-height: 82px;
    }

    .line-height-lg-84 {
        line-height: 84px;
    }

    .line-height-lg-86 {
        line-height: 86px;
    }

    .line-height-lg-88 {
        line-height: 88px;
    }

    .line-height-lg-90 {
        line-height: 90px;
    }

    .line-height-lg-92 {
        line-height: 92px;
    }

    .line-height-lg-94 {
        line-height: 94px;
    }

    .line-height-lg-96 {
        line-height: 96px;
    }

    .line-height-lg-98 {
        line-height: 98px;
    }

    .line-height-lg-100 {
        line-height: 100px;
    }
}

@media screen and (min-width: 768px) {
    .font-md-12 {
        font-size: 12px;
    }

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

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

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

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

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

    .font-md-24 {
        font-size: 24px;
    }

    .font-md-26 {
        font-size: 26px;
    }

    .font-md-28 {
        font-size: 28px;
    }

    .font-md-30 {
        font-size: 30px;
    }

    .font-md-32 {
        font-size: 32px;
    }

    .font-md-34 {
        font-size: 34px;
    }

    .font-md-36 {
        font-size: 36px;
    }

    .font-md-40 {
        font-size: 40px;
    }

    .font-md-42 {
        font-size: 42px;
    }

    .font-md-44 {
        font-size: 44px;
    }

    .font-md-46 {
        font-size: 48px;
    }

    .font-md-48 {
        font-size: 48px;
    }

    .font-md-50 {
        font-size: 60px;
    }

    .font-md-52 {
        font-size: 52px;
    }

    .font-md-54 {
        font-size: 54px;
    }

    .font-md-56 {
        font-size: 56px;
    }

    .font-md-58 {
        font-size: 58px;
    }

    .font-md-60 {
        font-size: 60px;
    }

    .font-md-62 {
        font-size: 62px;
    }

    .font-md-74 {
        font-size: 74px;
    }

    .font-md-76 {
        font-size: 76px;
    }

    .font-md-78 {
        font-size: 78px;
    }

    .font-md-80 {
        font-size: 80px;
    }

    .font-md-82 {
        font-size: 82px;
    }

    .font-md-84 {
        font-size: 84px;
    }

    .font-md-86 {
        font-size: 86px;
    }

    .font-md-88 {
        font-size: 88px;
    }

    .font-md-90 {
        font-size: 90px;
    }

    .font-md-92 {
        font-size: 92px;
    }

    .font-md-94 {
        font-size: 94px;
    }

    .font-md-96 {
        font-size: 96px;
    }

    .font-md-98 {
        font-size: 98px;
    }

    .font-md-100 {
        font-size: 100px;
    }

    .line-height-md-12 {
        line-height: 12px;
    }

    .line-height-md-14 {
        line-height: 14px;
    }

    .line-height-md-16 {
        line-height: 16px;
    }

    .line-height-md-18 {
        line-height: 18px;
    }

    .line-height-md-20 {
        line-height: 20px;
    }

    .line-height-md-22 {
        line-height: 22px;
    }

    .line-height-md-24 {
        line-height: 24px;
    }

    .line-height-md-26 {
        line-height: 26px;
    }

    .line-height-md-28 {
        line-height: 28px;
    }

    .line-height-md-30 {
        line-height: 30px;
    }

    .line-height-md-32 {
        line-height: 32px;
    }

    .line-height-md-34 {
        line-height: 34px;
    }

    .line-height-md-36 {
        line-height: 36px;
    }

    .line-height-md-38 {
        line-height: 38px;
    }

    .line-height-md-40 {
        line-height: 40px;
    }

    .line-height-md-42 {
        line-height: 42px;
    }

    .line-height-md-44 {
        line-height: 44px;
    }

    .line-height-md-48 {
        line-height: 48px;
    }

    .line-height-md-50 {
        line-height: 50px;
    }

    .line-height-md-52 {
        line-height: 52px;
    }

    .line-height-md-54 {
        line-height: 54px;
    }

    .line-height-md-56 {
        line-height: 56px;
    }

    .line-height-md-58 {
        line-height: 58px;
    }

    .line-height-md-60 {
        line-height: 60px;
    }

    .line-height-md-62 {
        line-height: 62px;
    }

    .line-height-md-64 {
        line-height: 64px;
    }

    .line-height-md-66 {
        line-height: 66px;
    }

    .line-height-md-68 {
        line-height: 68px;
    }

    .line-height-md-70 {
        line-height: 70px;
    }

    .line-height-md-72 {
        line-height: 72px;
    }

    .line-height-md-74 {
        line-height: 74px;
    }

    .line-height-md-76 {
        line-height: 76px;
    }

    .line-height-md-78 {
        line-height: 78px;
    }

    .line-height-md-80 {
        line-height: 80px;
    }

    .line-height-md-82 {
        line-height: 82px;
    }

    .line-height-md-84 {
        line-height: 84px;
    }

    .line-height-md-86 {
        line-height: 86px;
    }

    .line-height-md-88 {
        line-height: 88px;
    }

    .line-height-md-90 {
        line-height: 90px;
    }

    .line-height-md-92 {
        line-height: 92px;
    }

    .line-height-md-94 {
        line-height: 94px;
    }

    .line-height-md-96 {
        line-height: 96px;
    }

    .line-height-md-98 {
        line-height: 98px;
    }

    .line-height-md-100 {
        line-height: 100px;
    }
}

@media screen and (min-width: 576px) {
    .font-sm-12 {
        font-size: 12px;
    }

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

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

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

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

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

    .font-sm-24 {
        font-size: 24px;
    }

    .font-sm-26 {
        font-size: 26px;
    }

    .font-sm-28 {
        font-size: 28px;
    }

    .font-sm-30 {
        font-size: 30px;
    }

    .font-sm-32 {
        font-size: 32px;
    }

    .font-sm-34 {
        font-size: 34px;
    }

    .font-sm-36 {
        font-size: 36px;
    }

    .font-sm-40 {
        font-size: 40px;
    }

    .font-sm-42 {
        font-size: 42px;
    }

    .font-sm-44 {
        font-size: 44px;
    }

    .font-sm-46 {
        font-size: 48px;
    }

    .font-sm-48 {
        font-size: 48px;
    }

    .font-sm-50 {
        font-size: 60px;
    }

    .font-sm-52 {
        font-size: 52px;
    }

    .font-sm-54 {
        font-size: 54px;
    }

    .font-sm-56 {
        font-size: 56px;
    }

    .font-sm-58 {
        font-size: 58px;
    }

    .font-sm-60 {
        font-size: 60px;
    }

    .font-sm-62 {
        font-size: 62px;
    }

    .font-sm-74 {
        font-size: 74px;
    }

    .font-sm-76 {
        font-size: 76px;
    }

    .font-sm-78 {
        font-size: 78px;
    }

    .font-sm-80 {
        font-size: 80px;
    }

    .font-sm-82 {
        font-size: 82px;
    }

    .font-sm-84 {
        font-size: 84px;
    }

    .font-sm-86 {
        font-size: 86px;
    }

    .font-sm-88 {
        font-size: 88px;
    }

    .font-sm-90 {
        font-size: 90px;
    }

    .font-sm-92 {
        font-size: 92px;
    }

    .font-sm-94 {
        font-size: 94px;
    }

    .font-sm-96 {
        font-size: 96px;
    }

    .font-sm-98 {
        font-size: 98px;
    }

    .font-sm-100 {
        font-size: 100px;
    }

    .line-height-sm-12 {
        line-height: 12px;
    }

    .line-height-sm-14 {
        line-height: 14px;
    }

    .line-height-sm-16 {
        line-height: 16px;
    }

    .line-height-sm-18 {
        line-height: 18px;
    }

    .line-height-sm-20 {
        line-height: 20px;
    }

    .line-height-sm-22 {
        line-height: 22px;
    }

    .line-height-sm-24 {
        line-height: 24px;
    }

    .line-height-sm-26 {
        line-height: 26px;
    }

    .line-height-sm-28 {
        line-height: 28px;
    }

    .line-height-sm-30 {
        line-height: 30px;
    }

    .line-height-sm-32 {
        line-height: 32px;
    }

    .line-height-sm-34 {
        line-height: 34px;
    }

    .line-height-sm-36 {
        line-height: 36px;
    }

    .line-height-sm-38 {
        line-height: 38px;
    }

    .line-height-sm-40 {
        line-height: 40px;
    }

    .line-height-sm-42 {
        line-height: 42px;
    }

    .line-height-sm-44 {
        line-height: 44px;
    }

    .line-height-sm-48 {
        line-height: 48px;
    }

    .line-height-sm-50 {
        line-height: 50px;
    }

    .line-height-sm-52 {
        line-height: 52px;
    }

    .line-height-sm-54 {
        line-height: 54px;
    }

    .line-height-sm-56 {
        line-height: 56px;
    }

    .line-height-sm-58 {
        line-height: 58px;
    }

    .line-height-sm-60 {
        line-height: 60px;
    }

    .line-height-sm-62 {
        line-height: 62px;
    }

    .line-height-sm-64 {
        line-height: 64px;
    }

    .line-height-sm-66 {
        line-height: 66px;
    }

    .line-height-sm-68 {
        line-height: 68px;
    }

    .line-height-sm-70 {
        line-height: 70px;
    }

    .line-height-sm-72 {
        line-height: 72px;
    }

    .line-height-sm-74 {
        line-height: 74px;
    }

    .line-height-sm-76 {
        line-height: 76px;
    }

    .line-height-sm-78 {
        line-height: 78px;
    }

    .line-height-sm-80 {
        line-height: 80px;
    }

    .line-height-sm-82 {
        line-height: 82px;
    }

    .line-height-sm-84 {
        line-height: 84px;
    }

    .line-height-sm-86 {
        line-height: 86px;
    }

    .line-height-sm-88 {
        line-height: 88px;
    }

    .line-height-sm-90 {
        line-height: 90px;
    }

    .line-height-sm-92 {
        line-height: 92px;
    }

    .line-height-sm-94 {
        line-height: 94px;
    }

    .line-height-sm-96 {
        line-height: 96px;
    }

    .line-height-sm-98 {
        line-height: 98px;
    }

    .line-height-sm-100 {
        line-height: 100px;
    }
}

.mr-2 {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }
}

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

.mobile-sidebar .single-footer h3 {
    color: #ffffff;
}

.mobile-sidebar .single-contact a {
    color: #ffffff;
}

.lg-ml-15 {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .lg-ml-15 {
        margin-left: 0;
    }
}

.lg-mr-15 {
    margin-right: 15px;
}

@media (max-width: 768px) {
    .lg-mr-15 {
        margin-right: 0;
    }

    .space100 {
        height: 50px;
    }
}

._relative {
    position: relative;
}

._absolute {
    position: absolute;
}

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

.bg-contain {
    background-size: contain;
    background-position: center center;
}

.img-cover img,
.img-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.width100 img {
    width: 100%;
}

/*
 ::::::::::::::::::::::::::
  roots area css
 ::::::::::::::::::::::::::
 */
:root {
    --qt-text-h-text1: #fff;
    --qt-text-h-text2: #08111A;
    --qt-text-h-text3: #08111A;
    --qt-text-h-text4: #060512;
    --qt-text-p-text1: #CFD0D7;
    --qt-text-p-text2: #4E4D61;
    --qt-text-p-text3: #51575D;
    --qt-text-p-text4: #6E6E72;
    --qt-bg-bg-w: #fff;
    --qt-bg-bg-1: #101537;
    --qt-bg-bg-2: #6534F4;
    --qt-bg-bg-3: #242C56;
    --qt-bg-bg-4: #373D60;
    --qt-bg-bg-5: #F5F8FF;
    --qt-bg-bg-6: #ECE9FE;
    --qt-bg-bg-7: #f7b009;
    --qt-bg-bg-8: #FF6A6A;
    --qt-bg-bg-9: #F9FAFD;
    --qt-bg-bg-10: #603BF3;
    --qt-bg-bg-11: #FACD30;
    --qt-bg-bg-12: #343368;
    --qt-bg-bg-13: #F5F8FF;
    --qt-bg-bg-14: #E7E8FF;
    --qt-bg-bg-15: #4C5EEC;
    --qt-bg-bg-16: #EDEEFD;
    --qt-bg-bg-17: #DFD8FD;
    --qt-border-border-1: #f0f0f0;
    --qt-border-border-2: #dfdcdc;
    --qt-border-border-3: #2C2E55;
}

:root {
    --f-fw-regular: 400;
    --f-fw-medium: 500;
    --f-fw-semibold: 600;
    --f-fw-blod: 700;
    --f-fw-ex-bold: 800;
    --f-ff-font-1: 'Figtree', sans-serif;
    --f-ff-font-2: 'IBM Plex Sans', sans-serif;
    --f-fs-font-fs16: 16px;
    --f-fs-font-fs18: 18px;
    --f-fs-font-fs20: 20px;
    --f-fs-font-fs22: 22px;
    --f-fs-font-fs24: 24px;
    --f-fs-font-fs26: 26px;
    --f-fs-font-fs28: 28px;
    --f-fs-font-fs30: 30px;
    --f-fs-font-fs32: 32px;
    --f-fs-font-fs34: 34px;
    --f-fs-font-fs36: 36px;
    --f-fs-font-fs40: 40px;
    --f-fs-font-fs42: 42px;
    --f-fs-font-fs44: 44px;
    --f-fs-font-fs48: 48px;
    --f-fs-font-fs50: 50px;
    --f-fs-font-fs52: 52px;
    --f-fs-font-fs54: 54px;
    --f-fs-font-fs56: 56px;
    --f-fs-font-fs58: 58px;
    --f-fs-font-fs60: 60px;
    --f-fs-font-fs62: 62px;
    --f-fs-font-fs64: 64px;
    --f-fs-font-fs66: 66px;
    --f-fs-font-fs68: 68px;
    --f-fs-font-fs70: 70px;
    --f-fs-font-fs72: 72px;
    --f-fs-font-fs74: 74px;
    --f-fs-font-fs76: 76px;
    --f-fs-font-fs78: 78px;
    --f-fs-font-fs80: 80px;
    --f-fs-font-fs82: 82px;
    --f-fs-font-fs84: 84px;
    --f-fs-font-fs86: 86px;
    --f-fs-font-fs88: 88px;
}

/*-----------------------------------------------------------------------------------

    Template Name:
    Author:
    Support:
    Description:
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classes
		1.3 Default Spacing

	-----------------
    02. COMPONENTS CSS
	-----------------
		2.1 Back to top

	-----------------
    03. HEADER CSS
	-----------------
	3.1 Header Style 1

    ---------------------------------
	04. MENU CSS
	---------------------------------
	4.1 Main menu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
	5.1 blog css start

	---------------------------------
	06. FOOTER CSS
	---------------------------------
	6.1 Footer Style 1

	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 about css start
**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
/*
 ::::::::::::::::::::::::::
  CONMMON AREA CSS
 ::::::::::::::::::::::::::
 */
.headding1 span.span {
    color: var(--qt-bg-bg-w);
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
    /* 100% */
    display: inline-block;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(91deg, #FFF -2679.34%, rgba(255, 255, 255, 0) 189.33%);
    padding: 8px 10px;
    margin-bottom: 16px;
}

.headding1 span.span img {
    margin-top: -2px;
    margin-right: 5px;
}

.headding1 h2 {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs44);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs52);
    text-transform: capitalize;
}

.headding1 h2 span.after {
    background: var(--Project-Management-Color-Text-GD, linear-gradient(99deg, #603BF3 64.53%, #8F00FF 91.45%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .headding1 h2 {
        font-size: var(--f-fs-font-fs36);
        line-height: var(--f-fs-font-fs44);
    }
}

@media (max-width: 767px) {
    .headding1 h2 {
        font-size: var(--f-fs-font-fs36);
        line-height: var(--f-fs-font-fs44);
    }
}

.headding1 p {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
}

.headding1 h5 {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs24);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs24);
    /* 100% */
    padding-bottom: 14px;
}

.headding1 h4 a {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs24);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs24);
    /* 100% */
}

.headding2 span.span {
    display: inline-block;
    color: var(--qt-bg-bg-7);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    padding: 8px 10px;
    border-radius: 210px;
    font-weight: var(--f-fw-medium);
    margin-bottom: 16px;
    background-color: #E8E9FF;
}

.headding2 h2 {
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs52);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .headding2 h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .headding2 h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.headding2 h5 {
    font-size: var(--f-fs-font-fs32);
    line-height: var(--f-fs-font-fs42);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
}

.headding2 p {
    color: #515456;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
}

.headding2-w span.span {
    display: inline-block;
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    padding: 8px 10px;
    border-radius: 210px;
    font-weight: var(--f-fw-medium);
    margin-bottom: 16px;
    background-color: rgba(232, 233, 255, 0.2666666667);
}

.headding2-w h2 {
    font-size: var(--f-fs-font-fs44);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs52);
    color: var(--qt-text-h-text1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .headding2-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .headding2-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.headding2-w p {
    color: #F0EFFF;
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
    transition: all 0.4s;
}

.headding3 h2 {
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs54);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .headding3 h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .headding3 h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.headding3 p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    color: var(--qt-text-p-text3);
}

.headding4 span.span {
    color: var(--qt-bg-bg-15);
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
    padding-left: 35px;
}

.headding4 span.span::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    bottom: 5px;
    left: 0;
    background-color: var(--qt-bg-bg-15);
}

.headding4 h2 {
    color: var(--qt-text-h-text4);
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs52);
    font-weight: var(--f-fw-blod);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .headding4 h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .headding4 h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.headding4 p {
    color: var(--qt-text-p-text4);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
    transition: all 0.4s;
}

.headding4 h4 a {
    display: inline-block;
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-blod);
    color: var(--qt-text-h-text4);
    transition: all 0.4s;
}

.headding4-w h2 {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs52);
    font-weight: var(--f-fw-blod);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .headding4-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .headding4-w h2 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.headding4-w p {
    color: #DFE2FC;
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
    padding-top: 16px;
}

.heading5 .title {
    border-radius: 40px;
    background: #FFF;
    padding: 6px 12px 5px 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.heading5 span.span {
    display: inline-block;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
}

.heading5 span.span img {
    margin-top: -2px;
    margin-right: 2px;
}

.heading5 h2 {
    color: var(--Main-Text, #110D39);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 109.091% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading5 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading5 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading5 h3 {
    color: var(--Main-Text, #110D39);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 125% */
}

.heading5 h5 {
    color: var(--Main-Text, #110D39);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.heading5 p {
    color: var(--Main-Text, rgba(17, 13, 57, 0.7725490196));
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.heading5-w h2 {
    color: #FFF;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 109.091% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading5-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading5-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading5-w p {
    color: rgba(255, 255, 255, 0.8352941176);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.heading6-w span.span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.heading6-w span.span2 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 16px;
}

.heading6-w h2 {
    color: #FFF;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    /* 122.727% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading6-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading6-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading6-w p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 175% */
}

.heading6 span.span {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 16px;
}

.heading6 span.span3 {
    color: #775CFF;
    display: inline-block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
    margin-bottom: 24px;
}

.heading6 span.title img {
    filter: drop-shadow(0px 4px 54px rgba(0, 0, 0, 0.09));
}

.heading6 h4 a {
    display: inline-block;
    color: var(--Text-Color, #0A0726);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 100% */
}

.heading6 h3 {
    color: var(--Text-Color, #0A0726);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 100% */
}

.heading6 h2 {
    color: var(--Text-Color, #0A0726);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    /* 122.727% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading6 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading6 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading6 p {
    color: var(--Paragraph-Color, #4D4B5F);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 162.5% */
}

.heading7 .title {
    display: inline-block;
    border-radius: 3.596px;
    background: rgba(90, 101, 245, 0.1);
    padding: 6px 12px 4px 12px;
    margin-bottom: 16px;
}

.heading7 .title span.span {
    display: inline-block;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    text-transform: uppercase;
}

.heading7 h4 a {
    display: inline-block;
    color: var(--Home-Page-7-Main-Color, #0B101F);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 100% */
}

.heading7 h5 a {
    display: inline-block;
    color: #111;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 100% */
    transition: all 0.4s;
}

.heading7 h5 a:hover {
    color: #03256c;
    transition: all 0.4s;
}

.heading7 p {
    color: var(--Home-Page-7-Paragraph-Color, #4D4B5F);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.heading7 h2 {
    color: var(--Home-Page-3-Color-Text-Color, #070811);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
    /* 122.727% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading7 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading7 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading7-w span.span {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.heading7-w h2 {
    color: #FFF;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
    /* 114.286% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading7-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading7-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading8-w h2 {
    color: #FFF;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    /* 113.636% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading8-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading8-w h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading8-w p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.heading8 span.span {
    color: var(--Home-Page-8-Main-Color, #7D2EFE);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    background-color: #ECE5FE;
    border-radius: 7px;
    padding: 8px 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.heading8 span.span img {
    margin-right: 3px;
    margin-top: -3px;
}

.heading8 span.span span.text {
    display: inline-block;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading8 h2 {
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    /* 118.182% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading8 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading8 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.heading9 span.span {
    color: var(--Home-Page-8-Main-Color, #7371FC);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    background-color: rgba(223, 227, 252, 0.8549019608);
    border-radius: 111px;
    padding: 8px 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.heading9 span.span img {
    margin-right: 3px;
    margin-top: -2px;
}

.heading9 h2 {
    color: var(--Text-Color, #101022);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    /* 118.182% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading9 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .heading9 h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

/*============================
++++PAGE-PROGRESS-SATRT+++++
=============================*/
.blok:nth-of-type(odd) {
    background-color: white;
}

.blok:nth-of-type(even) {
    background-color: black;
}

/* #Progress
================================================== */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
}

.progress-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: #03256c;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #03256c;
    /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/*============================
++++PAGE-PROGRESS-END+++++
=============================*/
.progress-wrap.progress-wrap2 {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.267);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.progress-wrap2.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
    color: rgb(255, 255, 255);
}

.progress-wrap.progress-wrap2::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: #f7f7f7;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap.progress-wrap2:hover::after {
    opacity: 0;
}

.progress-wrap.progress-wrap2::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap.progress-wrap2:hover::before {
    opacity: 1;
}

.progress-wrap.progress-wrap2 svg path {
    fill: none;
}

.progress-wrap.progress-wrap2 svg.progress-circle path {
    stroke: #ffffff;
    /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.video-action-btn1 {
    display: flex;
    align-items: center;
}

.video-action-btn1 .video-play-button {
    position: relative;
    z-index: 10;
    margin: 0px 25px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

@media (max-width: 767px) {
    .video-action-btn1 .video-play-button {
        margin: 0px 30px 0px 0px;
    }
}

.video-action-btn1 .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3764705882);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-action-btn1 .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms;
}

.video-action-btn1 .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-action-btn1 .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: 14px;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-radius: 4px;
    border-left: 13px solid #7949FF;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-action-btn1 .hero-button1 {
    display: flex;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 767px) {
    .video-action-btn1 .hero-button1 {
        margin-top: 20px;
    }
}

.video-action-btn1 .hero7-all-buttons {
    display: flex;
    align-items: center;
}

.video-action-btn1 .video-btn-pera {
    margin-left: -24px;
}

.video-action-btn1 .video-btn-pera p {
    color: var(--Home-Page-2-Color-White-Color, #FFF) !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 18px;
    /* 100% */
    text-transform: capitalize;
}

.section-padding {
    padding: 100px 0;
}

/*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
.blog1 .blog-box {
    margin-top: 30px;
    transition: all 0.4s;
}

.blog1 .blog-box .blog-image {
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
    transition: all 0.4s;
}

.blog1 .blog-box .blog-image img {
    width: 100%;
    transition: all 0.4s;
}

.blog1 .blog-box .headding1 {
    padding: 24px;
    position: relative;
}

.blog1 .blog-box .headding1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0px 0px 4px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(111deg, #FFF -1744.04%, rgba(255, 255, 255, 0) 109.54%);
    z-index: -1;
}

.blog1 .blog-box .headding1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 164px;
    width: 175px;
    margin-left: -88px;
    margin-top: -117px;
    z-index: -2;
    border-radius: 300px;
    background: var(--Project-Management-Color-Main-Color, #603BF3);
    filter: blur(107px);
    opacity: 0;
    transition: all 0.4s;
}

.blog1 .blog-box .headding1 a.date {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
    /* 100% */
    display: inline-block;
    margin-bottom: 16px;
}

.blog1 .blog-box .headding1 a.date img {
    margin-top: -5px;
    margin-right: 4px;
}

.blog1 .blog-box .headding1 h4 a {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs28));
    transition: all 0.4s;
}

.blog1 .blog-box .headding1 h4 a:hover {
    color: var(--qt-bg-bg-2);
    transition: all 0.4s;
}

.blog1 .blog-box .headding1 a.learn {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs16);
    letter-spacing: -0.16px;
    display: inline-block;
    transition: all 0.4s;
}

.blog1 .blog-box .headding1 a.learn span {
    display: inline-block;
    transform: rotate(-45deg);
    transition: all 0.4s;
}

.blog1 .blog-box .headding1 a.learn:hover span {
    margin-left: 5px;
    transition: all 0.4s;
}

.blog1 .blog-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
}

.blog1 .blog-box:hover .blog-image img {
    transform: scale(1.1) rotate(2deg);
    transition: all 0.4s;
}

.blog1 .blog-box:hover .headding1::before {
    opacity: 1;
    transition: all 0.4s;
}

.blog1 .blog-box.active .headding1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 164px;
    width: 175px;
    margin-left: -88px;
    margin-top: -117px;
    z-index: -2;
    border-radius: 300px;
    background: var(--Project-Management-Color-Main-Color, #603BF3);
    filter: blur(107px);
    opacity: 1;
    transition: all 0.4s;
}

.blog3 .blog-boxs .blog-single-box {
    background-color: var(--qt-bg-bg-9);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog3 .blog-boxs .blog-single-box {
        margin-bottom: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .blog3 .blog-boxs .blog-single-box {
        margin-bottom: 0;
        margin-top: 40px;
        display: block;
    }

    .blog3 .blog-boxs .blog-single-box img {
        width: 100%;
    }
}

.blog3 .blog-boxs .blog-single-box .headding {
    padding-left: 20px;
}

@media (max-width: 767px) {
    .blog3 .blog-boxs .blog-single-box .headding {
        padding-top: 20px;
    }
}

.blog3 .blog-boxs .blog-single-box .headding h4 a {
    font-size: var(--f-fs-font-fs22);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    transition: all 0.4s;
}

.blog3 .blog-boxs .blog-single-box .headding h4 a:hover {
    color: var(--qt-bg-bg-8);
    transition: all 0.4s;
}

.blog3 .blog-boxs .blog-single-box .headding p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    color: var(--qt-text-p-text3);
    padding: 16px 0px 24px 0px;
}

.blog3 .blog-boxs .blog-single-box .headding a.learn {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-bg-bg-8);
}

.blog3 .blog-boxs .blog-single-box .headding a.learn span {
    display: inline-block;
    transform: rotate(-45deg);
}

.blog2 .blog-box {
    margin-top: 30px;
}

.blog2 .blog-box .image {
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
}

.blog2 .blog-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog2 .blog-box .headding {
    background-color: #fff;
    padding: 24px;
}

.blog2 .blog-box .headding .tags a {
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
}

.blog2 .blog-box .headding .tags a img {
    margin-top: -3px;
    margin-right: 3px;
}

.blog2 .blog-box .headding .tags a:nth-child(1) {
    margin-right: 30px;
}

.blog2 .blog-box .headding h4 a {
    color: #17133D;
    font-weight: var(--f-fw-semibold);
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    display: inline-block;
    padding: 16px 0px 20px 0px;
    transition: all 0.4s;
}

.blog2 .blog-box .headding h4 a:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog2 .blog-box .headding p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    color: var(--qt-text-p-text2);
}

.blog2 .blog-box .headding a.learn {
    display: inline-block;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: #17133D;
    margin-top: 24px;
    transition: all 0.4s;
}

.blog2 .blog-box .headding a.learn:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog2 .blog-box .headding a.learn span {
    display: inline-block;
    font-size: 14px;
}

.blog2 .blog-box:hover .image img {
    transform: scale(1.1) rotate(3deg);
    transition: all 0.2s;
}

.blog2.blog5 {
    position: relative;
}

.blog2.blog5 .blog-box .headding h4 a:hover {
    color: #EA25F5;
}

.blog2.blog5 .blog-box .headding .learn:hover {
    color: #EA25F5;
}

.post-area .post-left-area {
    position: relative;
    height: 475px;
    margin-top: 60px;
}

.post-area .post-left-area .image1 {
    text-align: start;
}

.post-area .post-left-area .image2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.post-area .post-left-area .image3 {
    position: absolute;
    top: -40px;
    left: -40px;
}

.post-area .big-img img {
    width: 100%;
}

.post-area .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .post-area .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .post-area .shape1 {
        display: none;
    }
}

.blog4 .blog4-single-box {
    margin-top: 30px;
}

.blog4 .blog4-single-box .image {
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
}

.blog4 .blog4-single-box .image img {
    width: 100%;
    border-radius: 4px 4px 0px 0px;
    transition: all 0.4s;
}

.blog4 .blog4-single-box .headding4 {
    background-color: var(--qt-text-h-text1);
    padding: 24px 20px;
    box-shadow: 0 4px 48px 0 rgba(0, 0, 0, 0.09);
}

.blog4 .blog4-single-box .headding4 a.date {
    display: inline-block;
    color: var(--qt-text-h-text4);
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.blog4 .blog4-single-box .headding4 a.date img {
    margin-top: -4px;
}

.blog4 .blog4-single-box .headding4 h5 a {
    display: inline-block;
    font-size: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs28);
    color: var(--qt-text-h-text4);
    padding: 16px 0px 12px 0px;
    transition: all 0.4s;
}

.blog4 .blog4-single-box .headding4 h5 a:hover {
    color: var(--qt-bg-bg-15);
    transition: all 0.4s;
}

.blog4 .blog4-single-box .headding4 a.learn {
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    display: inline-block;
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text4);
    margin-top: 24px;
    transition: all 0.4s;
}

.blog4 .blog4-single-box .headding4 a.learn:hover {
    color: var(--qt-bg-bg-15);
    transition: all 0.4s;
}

.blog4 .blog4-single-box:hover .image img {
    transition: all 0.4s;
    transform: rotate(4deg) scale(1.1);
}

.blog4 .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog4 .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .blog4 .shape1 {
        display: none;
    }
}

.blog-sce1 .blog-big-sec {
    background-color: var(--qt-text-h-text1);
}

.blog-sce1 .blog-big-sec .image-main {
    margin-left: -15px;
}

.blog-sce1 .blog-big-sec .image-main img {
    width: 100%;
}

.blog-sce1 .blog-big-sec .headding2 {
    padding: 24px;
}

.blog-sce1 .blog-big-sec .headding2 h3 a {
    line-height: var(--f-fs-font-fs38);
    font-size: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    display: inline-block;
    padding-bottom: 16px;
}

.blog-sce1 .blog-big-sec .headding2 .bottom-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.blog-sce1 .blog-big-sec .headding2 .bottom-area .autor-area {
    display: flex;
    align-items: center;
}

.blog-sce1 .blog-big-sec .headding2 .bottom-area .autor-area .headding {
    padding-left: 20px;
    padding-bottom: 10px;
}

.blog-sce1 .blog-big-sec .headding2 .bottom-area .autor-area .headding h5 a {
    display: inline-block;
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
}

.blog-sce1 .blog-big-sec .headding2 .button a {
    display: inline-block;
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    color: var(--qt-text-h-text1);
    padding: 14px;
    border-radius: 4px;
    background-color: var(--qt-bg-bg-7);
}

.blog-sce1 .blog-box {
    margin-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-sce1 .blog-box {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-sce1 .blog-box {
        margin-top: 30px;
    }
}

.blog-sce1 .blog-box .image {
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
}

.blog-sce1 .blog-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog-sce1 .blog-box .headding {
    background-color: var(--qt-text-h-text1);
    padding: 24px;
}

.blog-sce1 .blog-box .headding .tags a {
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
}

.blog-sce1 .blog-box .headding .tags a img {
    margin-top: -3px;
    margin-right: 3px;
}

.blog-sce1 .blog-box .headding .tags a:nth-child(1) {
    margin-right: 30px;
}

.blog-sce1 .blog-box .headding h4 a {
    color: #17133D;
    font-weight: var(--f-fw-semibold);
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs28);
    display: inline-block;
    padding: 16px 0px 20px 0px;
    transition: all 0.4s;
}

.blog-sce1 .blog-box .headding h4 a:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog-sce1 .blog-box .headding p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    color: var(--qt-text-p-text2);
}

.blog-sce1 .blog-box .headding a.learn {
    display: inline-block;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: #17133D;
    margin-top: 24px;
    transition: all 0.4s;
}

.blog-sce1 .blog-box .headding a.learn:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog-sce1 .blog-box .headding a.learn span {
    display: inline-block;
    font-size: 14px;
}

.blog-sce1 .blog-box:hover .image img {
    transform: scale(1.1) rotate(3deg);
    transition: all 0.2s;
}

.blog-area-all .blog-box {
    margin-top: 30px;
}

.blog-area-all .blog-box .image {
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
}

.blog-area-all .blog-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog-area-all .blog-box .headding {
    background-color: #fff;
    padding: 24px;
}

.blog-area-all .blog-box .headding .tags a {
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
}

.blog-area-all .blog-box .headding .tags a img {
    margin-top: -3px;
    margin-right: 3px;
}

.blog-area-all .blog-box .headding .tags a:nth-child(1) {
    margin-right: 30px;
}

.blog-area-all .blog-box .headding h4 a {
    color: #17133D;
    font-weight: var(--f-fw-semibold);
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    display: inline-block;
    padding: 16px 0px 20px 0px;
    transition: all 0.4s;
}

.blog-area-all .blog-box .headding h4 a:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog-area-all .blog-box .headding p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    color: var(--qt-text-p-text2);
}

.blog-area-all .blog-box .headding a.learn {
    display: inline-block;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    color: #17133D;
    margin-top: 24px;
    transition: all 0.4s;
}

.blog-area-all .blog-box .headding a.learn:hover {
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog-area-all .blog-box .headding a.learn span {
    display: inline-block;
    font-size: 14px;
}

.blog-area-all .blog-box:hover .image img {
    transform: scale(1.1) rotate(3deg);
    transition: all 0.2s;
}

.blog-area-all .tabs-buttons .nav {
    display: flex;
    justify-content: end;
}

.blog-area-all .tabs-buttons .nav li button {
    padding: 16px 24px;
    border: none;
    border-radius: 4px;
    background-color: var(--qt-text-h-text1);
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    margin: 0px 6px;
    transition: all 0.4s;
}

.blog-area-all .tabs-buttons .nav li button.active {
    background-color: var(--qt-bg-bg-7);
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

/*Pagination*/
.theme-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.theme-pagination li {
    display: inline-block;
}

.theme-pagination li a {
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    background-color: #fff;
    margin: 0 4px;
    transition: all 0.3s;
    display: block;
    color: #000;
    border-radius: 50%;
}

.recent-post-content {
    padding-right: 20px;
}

.theme-pagination li a:hover,
.theme-pagination li a.active {
    border-radius: 50%;
    background: var(--qt-bg-bg-7);
    box-shadow: 0px 4px 10px 0px rgba(122, 120, 198, 0.2);
    transition: all 0.3s;
    color: #ffffff;
}

.sidebar-single-box {
    background-color: var(--qt-text-h-text1);
    padding: 32px 24px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.sidebar-single-box h3 {
    font-size: var(--f-fs-font-fs28);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    padding-bottom: 12px;
}

.sidebar-single-box .sidebar-list ul li a {
    display: inline-block;
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    padding: 24px 24px 24px 28px;
    border-radius: 4px;
    margin-top: 20px;
    background-color: #F8F7FF;
    position: relative;
    z-index: 1;
}

.sidebar-single-box .sidebar-list ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px;
    background-color: var(--qt-bg-bg-7);
    border-radius: 4px;
    z-index: -2;
}

.sidebar-single-box .sidebar-list ul li a.active {
    color: var(--qt-text-h-text1);
}

.sidebar-single-box .sidebar-list ul li a.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--qt-bg-bg-7);
    border-radius: 4px;
}

.blog-border {
    background-color: #E4E7F1;
    height: 2px;
    width: 100%;
}

.blog-details-all .details-box .image img {
    width: 100%;
}

.blog-details-all .details-box .all-tags a {
    display: inline-block;
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    position: relative;
    margin-left: 40px;
    margin-top: 10px;
}

.blog-details-all .details-box .all-tags a img {
    margin-top: -3px;
    margin-right: 3px;
}

.blog-details-all .details-box .all-tags a::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -20px;
    height: 32px;
    width: 1px;
    background-color: #DFE1EC;
}

.blog-details-all .details-box .all-tags a.tag {
    display: inline-block;
    color: var(--qt-bg-bg-7);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: var(--f-fw-medium);
    margin-bottom: 16px;
    background-color: #E8E9FF;
    margin-left: 40px;
    position: relative;
    margin-top: 20px;
    margin-left: 0;
}

.blog-details-all .details-box .all-tags a.tag::after {
    display: none;
}

.blog-details-all .details-box .headding2 h5 {
    font-size: var(--f-fs-font-fs32);
    line-height: var(--f-fs-font-fs42);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
}

.blog-details-all .details-box .headding2 .text-list li {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    padding-top: 20px;
}

.blog-details-all .details-box .headding2 .text-list li span {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    background-color: #D7D2FD;
    color: var(--qt-bg-bg-7);
    margin-right: 6px;
    margin-top: -2px;
}

.blog-details-all .details-box .comment-area {
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    padding: 32px;
    position: relative;
    margin: 48px 0px;
}

.blog-details-all .details-box .comment-area p {
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs34);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    font-style: italic;
}

.blog-details-all .details-box .comment-area .icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.blog-details-all .social-area-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-all .social-area-all {
        display: block;
    }
}

@media (max-width: 767px) {
    .blog-details-all .social-area-all {
        display: block;
    }
}

.blog-details-all .social-area-all .tags a.tag {
    display: inline-block;
    color: var(--qt-bg-bg-7);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: var(--f-fw-medium);
    margin-bottom: 16px;
    background-color: #E8E9FF;
    margin-left: 40px;
    position: relative;
    margin-top: 20px;
    margin-left: 0;
}

.blog-details-all .social-area-all .tags a.date {
    display: inline-block;
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    position: relative;
    margin-left: 20px;
    margin-top: 10px;
}

.blog-details-all .social-area-all .tags a.date img {
    margin-top: -3px;
    margin-right: 3px;
}

.blog-details-all .social-area-all .social-icons ul li {
    display: inline-block;
}

.blog-details-all .social-area-all .social-icons ul li a {
    display: inline-block;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    background-color: #E6E5FE;
    color: var(--qt-bg-bg-7);
    margin-left: 6px;
    transition: all 0.4s;
}

.blog-details-all .social-area-all .social-icons ul li a:hover {
    color: var(--qt-text-h-text1);
    background-color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.blog-details-all .social-area-all .social-icons ul li.text {
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
}

.blog-details-all .qustion-box {
    background-color: var(--qt-bg-bg-7);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    align-items: center;
}

.blog-details-all .qustion-box .image {
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    text-align: center;
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    margin-right: 16px;
}

.blog-details-all .qustion-box .pera p {
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text1);
}

.blog-details-all .qustion-box .pera p a {
    display: inline-block;
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text1);
    text-decoration: underline;
}

.blog8 .blog-box {
    margin-top: 30px;
}

.blog8 .blog-box .image {
    border-radius: 4px 4px 0px 0px;
    overflow: hidden;
}

.blog8 .blog-box .image img {
    width: 100%;
    transition: all 0.4s;
}

.blog8 .blog-box .heading {
    border-radius: 0px 0px 4px 4px;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    padding: 24px;
}

.blog8 .blog-box .heading span.title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    text-transform: uppercase;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog8 .blog-box .heading h4 a {
    display: inline-block;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    /* 141.667% */
    text-decoration-line: underline;
    padding: 16px 0px;
}

.blog8 .blog-box .heading .learn {
    display: inline-block;
    color: var(--White-Color, #FFF);
    font-size: 16px;
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 100% */
    text-transform: uppercase;
    border-radius: 4px;
    padding: 18px 20px 18px 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
    margin-top: 6px;
}

.blog8 .blog-box .heading .learn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-bottom: 4px solid var(--Home-Page-8-Stroke-Linner, #652AC4);
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    z-index: -2;
    transition: all 0.4s;
}

.blog8 .blog-box .heading .learn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-bottom: 4px solid var(--Home-Page-8-Stroke-Linner, #652AC4);
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #EA25F5 -17.5%, #662FFF 100%));
    z-index: -1;
    transition: all 0.4s;
}

.blog8 .blog-box .heading .learn:hover {
    transition: all 0.4s;
    color: #fff;
}

.blog8 .blog-box .heading .learn:hover::before {
    width: 100%;
    transition: all 0.4s;
}

.blog8 .blog-box:hover {
    transition: all 0.4;
}

.blog8 .blog-box:hover .image img {
    transition: all 0.4s;
    transform: scale(1.1) rotate(2deg);
}

/*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/
.footer1 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--qt-border-border-3);
    padding: 80px 0px 48px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer1 .footer-icon-box-all {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer1 .footer-icon-box-all {
        display: block;
        margin-top: 70px;
    }
}

.footer1 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer1 .footer-icon-box-all .footer-icon-box {
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .footer1 .footer-icon-box-all .footer-icon-box {
        padding-bottom: 20px;
    }
}

.footer1 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    /* 100% */
}

.footer1 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: var(--qt-border-border-3);
}

.footer1 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer1 .single-footer-items h3 {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer1 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer1 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer1 .single-footer-items .menu-list li a {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 14px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer1 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
}

.footer1 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer1 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer1 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text1);
    position: relative;
}

@media (max-width: 767px) {
    .footer1 .single-footer-items .social-icons li a {
        margin-bottom: 8px;
    }
}

.footer1 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: var(--qt-bg-bg-12);
}

.footer1 .single-footer-items .social-icons li a:hover::after {
    transition: all 0.4s;
    background: linear-gradient(95deg, #603BF3 0.75%, #8F00FF 101.34%);
}

.footer1 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-3);
}

@media (max-width: 767px) {
    .footer1 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer1 .copyright-area .coppyright a {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer1 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer1 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer1 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-3);
}

.footer1 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer1 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer2 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE1EC;
    padding: 80px 0px 48px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer2 .footer-icon-box-all {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer2 .footer-icon-box-all {
        display: block;
        margin-top: 70px;
    }
}

.footer2 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer2 .footer-icon-box-all .footer-icon-box {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer2 .footer-icon-box-all .footer-icon-box {
        padding-top: 20px;
    }
}

.footer2 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    margin-bottom: 0;
}

.footer2 .footer-icon-box-all .footer-icon-box .icon img {
    filter: brightness(0);
}

.footer2 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: #DFE1EC;
}

.footer2 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer2 .single-footer-items h3 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer2 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer2 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer2 .single-footer-items .menu-list li a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 14px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer2 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: var(--qt-bg-bg-15);
}

.footer2 .single-footer-items .menu-list li a:hover {
    color: var(--qt-bg-bg-15);
    transition: all 0.4s;
}

.footer2 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer2 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer2 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text3);
    position: relative;
}

@media (max-width: 767px) {
    .footer2 .single-footer-items .social-icons li a {
        margin-bottom: 8px;
    }
}

.footer2 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: #ECE9FE;
}

.footer2 .single-footer-items .social-icons li a:hover {
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.footer2 .single-footer-items .social-icons li a:hover::after {
    transition: all 0.4s;
    background: var(--qt-bg-bg-15);
}

.footer2 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-2);
}

.footer2 .copyright-area .logo {
    width: 150px;
}

@media (max-width: 767px) {
    .footer2 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer2 .copyright-area .coppyright a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer2 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer2 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer2 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-2);
}

.footer2 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer2 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer2 .footer-shape2 {
    position: absolute;
    bottom: 200px;
    left: 0;
    z-index: -1;
}

.footer3 {
    padding-top: 100px;
}

.footer3 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE1EC;
    padding: 80px 0px 48px 0px;
}

.footer3 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

.footer3 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    /* 100% */
}

.footer3 .footer-icon-box-all .footer-icon-box .icon img {
    filter: brightness(0);
}

.footer3 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: #DFE1EC;
}

.footer3 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer3 .single-footer-items h3 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer3 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer3 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer3 .single-footer-items .menu-list li a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 12px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer3 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: var(--qt-bg-bg-8);
}

.footer3 .single-footer-items .menu-list li a:hover {
    color: var(--qt-bg-bg-8);
    transition: all 0.4s;
}

.footer3 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer3 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer3 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text3);
    position: relative;
}

.footer3 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: #FFF0F0;
}

.footer3 .single-footer-items .social-icons li a:hover {
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.footer3 .single-footer-items .social-icons li a:hover::after {
    transition: all 0.4s;
    background: var(--qt-bg-bg-8);
}

.footer3 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-2);
}

.footer3 .copyright-area .logo {
    width: 150px;
}

@media (max-width: 767px) {
    .footer3 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer3 .copyright-area .coppyright a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer3 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer3 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer3 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-2);
}

.footer3 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer3 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer3 .subscribe-area {
    padding: 24px;
    border-radius: 4px;
    margin-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer3 .subscribe-area {
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    .footer3 .subscribe-area {
        margin-bottom: 20px;
        margin-right: 0px;
    }
}

.footer3 .subscribe-area h5 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 10px;
}

.footer3 .subscribe-area p {
    color: var(--qt-text-p-text4);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-medium);
    transition: all 0.4s;
}

.footer3 .subscribe-area .input-area {
    margin-top: 24px;
    position: relative;
}

.footer3 .subscribe-area .input-area input {
    border-radius: 4px;
    border: none;
    padding: 19px;
    width: 100%;
}

.footer3 .subscribe-area .input-area input:focus {
    outline: none;
}

.footer3 .subscribe-area .input-area input::-moz-placeholder {
    color: var(--qt-text-p-text4);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs26);
    font-weight: var(--f-fw-medium);
}

.footer3 .subscribe-area .input-area input::placeholder {
    color: var(--qt-text-p-text4);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs26);
    font-weight: var(--f-fw-medium);
}

.footer3 .subscribe-area .input-area .button {
    position: absolute;
    right: 5px;
    top: 5px;
}

.footer5 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE1EC;
    padding: 80px 0px 48px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer5 .footer-icon-box-all {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer5 .footer-icon-box-all {
        display: block;
        margin-top: 0px;
    }
}

.footer5 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer5 .footer-icon-box-all .footer-icon-box {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer5 .footer-icon-box-all .footer-icon-box {
        padding-top: 20px;
    }
}

.footer5 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    /* 100% */
}

.footer5 .footer-icon-box-all .footer-icon-box .icon img {
    filter: brightness(0);
}

.footer5 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: #DFE1EC;
}

.footer5 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer5 .single-footer-items h3 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer5 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer5 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer5 .single-footer-items .menu-list li a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 14px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer5 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: #EA25F5;
}

.footer5 .single-footer-items .menu-list li a:hover {
    color: #EA25F5;
    transition: all 0.4s;
}

.footer5 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer5 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer5 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text3);
    position: relative;
}

@media (max-width: 767px) {
    .footer5 .single-footer-items .social-icons li a {
        margin-bottom: 7px;
    }
}

.footer5 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background: linear-gradient(90deg, rgba(102, 47, 255, 0.1) -17.5%, rgba(234, 37, 245, 0.1) 100%);
}

.footer5 .single-footer-items .social-icons li a:hover {
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.footer5 .single-footer-items .social-icons li a:hover::after {
    transition: all 0.4s;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
}

.footer5 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-2);
}

.footer5 .copyright-area .logo {
    width: 150px;
}

@media (max-width: 767px) {
    .footer5 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer5 .copyright-area .coppyright a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer5 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer5 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer5 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-2);
}

.footer5 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer5 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer5 .footer-shape2 {
    position: absolute;
    bottom: 200px;
    left: 0;
    z-index: -1;
}

.footer6 {
    padding-top: 100px;
}

.footer6 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE1EC;
    padding: 80px 0px 48px 0px;
}

.footer6 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

.footer6 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    /* 100% */
}

.footer6 .footer-icon-box-all .footer-icon-box .icon img {
    filter: brightness(0);
}

.footer6 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: #DFE1EC;
}

.footer6 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer6 .single-footer-items h3 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer6 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer6 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer6 .single-footer-items .menu-list li a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 12px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer6 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: #7846FF;
}

.footer6 .single-footer-items .menu-list li a:hover {
    color: #7846FF;
    transition: all 0.4s;
}

.footer6 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer6 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer6 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text3);
    position: relative;
}

.footer6 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    opacity: 0.2;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
}

.footer6 .single-footer-items .social-icons li a:hover {
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.footer6 .single-footer-items .social-icons li a:hover::after {
    opacity: 1;
    transition: all 0.4s;
    background: var(--Main-Color, linear-gradient(180deg, #7846FF 0%, #70A8FF 100%));
}

.footer6 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-2);
}

.footer6 .copyright-area .logo {
    width: 150px;
}

@media (max-width: 767px) {
    .footer6 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer6 .copyright-area .coppyright a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer6 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer6 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer6 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-2);
}

.footer6 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer6 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer6 .subscribe-area {
    padding: 24px;
    border-radius: 4px;
    margin-right: 40px;
    position: relative;
}

.footer6 .subscribe-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/cta6-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    z-index: -7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer6 .subscribe-area {
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    .footer6 .subscribe-area {
        margin-bottom: 20px;
        margin-right: 0px;
    }
}

.footer6 .subscribe-area h5 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 100% */
    padding-bottom: 10px;
}

.footer6 .subscribe-area p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 162.5% */
    transition: all 0.4s;
}

.footer6 .subscribe-area .input-area {
    margin-top: 24px;
    position: relative;
}

.footer6 .subscribe-area .input-area input {
    border-radius: 111px;
    border: none;
    padding: 19px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.footer6 .subscribe-area .input-area input:focus {
    outline: none;
}

.footer6 .subscribe-area .input-area input::-moz-placeholder {
    color: var(--qt-text-p-text4);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs26);
    font-weight: var(--f-fw-medium);
}

.footer6 .subscribe-area .input-area input::placeholder {
    color: var(--qt-text-p-text4);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs26);
    font-weight: var(--f-fw-medium);
}

.footer6 .subscribe-area .input-area .button {
    position: absolute;
    right: 6px;
    top: 6px;
    z-index: 3;
}

.footer7 {
    position: relative;
}

.footer7 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--qt-border-border-3);
    padding: 80px 0px 48px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer7 .footer-icon-box-all {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer7 .footer-icon-box-all {
        display: block;
        margin-top: 70px;
    }
}

.footer7 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer7 .footer-icon-box-all .footer-icon-box {
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .footer7 .footer-icon-box-all .footer-icon-box {
        padding-bottom: 20px;
    }
}

.footer7 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    /* 100% */
}

.footer7 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: var(--qt-border-border-3);
}

.footer7 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer7 .single-footer-items h3 {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer7 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer7 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer7 .single-footer-items .menu-list li a {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 14px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer7 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
}

.footer7 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer7 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer7 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text1);
    position: relative;
}

@media (max-width: 767px) {
    .footer7 .single-footer-items .social-icons li a {
        margin-top: 7px;
    }
}

.footer7 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: var(--qt-bg-bg-12);
}

.footer7 .single-footer-items .social-icons li a:hover::after {
    transition: all 0.4s;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
}

.footer7 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-3);
}

@media (max-width: 767px) {
    .footer7 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer7 .copyright-area .coppyright a {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer7 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer7 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer7 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-3);
}

.footer7 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer7 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer7::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    z-index: -6;
}

.footer8 .footer-icon-box-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE1EC;
    padding: 80px 0px 48px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer8 .footer-icon-box-all {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer8 .footer-icon-box-all {
        display: block;
        margin-top: 70px;
    }
}

.footer8 .footer-icon-box-all .footer-icon-box {
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer8 .footer-icon-box-all .footer-icon-box {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer8 .footer-icon-box-all .footer-icon-box {
        padding-top: 20px;
    }
}

.footer8 .footer-icon-box-all .footer-icon-box .headding p {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    padding-left: 10px;
    font-weight: var(--f-fw-blod);
    line-height: var(var(--f-fs-font-fs18));
    /* 100% */
}

.footer8 .footer-icon-box-all .footer-icon-box .icon img {
    filter: brightness(0);
}

.footer8 .footer-icon-box-all .footer-icon-box::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -70px;
    width: 2px;
    height: 28px;
    background-color: #DFE1EC;
}

.footer8 .footer-icon-box-all .footer-icon-box:nth-last-child(1)::after {
    display: none;
}

.footer8 .single-footer-items h3 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer8 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer8 .single-footer-items h3 {
        padding-bottom: 10px;
        padding-top: 30px;
    }
}

.footer8 .single-footer-items .menu-list li a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 14px 0px;
    position: relative;
    transition: all 0.4s;
}

.footer8 .single-footer-items .menu-list li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    height: 2px;
    width: 0%;
    transition: all 0.4s;
    background-color: #EA25F5;
}

.footer8 .single-footer-items .menu-list li a:hover {
    color: #EA25F5;
    transition: all 0.4s;
}

.footer8 .single-footer-items .menu-list li a:hover::after {
    width: 100%;
    transition: all 0.4s;
}

.footer8 .single-footer-items .social-icons li {
    display: inline-block;
    padding: 0px 3px;
}

.footer8 .single-footer-items .social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--qt-text-h-text3);
    position: relative;
}

.footer8 .single-footer-items .social-icons li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: #FAF3FF;
}

.footer8 .single-footer-items .social-icons li a:hover {
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.footer8 .single-footer-items .social-icons li a:hover::after {
    transition: all 0.4s;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
}

.footer8 .copyright-area {
    padding: 16px 0;
    border-top: 1px solid var(--qt-border-border-2);
}

.footer8 .copyright-area .logo {
    width: 150px;
}

@media (max-width: 767px) {
    .footer8 .copyright-area .coppyright {
        margin-top: 20px;
    }
}

.footer8 .copyright-area .coppyright a {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .footer8 .copyright-area .coppyright a {
        display: block;
        text-align: start;
        padding: 10px 0px;
    }

    .footer8 .copyright-area .coppyright a::after {
        display: none;
    }
}

.footer8 .copyright-area .coppyright a::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    top: 0;
    left: -5px;
    background-color: var(--qt-border-border-2);
}

.footer8 .copyright-area .coppyright a:nth-child(1)::after {
    display: none;
}

.footer8 .footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer8 .footer-shape2 {
    position: absolute;
    bottom: 200px;
    left: 0;
    z-index: -1;
}

/*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  HEADER AREA CSS
 ::::::::::::::::::::::::::
 */
.header-area.header-area2 .main-menu-ex ul#list-example li a.active {
    color: #6A5CFF;
}

.header-area.header-area1 .main-menu-ex ul#list-example li a.active {
    color: #6A5CFF;
}

.header-area.header-area3 .main-menu-ex ul#list-example li a.active {
    color: #FF6A6A;
}

.header-area.header-area4 .main-menu-ex ul#list-example li a.active {
    color: #4C5EEC;
}

.header-area.header-area5 .main-menu-ex ul#list-example li a.active {
    color: #9205F6;
}

.header-area.header-area6 .main-menu-ex ul#list-example li a.active {
    color: #000;
}

.header-area.header-area7 .main-menu-ex ul#list-example li a.active {
    color: #000;
}

.header-area.header-area8 .main-menu-ex ul#list-example li a.active {
    color: #C500F3;
}

.header-area.header-area9 .main-menu-ex ul#list-example li a.active {
    color: #4C5EEC;
}

/*
 ::::::::::::::::::::::::::
  HEADER AREA CSS
 ::::::::::::::::::::::::::
 */
.mobile-header .mobile-header-elements .mobile-logo img {
    width: 126px;
}

.mobile-sidebar.mobile-sidebar3 {
    background-color: var(--qt-bg-bg-8) !important;
}

.mobile-sidebar.mobile-sidebar1 {
    background-color: var(--qt-bg-bg-3) !important;
}

.mobile-sidebar.mobile-sidebar4 {
    background-color: var(--qt-bg-bg-7) !important;
}

.mobile-sidebar {
    background-color: var(--qt-bg-bg-7);
}

.mobile-sidebar .logo-m {
    margin-top: -30px;
    margin-bottom: 20px;
}

.mobile-sidebar .theme-btn3 {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    margin-left: 0;
}

.mobile-sidebar .contact-infos {
    margin-top: 30px;
}

.mobile-sidebar .contact-infos h3 {
    font-size: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text1);
    padding-bottom: 12px;
}

.mobile-sidebar .contact-infos .box {
    display: flex;
    align-items: start;
    padding-top: 12px;
}

.mobile-sidebar .contact-infos .box .icon span {
    display: inline-block;
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs18);
    margin-right: 12px;
}

.mobile-sidebar .contact-infos .box .pera a {
    display: inline-block;
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-medium);
    color: rgba(255, 255, 255, 0.8705882353);
}

.mobile-sidebar .contact-infos .icon-list {
    padding-top: 10px;
}

.mobile-sidebar .contact-infos .icon-list li {
    display: inline-block;
    padding: 0px 3px;
}

.mobile-sidebar .contact-infos .icon-list li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 20px;
    color: var(--qt-text-h-text3);
    position: relative;
}

.mobile-sidebar .contact-infos .icon-list li a::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: #ffffff;
}

.mobile-sidebar .contact-infos .icon-list li a:hover {
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.mobile-sidebar .contact-infos .icon-list li a:hover::after {
    transition: all 0.4s;
    background: var(--qt-bg-bg-8);
}

/*
 ::::::::::::::::::::::::::
  NAV MENU AREA CSS
 ::::::::::::::::::::::::::
 */

.header-area {
    padding: 4px 0;
    position: absolute;
    background: transparent;
    width: 100%;
    z-index: 999;
}

.site-logo {
    max-width: 130px;
    height: auto;
    display: flex;
    align-items: center;
}

.site-logo a {
    display: inline-block;
    position: relative;
    z-index: 9;
}

.header-area .header-elements {
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: space-between;
}

.header-area.header-area1 .header-elements .main-menu-ex {
    padding: 7px 24px;
    position: relative;
}

.header-area.header-area1 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(92deg, #FFF -2967.5%, rgba(255, 255, 255, 0) 199.15%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area1 .header-elements .main-menu-ex::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    height: 51px;
    margin-left: -97px;
    width: 143px;
    background-color: #603BF3;
    z-index: 1;
}

.header-area1.sticky .header-elements .main-menu-ex {
    padding: 7px 24px;
    position: relative;
}

.header-area1.sticky .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(92deg, #FFF -2967.5%, rgba(255, 255, 255, 0) 199.15%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area1.sticky .header-elements .main-menu-ex::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    height: 51px;
    margin-left: -97px;
    width: 143px;
    background-color: #603BF3;
    z-index: 1;
    filter: blur(40px);
}

/*
++++++++++++++++++++++++++++++++++
=========nav menu all ==========
+++++++++++++++++++++++++++++++++
*/
.header-area.header-area1 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.153);
    background: linear-gradient(105deg, #FFF -899.06%, rgba(96, 59, 243, 0.44) 152.98%);
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area1 .main-menu-ex ul li ul li ul {
    left: 200px;
}

.header-area.header-area1 .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text1);
}

.header-area.header-area1 .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area1 .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    width: 50px;
    left: 17px;
    opacity: 1;
}

.header-area.header-area1 .main-menu-ex ul li a {
    color: var(--qt-text-h-text1);
    font-size: 16px;
    display: block;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s;
}

.main-menu-ex li {
    display: inline-block;
}

.main-menu-ex li {
    position: relative;
    z-index: 9;
}

.main-menu-ex li li {
    display: block;
}

.main-menu-ex li>ul {
    opacity: 0;
    visibility: hidden;
    top: 60px;
    right: 0;
    transition: all 0.3s;
    transform: translateY(20px) rotateX(45deg);
}

.main-menu-ex li li>ul {
    left: 100%;
    right: auto;
}

.main-menu-ex li li:hover>ul {
    top: 0;
}

.main-menu-ex li:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 50px;
    transition: all 0.3s;
    z-index: 99;
    transform: translateY(0);
}

li.has-dropdown1 {
    position: relative;
}

li.has-dropdown1 span {
    position: absolute;
    right: 10px;
}

.header-area1.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(92deg, #FFF -2967.5%, rgba(255, 255, 255, 0) 199.15%);
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.header-area4.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border: 1px solid rgba(255, 255, 255, 0.145);
    background: #4C5EEC;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.header-area2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border: 1px solid rgba(255, 255, 255, 0.145);
    background: #F5F8FF;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.header-area3.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border: 1px solid rgba(255, 255, 255, 0.145);
    background: #F5F8FF;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.header-area5.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    background-image: url(../img/bg/cta5-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    padding: 0px 0px 6px 0px !important;
}

.header-area5.sticky .theme-btn7 {
    margin-top: 12px;
}

.header-area6.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.452);
    background-image: url(../img/bg/hero6-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    padding: 10px 0px !important;
}

.header-area7.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.452);
    background-image: url(../img/bg/hero7-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    padding: 0px 0px 0px 0px;
}

.header-area7.sticky .header-elements {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.header-area8.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.452);
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    padding: 0px 0px 0px 0px;
}

.header-area8.sticky .header-elements {
    background: none !important;
    border: none !important;
    padding-bottom: 12px;
}

.header-area9.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    z-index: 111;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border-bottom: 1px solid #F5F5FD;
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    padding: 10px 0px 10px 0px !important;
}

.header-area9.sticky .header-elements {
    background: none !important;
    border: none !important;
}

@keyframes fade-in-down {
    0% {
        transform: translate3d(0, -50px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fade-in-down {
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/*
++++++++++++++++++++++++++++++++++
==== =====nav menu all ====== ======
+++++++++++++++++++++++++++++++++
*/
/*
++++++++++++++++++++++++++++++++++
==== =====nav menu all 2 ====== ======
+++++++++++++++++++++++++++++++++
*/
.header-area.header-area1 .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -364px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #6A5CFF;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 8px;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #6A5CFF;
    transition: all 0.4s;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 4px;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 18%;
    right: 20%;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: linear-gradient(95deg, #623BF3 0.75%, #8F00FF 101.34%);
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: linear-gradient(95deg, #623BF3 0.75%, #8F00FF 101.34%);
}

.header-area.header-area1 .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area1 .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.153);
    background: linear-gradient(105deg, #FFF -899.06%, rgba(96, 59, 243, 0.44) 152.98%);
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area1 .main-menu-ex ul li ul li ul {
    left: 200px;
}

.header-area.header-area1 .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text1);
}

.header-area.header-area1 .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area1 .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    width: 50px;
    left: 17px;
    opacity: 1;
}

.header-area.header-area1 .main-menu-ex ul li a {
    color: var(--qt-text-h-text1);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.header-area.header-area1 .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area1 .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area2 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
}

.header-area.header-area2 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #06266105;
    border-radius: 210px;
    border: 1px solid #06266114;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -340px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #6A5CFF;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 8px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #6A5CFF;
    transition: all 0.4s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: -3px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 18%;
    right: 20%;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 111px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background-color: #5A65F5;
    border: 4px solid rgba(231, 232, 255, 0.7058823529);
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #5A65F5;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 4px solid rgba(106, 92, 255, 0.1098039216);
    background: #fff;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li ul {
    left: 190px;
    top: 10px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: rgba(23, 19, 61, 0.6862745098);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li a {
    color: var(--qt-text-h-text3);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area2 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area3 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
}

.header-area.header-area3 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 210px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -300px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #F65C6F;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 8px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #F65C6F;
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 4px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 18%;
    right: 20%;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #F65C6F;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #F65C6F;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 4px solid rgba(223, 219, 254, 0.5137254902);
    background: #fff;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li ul {
    left: 192px;
    top: 10px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: rgba(23, 19, 61, 0.6862745098);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a {
    color: var(--qt-text-h-text3);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area3 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

/*
++++++++++++++++++++++++++++++++++
==== =====nav menu all 2 ====== ======
+++++++++++++++++++++++++++++++++
*/
/*
 ++++++++++++++++++++++++++++++++++
 ==== =====nav menu all 4 ===========
 +++++++++++++++++++++++++++++++++
 */
.header-area.header-area .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 3px solid rgba(255, 255, 255, 0.153);
    background: linear-gradient(105deg, #262c54 -899.06%, rgb(38, 44, 84) 152.98%);
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area .main-menu-ex ul li ul li ul {
    left: 195px;
    top: 10px;
}

.header-area.header-area .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text1);
}

.header-area.header-area .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area .main-menu-ex ul li ul li a:hover::after {
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.header-area.header-area .main-menu-ex ul li a {
    color: var(--qt-text-h-text1);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.header-area.header-area4 .header-elements {
    background-color: rgba(255, 255, 255, 0.137) !important;
    z-index: 8;
    position: relative;
    padding: 10px 13px;
    border-radius: 111px;
}

.header-area.header-area4 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
    background: transparent;
}

.header-area.header-area4 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(236, 233, 254, 0);
    border-radius: 210px;
    border: 1px solid rgba(225, 223, 254, 0);
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -300px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 8px;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #797FED;
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 4px;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 18%;
    right: 20%;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #797FED;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #797FED;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area4 .header-elements .main-menu-ex ul li a {
    color: #ffffff;
}

.header-area.header-area4 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area6 .header-elements {
    z-index: 8;
    position: relative;
}

.header-area.header-area6 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
    background: transparent;
    border-radius: 210px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.header-area.header-area6 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(236, 233, 254, 0);
    border-radius: 210px;
    border: 1px solid rgba(225, 223, 254, 0);
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -325px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 15px;
    padding: 0 !important;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #7533F9;
    transition: all 0.4s;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 7px;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 15%;
    right: 20%;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #7533F9;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #7533F9;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area6 .header-elements .main-menu-ex ul li a {
    color: #ffffff;
    margin: 0px 5px;
}

.header-area.header-area6 .header-elements .main-menu-ex ul li li a {
    background: none;
}

.header-area.header-area7 .header-elements {
    border-radius: 126px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 8px 20px;
    z-index: 8;
    position: relative;
}

.header-area.header-area7 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
    background: transparent;
    border-radius: 210px;
}

.header-area.header-area7 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(236, 233, 254, 0);
    border-radius: 210px;
    border: 1px solid rgba(225, 223, 254, 0);
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -325px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 15px;
    padding: 0 !important;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #7533F9;
    transition: all 0.4s;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 7px;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 15%;
    right: 20%;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #7533F9;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #7533F9;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area7 .header-elements .main-menu-ex ul li a {
    color: #ffffff;
    margin: 0px 5px;
}

.header-area.header-area7 .header-elements .main-menu-ex ul li li a {
    background: none;
}

.header-area.header-area7 .header-elements .header7-btn {
    margin-top: 6px;
}

.header-area.header-area5 {
    padding-top: 13px;
}

.header-area.header-area5 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
}

.header-area.header-area5 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 210px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -515px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 15px;
    padding: 0 !important;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #A700F5;
    transition: all 0.4s;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 7px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 15%;
    right: 20%;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #A700F5;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #A700F5;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 4px solid rgba(223, 219, 254, 0.5137254902);
    background: #fff;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li ul li ul {
    left: 192px;
    top: 10px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
    border: none;
    background: none;
    padding: 10px 15px;
    margin: 0;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: rgba(23, 19, 61, 0.6862745098);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li a {
    color: #fff;
    font-size: 18px;
    display: block;
    font-weight: 400;
    transition: all 0.3s;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.4);
    padding: 6px 12px;
    margin: 0px 7px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li a i {
    font-size: 12px;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area5 .header-elements .header-buttons {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.header-area.header-area5 .header-elements .header-buttons a:nth-child(1) {
    margin-right: 16px;
}

.header-area.header-area5 .header-elements .header-right-area {
    display: flex;
    align-items: center;
}

.header-area.header-area8 {
    border-bottom: 1px solid #E6E7E6;
    padding-top: 17px;
}

.header-area.header-area8::after {
    content: "";
    position: absolute;
    top: 0;
    height: 6px;
    width: 100%;
    left: 0;
    background: var(--Home-Page-8-Stroke-Linner, linear-gradient(90deg, #652AC4 0%, #AB4CF5 100%));
}

.header-area.header-area8 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
}

.header-area.header-area8 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 210px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -330px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 15px;
    padding: 0 !important;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #7533F9;
    transition: all 0.4s;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 7px;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 18%;
    right: 20%;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #7533F9;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #7533F9;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area8 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 4px solid rgba(223, 219, 254, 0.5137254902);
    background: #fff;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li ul li ul {
    left: 192px;
    top: 10px;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area8 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: rgba(23, 19, 61, 0.6862745098);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.header-area.header-area8 .header-elements .main-menu-ex ul li a {
    color: var(--qt-text-h-text3);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.header-area.header-area8 .header-elements .header-buttons {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.header-area.header-area8 .header-elements .header-buttons a:nth-child(1) {
    margin-right: 16px;
}

.header-area.header-area9 {
    padding-top: 17px;
}

.header-area.header-area9 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
    background-color: #fff;
    border-radius: 210px;
}

.header-area.header-area9 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 210px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -340px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 15px;
    padding: 0 !important;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #7533F9;
    transition: all 0.4s;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 7px;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 18%;
    right: 20%;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 111px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #6D58FA;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #6D58FA;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.header-area.header-area9 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 4px solid rgba(223, 219, 254, 0.5137254902);
    background: #fff;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li ul li ul {
    left: 192px;
    top: 10px;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.header-area.header-area9 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: rgba(23, 19, 61, 0.6862745098);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.header-area.header-area9 .header-elements .main-menu-ex ul li a {
    color: var(--qt-text-h-text3);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.header-area.header-area9 .header-elements .header-buttons {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.header-area.header-area9 .header-elements .header-buttons a:nth-child(1) {
    margin-right: 16px;
}

.rtl-body .header-area.header-area9 {
    padding-top: 17px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex {
    padding: 2px 24px;
    position: relative;
    background-color: #fff;
    border-radius: 210px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 210px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu {
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    position: absolute;
    background: white;
    top: 201.3%;
    transform: scale(1, 0);
    z-index: 0;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 20px;
    left: -860px;
    width: 1300px;
    max-height: 600px;
    overflow-x: scroll;
    overflow-x: hidden;
    transform-origin: top;
    display: block;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
    display: flex;
    align-items: center;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    margin: 0 20px 20px 0;
    text-align: center;
    overflow: hidden;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: 10px;
    left: 0px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100px;
    left: -54px;
    top: -62px;
    transition: all 0.4s;
    background: #797FED;
    transform: rotate(-45deg);
    z-index: -1;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .text h2 {
    font-size: 20px;
    color: #fff;
    transform: rotate(-45deg);
    margin-left: 7px;
    margin-bottom: 13px;
    font-weight: 700;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading {
    color: #08111A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    display: inline-block;
    margin-top: 15px;
    padding: 0 !important;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-heading:hover {
    color: #7533F9;
    transition: all 0.4s;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: 0.18px;
    display: inline-block;
    padding-top: 20px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
    transform: scale(1);
    transition: all 0.4s;
    visibility: visible;
    opacity: 0.4;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
    top: 26%;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    margin-top: 7px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
    color: var(--vtc-bg-main-bg-1);
    transition: all 0.4s;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 234px;
    height: 300px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    background: #000026;
    opacity: 0;
    border-radius: 4px;
    transform: scale(0.8);
    z-index: 1;
    visibility: hidden;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #E5E7EB;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
    position: absolute;
    top: 30%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: all 0.6s;
    margin: 0 auto;
    left: 17%;
    right: 18%;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
    display: inline-block;
    padding: 16px;
    transition: all 0.4s;
    border-radius: 7px;
    position: relative;
    width: 150px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: capitalize;
    z-index: 1;
    background: #6D58FA;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
    transform: rotate(-45deg);
    margin-left: 4px;
    transition: all 0.4s;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
    color: #fff;
    transition: all 0.4s;
    transform: translateY(-5px);
    background: #6D58FA;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
    transform: rotate(0);
    transition: all 0.4s;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li:hover .tp-submenu {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 150.3%;
    position: absolute;
    transition: all 0.4s;
    transform: scale(1);
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li ul {
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 4px;
    border: 4px solid rgba(223, 219, 254, 0.5137254902);
    background: #fff;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    width: 200px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
    padding: 10px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li ul li ul {
    left: 192px;
    top: 10px;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li ul li a {
    color: var(--qt-text-h-text3);
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li ul li a::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0%;
    height: 2px;
    color: var(--qt-text-h-text3);
    border-radius: 4px;
    transition: all 0.4s;
    z-index: -1;
    opacity: 1;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li ul li a:hover::after {
    background-color: rgba(23, 19, 61, 0.6862745098);
    border-radius: 4px;
    width: 50px;
    left: 15px;
    opacity: 1;
}

.rtl-body .header-area.header-area9 .header-elements .main-menu-ex ul li a {
    color: var(--qt-text-h-text3);
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 10px 15px;
    transition: all 0.3s;
}

.rtl-body .header-area.header-area9 .header-elements .header-buttons {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.rtl-body .header-area.header-area9 .header-elements .header-buttons a:nth-child(1) {
    margin-right: 16px;
}

/*
++++++++++++++++++++++++++++++++++
==== =====nav menu all 4 ===========
+++++++++++++++++++++++++++++++++
*/
/*
::::::::::::::::::::::::::
 NAV MENU AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  ABOUT AREA CSS
 ::::::::::::::::::::::::::
 */
.about-boxs {
    margin-top: 40px;
}

.about-boxs .single-box {
    display: flex;
    align-items: center;
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    padding: 48px 32px;
    transition: all 0.4s;
    margin-top: 30px;
}

.about-boxs .single-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
}

.about-boxs .single-box .icon {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: #F0EFFF;
    text-align: center;
    line-height: 90px;
    margin-right: 24px;
}

.about-page-area1 .about-img img {
    width: 100%;
}

.about-page-area1 .headding2 {
    padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-page-area1 .headding2 {
        padding-left: 0px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-page-area1 .headding2 {
        padding-left: 0px;
        padding-top: 30px;
    }
}

.about-page-area1 .headding2 .list {
    padding-top: 24px;
}

.about-page-area1 .headding2 .list li {
    padding: 8px 0px;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text3);
}

.about-page-area1 .headding2 .list li span {
    display: inline-block;
    background-color: #E7E8FF;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    color: var(--qt-bg-bg-7);
    margin-right: 6px;
}

.about-page-area2 {
    padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-page-area2 {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .about-page-area2 {
        padding-bottom: 50px;
    }
}

.about-page-area2 .about-page-boxs .single-box {
    padding: 24px;
    border-radius: 4px;
    border: 2px solid var(--qt-bg-bg-7);
    background-color: var(--qt-text-h-text1);
    margin-top: 30px;
    transition: all 0.4s;
}

.about-page-area2 .about-page-boxs .single-box .icon {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #F0EFFF;
    line-height: 70px;
    text-align: center;
}

.about-page-area2 .about-page-boxs .single-box .icon img {
    transition: all 0.4s;
}

.about-page-area2 .about-page-boxs .single-box .headding2 h4 a {
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text3);
    display: inline-block;
    transition: all 0.4s;
}

.about-page-area2 .about-page-boxs .single-box:hover {
    background-color: var(--qt-bg-bg-7);
}

.about-page-area2 .about-page-boxs .single-box:hover .icon {
    background-color: rgba(255, 255, 255, 0.3294117647);
}

.about-page-area2 .about-page-boxs .single-box:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.about-page-area2 .about-page-boxs .single-box:hover .headding2 h4 a {
    transition: all 0.4s;
    color: var(--qt-text-h-text1);
}

.about-page-area2 .about-page-boxs .single-box:hover .headding2 p {
    color: rgba(255, 255, 255, 0.7882352941);
    transition: all 0.4s;
}

.about-page-area2 .about-page-boxs .single-box:nth-child(1) {
    margin-left: -60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-page-area2 .about-page-boxs .single-box:nth-child(1) {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .about-page-area2 .about-page-boxs .single-box:nth-child(1) {
        margin-left: 0;
    }
}

.about-page-area2 .about-page-boxs .single-box:nth-child(2) {
    margin-left: -90px;
    margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-page-area2 .about-page-boxs .single-box:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .about-page-area2 .about-page-boxs .single-box:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }
}

.about-page-area2 .about-page-boxs .single-box:nth-child(3) {
    margin-left: -120px;
    margin-right: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-page-area2 .about-page-boxs .single-box:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .about-page-area2 .about-page-boxs .single-box:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }
}

.about-page-area2 .left-image img {
    width: 100%;
}

.about-page-area2 .about-shape2 {
    position: absolute;
    right: 20%;
    bottom: 150px;
    z-index: -1;
}

.about7 {
    position: relative;
}

.about7 .images-left-all {
    position: relative;
    height: 450px;
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 767px) {
    .about7 .images-left-all {
        height: 550px;
    }
}

.about7 .images-left-all .image1 {
    margin-right: 70px;
}

.about7 .images-left-all .image2 {
    position: absolute;
    bottom: 60px;
    left: 150px;
}

.about7 .images-left-all .image3 {
    position: absolute;
    left: -50px;
    top: 50px;
}

.about7 .images-left-all .image4 {
    position: absolute;
    top: -60px;
    right: 70px;
}

.about7 .images-left-all .image5 {
    position: absolute;
    right: -70px;
    bottom: 0;
}

.about7 .images-right-all {
    position: relative;
    height: 450px;
    margin-top: 30px;
    text-align: center;
}

.about7 .images-right-all .image2 {
    position: absolute;
    right: 0;
    top: -100px;
}

.about7 .images-right-all .image3 {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .about7 .images-right-all .image3 {
        top: auto;
        bottom: 0;
    }
}

/*
 ::::::::::::::::::::::::::
  ABOUT AREA CSS
 ::::::::::::::::::::::::::
 */
/*
 ::::::::::::::::::::::::::
  WELCOME AREA CSS
 ::::::::::::::::::::::::::
 */
.hero-area1 {
    background-position: center center;
    min-height: 950px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-area1 .main-headding {
    padding-top: 180px;
}

.hero-area1 .main-headding span.span {
    color: var(--qt-bg-bg-w);
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
    /* 100% */
    display: inline-block;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(91deg, #FFF -2679.34%, rgba(255, 255, 255, 0) 189.33%);
    padding: 8px 10px;
    margin-bottom: 16px;
}

.hero-area1 .main-headding span.span img {
    margin-top: -2px;
    margin-right: 5px;
}

.hero-area1 .main-headding h1 {
    color: var(--Project-Management-Color-White-Color, #FFF);
    text-align: center;
    font-size: var(--f-fs-font-fs64);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs70);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area1 .main-headding h1 {
        font-size: var(--f-fs-font-fs42);
        line-height: var(--f-fs-font-fs50);
    }
}

@media (max-width: 767px) {
    .hero-area1 .main-headding h1 {
        font-size: var(--f-fs-font-fs42);
        line-height: var(--f-fs-font-fs50);
    }
}

.hero-area1 .main-headding h1 span.after {
    background: var(--Project-Management-Color-Text-GD, linear-gradient(99deg, #603BF3 64.53%, #8F00FF 91.45%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-area1 .main-headding p {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    text-align: center;
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    padding-top: 16px;
}

.hero-area-image {
    position: relative;
}

.hero-area-image .image {
    padding: 24px;
    margin-top: -280px;
    z-index: 9;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area-image .image {
        margin-top: -330px;
    }
}

.hero-area-image .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(105deg, #FFF -899.06%, rgba(255, 255, 255, 0) 152.98%);
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    z-index: -1;
}

.hero-area-image .image::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 300px;
    width: 400px;
    border-radius: 20px;
    background-color: #603BF3;
    z-index: -2;
    animation-name: animation1;
    animation-duration: 6s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@media (max-width: 767px) {
    .hero-area-image .image::after {
        height: 100px;
        width: 100px;
    }
}

.hero-area-image .image img {
    width: 100%;
}

.hero-area-image .shape {
    position: absolute;
    right: -40px;
    top: -40px;
}

@media screen and (max-width: 376px) {
    .hero-area-image .image {
        margin-top: -240px;
    }
}

@media screen and (max-width: 321px) {
    .hero-area-image .image {
        margin-top: -180px;
    }
}

body.body1 {
    font-family: var(--f-ff-font-1);
    background-color: var(--qt-bg-bg-1);
}

@media screen and (min-width: 769px) {
    @keyframes animation1 {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-165%);
        }
    }
}

.animation1 {
    animation-name: animation1;
    animation-duration: 0.4s;
    animation-direction: alternate;
}

@media screen and (min-width: 769px) {
    @keyframes animation2 {
        0% {
            transform: translateX(20px);
        }

        100% {
            transform: translateX(180%);
        }
    }
}

.animation2 {
    animation-name: animation2;
    animation-duration: 0.4s;
    animation-direction: alternate;
}

body.body2 {
    font-family: var(--f-ff-font-1);
    background-color: var(--qt-bg-bg-5);
}

.hero-area2 {
    min-height: 760px;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area2 {
        min-height: 1000px;
    }
}

@media (max-width: 767px) {
    .hero-area2 {
        min-height: 1000px;
    }
}

.hero-area2 .hero2-content {
    padding-top: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area2 .main-headding {
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .hero-area2 .main-headding {
        margin-top: -60px;
    }
}

.hero-area2 .main-headding span.span {
    display: inline-block;
    color: var(--qt-bg-bg-7);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    padding: 9px 14px;
    border-radius: 210px;
    font-weight: var(--f-fw-semibold);
    margin-bottom: 16px;
    background-color: #E8E9FF;
}

.hero-area2 .main-headding h1 {
    font-size: var(--f-fs-font-fs64);
    line-height: var(--f-fs-font-fs74);
    color: var(--qt-text-h-text2);
    font-weight: var(--f-fw-semibold);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area2 .main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs52);
    }
}

@media (max-width: 767px) {
    .hero-area2 .main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs52);
    }
}

.hero-area2 .main-headding p {
    font-size: var(--f-fs-font-fs20);
    color: var(--qt-text-p-text2);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    padding-top: 16px;
}

.hero-area2 .hero2-image {
    height: 600px;
    position: relative;
}

.hero-area2 .hero2-image .image1 {
    margin: 0px 40px;
}

.hero-area2 .hero2-image .image2 {
    position: absolute;
    right: 0;
    top: 40px;
    margin: 0px 60px;
}

.hero-area2 .hero2-image .image3 {
    position: absolute;
    top: 0px;
    right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area2 .hero2-image {
        margin: 50px 0px 50px 0px;
    }
}

@media (max-width: 767px) {
    .hero-area2 .hero2-image {
        margin: 50px 0px 50px 0px;
        height: 300px;
    }
}

.hero2-bashbord {
    position: relative;
}

.hero2-bashbord .images {
    position: relative;
}

.hero2-bashbord .images .image1 img {
    width: 100%;
}

.hero2-bashbord .images .image2 {
    position: absolute;
    top: -40px;
    right: -40px;
}

.hero2-bashbord .shape1 {
    position: absolute;
    top: -200px;
    left: 0;
    z-index: -1;
}

.hero2-bashbord .shape2 {
    position: absolute;
    bottom: -100px;
    right: 0;
    z-index: -1;
}

.hero-area3 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-area3 .hero4-mid-area {
    min-height: 980px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area3 .hero4-mid-area {
        min-height: 700px;
    }
}

@media (max-width: 767px) {
    .hero-area3 .hero4-mid-area {
        min-height: 800px;
    }
}

.hero-area3 .main-headding {
    padding-top: 150px;
    position: relative;
    z-index: 2;
}

.hero-area3 .main-headding h1 {
    font-size: var(--f-fs-font-fs56);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs64);
    color: var(--qt-text-h-text2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area3 .main-headding h1 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

@media (max-width: 767px) {
    .hero-area3 .main-headding h1 {
        font-size: var(--f-fs-font-fs32);
        line-height: var(--f-fs-font-fs40);
    }
}

.hero-area3 .main-headding p {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-medium);
    padding-top: 16px;
}

.hero-area3 .main-headding form {
    margin: 32px 32px 0px 32px;
    position: relative;
}

.hero-area3 .main-headding form input {
    border: none;
    border-radius: 4px;
    padding: 16px 24px 20px 24px;
    width: 100%;
}

.hero-area3 .main-headding form input:focus {
    outline: none;
}

.hero-area3 .main-headding form input::-moz-placeholder {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
}

.hero-area3 .main-headding form input::placeholder {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs28);
    font-weight: var(--f-fw-medium);
}

.hero-area3 .main-headding form button {
    position: absolute;
    right: 4px;
    top: 4px;
}

@media (max-width: 767px) {
    .hero-area3 .main-headding form button {
        position: absolute;
        left: 0;
        top: 80px;
    }
}

.hero-area3 .main-img {
    position: absolute;
    bottom: 10px;
    margin-left: -100px;
    margin-right: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area3 .main-img {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-area3 .main-img {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-area4 {
    min-height: 1100px;
    position: relative;
}

.hero-area4 .main-headding {
    padding-top: 190px;
}

.hero-area4 .main-headding span.span {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
    padding: 8px 14px;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.1254901961);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-area4 .main-headding span.span img {
    margin-top: -3px;
    margin-right: 3px;
}

.hero-area4 .main-headding h1 {
    font-size: var(--f-fs-font-fs60);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs72);
    color: var(--qt-text-h-text1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area4 .main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs48);
    }
}

@media (max-width: 767px) {
    .hero-area4 .main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs48);
    }
}

.hero-area4 .main-headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
    color: #E3E6FC;
    padding-top: 20px;
}

.hero-area4 .main-headding .butons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .hero-area4 .main-headding .butons {
        display: block;
    }
}

.hero-area4 .main-headding .butons .video-btn {
    margin-left: 24px;
}

@media (max-width: 767px) {
    .hero-area4 .main-headding .butons .video-btn {
        margin-left: 0;
        margin-top: 20px;
    }
}

.hero-area4 .main-headding .butons .video-btn a {
    display: inline-block;
    color: var(--qt-text-h-text1);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    font-size: var(--f-fs-font-fs18);
}

.hero-area4 .main-headding .butons .video-btn a span {
    display: inline-block;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: var(--qt-text-h-text1);
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    color: #4C5EEC;
    margin-right: 5px;
}

.hero-area4 .hero4-images-all {
    text-align: center;
    margin-top: 100px;
    position: relative;
    height: 540px;
}

.hero-area4 .hero4-images-all .image1 {
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
}

.hero-area4 .hero4-images-all .image2 {
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
}

.hero-area4 .hero4-images-all .image3 {
    position: absolute;
    left: -60px;
    bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area4 .hero4-images-all .image3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-area4 .hero4-images-all .image3 {
        display: none;
    }
}

.hero-area4 .hero4-images-all .image4 {
    position: absolute;
    right: 0;
    top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area4 .hero4-images-all .image4 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-area4 .hero4-images-all .image4 {
        display: none;
    }
}

.hero-area4 .hero4-images-all .image5 {
    position: absolute;
    bottom: 60px;
    right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area4 .hero4-images-all .image5 {
        right: -30px;
        bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area4 .hero4-images-all .image5 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-area4 .hero4-images-all .image5 {
        display: none;
    }
}

.pages-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.pages-hero .main-headding {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pages-hero .main-headding {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    .pages-hero .main-headding {
        padding-top: 120px;
    }
}

.pages-hero .main-headding h1 {
    font-size: var(--f-fs-font-fs76);
    line-height: var(--f-fs-font-fs88);
    color: var(--qt-text-h-text2);
    font-weight: var(--f-fw-semibold);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pages-hero .main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs52);
    }
}

@media (max-width: 767px) {
    .pages-hero .main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs52);
    }
}

.pages-hero .main-headding p {
    font-size: var(--f-fs-font-fs20);
    color: var(--qt-text-p-text2);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    padding-top: 16px;
}

.pages-hero .hero-image {
    margin-right: -100px;
    margin-top: 80px;
    text-align: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pages-hero .hero-image {
        text-align: left;
        margin-top: 30px;
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .pages-hero .hero-image {
        text-align: left;
        margin-top: 30px;
        margin-bottom: 60px;
    }
}

.pages-hero .search-area {
    position: relative;
}

.pages-hero .search-area .input input {
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 97px;
}

.pages-hero .search-area .input input:focus {
    outline: none;
}

.pages-hero .search-area .input input::-moz-placeholder {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-p-text2);
}

.pages-hero .search-area .input input::placeholder {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-p-text2);
}

.pages-hero .search-area .button {
    position: absolute;
    top: 0;
    right: 0;
}

.pages-hero .search-area .button button {
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    color: var(--qt-text-h-text1);
    border: none;
    font-size: var(--f-fs-font-fs20);
    border-radius: 50%;
    background-color: var(--qt-bg-bg-7);
}

.pages-hero .hero-shape1 {
    position: absolute;
    top: 50px;
    right: 0;
    z-index: -2;
}

.pages-hero .hero-shape2 {
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: -2;
}

.pages-hero .hero-shape3 {
    position: absolute;
    bottom: -100px;
    left: 0;
}

.pages-hero .all-text-hero {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .pages-hero .all-text-hero {
        display: block;
    }
}

.pages-hero .all-text-hero .autor-area {
    display: flex;
    align-items: center;
}

.pages-hero .all-text-hero .autor-area .headding {
    padding-left: 16px;
}

.pages-hero .all-text-hero .autor-area .headding h5 a {
    display: inline-block;
    font-size: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
}

.pages-hero .all-text-hero .autor-area .headding p {
    padding-top: 6px;
}

.pages-hero .all-text-hero .tag a {
    display: inline-block;
    color: var(--qt-bg-bg-7);
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: var(--f-fw-medium);
    margin-bottom: 16px;
    background-color: #E8E9FF;
    margin-left: 40px;
    position: relative;
    margin-top: 20px;
}

.pages-hero .all-text-hero .tag a::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -20px;
    height: 40px;
    width: 1px;
    background-color: #DFE1EC;
}

.pages-hero .all-text-hero .date a {
    display: inline-block;
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    display: inline-block;
    position: relative;
    margin-left: 40px;
    margin-top: 10px;
}

.pages-hero .all-text-hero .date a img {
    margin-top: -3px;
    margin-right: 3px;
}

.pages-hero .all-text-hero .date a::after {
    content: "";
    position: absolute;
    top: -11px;
    left: -20px;
    height: 40px;
    width: 1px;
    background-color: #DFE1EC;
}

.hero-area5 {
    position: relative;
}

.hero-area5 .hero5-bg {
    min-height: 1100px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area5 .hero5-bg {
        min-height: 700px;
    }
}

@media (max-width: 767px) {
    .hero-area5 .hero5-bg {
        min-height: 700px;
    }
}

.hero-area5 .hero5-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/hero5-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1.2);
    z-index: -5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area5 .hero5-bg::after {
        top: -132px;
    }
}

@media (max-width: 767px) {
    .hero-area5 .hero5-bg::after {
        top: -132px;
        transform: scale(1.5);
    }
}

.hero-area5 .hero5-bg .main-heading {
    padding-top: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area5 .hero5-bg .main-heading {
        padding-top: 165px;
    }
}

@media (max-width: 767px) {
    .hero-area5 .hero5-bg .main-heading {
        padding-top: 165px;
    }
}

.hero-area5 .hero5-bg .main-heading span.span {
    display: inline-block;
    border-radius: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 10px 6px 10px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    margin-bottom: 16px;
}

.hero-area5 .hero5-bg .main-heading span.span img {
    margin-top: -5px;
}

.hero-area5 .hero5-bg .main-heading h1 {
    color: #FFF;
    font-size: 76px;
    font-style: normal;
    font-weight: 700;
    line-height: 76px;
    /* 100% */
    letter-spacing: -0.76px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area5 .hero5-bg .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area5 .hero5-bg .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area5 .hero5-bg .main-heading p {
    color: rgba(255, 255, 255, 0.7137254902);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 160% */
}

.hero-area5 .hero5-bg .main-heading .buttons a:nth-last-child(1) {
    margin-left: 16px;
}

.body5 {
    background-color: #F5F8FF;
}

.hero5-slider .hero5-slider-hading p {
    color: var(--Main-Text, #110D39);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 100% */
    padding-bottom: 20px;
}

.hero5-slider .hero5-slider-hading .hero5-slider-all .single-slider {
    width: 200px;
    text-align: center;
    margin: 0px 50px;
    display: flex;
    align-items: center;
    height: 73px;
}

.hero-area6 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-area6 .main-heading {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area6 .main-heading {
        padding-top: 140px;
    }
}

@media (max-width: 767px) {
    .hero-area6 .main-heading {
        padding-top: 140px;
    }
}

.hero-area6 .main-heading span.span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    display: inline-block;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 12px 8px 12px;
    margin-bottom: 16px;
}

.hero-area6 .main-heading span.span img {
    margin-top: -3px;
    margin-right: 3px;
}

.hero-area6 .main-heading h1 {
    color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    /* 116.667% */
    letter-spacing: -2.4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area6 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area6 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area6 .main-heading p {
    color: rgba(255, 255, 255, 0.8705882353);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

.hero-area6::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/hero6-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.hero-area6 .buttons {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-area6 .buttons {
        display: block;
    }
}

.hero-area6 .images-all {
    height: 520px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area6 .images-all {
        height: 600px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-area6 .images-all {
        margin-top: 30px;
    }
}

.hero-area6 .images-all .image1 {
    margin-left: 100px;
}

@media (max-width: 767px) {
    .hero-area6 .images-all .image1 {
        margin-left: 0px;
    }
}

.hero-area6 .images-all .image2 {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 200px;
}

.hero-area6 .images-all .image3 {
    position: absolute;
    right: -100px;
    bottom: 120px;
    width: 250px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area6 .images-all .image3 {
        right: 0;
    }
}

@media (max-width: 767px) {
    .hero-area6 .images-all .image3 {
        right: 0;
        bottom: 50px;
    }
}

.hero-area7 {
    min-height: 850px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area7 {
        min-height: 1210px;
    }
}

@media (max-width: 767px) {
    .hero-area7 {
        min-height: 1210px;
    }
}

.hero-area7::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/hero7-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.hero-area7 .main-heading {
    padding-top: 80px;
}

.hero-area7 .main-heading span.span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    display: inline-block;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 12px 8px 12px;
    margin-bottom: 16px;
}

.hero-area7 .main-heading span.span img {
    margin-top: -3px;
    margin-right: 3px;
}

.hero-area7 .main-heading h1 {
    color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    /* 116.667% */
    letter-spacing: -2.4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area7 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area7 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area7 .main-heading p {
    color: rgba(255, 255, 255, 0.8705882353);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

.hero-area7 .main-heading .buttons {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-area7 .main-heading .buttons {
        display: block;
    }
}

.hero-area7 .main-heading .buttons .video-action-btn1 .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 45px;
    height: 45px;
    background: #8177DF;
    border-radius: 50%;
    transition: all 200ms;
}

.hero-area7 .main-heading .buttons .video-action-btn1 .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: 14px;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-radius: 4px;
    border-left: 13px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.hero-area7 .images-all {
    height: 600px;
    position: relative;
    text-align: center;
}

.hero-area7 .images-all .image1 {
    position: absolute;
    bottom: 0;
    right: 100px;
}

.hero-area7 .images-all .image2 {
    position: absolute;
    right: 0;
    bottom: -125px;
    left: 220px;
}

@media (max-width: 767px) {
    .hero-area7 .images-all .image2 {
        right: 0;
        bottom: -90px;
        left: 0;
    }
}

.hero-area7 .images-all .shape1 {
    position: absolute;
    left: 60px;
    top: 100px;
    width: 240px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area7 .images-all .shape1 {
        left: 0;
        top: 50px;
    }
}

@media (max-width: 767px) {
    .hero-area7 .images-all .shape1 {
        left: 0;
        top: 50px;
        width: 150px;
    }
}

.hero-area7 .images-all .shape2 {
    position: absolute;
    right: -60px;
    top: 60px;
    width: 240px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area7 .images-all .shape2 {
        right: 0;
        top: 50px;
    }
}

@media (max-width: 767px) {
    .hero-area7 .images-all .shape2 {
        right: 0;
        top: 50px;
        width: 140px;
    }
}

.hero-area7 .images-all .shape3 {
    position: absolute;
    right: -60px;
    bottom: 60px;
    width: 240px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area7 .images-all .shape3 {
        right: 0;
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero-area7 .images-all .shape3 {
        right: 0;
        bottom: 280px;
        width: 150px;
    }
}

.hero-area7 .images-all .shape4 {
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 240px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area7 .images-all .shape4 {
        left: 0;
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero-area7 .images-all .shape4 {
        left: 0;
        bottom: 280px;
        width: 140px;
    }
}

.hero-area8 {
    display: flex;
    align-items: center;
    min-height: 780px;
    position: relative;
}

.hero-area8::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url(../img/bg/hero8-bg.png);
    z-index: -6;
}

.hero-area8 .main-images {
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area8 .main-images {
        margin-bottom: 50px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-area8 .main-images {
        margin-bottom: 50px;
        text-align: center;
    }
}

.hero-area8 .main-images .image2 {
    position: relative;
    margin-left: 160px;
    margin-top: 80px;
    margin-right: -60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area8 .main-images .image2 {
        margin-right: auto;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .hero-area8 .main-images .image2 {
        margin-right: auto;
        margin-left: 0;
    }
}

.hero-area8 .main-heading {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area8 .main-heading {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .hero-area8 .main-heading {
        padding-top: 160px;
    }
}

.hero-area8 .main-heading span.span {
    color: var(--Home-Page-8-Main-Color, #7D2EFE);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    background-color: #ECE5FE;
    border-radius: 7px;
    padding: 8px 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-area8 .main-heading span.span img {
    margin-right: 3px;
    margin-top: -2px;
}

.hero-area8 .main-heading h1 {
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    /* 117.857% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area8 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area8 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area8 .main-heading p {
    color: var(--Home-Page-8-Paragraph-Color, #554F5F);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.hero-area8 .buttons {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-area8 .buttons {
        display: block;
    }
}

.hero-area8 .buttons a:nth-last-child(1) {
    margin-left: 24px;
}

@media (max-width: 767px) {
    .hero-area8 .buttons a:nth-last-child(1) {
        margin-right: 40px;
        margin-left: 0;
        margin-top: 20px;
    }
}

.hero-area8 .image1 {
    position: absolute;
    right: 0;
    top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area8 .image1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-area8 .image1 {
        display: none;
    }
}

.hero-area9 {
    display: flex;
    align-items: center;
    min-height: 780px;
    position: relative;
}

.hero-area9::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url(../img/bg/hero9-bg.png);
    z-index: -6;
}

.hero-area9 .main-heading {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area9 .main-heading {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .hero-area9 .main-heading {
        padding-top: 160px;
    }
}

.hero-area9 .main-heading span.span {
    color: var(--Home-Page-8-Main-Color, #7371FC);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    background-color: #DFE3FC;
    border-radius: 111px;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-area9 .main-heading span.span img {
    margin-right: 3px;
    margin-top: -2px;
}

.hero-area9 .main-heading h1 {
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    /* 117.857% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area9 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero-area9 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.hero-area9 .main-heading p {
    color: var(--Home-Page-8-Paragraph-Color, #554F5F);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.hero-area9 .main-images {
    height: 520px;
    position: relative;
    margin-right: -100px;
    margin-top: 80px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .hero-area9 .main-images {
        margin-right: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area9 .main-images {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-area9 .main-images {
        margin-right: 0;
        height: 400px;
    }
}

.hero-area9 .main-images .image1 {
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
}

.hero-area9 .main-images .image2 {
    position: absolute;
    left: 0;
    top: 60px;
}

@media (max-width: 767px) {
    .hero-area9 .main-images .image2 {
        display: none;
    }
}

.hero-area9 .main-images .image3 {
    position: absolute;
    right: -60px;
    top: -50px;
}

.hero-area9 .main-images .image4 {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 767px) {
    .hero-area9 .main-images .image4 {
        display: none;
    }
}

.hero-area9 .main-images .image5 {
    position: absolute;
    right: -50px;
    bottom: 0;
}

@media (max-width: 767px) {
    .hero-area9 .main-images .image5 {
        display: none;
    }
}

.hero-area9 .main-images .main-img {
    position: absolute;
    bottom: -90px;
    right: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area9 .main-images .main-img {
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .hero-area9 .main-images .main-img {
        bottom: 0;
    }
}

.rtl-body .hero-area9 {
    display: flex;
    align-items: center;
    min-height: 780px;
    position: relative;
}

.rtl-body .hero-area9::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url(../img/bg/hero9-bg.png);
    z-index: -6;
}

.rtl-body .hero-area9 .main-heading {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtl-body .hero-area9 .main-heading {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-heading {
        padding-top: 160px;
    }
}

.rtl-body .hero-area9 .main-heading span.span {
    color: var(--Home-Page-8-Main-Color, #7371FC);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    background-color: #DFE3FC;
    border-radius: 111px;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 16px;
}

.rtl-body .hero-area9 .main-heading span.span img {
    margin-right: 3px;
    margin-top: -2px;
}

.rtl-body .hero-area9 .main-heading h1 {
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 66px;
    /* 117.857% */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtl-body .hero-area9 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-heading h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.rtl-body .hero-area9 .main-heading p {
    color: var(--Home-Page-8-Paragraph-Color, #554F5F);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.rtl-body .hero-area9 .main-images {
    height: 520px;
    position: relative;
    margin-right: -100px;
    margin-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtl-body .hero-area9 .main-images {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-images {
        margin-right: 0;
        height: 400px;
    }
}

.rtl-body .hero-area9 .main-images .image1 {
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
}

.rtl-body .hero-area9 .main-images .image2 {
    position: absolute;
    left: -50px;
    top: 60px;
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-images .image2 {
        display: none;
    }
}

.rtl-body .hero-area9 .main-images .image3 {
    position: absolute;
    right: 50px;
    top: -50px;
}

.rtl-body .hero-area9 .main-images .image4 {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-images .image4 {
        display: none;
    }
}

.rtl-body .hero-area9 .main-images .image5 {
    position: absolute;
    right: 70px;
    bottom: 0;
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-images .image5 {
        display: none;
    }
}

.rtl-body .hero-area9 .main-images .main-img {
    position: absolute;
    bottom: -90px;
    left: 50px;
    right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rtl-body .hero-area9 .main-images .main-img {
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .rtl-body .hero-area9 .main-images .main-img {
        bottom: 0;
    }
}

/*
 ::::::::::::::::::::::::::
  WELCOME AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/
.work-prosess .work-box-area {
    position: relative;
    padding: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.work-prosess .work-box-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(111deg, #FFF -1176.73%, rgba(255, 255, 255, 0) 140.53%);
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    z-index: -2;
}

.work-prosess .work-box-area .single-box {
    background-color: var(--qt-bg-bg-1);
    padding: 34px 24px 0px 24px;
    overflow: hidden;
}

.work-prosess .work-box-area .single-box .image {
    text-align: center;
}

.work-prosess .work-box-area .single-box .image img {
    transition: all 0.4s;
}

.work-prosess .work-box-area:hover .image img {
    transform: scale(1.1);
    transition: all 0.4s;
}

.work-prosess .work-box-area.left-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess .work-box-area.right-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess .work-box-area.right-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess .work-box-area.left-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work2 .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}

.work2 .nav::after {
    content: "";
    position: absolute;
    background-color: #DFE1EC;
    height: 2px;
    width: 100%;
    top: 0;
    left: 0;
    top: 25px;
    z-index: -1;
}

.work2 .nav .nav-item button {
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text1);
    background-color: var(--qt-bg-bg-6);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    color: var(--qt-text-h-text2);
}

.work2 .nav .nav-item button.active {
    background-color: var(--qt-bg-bg-7);
    color: var(--qt-text-h-text1);
}

.work2 .tab-content .tabs-box-item {
    text-align: center;
    margin: 0px 10px;
    margin-top: 24px;
}

.work2 .tab-content .tabs-box-item img {
    width: 100%;
}

.work2 .tab-content .tabs-box-item h3 {
    font-size: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
    line-height: var(--f-fs-font-fs24);
    padding-bottom: 24px;
}

.work2 .shape1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}

.work2 .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}

.stapes .stapes-images1 {
    position: relative;
}

.stapes .stapes-images1 .image1 {
    text-align: right;
    margin-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .stapes .stapes-images1 .image1 {
        margin-left: 0px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .stapes .stapes-images1 .image1 {
        margin-left: 0px;
        margin-top: 30px;
    }
}

.stapes .stapes-images1 .image1 img {
    width: 100%;
}

.stapes .stapes-images1 .image2 {
    position: absolute;
    top: -40px;
    right: -40px;
}

.stapes .stapes-images2 {
    position: relative;
}

.stapes .stapes-images2 .image1 {
    text-align: left;
    margin-right: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .stapes .stapes-images2 .image1 {
        margin-right: 0px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .stapes .stapes-images2 .image1 {
        margin-right: 0px;
        margin-bottom: 30px;
    }
}

.stapes .stapes-images2 .image1 img {
    width: 100%;
}

.stapes .stapes-images2 .image2 {
    position: absolute;
    top: -40px;
    left: -40px;
    transform: rotateY(210deg);
}

.stapes .main-shape {
    position: absolute;
    top: -165px;
    left: 50%;
    z-index: -1;
    margin-left: 125px;
}

.work5 {
    background-color: var(--qt-bg-bg-16);
}

.work5 .work5-tabs-all {
    background-color: var(--qt-bg-bg-w);
    padding: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.work5 .work5-tabs-all .nav {
    background-color: var(--qt-bg-bg-16);
    border-radius: 4px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work5 .work5-tabs-all .nav {
        display: block;
    }
}

@media (max-width: 767px) {
    .work5 .work5-tabs-all .nav {
        display: block;
    }
}

.work5 .work5-tabs-all .nav li button {
    background: none;
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-blod);
    color: var(--qt-text-h-text4);
    padding: 12px 20px;
    transition: all 0.4s;
}

.work5 .work5-tabs-all .nav li button span {
    height: 60px;
    width: 60px;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    line-height: 60px;
    margin-right: 12px;
    background-color: var(--qt-bg-bg-w);
}

.work5 .work5-tabs-all .nav li button span img {
    transition: all 0.4s;
}

.work5 .work5-tabs-all .nav li button.active {
    background-color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.work5 .work5-tabs-all .nav li button.active span {
    background-color: var(--qt-bg-bg-15);
}

.work5 .work5-tabs-all .nav li button.active span img {
    filter: brightness(0) invert(1);
    transition: all 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work5 .work5-tabs-all .nav li {
        display: inline-block;
        margin: 0px 30px;
    }
}

@media (max-width: 767px) {
    .work5 .work5-tabs-all .nav li {
        display: inline-block;
        margin: 10px 0px;
    }
}

.work5 .tab-pane .work-tab-body {
    padding: 0px 36px;
}

.work5 .tab-pane .work-tab-body .headding4 h3 {
    font-size: var(--f-fs-font-fs32);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs32);
    color: var(--qt-text-h-text4);
}

.work5 .tab-pane .work-tab-body .headding4 .media-all h6 {
    font-size: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs20);
    color: var(--qt-text-p-text4);
    padding-top: 24px;
}

.work5 .tab-pane .work-tab-body .headding4 .media-all .list-headding {
    padding-top: 24px;
}

.work5 .tab-pane .work-tab-body .headding4 .media-all .list-headding p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text4);
}

.work5 .tab-pane .work-tab-body .headding4 .media-all .list-headding p span {
    display: inline-block;
    font-size: 12px;
    color: var(--qt-bg-bg-15);
    background-color: var(--qt-bg-bg-17);
    line-height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    margin-right: 3px;
}

.work5 .tab-pane .work-tab-body .work4-images {
    position: relative;
    height: 450px;
    text-align: end;
}

.work5 .tab-pane .work-tab-body .work4-images .image1 {
    margin-top: 24px;
}

.work5 .tab-pane .work-tab-body .work4-images .image2 {
    position: absolute;
    bottom: -24px;
}

.works7 {
    background-color: #F5F6FF;
}

.works7 .works-box {
    margin-top: 34px;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works7 .works-box {
        padding: 0 0;
    }
}

@media (max-width: 767px) {
    .works7 .works-box {
        padding: 0 0;
    }
}

.works7 .works-box .icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
}

.works7 .works-box .shape1 {
    position: absolute;
    top: 50px;
    right: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works7 .works-box .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .works7 .works-box .shape1 {
        display: none;
    }
}

.works7 .works-box .shape2 {
    position: absolute;
    top: 50px;
    right: -120px;
    transform: rotateX(180deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works7 .works-box .shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .works7 .works-box .shape2 {
        display: none;
    }
}

.work-prosess7 .work-box-area {
    position: relative;
    padding: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.work-prosess7 .work-box-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #DEE0FD;
    z-index: -2;
}

.work-prosess7 .work-box-area .single-box {
    background-color: #F3F4FF;
    padding: 34px 24px 0px 24px;
    overflow: hidden;
    min-height: 398px;
}

.work-prosess7 .work-box-area .single-box .image {
    text-align: center;
}

.work-prosess7 .work-box-area .single-box .image img {
    transition: all 0.4s;
}

.work-prosess7 .work-box-area:hover .image img {
    transform: scale(1.1);
    transition: all 0.4s;
}

.work-prosess7 .work-box-area.left-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess7 .work-box-area.right-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess7 .work-box-area.right-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess7 .work-box-area.left-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess7 .work-bottom-box {
    margin-top: 40px;
    position: relative;
    text-align: center;
}

.work-prosess7 .work-bottom-box .shape1 {
    position: absolute;
    left: 50px;
    top: -30px;
}

.work-prosess7 .work-bottom-box .shape2 {
    position: absolute;
    bottom: -25px;
    left: 50px;
}

.work-prosess7 .work-bottom-box .shape3 {
    position: absolute;
    left: -100px;
    top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work-prosess7 .work-bottom-box .shape3 {
        left: 0;
    }
}

@media (max-width: 767px) {
    .work-prosess7 .work-bottom-box .shape3 {
        left: 0;
    }
}

.works8 .works-box {
    margin-top: 34px;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works8 .works-box {
        padding: 0 0;
    }
}

@media (max-width: 767px) {
    .works8 .works-box {
        padding: 0 0;
    }
}

.works8 .works-box .icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
}

.works8 .works-box .icon img {
    transition: all 0.4s;
}

.works8 .works-box .shape1 {
    position: absolute;
    top: 50px;
    right: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works8 .works-box .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .works8 .works-box .shape1 {
        display: none;
    }
}

.works8 .works-box .shape2 {
    position: absolute;
    top: 50px;
    right: -120px;
    transform: rotateX(180deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works8 .works-box .shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .works8 .works-box .shape2 {
        display: none;
    }
}

.works8 .works-box:hover .icon img {
    transition: all 0.4s;
    transform: translateX(180deg);
}

.work-prosess9 {
    background-color: #F5F5FD;
}

.work-prosess9 .work-box-area {
    position: relative;
    padding: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.work-prosess9 .work-box-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff !important;
    z-index: 0;
}

.work-prosess9 .work-box-area .single-box {
    background-color: #F5F5FD;
    padding: 34px 24px 0px 24px;
    overflow: hidden;
    min-height: 398px;
    position: relative;
    z-index: 9;
}

.work-prosess9 .work-box-area .single-box .image {
    text-align: center;
}

.work-prosess9 .work-box-area .single-box .image img {
    transition: all 0.4s;
}

.work-prosess9 .work-box-area:hover .image img {
    transform: scale(1.1);
    transition: all 0.4s;
}

.work-prosess9 .work-box-area.left-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess9 .work-box-area.right-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess9 .work-box-area.right-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.work-prosess9 .work-box-area.left-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 160px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

/*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/
.cta1 {
    padding: 80px 0;
}

.cta1 .buttons .btn.btn2 img {
    margin-top: -3px;
    margin-right: 5px;
}

.cta3 {
    padding: 70px 0px;
}

.cta3 .cta3-subscribe {
    text-align: end;
    position: relative;
}

.cta3 .cta3-subscribe .input input {
    border: none;
    border-radius: 4px;
    padding: 19px;
    width: 100%;
}

.cta3 .cta3-subscribe .input input::-moz-placeholder {
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs26);
    color: var(--qt-text-p-text3);
}

.cta3 .cta3-subscribe .input input::placeholder {
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs26);
    color: var(--qt-text-p-text3);
}

.cta3 .cta3-subscribe .input input:focus {
    outline: none;
}

.cta3 .cta3-subscribe .button {
    position: absolute;
    top: 5px;
    right: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta3 .cta3-subscribe {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cta3 .cta3-subscribe {
        margin-top: 30px;
    }
}

.cta4 {
    padding: 80px 0px;
}

.cta4 .buttons {
    margin-top: 30px;
}

.cta5 {
    position: relative;
}

.cta5 .cta5-bg {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.cta5 .cta5-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/cta5-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -6;
}

.cta5 .cta5-bg .heading5-w {
    padding: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta5 .cta5-bg .heading5-w {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cta5 .cta5-bg .heading5-w {
        padding: 30px;
    }
}

.cta5 .cta5-bg .main-image {
    position: relative;
    text-align: end;
    margin-top: 70px;
    margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta5 .cta5-bg .main-image {
        text-align: start;
        margin-left: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cta5 .cta5-bg .main-image {
        text-align: start;
        margin-left: 30px;
        margin-top: 30px;
    }
}

.cta6 {
    position: relative;
    padding: 80px 0px;
}

.cta6::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/cta6-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.cta6 .cta6-images {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta6 .cta6-images {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .cta6 .cta6-images {
        margin-top: 40px;
    }
}

.cta6 .cta6-images .image2 {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: -1;
}

.cta7 {
    position: relative;
    padding: 100px 0px;
}

.cta7::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/cta7-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.cta7 .cta-heading span.span {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.cta7 .cta-heading h2 {
    color: #FFF;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    /* 114.286% */
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta7 .cta-heading h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .cta7 .cta-heading h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.cta7 .cta-heading .buttons {
    margin-top: 36px;
}

.cta7 .cta-heading .buttons a {
    display: inline-block;
    transition: all 0.4s;
}

.cta7 .cta-heading .buttons a:hover {
    transition: all 0.4s;
    transform: translateY(-5px);
}

.cta7 .cta-heading .buttons a:nth-child(1) {
    margin-right: 16px;
}

@media (max-width: 767px) {
    .cta7 .cta-heading .buttons a:nth-child(1) {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

.cta7 .image-shape1 {
    position: absolute;
    left: -20px;
    top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta7 .image-shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta7 .image-shape1 {
        display: none;
    }
}

.cta7 .image-shape2 {
    position: absolute;
    right: -20px;
    top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta7 .image-shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta7 .image-shape2 {
        display: none;
    }
}

.cta8 {
    position: relative;
    padding: 80px 0px;
}

.cta8::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/cta8-bg.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.cta8 .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .cta8 .buttons {
        display: block;
    }
}

.cta8 .buttons a:nth-last-child(1) {
    margin-left: 24px;
}

@media (max-width: 767px) {
    .cta8 .buttons a:nth-last-child(1) {
        margin-left: 0;
        margin-top: 20px;
        margin-right: 50px;
    }
}

/*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 BRAND AREA CSS
::::::::::::::::::::::::::
*/
.brands .headding1 {
    position: relative;
    z-index: 9;
}

.brands .headding1 h6 {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs18);
    /* 100% */
    letter-spacing: -0.16px;
    padding-top: 20px;
}

.brands .headding1 h6 a.after {
    color: var(--Project-Management-Color-Main-Color, #603BF3);
    display: inline-block;
    text-decoration: underline;
}

.brands .brands-image {
    margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brands .brands-image {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .brands .brands-image {
        margin-top: 0;
    }
}

.brands .brands-image img {
    width: 100%;
}

.brands::after {
    content: "";
    position: absolute;
    top: -400px;
    left: 0;
    height: 1200px;
    width: 100%;
    background-image: url(../img/bg/brand-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -2;
}

.brands .brand-shape1 {
    position: absolute;
    left: 0;
    top: 100px;
    z-index: -1;
}

.brands .brand-shape2 {
    position: absolute;
    left: 40%;
    top: 100px;
    z-index: -1;
}

.brands .brand-shape3 {
    position: absolute;
    right: 0;
    top: 100px;
    z-index: -1;
}

/*
::::::::::::::::::::::::::
 BRAND AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/
.testimonial-area .testimonial-slider-all {
    position: relative;
    padding: 40px 40px 20px 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-area .testimonial-slider-all {
        padding: 40px 40px 100px 40px;
    }
}

@media (max-width: 767px) {
    .testimonial-area .testimonial-slider-all {
        padding: 40px 40px 100px 40px;
    }
}

.testimonial-area .testimonial-slider-all .single-slider {
    padding-top: 40px;
}

.testimonial-area .testimonial-slider-all .single-slider ul.stars li {
    display: inline-block;
    color: #FFC700;
}

.testimonial-area .testimonial-slider-all .single-slider .image {
    margin-left: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-area .testimonial-slider-all .single-slider .image {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial-area .testimonial-slider-all .single-slider .image {
        display: none;
    }
}

.testimonial-area .testimonial-slider-all .single-slider .image img {
    width: 100%;
}

.testimonial-area .testimonial-slider-all .single-slider .pera {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: 400;
    line-height: var(--f-fs-font-fs30);
    padding: 20px 0px;
}

.testimonial-area .testimonial-slider-all .single-slider .bottom-headding {
    padding-top: 10px;
}

.testimonial-area .testimonial-slider-all .single-slider .bottom-headding h4 a {
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs24);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs24);
    /* 100% */
}

.testimonial-area .testimonial-slider-all .single-slider .bottom-headding a.ancor {
    color: var(--Project-Management-Color-Paragraph-Color, rgba(255, 255, 255, 0.8));
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
    /* 100% */
    padding-top: 10px;
    display: inline-block;
    text-decoration: underline;
}

.testimonial-area .testimonial-slider-all .testimonial-arrows {
    margin-top: 24px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-area .testimonial-slider-all .testimonial-arrows {
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .testimonial-area .testimonial-slider-all .testimonial-arrows {
        bottom: 20px;
    }
}

.testimonial-area .testimonial-slider-all .testimonial-arrows button {
    height: 48px;
    width: 48px;
    border: none;
    border-radius: 50%;
    font-size: var(--f-fs-font-fs20);
    background-color: #312977;
    color: var(--qt-text-h-text1);
}

.testimonial-area .testimonial-slider-all .testimonial-arrows button:hover {
    background: var(--Project-Management-Color-Linner-Color, linear-gradient(95deg, #603BF3 0.75%, #8F00FF 101.34%));
    transition: all 0.4s;
}

.testimonial-area .testimonial-slider-all .testimonial-arrows button:nth-child(1) {
    margin-right: 10px;
}

.testimonial-area .testimonial-slider-all::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    z-index: -2;
    background: linear-gradient(97deg, #FFF -1401.81%, rgba(255, 255, 255, 0) 134.99%);
}

.tes2 {
    padding-top: 120px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tes2 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .tes2 {
        padding-top: 60px;
    }
}

.tes2 .tes2-slider-all {
    cursor: all-scroll;
}

.tes2 .tes2-slider-all .single-slider {
    border: 1px solid #E7E8FF;
    padding: 24px;
    border-radius: 4px;
    margin: 0px 10px;
    position: relative;
}

.tes2 .tes2-slider-all .single-slider .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.tes2 .tes2-slider-all .single-slider .icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.tes2 .tes2-slider-all .single-slider p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    color: #17133D;
    font-weight: var(--f-fw-regular);
    padding-top: 14px;
}

.tes2 .tes2-slider-all .single-slider .single-slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tes2 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
}

.tes2 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding {
    padding-left: 24px;
}

.tes2 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding h5 a {
    font-size: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.tes2 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
    padding-top: 10px;
}

.tes2 .testimonial-arrows {
    text-align: end;
}

.tes2 .testimonial-arrows button {
    border-radius: 50%;
    font-size: 20px;
    height: 60px;
    width: 60px;
    border: none;
    background-color: #D9D9FF;
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.tes2 .testimonial-arrows button:nth-child(1) {
    margin-right: 12px;
}

.tes2 .testimonial-arrows button:hover {
    background-color: var(--qt-bg-bg-7);
    color: var(--qt-bg-bg-w);
    transition: all 0.4s;
}

.tes2 .testimonial-arrows .tes2-shape {
    position: absolute;
    top: 0;
}

.tes2 .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding: 1rem 0;
    list-style-type: none;
}

.tes2 .slick-dots li {
    margin: 0 4px;
}

.tes2 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #DFE1EC;
    text-indent: -9999px;
    position: relative;
    transition: all 0.4s;
}

.tes2 .slick-dots button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #F5F8FF;
}

.tes2 .slick-dots li.slick-active button {
    background-color: var(--qt-bg-bg-7);
    width: 8px;
    height: 8px;
    transition: all 0.4s;
}

.tes2 .slick-dots li.slick-active button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #2a5ccf;
}

.tes2 .tes2-shape {
    position: absolute;
    top: 0;
    left: 0;
}

.tes3 .tes2-slider-all {
    cursor: all-scroll;
}

.tes3 .tes2-slider-all .single-slider {
    border: 1px solid #E7E8FF;
    padding: 24px;
    border-radius: 4px;
    margin: 0px 10px;
    position: relative;
    background-color: var(--qt-bg-bg-5);
}

.tes3 .tes2-slider-all .single-slider .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.tes3 .tes2-slider-all .single-slider .icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.tes3 .tes2-slider-all .single-slider p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    color: #17133D;
    font-weight: var(--f-fw-regular);
    padding-top: 14px;
}

.tes3 .tes2-slider-all .single-slider .single-slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tes3 .tes2-slider-all .single-slider .single-slider-bottom .logo {
    margin-top: 30px;
}

.tes3 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
}

.tes3 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding {
    padding-left: 24px;
}

.tes3 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding h5 a {
    font-size: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.tes3 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
    padding-top: 10px;
}

.tes3 .testimonial-arrows {
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tes3 .testimonial-arrows {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .tes3 .testimonial-arrows {
        text-align: center;
        margin-top: 30px;
    }
}

.tes3 .testimonial-arrows button {
    border-radius: 50%;
    font-size: 20px;
    height: 60px;
    width: 60px;
    border: none;
    background-color: #F1D0E0;
    color: var(--qt-bg-bg-8);
    transition: all 0.4s;
}

.tes3 .testimonial-arrows button:nth-child(1) {
    margin-right: 12px;
}

.tes3 .testimonial-arrows button:hover {
    background-color: var(--qt-bg-bg-8);
    color: var(--qt-bg-bg-w);
    transition: all 0.4s;
}

.tes3 .slider {
    width: 40rem;
}

.tes3 .slide img {
    display: block;
    width: 100%;
    height: auto;
}

.tes3 .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding: 1rem 0;
    list-style-type: none;
}

.tes3 .slick-dots li {
    margin: 0 4px;
}

.tes3 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #F2D0E0;
    text-indent: -9999px;
    position: relative;
    transition: all 0.4s;
}

.tes3 .slick-dots button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid hsla(222, 100%, 98%, 0);
}

.tes3 .slick-dots li.slick-active button {
    background-color: var(--qt-bg-bg-8);
    width: 8px;
    height: 8px;
    transition: all 0.4s;
}

.tes3 .slick-dots li.slick-active button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid var(--qt-bg-bg-8);
}

.testimonial4 {
    background-color: var(--qt-bg-bg-16);
}

.testimonial4 .tes4-big-slider {
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    padding: 40px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4 .tes4-big-slider {
        padding: 40px 40px 120px 40px;
    }
}

@media (max-width: 767px) {
    .testimonial4 .tes4-big-slider {
        padding: 40px 40px 120px 40px;
    }
}

.testimonial4 .tes4-big-slider .stars li {
    color: #FFBA00;
    display: inline-block;
}

.testimonial4 .tes4-big-slider p.pera {
    font-size: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs36);
    color: #060512;
    padding: 30px 0px 32px 0px;
}

.testimonial4 .tes4-big-slider .icon {
    position: absolute;
    top: -10px;
    right: 10px;
}

.testimonial4 .tes4-big-slider .bottom-headding {
    display: flex;
    align-items: center;
}

.testimonial4 .tes4-big-slider .bottom-headding .headding {
    padding-left: 20px;
}

.testimonial4 .tes4-big-slider .bottom-headding .headding h4 a {
    font-size: var(--f-fs-font-fs32);
    line-height: var(--f-fs-font-fs32);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text4);
}

.testimonial4 .tes4-big-slider .bottom-headding .headding p {
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    color: var(--qt-text-p-text4);
    padding-top: 7px;
}

.testimonial4 .testimonial-arrows {
    position: absolute;
    bottom: 60px;
    z-index: 40;
    right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial4 .testimonial-arrows {
        right: 50%;
        margin-right: -70px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .testimonial4 .testimonial-arrows {
        right: 50%;
        margin-right: -70px;
        bottom: 20px;
    }
}

.testimonial4 .testimonial-arrows button {
    border-radius: 50%;
    border: none;
    height: 60px;
    width: 60px;
    background-color: #DBDFFB;
    font-size: var(--f-fs-font-fs20);
    color: var(--qt-bg-bg-15);
    transition: all 0.4s;
}

.testimonial4 .testimonial-arrows button:nth-child(1) {
    margin-right: 10px;
}

.testimonial4 .testimonial-arrows button:hover {
    color: var(--qt-text-h-text1);
    background-color: var(--qt-bg-bg-15);
}

.testimonial4 .p-headding p {
    color: var(--qt-text-p-text4);
    font-weight: var(--f-fw-semibold);
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    margin-top: 48px;
}

.testimonial4 .tes4-logo-slider1 {
    margin-top: 40px;
}

.testimonial4 .tes4-logo-slider2 {
    margin-top: 40px;
}

.testimonial-page {
    margin-top: 100px;
}

.testimonial-page .testimonial-slider-all {
    position: relative;
    padding: 40px 40px 40px 40px;
    border-radius: 4px;
    background-color: var(--qt-bg-bg-w);
}

.testimonial-page .testimonial-slider-all .single-slider {
    padding-top: 40px;
}

.testimonial-page .testimonial-slider-all .single-slider ul.stars li {
    display: inline-block;
    color: #FFC700;
}

.testimonial-page .testimonial-slider-all .single-slider .image {
    margin-left: 100px;
}

.testimonial-page .testimonial-slider-all .single-slider .image img {
    width: 100%;
}

.testimonial-page .testimonial-slider-all .single-slider .pera {
    color: #17133D;
    font-size: var(--f-fs-font-fs20);
    font-style: normal;
    font-weight: 500;
    line-height: var(--f-fs-font-fs30);
    padding: 20px 0px;
}

.testimonial-page .testimonial-slider-all .single-slider .bottom-headding {
    padding-top: 10px;
}

.testimonial-page .testimonial-slider-all .single-slider .bottom-headding h4 a {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs24);
    font-style: normal;
    font-weight: var(--f-fw-blod);
    line-height: var(--f-fs-font-fs24);
    /* 100% */
}

.testimonial-page .testimonial-slider-all .single-slider .bottom-headding p {
    color: #17133D;
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
    /* 100% */
    padding-top: 10px;
}

.testimonial-page .testimonial-slider-all .testimonial-arrows {
    margin-top: 24px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -70px;
}

.testimonial-page .testimonial-slider-all .testimonial-arrows button {
    height: 48px;
    width: 48px;
    border: none;
    border-radius: 50%;
    font-size: var(--f-fs-font-fs20);
    background-color: #D2CEFF;
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.testimonial-page .testimonial-slider-all .testimonial-arrows button:hover {
    background: var(--qt-bg-bg-7);
    color: var(--qt-text-h-text1);
    transition: all 0.4s;
}

.testimonial-page .testimonial-slider-all .testimonial-arrows button:nth-child(1) {
    margin-right: 10px;
}

.testimonial-page .testimonial-slider-all::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    z-index: -2;
    background: linear-gradient(97deg, #FFF -1401.81%, rgba(255, 255, 255, 0) 134.99%);
}

.single-slider-page {
    padding: 24px;
    border-radius: 4px;
    position: relative;
    background-color: var(--qt-bg-bg-w);
    margin-top: 30px;
}

.single-slider-page .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.single-slider-page .icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.single-slider-page p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    color: #17133D;
    font-weight: var(--f-fw-regular);
    padding-top: 14px;
}

.single-slider-page .single-slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-slider-page .single-slider-bottom .headdding-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
}

.single-slider-page .single-slider-bottom .headdding-area .headding {
    padding-left: 24px;
}

.single-slider-page .single-slider-bottom .headdding-area .headding h5 a {
    font-size: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.single-slider-page .single-slider-bottom .headdding-area .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
    padding-top: 10px;
}

.tes5 {
    position: relative;
    background: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tes5 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .tes5 {
        padding-top: 60px;
    }
}

.tes5 .tes2-slider-all {
    cursor: all-scroll;
    position: relative;
    z-index: 4;
}

.tes5 .tes2-slider-all .single-slider {
    padding: 24px;
    border-radius: 20px;
    margin: 0px 10px;
    position: relative;
    background-color: #F5F4FD;
}

.tes5 .tes2-slider-all .single-slider .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.tes5 .tes2-slider-all .single-slider .icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.tes5 .tes2-slider-all .single-slider p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    color: #17133D;
    font-weight: var(--f-fw-regular);
    padding-top: 14px;
}

.tes5 .tes2-slider-all .single-slider .single-slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .tes5 .tes2-slider-all .single-slider .single-slider-bottom .logo {
        display: none;
    }
}

.tes5 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
}

.tes5 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding {
    padding-left: 24px;
}

.tes5 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding h5 a {
    font-size: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.tes5 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
    padding-top: 10px;
}

.tes5 .testimonial-arrows {
    text-align: end;
}

.tes5 .testimonial-arrows button {
    border-radius: 50%;
    font-size: 20px;
    height: 60px;
    width: 60px;
    border: none;
    background-color: #D9D9FF;
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.tes5 .testimonial-arrows button:nth-child(1) {
    margin-right: 12px;
}

.tes5 .testimonial-arrows button:hover {
    background-color: var(--qt-bg-bg-7);
    color: var(--qt-bg-bg-w);
    transition: all 0.4s;
}

.tes5 .testimonial-arrows .tes2-shape {
    position: absolute;
    top: 0;
}

.tes5 .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding: 1rem 0;
    list-style-type: none;
}

.tes5 .slick-dots li {
    margin: 0 4px;
}

.tes5 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #DFE1EC;
    text-indent: -9999px;
    position: relative;
    transition: all 0.4s;
}

.tes5 .slick-dots button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.tes5 .slick-dots li.slick-active button {
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    width: 8px;
    height: 8px;
    transition: all 0.4s;
}

.tes5 .slick-dots li.slick-active button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #EA25F5;
}

.tes5 .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.tes5 .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.testimonial7 .swiper-3d .swiper-slide-shadow {
    background: none !important;
}

.testimonial7 {
    background-color: #F5F6FF;
}

@media (max-width: 767px) {
    .testimonial7 {
        padding-bottom: 150px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial7 .main-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .testimonial7 .main-image {
        margin-bottom: 40px;
    }
}

.testimonial7 .testimonial7-all {
    margin-right: 100px;
    background-color: #fff;
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

@media (max-width: 767px) {
    .testimonial7 .testimonial7-all {
        margin-right: 0;
    }
}

.testimonial7 .testimonial7-all p.text {
    color: var(--Home-Page-7-Main-Color, #0B101F);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    padding: 16px 0;
}

.testimonial7 .testimonial7-all .star ul li {
    display: inline-block;
    color: #FFA800;
    margin: 0px 3px;
}

.testimonial7 .testimonial7-all .bottom {
    padding-top: 5px;
}

.testimonial7 .testimonial7-all .bottom h6 a {
    display: inline-block;
    color: var(--Home-Page-7-Main-Color, #0B101F);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 100% */
}

.testimonial7 .testimonial7-all .bottom .position {
    color: var(--Home-Page-7-Paragraph-Color, #4D4B5F);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 100% */
    padding-top: 10px;
}

.testimonial7 .testimonial7-all .pagination-buttons {
    position: absolute;
    right: -90px;
    top: 50%;
    margin-top: -61px;
}

@media (max-width: 767px) {
    .testimonial7 .testimonial7-all .pagination-buttons {
        margin-top: 30px;
        top: 100%;
        display: flex;
        align-items: center;
        left: 0;
    }
}

.testimonial7 .testimonial7-all .pagination-buttons button {
    font-size: 20px;
    height: 56px;
    width: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    margin: 5px 0px;
    border: none;
    background: #fff;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .testimonial7 .testimonial7-all .pagination-buttons button {
        margin-right: 20px;
    }
}

.testimonial7 .testimonial7-all .pagination-buttons button:nth-child(1) {
    transform: rotate(-90deg);
}

.testimonial7 .testimonial7-all .pagination-buttons button i {
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s;
}

.testimonial7 .testimonial7-all .pagination-buttons button:hover {
    transition: all 0.4s;
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
}

.testimonial7 .testimonial7-all .pagination-buttons button:hover i {
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #ffffff 0%, #ffffff 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .testimonial8 {
        padding-bottom: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial8 .main-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .testimonial8 .main-image {
        margin-bottom: 40px;
    }
}

.testimonial8 .testimonial7-all {
    margin-right: 100px;
    background-color: #F4F3FF;
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

@media (max-width: 767px) {
    .testimonial8 .testimonial7-all {
        margin-right: 0;
    }
}

.testimonial8 .testimonial7-all p.text {
    color: var(--Home-Page-7-Main-Color, #0B101F);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    padding: 16px 0;
}

.testimonial8 .testimonial7-all .star ul li {
    display: inline-block;
    color: #FFA800;
    margin: 0px 3px;
}

.testimonial8 .testimonial7-all .bottom {
    padding-top: 5px;
}

.testimonial8 .testimonial7-all .bottom h6 a {
    display: inline-block;
    color: var(--Home-Page-7-Main-Color, #0B101F);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 100% */
}

.testimonial8 .testimonial7-all .bottom .position {
    color: var(--Home-Page-7-Paragraph-Color, #4D4B5F);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 100% */
    padding-top: 10px;
}

.testimonial8 .testimonial7-all .pagination-buttons {
    position: absolute;
    right: -90px;
    top: 50%;
    margin-top: -61px;
}

@media (max-width: 767px) {
    .testimonial8 .testimonial7-all .pagination-buttons {
        margin-top: 30px;
        top: 100%;
        display: flex;
        align-items: center;
        left: 0;
    }
}

.testimonial8 .testimonial7-all .pagination-buttons button {
    font-size: 20px;
    height: 56px;
    width: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    margin: 5px 0px;
    border: none;
    background: #F4F3FF;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .testimonial8 .testimonial7-all .pagination-buttons button {
        margin-right: 20px;
    }
}

.testimonial8 .testimonial7-all .pagination-buttons button:nth-child(1) {
    transform: rotate(-90deg);
}

.testimonial8 .testimonial7-all .pagination-buttons button i {
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s;
}

.testimonial8 .testimonial7-all .pagination-buttons button:hover {
    transition: all 0.4s;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
}

.testimonial8 .testimonial7-all .pagination-buttons button:hover i {
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #ffffff 0%, #ffffff 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tes9 {
    position: relative;
    background: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tes9 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .tes9 {
        padding-top: 60px;
    }
}

.tes9 .tes2-slider-all {
    cursor: all-scroll;
    position: relative;
    z-index: 4;
}

.tes9 .tes2-slider-all .single-slider {
    padding: 24px;
    border-radius: 20px;
    margin: 0px 10px;
    position: relative;
    background-color: #F5F4FD;
}

.tes9 .tes2-slider-all .single-slider .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.tes9 .tes2-slider-all .single-slider .icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.tes9 .tes2-slider-all .single-slider p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    color: #17133D;
    font-weight: var(--f-fw-regular);
    padding-top: 14px;
}

.tes9 .tes2-slider-all .single-slider .single-slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tes9 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
}

.tes9 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding {
    padding-left: 24px;
}

.tes9 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding h5 a {
    font-size: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.tes9 .tes2-slider-all .single-slider .single-slider-bottom .headdding-area .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
    padding-top: 10px;
}

.tes9 .tes2-slider-all-rtl {
    cursor: all-scroll;
    position: relative;
    z-index: 4;
}

.tes9 .tes2-slider-all-rtl .single-slider {
    padding: 24px;
    border-radius: 20px;
    margin: 0px 10px;
    position: relative;
    background-color: #F5F4FD;
}

.tes9 .tes2-slider-all-rtl .single-slider .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.tes9 .tes2-slider-all-rtl .single-slider .icon {
    position: absolute;
    top: 10px;
    left: 10px;
}

.tes9 .tes2-slider-all-rtl .single-slider p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    color: #17133D;
    font-weight: var(--f-fw-regular);
    padding-top: 14px;
}

.tes9 .tes2-slider-all-rtl .single-slider .single-slider-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tes9 .tes2-slider-all-rtl .single-slider .single-slider-bottom .headdding-area {
    padding-top: 24px;
    display: flex;
    align-items: center;
}

.tes9 .tes2-slider-all-rtl .single-slider .single-slider-bottom .headdding-area .headding {
    padding-right: 24px;
}

.tes9 .tes2-slider-all-rtl .single-slider .single-slider-bottom .headdding-area .headding h5 a {
    font-size: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.tes9 .tes2-slider-all-rtl .single-slider .single-slider-bottom .headdding-area .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
    padding-top: 10px;
}

.tes9 .testimonial-arrows {
    text-align: end;
}

.tes9 .testimonial-arrows button {
    border-radius: 50%;
    font-size: 20px;
    height: 60px;
    width: 60px;
    border: none;
    background-color: #D9D9FF;
    color: var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.tes9 .testimonial-arrows button:nth-child(1) {
    margin-right: 12px;
}

.tes9 .testimonial-arrows button:hover {
    background-color: var(--qt-bg-bg-7);
    color: var(--qt-bg-bg-w);
    transition: all 0.4s;
}

.tes9 .testimonial-arrows .tes2-shape {
    position: absolute;
    top: 0;
}

.tes9 .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding: 1rem 0;
    list-style-type: none;
}

.tes9 .slick-dots li {
    margin: 0 4px;
}

.tes9 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #DFE1EC;
    text-indent: -9999px;
    position: relative;
    transition: all 0.4s;
}

.tes9 .slick-dots button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.tes9 .slick-dots li.slick-active button {
    background: #6A5CFF;
    width: 8px;
    height: 8px;
    transition: all 0.4s;
}

.tes9 .slick-dots li.slick-active button::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #6A5CFF;
}

.tes9 .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.tes9 .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.testimonial7 .swiper-3d .swiper-slide-shadow {
    background: none !important;
}

/*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/
.team-collaboration .single-box {
    display: flex;
    align-items: center;
    background-color: var(--qt-bg-bg-4);
    border-radius: 4px;
    padding: 12px;
    margin-top: 24px;
    transition: all 0.4s;
    position: relative;
}

.team-collaboration .single-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s;
    background: linear-gradient(95deg, #603BF3 0.75%, #8F00FF 101.34%);
}

.team-collaboration .single-box .pera {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    position: relative;
    z-index: 2;
}

.team-collaboration .single-box .icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.1764705882);
    margin-right: 12px;
    position: relative;
    z-index: 2;
}

.team-collaboration .single-box:hover {
    transition: all 0.4s;
}

.team-collaboration .single-box:hover::after {
    opacity: 1;
    transition: all 0.4s;
}

.team-collaboration .team-all-images {
    position: relative;
}

.team-collaboration .team-all-images .image1 {
    text-align: right;
    position: relative;
    margin-left: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-collaboration .team-all-images .image1 {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .team-collaboration .team-all-images .image1 {
        margin-left: 0px;
        margin-top: 30px;
    }
}

.team-collaboration .team-all-images .image1 img {
    width: 100%;
    padding: 20px;
}

.team-collaboration .team-all-images .image1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(99deg, #FFF -1001.54%, rgba(255, 255, 255, 0) 127.88%);
    -webkit-backdrop-filter: blur(102px);
    backdrop-filter: blur(102px);
    z-index: -2;
}

.team-collaboration .team-all-images .image1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -3;
}

.team-collaboration .team-all-images .image2 {
    position: absolute;
    bottom: 60px;
    left: 50px;
}

@media (max-width: 767px) {
    .team-collaboration .team-all-images .image2 {
        position: static;
    }
}

/*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/
.faq5 {
    background: #fff;
    position: relative;
}

.faq5 .heading5 p.title {
    background: linear-gradient(90deg, rgba(102, 47, 255, 0.1) -17.5%, rgba(234, 37, 245, 0.1) 100%);
}

.faq5 .accordion {
    margin-top: 20px;
}

.faq5 .accordion .accordion-item {
    margin-top: 16px;
    background: none;
    border: none;
    border: 1px solid #ECEBF0;
    border-radius: 7px;
    position: relative;
    z-index: 2;
}

.faq5 .accordion .accordion-item button {
    background: none;
    padding: 20px;
    color: var(--Main-Text, #110D39);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
}

.faq5 .accordion .accordion-item button:focus {
    outline: none;
    box-shadow: none;
}

.faq5 .accordion .accordion-item .accordion-body {
    color: var(--Main-Text, rgba(17, 13, 57, 0.7529411765));
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    padding: 0px 20px 20px 20px;
}

.faq5 .accordion .accordion-item.active {
    border-radius: 5px;
    border: 1px solid var(--Gradient, #662FFF);
    background: #FFF;
}

.faq5 .accordion .accordion-item.active button {
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq5 .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.faq5 .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.faq6 {
    position: relative;
}

.faq6 .accordion .accordion-item {
    border: 2px solid #E6E6E9;
    border-radius: 14px;
    background: none;
    margin-top: 30px;
    transition: all 0.4s;
}

.faq6 .accordion .accordion-item button {
    border: none;
    background: none;
    padding: 40px;
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: capitalize;
    position: relative;
}

@media (max-width: 767px) {
    .faq6 .accordion .accordion-item button {
        font-size: 20px;
        line-height: 26px;
        padding: 20px;
    }
}

.faq6 .accordion .accordion-item button:focus {
    outline: none;
    box-shadow: none;
}

.faq6 .accordion .accordion-item button::before {
    content: "";
    position: absolute;
    right: 26px;
    top: 32px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    z-index: 1;
    background: var(--Home-Page-1-Color-Gredient-1, linear-gradient(90deg, #49D2FD 0%, #8F00FF 100%));
}

@media (max-width: 767px) {
    .faq6 .accordion .accordion-item button::before {
        display: none;
    }
}

.faq6 .accordion .accordion-item button::after {
    filter: brightness(0) invert(1);
    z-index: 3;
}

.faq6 .accordion .accordion-item .accordion-body {
    color: rgba(255, 255, 255, 0.9098039216);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
    padding-left: 42px;
    margin-top: -20px;
    padding-bottom: 44px;
    padding-right: 80px;
    text-align: start;
}

@media (max-width: 767px) {
    .faq6 .accordion .accordion-item .accordion-body {
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
    }
}

.faq6 .accordion .accordion-item.active {
    transition: all 0.4s;
    border-radius: 14px;
    background: var(--Home-Page-1-Color-Gredient-1, linear-gradient(90deg, #49D2FD 0%, #8F00FF 100%));
}

.faq6 .accordion .accordion-item.active button {
    color: #fff;
}

.faq6 .accordion .accordion-item.active button::before {
    content: "";
    position: absolute;
    right: 26px;
    top: 32px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    z-index: 1;
    background: #fff;
}

.faq6 .accordion .accordion-item.active button::after {
    filter: brightness(0);
}

.faq6 .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: none;
}

.faq6 .sec-shape1 {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: -3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq6 .sec-shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq6 .sec-shape1 {
        display: none;
    }
}

.faq6 .sec-shape2 {
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq6 .sec-shape2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq6 .sec-shape2 {
        display: none;
    }
}

.faq6 .sec-shape3 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq6 .sec-shape3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq6 .sec-shape3 {
        display: none;
    }
}

.faq6 .sec-shape4 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
}

.faq6 .sec-shape5 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
}

.faq6 .sec-shape6 {
    position: absolute;
    bottom: 200px;
    left: 0;
    z-index: -3;
    transform: rotateX(180deg) rotateY(180deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq6 .sec-shape6 {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq6 .sec-shape6 {
        display: none;
    }
}

/*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 PRICING AREA CSS
::::::::::::::::::::::::::
*/
/*======== pricing-plan-start ==========*/
.toggle-inner {
    width: 75px;
    margin: 0 auto;
    height: 35px;
    border: 1px solid #0e1124;
    background: var(--qt-bg-bg-8);
    border-radius: 25px;
    position: relative;
}

.toggle-inner input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 25px;
    right: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.custom-toggle {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    top: 4px;
    left: 5px;
    border-radius: 50%;
    transition: 300ms all;
}

.toggle-inner .t-month,
.toggle-inner .t-year {
    position: absolute;
    left: -70px;
    top: 8px;
    color: #0e1124;
    transition: 300ms all;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.toggle-inner {
    margin-top: 30px;
}

.toggle-inner .t-year {
    left: unset;
    right: -140px;
    opacity: 0.5;
}

.active>.toggle-inner .t-month {
    opacity: 0.5;
}

.active>.toggle-inner .t-year {
    opacity: 1;
}

.toggle-inner input:checked+span {
    left: 43px;
}

.toggle-inner {
    width: 75px;
    margin: 0 auto;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 25px;
    position: relative;
}

.price-box {
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 4px;
    border: 1px solid rgba(16, 0, 43, 0.15);
}

.price-btn {
    background-color: #d4aeff;
    border-radius: 4px;
    z-index: 2;
    transition: all 0.4s;
}

.price-button.btn-after-price {
    z-index: 2;
}

.price-button.btn-after-price a {
    color: #0e1124;
}

.btn-after-price {
    position: relative;
}

.btn-after-price::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    background-color: #fede65;
    border-radius: 4px;
    z-index: -2;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.price-list ul li {
    padding-bottom: 16px;
}

.price-list ul li img {
    margin-right: 5px;
}

.price-box {
    transition: all 0.4s;
    margin-top: 40px;
}

.price-box:hover {
    background-color: #d4aeff;
}

.price-box:hover .price-btn {
    background-color: #fff;
}

.price-box:hover .btn-after-price::after {
    visibility: visible;
    opacity: 1;
}

.plan-toggle-wrap {
    margin-top: 40px;
}

.plan-toggle-wrap p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-p-text3);
    margin-top: 24px;
    text-align: center;
}

.pricing-plan .pricing-box {
    background-color: var(--qt-bg-bg-9);
    padding: 24px;
    border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-plan .pricing-box {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .pricing-plan .pricing-box {
        margin-top: 30px;
    }
}

.pricing-plan .pricing-box .pricing-box-single .image {
    text-align: center;
}

.pricing-plan .pricing-box .pricing-box-single h4 {
    font-size: var(--f-fs-font-fs24);
    line-height: var(--f-fs-font-fs24);
    color: var(--qt-text-h-text3);
    font-weight: var(--f-fw-semibold);
    padding-top: 24px;
    padding-bottom: 16px;
}

.pricing-plan .pricing-box .pricing-box-single p {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    color: var(--qt-text-p-text3);
    padding-bottom: 20px;
}

.pricing-plan .pricing-box .pricing-box-single p.span-headding {
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs52);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
    display: flex;
    align-items: center;
}

.pricing-plan .pricing-box .pricing-box-single p.span-headding span {
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs26);
    color: var(--qt-text-p-text3);
    display: inline-block;
    margin-top: 0;
    padding-left: 7px;
}

.pricing-plan .pricing-box .pricing-box-single .list li {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    color: var(--qt-text-h-text3);
    padding: 10px 0;
}

.pricing-plan .pricing-box .pricing-box-single .list li span {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--qt-bg-bg-8);
    color: var(--qt-bg-bg-w);
}

.pricing-plan .pricing-box .pricing-box-single .list li.crose span {
    background: #FADDE0;
    color: var(--qt-bg-bg-8);
}

.pricing-plan .pricing-box .pricing-box-single .button a {
    width: 100%;
}

.pricing-btn-area {
    margin-left: -70px;
}

/*======== pricing-plan-end ==========*/
/*======== pricing-plan-page ==========*/
.pricing-plan-page p.pera {
    padding-bottom: 20px;
}

.pricing-plan-page .toggle-inner2 {
    width: 75px;
    margin: 0 auto;
    height: 35px;
    border: 1px solid rgba(14, 17, 36, 0);
    background: var(--qt-bg-bg-7) !important;
    border-radius: 25px;
    position: relative;
}

.pricing-plan-page .pricing-box .pricing-box-single {
    background-color: var(--qt-text-h-text1);
    padding: 32px;
    border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-plan-page .pricing-box .pricing-box-single {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .pricing-plan-page .pricing-box .pricing-box-single {
        margin-top: 30px;
    }
}

.pricing-plan-page .pricing-box .pricing-box-single span.span {
    color: #17133D;
    display: inline-block;
    text-align: center;
    font-size: var(--f-fs-font-fs20);
    line-height: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    padding-bottom: 10px;
}

.pricing-plan-page .pricing-box .pricing-box-single h3 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs44);
    line-height: var(--f-fs-font-fs52);
    font-weight: var(--f-fw-semibold);
}

.pricing-plan-page .pricing-box .pricing-box-single p.pera {
    color: #4E4D61;
    font-size: var(--f-fs-font-fs16);
    line-height: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    padding-top: 10px;
}

.pricing-plan-page .pricing-box .pricing-box-single .theme-btn2 {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.pricing-plan-page .pricing-box .pricing-box-single .list li {
    color: #17133D;
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    padding-top: 18px;
}

.pricing-plan-page .pricing-box .pricing-box-single .list li span {
    color: var(--qt-bg-bg-7);
    display: inline-block;
    margin-right: 10px;
}

/*======== pricing-plan-page ==========*/
/*======== pricing-plan 5 ==========*/
.pricing5 {
    position: relative;
}

.pricing5 .pricing-box {
    padding: 32px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s;
    margin-top: 30px;
}

.pricing5 .pricing-box .heading5 span.gradint {
    display: inline-block;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 100% */
    text-transform: uppercase;
}

.pricing5 .pricing-box .heading5 h3 {
    padding: 4px 0px;
}

.pricing5 .pricing-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -5;
    transition: all 0.4s;
    border-radius: 30px;
}

.pricing5 .pricing-box .plan-list {
    padding-left: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .pricing5 .pricing-box .plan-list {
        padding-left: 0;
        padding-top: 30px;
    }
}

.pricing5 .pricing-box .plan-list li {
    color: var(--Main-Text, #110D39);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.pricing5 .pricing-box .plan-list li:nth-last-child(1) {
    margin-bottom: 0;
}

.pricing5 .pricing-box .plan-list li span.check {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #F4EAFF;
    color: #EA25F5;
    font-size: 12px;
    margin-right: 5px;
}

.pricing5 .pricing-box .plan-list::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #F4EAFF;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .pricing5 .pricing-box .plan-list::after {
        display: none;
    }
}

.pricing5 .pricing-box:hover {
    transform: translateY(-10px);
}

.pricing5 .pricing-box:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -5;
    transition: all 0.4s;
}

/*======== pricing-plan 5 ==========*/
.pricing8 {
    position: relative;
}

.pricing8::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #F8F9FE;
    z-index: -6;
}

.pricing8 .pricing-box {
    margin-top: 32px;
    position: relative;
    padding: 32px;
}

.pricing8 .pricing-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: -5;
    border-radius: 4px;
}

.pricing8 .pricing-box p.class {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing8 .pricing-box p.pera {
    color: var(--Home-Page-8-Paragraph-Color, #554F5F);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    padding: 16px 0px;
}

.pricing8 .pricing-box h2 {
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 100% */
    padding: 5px 0px 6px 0px;
}

.pricing8 .pricing-box h2 span {
    display: inline-block;
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
}

.pricing8 .pricing-box .theme-btn11 {
    width: 100%;
    text-align: center;
    margin: 16px 0px;
}

.pricing8 .pricing-box .pricing-list ul li {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
}

.pricing8 .pricing-box .pricing-list ul li span.check {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background-color: #7D2EFE;
    font-size: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.pricing8 .pricing-box .pricing-list ul li span.check2 {
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    font-size: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

/*
::::::::::::::::::::::::::
 PRICING AREA CSS
::::::::::::::::::::::::::
*/
.common-main-headding h1 {
    font-size: var(--f-fs-font-fs76);
    line-height: var(--f-fs-font-fs88);
    color: var(--qt-text-h-text2);
    font-weight: var(--f-fw-semibold);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .common-main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs52);
    }
}

@media (max-width: 767px) {
    .common-main-headding h1 {
        font-size: var(--f-fs-font-fs40);
        line-height: var(--f-fs-font-fs52);
    }
}

.common-main-headding p {
    font-size: var(--f-fs-font-fs20);
    color: var(--qt-text-p-text2);
    font-weight: var(--f-fw-regular);
    line-height: var(--f-fs-font-fs30);
    padding-top: 16px;
}

.contact-page-area {
    margin-top: 100px;
}

.contact-page-area .contact-form-all {
    background-color: var(--qt-text-h-text1);
    padding: 48px;
    border-radius: 4px;
}

.contact-page-area .contact-form-all .form-inputs h5 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs24);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs24);
}

.contact-page-area .contact-form-all .form-inputs p {
    color: #515456;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs30);
}

.contact-page-area .contact-form-all .form-inputs .input input {
    padding: 15px;
    border-radius: 4px;
    border: none;
    background-color: #F5F8FF;
    width: 100%;
    margin-bottom: 20px;
}

.contact-page-area .contact-form-all .form-inputs .input input::-moz-placeholder {
    color: #706F8A;
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.contact-page-area .contact-form-all .form-inputs .input input::placeholder {
    color: #706F8A;
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.contact-page-area .contact-form-all .form-inputs .input input:focus {
    outline: none;
}

.contact-page-area .contact-form-all .form-inputs .input textarea {
    padding: 15px;
    border-radius: 4px;
    border: none;
    background-color: #F5F8FF;
    width: 100%;
    margin-bottom: 20px;
}

.contact-page-area .contact-form-all .form-inputs .input textarea::-moz-placeholder {
    color: #706F8A;
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.contact-page-area .contact-form-all .form-inputs .input textarea::placeholder {
    color: #706F8A;
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.contact-page-area .contact-form-all .form-inputs .input textarea:focus {
    outline: none;
}

.contact-page-area .contact-form-all .form-inputs .button {
    text-align: right;
}

.contact-page-area .contact-form-all .contact-page-boxs .single-box {
    background-color: var(--qt-bg-bg-5);
    margin-left: 30px;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-page-area .contact-form-all .contact-page-boxs .single-box {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .contact-page-area .contact-form-all .contact-page-boxs .single-box {
        margin-left: 0;
        display: block;
    }
}

.contact-page-area .contact-form-all .contact-page-boxs .single-box .icon {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--qt-bg-bg-14);
    margin-right: 20px;
}

@media (max-width: 767px) {
    .contact-page-area .contact-form-all .contact-page-boxs .single-box .headding {
        padding-top: 12px;
    }
}

.contact-page-area .contact-form-all .contact-page-boxs .single-box .headding h5 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs20);
    padding-bottom: 10px;
}

.contact-page-area .contact-form-all .contact-page-boxs .single-box .headding a {
    display: inline-block;
    color: #515456;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs30);
    transition: all 0.4s;
}

.contact-page-area .contact-form-all .contact-page-boxs .single-box .headding a:hover {
    color: var(--qt-bg-bg-7);
}

.contact-page-area .shape1 {
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -1;
    opacity: 0.4;
}

.contact-page-area .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.4;
}

.contact-page-area .shape3 {
    position: absolute;
    bottom: -200px;
    right: 0;
    z-index: -1;
    opacity: 0.4;
}

/*
 ::::::::::::::::::::::::::
  ACCOUNT AREA CSS
 ::::::::::::::::::::::::::
 */
.log-in-area {
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.log-in-area .main-logo {
    width: 160px;
    text-align: center;
    margin: auto;
}

.log-in-area .login-img {
    margin-right: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .log-in-area .login-img {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .log-in-area .login-img {
        margin-right: 0;
    }
}

.log-in-area .login-img img {
    height: 100%;
}

.log-in-area .login-form {
    background-color: var(--qt-text-h-text1);
    padding: 48px;
    border-radius: 4px;
    margin-right: 60px;
}

.log-in-area .login-form .headding {
    text-align: center;
}

.log-in-area .login-form .headding h2 {
    color: var(--qt-text-h-text3);
    font-size: var(--f-fs-font-fs60);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs60);
}

.log-in-area .login-form .headding p {
    color: #515456;
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs30);
    padding-top: 16px;
}

.log-in-area .login-form .inputs {
    margin-top: 32px;
}

.log-in-area .login-form .inputs .single-inputs {
    margin-top: 0px;
}

.log-in-area .login-form .inputs .single-inputs label {
    color: var(--qt-text-h-text3);
    line-height: var(--f-fs-font-fs20);
    font-size: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    padding-bottom: 16px;
}

.log-in-area .login-form .inputs .single-inputs input {
    padding: 15px;
    border-radius: 74px;
    border: none;
    background-color: #F5F8FF;
    width: 100%;
    margin-bottom: 20px;
}

.log-in-area .login-form .inputs .single-inputs input::-moz-placeholder {
    color: #706F8A;
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.log-in-area .login-form .inputs .single-inputs input::placeholder {
    color: #706F8A;
    font-size: var(--f-fs-font-fs16);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs16);
}

.log-in-area .login-form .inputs .single-inputs input:focus {
    outline: none;
}

.log-in-area .login-form .inputs .button button {
    width: 100%;
    margin: 10px 0;
}

.log-in-area .login-form .forgot-text {
    text-align: center;
    padding-top: 12px;
}

.log-in-area .login-form .forgot-text p {
    font-size: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text3);
    line-height: var(--f-fs-font-fs26);
    font-weight: var(--f-fw-medium);
    text-align: center;
}

.log-in-area .login-form .forgot-text p a.singup {
    text-decoration: underline;
}

.log-in-area .login-form .forgot-text p a {
    display: inline-block;
    color: var(--qt-bg-bg-7);
}

.log-in-area .login-form .brand-buttons {
    margin-top: 12px;
}

.log-in-area .login-form .brand-buttons a {
    display: inline-block;
    background-color: #F4F7FF;
    padding: 14px;
    border-radius: 110px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text3);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-blod);
}

.log-in-area .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0.6;
}

.log-in-area .shape2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.6;
}

.log-in-area.forgot-area .login-form {
    margin-bottom: -230px;
    z-index: 2;
    position: relative;
    margin-right: 0;
}

.log-in-area.forgot-area .shape2 {
    right: 55%;
    left: auto;
}

.log-in-area.reset-area .login-form {
    margin-bottom: -310px;
    z-index: 2;
    position: relative;
    margin-right: 0;
}

.log-in-area.reset-area .login-form a.theme-btn2 {
    width: 100%;
}

.log-in-area.reset-area .shape2 {
    right: 55%;
    left: auto;
}

.log-in-area.email-verify .login-form {
    margin-bottom: -165px;
    z-index: 2;
    position: relative;
    margin-right: 0;
}

.log-in-area.email-verify .login-form a.theme-btn2 {
    width: 100%;
}

.log-in-area.email-verify .shape2 {
    right: 55%;
    left: auto;
}

.log-in-area.successe .login-form {
    margin-bottom: -215px;
    z-index: 2;
    position: relative;
    margin-right: 0;
}

.log-in-area.successe .login-form .successe-icon {
    text-align: center;
}

.log-in-area.successe .login-form a.theme-btn2 {
    width: 100%;
}

.log-in-area.successe .shape2 {
    right: 55%;
    left: auto;
}

.image-dash {
    position: relative;
    width: 400px;
    height: 600px;
}

.image-dash .image-trans {
    backface-visibility: hidden;
    background-color: #D33826;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
    transform: translate3d(0px, 0px, 0px) scale(0, 1);
    transform-origin: top right;
}

.image-dash .image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url("../../../../m.media-amazon.com/images/I/717565YxQ4L._AC_SY550_.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -30px 0;
    opacity: 1;
    transition: all 0.5s ease;
}

/*
::::::::::::::::::::::::::
 ACCOUNT AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
.cta-area .cta-area-bg {
    position: relative;
    padding: 20px;
}

.cta-area .cta-area-bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(95deg, #FFF -1681.92%, rgba(255, 255, 255, 0) 160.09%);
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
    z-index: -4;
}

.cta-area .cta-area-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    width: 160px;
    border-radius: 20px;
    background-color: var(--qt-bg-bg-10);
    z-index: -7;
}

.cta-area .cta-area-bg .cta-smoll-bg {
    position: relative;
    padding: 80px 0px;
}

.cta-area .cta-area-bg .cta-smoll-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--Project-Management-Color-Linner-Color, linear-gradient(95deg, #603BF3 0.75%, #8F00FF 101.34%));
    -webkit-backdrop-filter: blur(75px);
    backdrop-filter: blur(75px);
    z-index: -2;
}

.email-innovation .theme-btn3 {
    margin-left: 0;
}

.email-innovation .headding2-w {
    padding: 60px 0;
}

.email-innovation .images {
    position: relative;
    height: 410px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .email-innovation .images {
        height: 310px;
    }
}

@media (max-width: 767px) {
    .email-innovation .images {
        height: 200px;
    }
}

.email-innovation .images .image1 {
    text-align: end;
    position: absolute;
    bottom: -16px;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .email-innovation .images .image1 {
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .email-innovation .images .image1 {
        bottom: 0;
    }
}

.email-innovation .images .image2 {
    position: absolute;
    top: 0;
    left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .email-innovation .images .image2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .email-innovation .images .image2 {
        display: none;
    }
}

.email-innovation .images .image3 {
    position: absolute;
    bottom: 0;
    left: -60px;
}

.apps {
    padding: 60px 0;
}

.apps .apps-img1 {
    margin-left: -130px;
    margin-right: 50px;
}

.apps .apps-img1 img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .apps .apps-img1 {
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .apps .apps-img1 {
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 40px;
    }
}

.apps .apps-img2 {
    margin-right: -120px;
    margin-left: 50px;
}

.apps .apps-img2 img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .apps .apps-img2 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .apps .apps-img2 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.apps .bottom-logo img {
    width: 100%;
}

.stiky-sec .stiky-sec-boxs {
    position: relative;
}

.stiky-sec .stiky-sec-boxs .stiky-single {
    background-color: var(--qt-bg-bg-w);
    border-radius: 4px;
    padding: 40px;
    margin-top: 60px;
}

.stiky-sec .stiky-sec-boxs .stiky-single .headding h3 {
    color: var(--qt-text-h-text2);
    font-size: var(--f-fs-font-fs32);
    line-height: var(--f-fs-font-fs32);
    font-weight: var(--f-fw-semibold);
}

.stiky-sec .stiky-sec-boxs .stiky-single .headding p {
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
    color: var(--qt-text-p-text3);
}

.stiky-sec .stiky-sec-boxs .stiky-single .headding .list li {
    font-size: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    color: var(--qt-text-h-text2);
    padding: 10px 0px;
}

.stiky-sec .stiky-sec-boxs .stiky-single .headding .list li span {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    margin-right: 5px;
    font-size: 13px;
    color: var(--qt-bg-bg-w);
    background-color: var(--qt-text-h-text2);
}

.stiky-sec .stiky-sec-boxs .stiky-single .stiky-sec-img {
    position: relative;
    text-align: right;
}

.stiky-sec .stiky-sec-boxs .stiky-single .stiky-sec-img .shape {
    position: absolute;
    top: -40px;
    right: -40px;
}

.stiky-sec .stiky-sec-boxs .stiky-single:nth-child(1) {
    position: sticky;
    top: 150px;
}

.stiky-sec .stiky-sec-boxs .stiky-single:nth-child(2) {
    position: sticky;
    top: 200px;
}

.stiky-sec .stiky-sec-boxs .stiky-single:nth-child(3) {
    position: sticky;
    top: 250px;
}

.brand-area3 .headding3 {
    position: relative;
    z-index: 99;
}

.brand-area3 .headding3 .learn {
    color: var(--qt-bg-bg-8);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-semibold);
    text-decoration: underline;
}

.brand-area3 .headding3 .learn span {
    display: inline-block;
    transform: rotate(-45deg);
}

.brand-area3 .big-logo {
    margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brand-area3 .big-logo {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .brand-area3 .big-logo {
        margin-top: 0;
    }
}

.brand-area3 .big-logo img {
    width: 100%;
}

.cta3-3 {
    padding: 80px 0px;
}

.cta2-area {
    padding: 80px 0px 340px 0px;
}

.cta2-main-image {
    margin-top: -280px;
}

.cta2-main-image .cta2-images {
    position: relative;
}

.cta2-main-image .cta2-images .shape1 {
    position: absolute;
    top: -140px;
    left: -140px;
}

@media (max-width: 767px) {
    .cta2-main-image .cta2-images .shape1 {
        display: none;
    }
}

.cta2-main-image .cta2-images .shape2 {
    position: absolute;
    top: -40px;
    right: -40px;
}

@media (max-width: 767px) {
    .cta2-main-image .cta2-images .shape2 {
        display: none;
    }
}

.midea-markating {
    background-color: var(--qt-bg-bg-16);
}

.midea-markating .image img {
    width: 100%;
}

.midea-markating .media-box-all {
    margin-left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .midea-markating .media-box-all {
        margin-left: 0px;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .midea-markating .media-box-all {
        margin-left: 0px;
        margin-top: 40px;
    }
}

.midea-markating .media-box-all .single-box {
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    transition: all 0.4s;
}

.midea-markating .media-box-all .single-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
}

.midea-markating .media-box-all .single-box .icon {
    margin-right: 18px;
}

.midea-markating .media-box-all .single-box .icon img {
    width: 90px;
}

.integration .apps {
    text-align: end;
    margin-left: 100px;
}

.integration .apps img {
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .integration .apps {
        text-align: center;
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .integration .apps {
        text-align: center;
        margin-left: 0;
    }
}

.integration .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .integration .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .integration .shape1 {
        display: none;
    }
}

.download-blog-area .download-box {
    margin-top: 30px;
    padding: 24px;
    background-color: var(--qt-text-h-text1);
    border-radius: 4px;
}

.download-blog-area .download-box .image img {
    width: 100%;
}

.download-blog-area .download-box .headding2 {
    padding-top: 24px;
}

.download-blog-area .download-box .headding2 span.span {
    background: #E3DFFE;
}

.download-blog-area .download-box .headding2 .buttons a {
    display: inline-block;
    transition: all 0.4s;
    margin-top: 10px;
}

.download-blog-area .download-box .headding2 .buttons a:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
}

.download-blog-area .download-box .headding2 .buttons a:nth-child(1) {
    margin-right: 10px;
}

.download-blog-area .download-box .bg {
    background-color: #ECE9FE;
    border-radius: 4px;
    margin: 0px 5px;
}

.download-blog-area .shape1 {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
}

.download-blog-area .shape2 {
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: -1;
}

/*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 ERROR AREA CSS
::::::::::::::::::::::::::
*/
.error-all .shape1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.error-all .shape2 {
    position: absolute;
    top: 0;
    right: 0;
}

/*
::::::::::::::::::::::::::
 ERROR AREA CSS
::::::::::::::::::::::::::
*/
.time-track-steps .step-area {
    padding: 80px 40px;
    border-radius: 30px;
    position: relative;
}

.time-track-steps .step-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 40px;
    z-index: -5;
}

.time-track-steps .step-area .heading5 {
    z-index: 9;
    position: relative;
}

.time-track-steps .step-area .track-list li {
    color: var(--Main-Text, #110D39);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.time-track-steps .step-area .track-list li span.check {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    margin-right: 7px;
}

.time-track-steps .step-area .main-image {
    text-align: end;
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .time-track-steps .step-area .main-image {
        text-align: start;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .time-track-steps .step-area .main-image {
        text-align: start;
        margin-top: 30px;
    }
}

.time-track-steps .step-area .main-image img {
    position: relative;
    z-index: 2;
}

.time-track-steps .step-area .main-image::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/time-track-step-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1.5);
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .time-track-steps .step-area .main-image::after {
        right: 0;
        transform: scale(1.2);
    }
}

@media (max-width: 767px) {
    .time-track-steps .step-area .main-image::after {
        right: 0;
        transform: scale(1.2);
    }
}

.time-track-steps .step-area.step2 .main-image {
    text-align: start;
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .time-track-steps .step-area.step2 .main-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .time-track-steps .step-area.step2 .main-image {
        margin-bottom: 30px;
    }
}

.time-track-steps .step-area.step2 .main-image img {
    position: relative;
    z-index: 2;
}

.time-track-steps .step-area.step2 .main-image::after {
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/time-track-step-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1.5);
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .time-track-steps .step-area.step2 .main-image::after {
        left: 0;
        transform: scale(1.2);
    }
}

@media (max-width: 767px) {
    .time-track-steps .step-area.step2 .main-image::after {
        left: 0;
        transform: scale(1.2);
    }
}

.apps5-area {
    position: relative;
}

.apps5-area .apps-image {
    position: relative;
}

.apps5-area .apps-image img {
    position: relative;
    z-index: 8;
}

.apps5-area .apps-image::after {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/time-track-step-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(1.1);
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .apps5-area .apps-image::after {
        left: 0;
        transform: scale(1.2);
    }
}

@media (max-width: 767px) {
    .apps5-area .apps-image::after {
        left: 0;
        transform: scale(1.2);
    }
}

.brands-area6 {
    position: relative;
}

.brands-area6::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/brands6-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -7;
}

.brands-area6 .apps-images {
    position: relative;
    text-align: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brands-area6 .apps-images {
        margin: 60px 0px 30px 0px;
        text-align: start;
    }
}

@media (max-width: 767px) {
    .brands-area6 .apps-images {
        margin: 60px 0px 30px 0px;
        text-align: start;
    }
}

.brands-area6 .apps-images .image1 {
    margin-right: 30px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brands-area6 .apps-images .image1 {
        margin-right: 0;
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .brands-area6 .apps-images .image1 {
        margin-right: 0;
        margin-left: 0;
    }
}

.brands-area6 .apps-images .image1 .dot {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 60%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.1);
    animation: orbit 6s linear infinite;
    z-index: 1;
    margin-right: -153px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brands-area6 .apps-images .image1 .dot {
        display: none;
    }
}

@media (max-width: 767px) {
    .brands-area6 .apps-images .image1 .dot {
        display: none;
    }
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(225px);
        box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.1), 0 0 30px 30px rgba(255, 255, 255, 0.05), 0 0 40px 40px rgba(255, 255, 255, 0.02);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(225px);
        box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.1), 0 0 30px 30px rgba(255, 255, 255, 0.05), 0 0 40px 40px rgba(255, 255, 255, 0.02);
    }
}

.brands-area6 .apps-images .image2 {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .brands-area6 .apps-images .image2 {
        right: auto;
        left: 0;
    }
}

@media (max-width: 767px) {
    .brands-area6 .apps-images .image2 {
        right: auto;
        left: 0;
        top: -10px;
    }
}

.counters6 .counter-box {
    margin-top: 30px;
    text-align: center;
}

.counters6 .counter-box h2 {
    color: var(--Text-Color, #0A0726);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    /* 100% */
    border-radius: 96px;
    display: inline-block;
    padding: 32px;
    width: 100%;
}

@media (max-width: 767px) {
    .counters6 .counter-box h2 {
        font-size: 30px;
        line-height: 30px;
    }
}

.counters6 .counter-box p {
    color: var(--Paragraph-Color, #4D4B5F);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    padding-top: 24px;
}

.counters6 .counter-box.box1 h2 {
    background: linear-gradient(105deg, #FEC8EA 9.22%, rgba(254, 200, 234, 0) 97.11%);
}

.counters6 .counter-box.box2 h2 {
    background: linear-gradient(105deg, #FFE5DC 9.22%, rgba(255, 229, 220, 0) 97.11%);
}

.counters6 .counter-box.box3 h2 {
    background: linear-gradient(105deg, #D5FDD7 9.22%, rgba(213, 253, 215, 0) 97.11%);
}

.counters6 .counter-box.box4 h2 {
    background: linear-gradient(99deg, #C8D1FE 10%, rgba(200, 209, 254, 0) 96.65%);
}

.editing6 {
    background-color: #F6F7FF;
}

.editing6 .editing-box {
    margin-top: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 7px;
    padding: 30px 54px;
    transition: all 0.4s;
}

.editing6 .editing-box .icon {
    border: 1px solid #EDEDF0;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    margin: auto;
}

.editing6 .editing-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
}

.features6 .main-image {
    margin-top: 60px;
}

.features6 .main-image.right60 {
    margin-right: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features6 .main-image.right60 {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .features6 .main-image.right60 {
        margin-right: 0;
    }
}

.features6 .main-image.left60 {
    margin-left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features6 .main-image.left60 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .features6 .main-image.left60 {
        margin-left: 0;
    }
}

.features6 .features-heading {
    margin-top: 60px;
}

.buy-sell {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
}

.buy-sell-bottom {
    position: relative;
    margin-top: -220px;
    z-index: 99;
}

.buy-sell-bottom .bg {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
    margin-right: -100px;
    margin-left: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    border-radius: 4px;
    padding-top: 40px;
}

.buy-sell-bottom .bg .box-area-all {
    position: relative;
    z-index: 9;
}

.buy-sell-bottom .bg .box-area-all .icon {
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    position: absolute;
    right: 20px;
    top: -80px;
    transition: all 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .buy-sell-bottom .bg .box-area-all .icon {
        display: none;
    }
}

@media (max-width: 767px) {
    .buy-sell-bottom .bg .box-area-all .icon {
        display: none;
    }
}

.buy-sell-bottom .bg .box-area-all .icon img {
    transition: all 0.4s;
}

.buy-sell-bottom .bg .box-area-all .single-box {
    background-color: #F3F4FF;
    padding: 24px;
    border-radius: 4px;
    margin-top: 70px;
    text-align: center;
}

.buy-sell-bottom .bg .box-area-all.box-area-all2 {
    position: relative;
}

.buy-sell-bottom .bg .box-area-all.box-area-all2 .icon {
    top: auto;
    bottom: -80px;
}

.buy-sell-bottom .bg .box-area-all.box-area-all2 .single-box {
    margin-top: 0;
}

.buy-sell-bottom .bg .box-area-all.box-area-all3 {
    position: relative;
}

.buy-sell-bottom .bg .box-area-all.box-area-all3 .icon {
    right: auto;
    left: 20px;
}

.buy-sell-bottom .bg .box-area-all.box-area-all4 {
    position: relative;
}

.buy-sell-bottom .bg .box-area-all.box-area-all4 .icon {
    top: auto;
    bottom: -80px;
    right: auto;
    left: 20px;
}

.buy-sell-bottom .bg .box-area-all.box-area-all4 .single-box {
    margin-top: 0;
}

.buy-sell-bottom .bg .box-area-all:hover .icon {
    background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #5132A6 0%, #726EFC 100%));
    transition: all 0.4s;
}

.buy-sell-bottom .bg .box-area-all:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.buy-sell-bottom .service1-main-images {
    position: relative;
    margin: 60px 50px 0 50px;
}

.buy-sell-bottom .service1-main-images .main-img2 {
    position: absolute;
    bottom: 260px;
    left: 90px;
}

@media (max-width: 767px) {
    .buy-sell-bottom .service1-main-images .main-img2 {
        bottom: 160px;
    }
}

.buy-sell-bottom .service1-main-images .image3 {
    position: absolute;
    top: 260px;
    right: 30px;
}

@media (max-width: 767px) {
    .buy-sell-bottom .service1-main-images .image3 {
        top: 180px;
    }
}

.buy-sell-bottom .service1-main-images .shape1 {
    position: absolute;
    top: 62px;
    left: -101px;
}

@media (max-width: 767px) {
    .buy-sell-bottom .service1-main-images .shape1 {
        display: none;
    }
}

.buy-sell-bottom .service1-main-images .shape2 {
    position: absolute;
    top: 64px;
    right: -109px;
}

@media (max-width: 767px) {
    .buy-sell-bottom .service1-main-images .shape2 {
        display: none;
    }
}

.buy-sell-bottom .service1-main-images .shape3 {
    position: absolute;
    bottom: 52px;
    left: -104px;
}

@media (max-width: 767px) {
    .buy-sell-bottom .service1-main-images .shape3 {
        display: none;
    }
}

.buy-sell-bottom .service1-main-images .shape4 {
    position: absolute;
    bottom: 51px;
    right: -99px;
}

@media (max-width: 767px) {
    .buy-sell-bottom .service1-main-images .shape4 {
        display: none;
    }
}

.apps8 {
    position: relative;
    padding: 60px 0px 0px 0px;
}

.apps8::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/apps8-bg.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.apps8 .images-all {
    height: 650px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .apps8 .images-all {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .apps8 .images-all {
        height: 400px;
    }
}

.apps8 .images-all .image2 {
    position: absolute;
    top: 0;
    left: 0;
}

.compani8 {
    position: relative;
}

.compani8 .images-all {
    text-align: end;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .compani8 .images-all {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .compani8 .images-all {
        margin-top: 15px;
    }
}

.compani8 .images-all .image2 {
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 120px;
}

@media (max-width: 767px) {
    .compani8 .images-all .image2 {
        margin-left: 0;
    }
}

.autofill {
    position: relative;
    padding: 60px 0px 0px 0px;
}

.autofill::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg/apps8-bg.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -6;
}

.autofill .images-all {
    height: 650px;
    position: relative;
    margin-right: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .autofill .images-all {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .autofill .images-all {
        margin-right: 0;
        margin-bottom: 40px;
        height: 400px;
    }
}

.autofill .images-all .image2 {
    position: absolute;
    top: 70px;
    left: 0;
}

.buy-sell-bottom2 {
    position: relative;
    z-index: 99;
}

.buy-sell-bottom2 .bg .box-area-all {
    position: relative;
    z-index: 9;
}

.buy-sell-bottom2 .bg .box-area-all .icon {
    background: #7371FC;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    position: absolute;
    right: 20px;
    top: -80px;
    transition: all 0.4s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .buy-sell-bottom2 .bg .box-area-all .icon {
        display: none;
    }
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .bg .box-area-all .icon {
        display: none;
    }
}

.buy-sell-bottom2 .bg .box-area-all .icon img {
    transition: all 0.4s;
}

.buy-sell-bottom2 .bg .box-area-all .single-box {
    background-color: #F3F4FF;
    padding: 24px;
    border-radius: 4px;
    margin-top: 70px;
    text-align: center;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all2 {
    position: relative;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all2 .icon {
    top: auto;
    bottom: -80px;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all2 .single-box {
    margin-top: 0;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all3 {
    position: relative;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all3 .icon {
    right: auto;
    left: 20px;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all4 {
    position: relative;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all4 .icon {
    top: auto;
    bottom: -80px;
    right: auto;
    left: 20px;
}

.buy-sell-bottom2 .bg .box-area-all.box-area-all4 .single-box {
    margin-top: 0;
}

.buy-sell-bottom2 .bg .box-area-all:hover .icon {
    background: #7371FC;
    transition: all 0.4s;
}

.buy-sell-bottom2 .bg .box-area-all:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.buy-sell-bottom2 .service1-main-images {
    position: relative;
    margin: 60px 50px 0 50px;
}

.buy-sell-bottom2 .service1-main-images .main-img2 {
    position: absolute;
    bottom: 110px;
    left: 50px;
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .service1-main-images .main-img2 {
        bottom: 160px;
    }
}

.buy-sell-bottom2 .service1-main-images .image3 {
    position: absolute;
    top: 260px;
    right: 30px;
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .service1-main-images .image3 {
        top: 180px;
    }
}

.buy-sell-bottom2 .service1-main-images .shape1 {
    position: absolute;
    top: 62px;
    left: -101px;
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .service1-main-images .shape1 {
        display: none;
    }
}

.buy-sell-bottom2 .service1-main-images .shape2 {
    position: absolute;
    top: 64px;
    right: -109px;
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .service1-main-images .shape2 {
        display: none;
    }
}

.buy-sell-bottom2 .service1-main-images .shape3 {
    position: absolute;
    bottom: 52px;
    left: -104px;
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .service1-main-images .shape3 {
        display: none;
    }
}

.buy-sell-bottom2 .service1-main-images .shape4 {
    position: absolute;
    bottom: 51px;
    right: -99px;
}

@media (max-width: 767px) {
    .buy-sell-bottom2 .service1-main-images .shape4 {
        display: none;
    }
}

.hr-solutions {
    position: relative;
    background-color: #F5F5FD;
}

.hr-solutions .heading9 {
    padding: 100px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hr-solutions .heading9 {
        padding: 50px 0px;
    }
}

@media (max-width: 767px) {
    .hr-solutions .heading9 {
        padding: 50px 0px;
    }
}

/*
 ::::::::::::::::::::::::::
  SERVICE AREA CSS
 ::::::::::::::::::::::::::
 */
.service3 .service-tabs-area .tabs-boxs ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service3 .service-tabs-area .tabs-boxs ul li button {
    background: none;
    padding: 28px;
    border: none;
    min-width: 224px;
    margin-top: 30px;
    border-radius: 4px;
    transition: all 0.4s;
    position: relative;
}

.service3 .service-tabs-area .tabs-boxs ul li button span {
    color: var(--qt-text-h-text2);
    font-size: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs20);
    display: inline-block;
    margin-top: 20px;
}

.service3 .service-tabs-area .tabs-boxs ul li button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    border-bottom: 7px solid var(--qt-bg-bg-9);
    border-top: 2px solid var(--qt-bg-bg-w);
    border-left: 2px solid var(--qt-bg-bg-w);
    border-right: 2px solid var(--qt-bg-bg-w);
}

.service3 .service-tabs-area .tabs-boxs ul li button.active {
    transition: all 0.4s;
}

.service3 .service-tabs-area .tabs-boxs ul li button.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    border-radius: 4px;
    border-bottom: 7px solid var(--qt-bg-bg-8);
    border-top: 2px solid var(--qt-bg-bg-8);
    border-left: 2px solid var(--qt-bg-bg-8);
    border-right: 2px solid var(--qt-bg-bg-8);
}

.service3 .service-tabs-area .tabs-item-area .tab-pane {
    background-color: var(--qt-bg-bg-9);
    padding: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service3 .service-tabs-area .tabs-item-area .tab-pane {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .service3 .service-tabs-area .tabs-item-area .tab-pane {
        padding: 20px;
    }
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding h3 {
    font-size: var(--f-fs-font-fs32);
    line-height: var(--f-fs-font-fs32);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding p {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding .list li {
    color: var(--qt-text-h-text2);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    font-weight: var(--f-fw-medium);
    padding: 10px 0;
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding .list li span {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #FAECEE;
    line-height: var(--f-fs-font-fs12);
    text-align: center;
    font-size: 12px;
    color: var(--qt-bg-bg-8);
    margin-right: 6px;
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images {
        margin-top: 40px;
    }
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images .img1 {
    text-align: end;
}

.service3 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images .img2 {
    position: absolute;
    bottom: 0px;
}

.service4 .service-box {
    text-align: center;
    background-color: var(--qt-bg-bg-16);
    border-radius: 4px;
    padding: 28px 22px;
    transition: all 0.4s;
    margin-top: 30px;
}

.service4 .service-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
    background-color: var(--qt-bg-bg-15);
}

.service4 .service-box:hover .icon img {
    transition: all 0.4s;
    filter: brightness(0) invert(1);
}

.service4 .service-box:hover h4 a {
    transition: all 0.4s;
    color: var(--qt-text-h-text1);
}

.service4 .service-box:hover p {
    transition: all 0.4s;
    color: rgba(255, 255, 255, 0.7215686275);
}

.service4 .service-box .icon {
    margin-bottom: 24px;
}

.service4 .service-box .icon img {
    transition: all 0.4s;
}

.service4 .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service4 .shape1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .service4 .shape1 {
        display: none;
    }
}

.service5 {
    background-color: #fff;
    position: relative;
}

.service5 .heading5 p.title {
    background: linear-gradient(90deg, rgba(102, 47, 255, 0.1) -17.5%, rgba(234, 37, 245, 0.1) 100%);
}

.service5 .service-tabs-area .tabs-boxs ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service5 .service-tabs-area .tabs-boxs ul li button {
    background: none;
    padding: 28px;
    border: none;
    min-width: 224px;
    margin-top: 30px;
    border-radius: 4px;
    transition: all 0.4s;
    position: relative;
}

.service5 .service-tabs-area .tabs-boxs ul li button span {
    color: var(--qt-text-h-text2);
    font-size: var(--f-fs-font-fs20);
    font-weight: var(--f-fw-semibold);
    line-height: var(--f-fs-font-fs20);
    display: inline-block;
    margin-top: 20px;
}

.service5 .service-tabs-area .tabs-boxs ul li button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    border-bottom: 7px solid rgba(235, 37, 245, 0.0666666667);
    border-top: 2px solid var(--qt-bg-bg-w);
    border-left: 2px solid var(--qt-bg-bg-w);
    border-right: 2px solid var(--qt-bg-bg-w);
}

.service5 .service-tabs-area .tabs-boxs ul li button.active {
    transition: all 0.4s;
}

.service5 .service-tabs-area .tabs-boxs ul li button.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    border-radius: 4px;
    border-top: 2px solid var(--Gradient, #EA25F5);
    border-right: 2px solid var(--Gradient, #EA25F5);
    border-bottom: 6px solid var(--Gradient, #EA25F5);
    border-left: 2px solid var(--Gradient, #EA25F5);
}

.service5 .service-tabs-area .tabs-item-area .tab-pane {
    background-color: #F9F4FF;
    padding: 60px;
    border-radius: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service5 .service-tabs-area .tabs-item-area .tab-pane {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .service5 .service-tabs-area .tabs-item-area .tab-pane {
        padding: 20px;
    }
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding h3 {
    font-size: var(--f-fs-font-fs32);
    line-height: var(--f-fs-font-fs32);
    font-weight: var(--f-fw-semibold);
    color: var(--qt-text-h-text2);
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding p {
    color: var(--qt-text-p-text3);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    font-weight: var(--f-fw-regular);
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding .track-list li {
    color: var(--Main-Text, #110D39);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 100% */
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-headding .track-list li span.check {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: var(--Gradient, linear-gradient(90deg, #662FFF -17.5%, #EA25F5 100%));
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    margin-right: 7px;
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images {
        margin-top: 40px;
    }
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images .img1 {
    text-align: end;
    margin-right: -60px;
}

.service5 .service-tabs-area .tabs-item-area .tab-pane .service-3-bottom-area .tab-bottom-images .img2 {
    position: absolute;
    bottom: 0px;
}

.service5 .shape1 {
    position: absolute;
    right: 0;
    top: 0;
}

.service5 .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

/*
 ::::::::::::::::::::::::::
  SERVICE AREA CSS
 ::::::::::::::::::::::::::
 */
/*
 ::::::::::::::::::::::::::
  PRRELOADER AREA CSS
 ::::::::::::::::::::::::::
 */
@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fade-out {
    animation-name: fade-out;
}

/* Flex helpers */
.flex {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 100000000;
}

.flex.flex-wrap-wrap {
    flex-wrap: wrap;
}

.flex .row,
.flex .full-width {
    width: 100%;
}

.flex.justify-content-end {
    justify-content: flex-end;
}

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

.flex.justify-space-around {
    justify-content: space-around;
}

.flex.justify-space-between {
    justify-content: space-between;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation-name: fade-in;
}

.overlay {
    background-color: #0B2147;
}

.overlay .preloader svg {
    animation-name: preloader-in;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.overlay .preloader.out svg {
    animation-name: preloader-out;
}

.overlay .preloader.animate .outer {
    animation-name: show100;
    animation-duration: 2.3s;
    animation-delay: 1s;
    animation-timing-function: linear;
    opacity: 1;
}

.overlay .preloader .logo {
    opacity: 0;
    animation-delay: 0.5s;
    display: block;
    width: 180px;
    height: 90px;
    margin: 0px auto;
    text-align: center;
    background: transparent url(../img/new-images/Saamaya-Inventory-Logo-white.png) no-repeat center center;
    background-size: contain;
    text-indent: -99999px;
    padding: 5px;
}

.overlay .preloader .logo.fade-out {
    animation-delay: 0.2s;
    animation-duration: 0.2s;
}

@keyframes preloader-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    25% {
        opacity: 1;
        transform: scale(1.4);
    }

    60% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes preloader-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    25% {
        opacity: 1;
        transform: scale(1.4);
    }

    60% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.loader {
    position: relative;
    height: 200px;
    width: 200px;
}

.loader svg {
    position: absolute;
    top: 0%;
}

.outer {
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 99;
    /* transition: stroke-dashoffset 1s;*/
    stroke-dashoffset: 0;
    opacity: 0;
}

.preloader .outer {
    stroke-dasharray: 502;
}

.outer.loading {
    transition: stroke-dashoffset 0.8s ease;
}

.background {
    opacity: 0.5;
    stroke: #fff;
    stroke-width: 2;
    fill: transparent;
}

.animate .outer {
    animation-name: show100;
    animation-duration: 5s;
    opacity: 1;
    animation-timing-function: linear;
}

.loader.animate {
    transform: rotate(-90deg);
}

/*
 ::::::::::::::::::::::::::
  PRRELOADER AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 CHOOSE AREA CSS
::::::::::::::::::::::::::
*/
.choose2 .choose-images {
    position: relative;
    margin-top: 30px;
}

.choose2 .choose-images .image1 {
    margin-left: 60px;
    text-align: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose2 .choose-images .image1 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .choose2 .choose-images .image1 {
        margin-left: 0;
    }
}

.choose2 .choose-images .image1 img {
    width: 100%;
}

.choose2 .choose-images .image2 {
    position: absolute;
    top: -40px;
    right: -40px;
}

.choose2 .accordion {
    border: none;
}

.choose2 .accordion .accordion-item.collapsed {
    background: red;
}

.choose2 .accordion .accordion-item {
    border: 2px solid rgba(106, 92, 255, 0.2784313725);
    margin-top: 16px;
    border-radius: 4px;
    transition: all 0.4s;
}

.choose2 .accordion .accordion-item button {
    border-radius: 4px 4px 0px 0px;
    background: none;
    border: none;
    color: var(--qt-text-h-text2);
    font-weight: var(--f-fw-blod);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs18);
    padding: 20px;
}

.choose2 .accordion .accordion-item button:focus {
    outline: none;
    box-shadow: none;
}

.choose2 .accordion .accordion-item div {
    border: none;
}

.choose2 .accordion .accordion-item .accordion-body {
    border: none;
    color: var(--qt-text-p-text2);
    font-weight: var(--f-fw-regular);
    font-size: var(--f-fs-font-fs18);
    line-height: var(--f-fs-font-fs30);
    padding: 0px 20px 20px 20px;
}

.choose2 .accordion .accordion-item.active {
    border: 2px solid var(--qt-bg-bg-7);
    transition: all 0.4s;
}

.accordion {
    --bs-accordion-color: #000;
    --bs-accordion-bg: #fff;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: none;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.375rem;
    --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="var%28--bs-body-color%29"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%230c63e4"%3e%3cpath fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e);
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #0c63e4;
    --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    filter: brightness(0.5);
}

.choose5 .choose-box {
    margin-top: 30px;
    text-align: center;
}

.choose5 .choose-box .image {
    border-radius: 7px;
    overflow: hidden;
}

.choose5 .choose-box .image img {
    transition: all 0.4s;
}

.choose5 .choose-box .heading5 {
    padding: 0px 40px;
}

.choose5 .choose-box:hover .image img {
    transition: all 0.4s;
    transform: scale(1.1);
}

/*
::::::::::::::::::::::::::
 CHOOSE AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 FEATURES AREA CSS
::::::::::::::::::::::::::
*/
.features .features-item-box {
    padding: 20px;
    position: relative;
    z-index: 99;
}

.features .features-item-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(99deg, #FFF -1001.54%, rgba(255, 255, 255, 0) 127.88%);
    -webkit-backdrop-filter: blur(102px);
    backdrop-filter: blur(102px);
    z-index: -2;
}

.features .features-item-box .features-box {
    background-color: var(--qt-bg-bg-3);
    padding: 40px;
}

.features .features-item-box .features-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 300px;
    width: 400px;
    background-color: var(--qt-bg-bg-2);
    z-index: -99;
    transition: all 0.4s;
    animation-name: animation2;
    animation-duration: 6s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    opacity: 0;
}

.features .features-item-box .features-box .tab-list {
    list-style: none;
}

.features .features-item-box .features-box .tab-list li {
    color: var(--qt-bg-bg-w);
    font-size: var(--f-fs-font-fs18);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: var(--f-fs-font-fs18);
    padding: 6px 0px;
}

.features .features-item-box .features-box .tab-list li span {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--qt-bg-bg-10);
    text-align: center;
    line-height: 24px;
    color: var(--qt-bg-bg-w);
    margin-right: 6px;
}

.features .features-item-box .features-box .bottom-headding-area {
    display: flex;
    align-items: center;
}

.features .features-item-box .features-box .bottom-headding-area .image {
    margin-right: 20px;
}

.features .features-item-box .features-box .bottom-headding-area .stars {
    list-style: none;
}

.features .features-item-box .features-box .bottom-headding-area .stars li {
    color: var(--qt-bg-bg-11);
    display: inline-block;
}

.features .features-item-box .features-box .bottom-headding-area p.pera {
    padding-top: 5px;
}

.features .features-item-box .features-box .features-sidebox-area .btn.btn--ripple {
    width: 100%;
    margin-top: 24px;
}

.features .features-item-box .features-box .features-sidebox {
    background-color: var(--qt-bg-bg-4);
    padding: 20px;
    border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features .features-item-box .features-box .features-sidebox {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .features .features-item-box .features-box .features-sidebox {
        margin-top: 40px;
    }
}

.features .features-item-box .features-box .features-sidebox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features .features-item-box .features-box .features-sidebox ul li {
    padding-bottom: 16px;
    padding-top: 16px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-bottom: 1px solid #4B5070;
}

.features .features-item-box .features-box .features-sidebox ul li img {
    margin-right: 8px;
}

.features .features-item-box .features-box .features-sidebox ul li:nth-last-child(1) {
    border: none;
    padding-bottom: 0;
}

.features .features-item-box .features-box .features-sidebox ul li:nth-child(1) {
    padding-top: 0px;
}

.features .nav.nav-pills {
    background-color: var(--qt-bg-bg-4);
    padding: 0 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features .nav.nav-pills {
        display: block;
    }
}

@media (max-width: 767px) {
    .features .nav.nav-pills {
        display: block;
    }
}

.features .nav.nav-pills li button {
    padding: 14px 16px;
    border-radius: 4px;
    background-color: var(--qt-bg-bg-1);
    margin: 16px 0px;
    color: var(--qt-text-h-text1);
    font-size: var(--f-fs-font-fs16);
    font-style: normal;
    font-weight: var(--f-fw-medium);
    line-height: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features .nav.nav-pills li button {
        margin: 16px 16px;
    }
}

@media (max-width: 767px) {
    .features .nav.nav-pills li button {
        margin: 16px 16px;
    }
}

.features .nav.nav-pills li button.active {
    border-radius: 4px;
    background: var(--Project-Management-Color-Linner-Color, linear-gradient(95deg, #603BF3 0.75%, #8F00FF 101.34%));
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features .nav.nav-pills li {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .features .nav.nav-pills li {
        display: inline-block;
    }
}

.features .shape1 {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -2;
}

.features .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}

.tab-pane.fade {
    transform: rotateX(30deg) translateY(50px);
    opacity: 0;
}

.tab-pane.show.active {
    transform: rotateX(0) translateY(0);
    transition: all 0.5s;
    opacity: 1;
}

.tab-pane.show.active .features-item-box .features-box::before {
    opacity: 1;
    transition: all 0.4s;
}

.features-left {
    padding-left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-left {
        padding-left: 0;
    }
}

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

.features-right {
    padding-right: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-right {
        padding-right: 0;
    }
}

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

.feratures-page-area .image img {
    width: 100%;
}

/*
::::::::::::::::::::::::::
 FEATURES AREA CSS
::::::::::::::::::::::::::
*/
/*# sourceMappingURL=main.css.map */















/*************************************
New Update Css Start Here 02 Sep 2025
*************************************/
.header-area1.sticky {
    background: #fff;
    border-bottom: 1px solid #ececec !important;
}

.header-area1 .btn--ripple {
    border-radius: 4px;
    background: #052561;
    overflow: hidden;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 50px !important;
}

/* .header-area1 .btn--ripple {
    border-radius: 4px;
    background: #f7bf09;
    overflow: hidden;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 50px !important;
} */
/* .leftSideheader {
    display: flex;
    align-items: center;
    gap: 250px;
} */
.header-area.header-area1 .header-elements .main-menu-ex::after {

    border: none;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;

}

.header-area.header-area1 .header-elements .main-menu-ex::before {
    display: none;
}


.banner-outer-wrap {
    padding: 105px 0 50px;
}

.banner-slide-inner {
    display: flex;
    width: 100%;
    align-items: center;
    height: 350px;
    border-radius: 30px;
    justify-content: space-between;
    overflow: hidden;
    padding-right: 50px;
}

.gradient-bg1 {
    background: linear-gradient(90deg, #3d911c 0%, #4CAF50 60%);
}

.gradient-bg2 {
    background: linear-gradient(90deg, #402b8a 0% 0%, #7054dc 60%);
}

.gradient-bg3 {
    background: linear-gradient(90deg, #5364c7 0%, #aab8ff 60%);
}

.gradient-bg4 {
    background: linear-gradient(90deg, #7824fa 0%, #7824fa 60%);
}

.banner-slide-image {
    max-width: 550px;
    height: 100%;
    position: relative;
}

.banner-slide-image.cars {
    top: 40px;
}

.banner-slide-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.banner-text {
    height: 100%;
    width: 55%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 85px;
    color: #fff;
    position: relative;
    z-index: 5;
}

.banner-text:before,
.banner-text:after {
    content: '';
    position: absolute;
    height: 300px;
    width: 300px;
    background: #D9D9D933;
    border-radius: 50%;
    left: -100px;
    top: -25%;
}

.banner-text:after {
    top: inherit;
    bottom: -80px;
    height: 150px;
    width: 150px;
    left: 20%;
}

.banner-text h3 {
    font-size: 65px;
    font-weight: 600;
    line-height: 65px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 15px;
}

.banner-text a {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    justify-content: center;
    width: 148px;
    margin-top: 28px;
    color: #222;
}

.banner-text a iconify-icon {
    font-size: 24px;
    position: relative;
    top: 1px;
}

.banner-wrap .slick-dots li button {
    width: 12px !important;
    height: 12px !important;
    background: #a9a9a97a !important;
    border-radius: 50% !important;
    transition: .5s;
    border: none;
    font-size: 0;
}

.banner-wrap .slick-dots {
    justify-content: center;
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.banner-wrap .slick-dots li button::before {
    display: none !important;
}

.banner-wrap .slick-dots li.slick-active button {
    background: #FF9800 !important;
    min-width: 30px !important;
    transition: .5s;
    border-radius: 20px !important;
}

.banner-wrap .slick-dots li {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 15px;
    top: 10px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1460px;
}

.brands-area6 .apps-images .image1 .dot {
    margin-right: -60px;
}

.brands-area6 .apps-images .image2 {
    position: absolute;
    top: -22px;
    right: 0;
    z-index: 2;
}

.brands-area6 .apps-images .image1 {
    margin-right: 30px;
    position: relative;
    margin-left: 30px;
    margin-top: 30px;
}

.AllVendors {
    padding: 0px 0 50px;
}

.AllVendors .heading5 {
    margin-bottom: 35px;
}

.vendorCardWrapper {
    padding: 18px 10px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    box-shadow: rgb(149 157 165 / 4%) 0px 8px 24px;
    transition: 0.2s all;
    min-height: 335px;
}

.vendorCardWrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.btn-viewProducts {
    border: 1px solid #FF9800;
    padding: 8px 20px !important;
    color: #FF9800;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    width: calc(100% - 30px);
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 15px;
    bottom: 18px;
}

.vendorCardWrapper:hover .btn-viewProducts {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: #fff;
    border: 1px solid #FF9800;
}

.vendorImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
}

.vendorImg {
    width: 80px;
    height: 80px;
    padding: 10px;
    border: 1px solid #ffe4bc;
    border-radius: 70px;
    background: #fff6e8;
}

.storeName {
    /* text-align: center; */
    font-size: 18px;
    margin-top: 10px;
    color: #000;
}

.innerVenDT {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.innerVenDT h6 {
    font-size: 14px;
    color: #7d7e7e;
}

/* .vendorImg {
    position: absolute;
    top: -40px;
} */
.otherDt {
    margin-top: 5px;
}

h6.DistanceMart iconify-icon {
    color: #FF5722;
}

h6.DistanceMart {
    display: flex;
    align-items: center;
    gap: 3px;
}

.banner-text h3 span {
    color: #FFEB3B;
}














.hero-section {
    background: linear-gradient(135deg, #2D5A3D 0%, #4A7C5D 100%);
    min-height: 63vh;
    position: relative;
    overflow: hidden;
    padding: 40px 0 0px;
}

.hero-content {
    padding: 80px 0 60px 55px;
    position: relative;
    z-index: 2;
}

.shipping-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shipping-icon {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.shipping-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #FFD700;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 100%;
}

.shop-btn {
    background: linear-gradient(45deg, #FF6B35, #FF8F50);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #FF5722, #FF7043);
}

.delivery-notification {
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    animation: slideUp 0.6s ease-out 0.5s both;
}

.delivery-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.delivery-text {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin-bottom: -200px;
}

.delivery-person {
    max-width: 79%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    margin-left: 50px;
}

.features-section {
    padding: 50px 0;
    background: #ffffff;
}

.feature-card {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    /* text-align: center; */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    gap: 5px;
    align-items: self-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.InfoCnt {
    width: 80%;
    margin-left: 15px;
}

.feature-icon.organic {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
}

.feature-icon.delivery {
    background: linear-gradient(45deg, #2196F3, #42A5F5);
}

.feature-icon.support {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
}

.feature-icon.fresh {
    background: linear-gradient(45deg, #E91E63, #F06292);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: slideUp 0.6s ease-out both;
}

.fade-in-delay-1 {
    animation: slideUp 0.6s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: slideUp 0.6s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: slideUp 0.6s ease-out 0.6s both;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 50px 0;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.heading5 .title {
    border-radius: 40px;
    background: #fff6ea;
    padding: 6px 12px 5px 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.heading5 span.span {
    display: inline-block;
    background: var(--Gradient, linear-gradient(90deg, #FF9800 -17.5%, #FF5722 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}

.compani8 {
    position: relative;
    background: #f8fafc;
    padding: 50px 0;
}

.heading8 h2 {
    color: var(--Home-Page-8-Text-Color, #271A3C);
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
}

ul.ModernList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 30px;
}

ul.ModernList li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    width: calc(50% - 15px);
}

ul.ModernList li iconify-icon {
    font-size: 25px;
    color: #467af5;
}

.ContentBox h6 {
    font-size: 16px;
    font-weight: 600;
}

.heading8 span.span span.text {
    display: inline-block;
    background: var(--Home-Page-8-Linner-Color, linear-gradient(90deg, #FF9800 -17.5%, #FF5722 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading8 span.span {
    color: var(--Home-Page-8-Main-Color, #7D2EFE);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    background-color: #fff3e1;
    border-radius: 7px;
    padding: 8px 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.compani8 .images-all .image1 {
    margin-left: 70px;
}


.feature-top {
    display: flex;
    gap: 100px;
}

.feature-item {
    border-radius: 10px;
    border: 1px solid rgba(27, 42, 82, 0.07);
    background-color: #FFF;
    padding: 30px 30px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 8px 30px -12px hsl(220 78% 29% / .25);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px -16px hsl(220 78% 29% / .3);

}

.feature-item-title {
    color: #1B2A52;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.feature-item p {
    color: #6A738B;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.feature-item-1::after {
    position: absolute;
    right: -84px;
    top: 50%;
    transform: translateY(-50%);
    content: url("../img/new-images/shop-online/shape-4.png");
}

.feature-item-2::after {
    position: absolute;
    right: -84px;
    top: 50%;
    transform: translateY(-50%);
    content: url("../img/new-images/shop-online/shape-5.png");
}

section.feature-area {
    padding: 60px 0;
}

section.feature-area .heading5 {
    margin-bottom: 40px;
}

.vendorCategories {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.vendor-cat {
    /* background: #f7bf09; */
    color: #767676;
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    border-radius: 5px;
    display: inline-block;
}

input#vendorSearch {
    padding: 15px 20px;
    border-radius: 50px;
    width: 500px;
}

.TopVendorSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.searchBntio {
    position: absolute;
    top: 13px;
    right: 16px;
    font-size: 22px;
    color: #949494;
}

.vendor-search {
    position: relative;
}

input#vendorSearch:focus {
    color: #212529;
    background-color: #fff;
    border-color: #FF9800;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(255 152 0 / 11%);
}

/*************************************
        Product Search page css start here
        **************************************/
:root {
    --primary-color: #20c997;
    --secondary-color: #6c757d;
    --accent-color: #fd7e14;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --text-muted: #6c757d;
}

.main-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-container {
    position: relative;
    max-width: 500px;
    width: 450px;
}

.search-input {
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 50px 12px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 0.2rem rgb(255 152 0 / 15%);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #0a2964;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #FF9800;
    transform: translateY(-50%) scale(1.05);
}

.filters-sidebar {
    background: white;
    padding: 2rem 1.4rem;
    height: fit-content;
    border-radius: 12px;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
    position: sticky;
    top: 120px;
}

.filter-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div#activeFilters {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag.active {
    background: #FF9800;
    color: white;
}

.filter-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.clear-filters {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    color: #1aa17a;
    text-decoration: underline;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-top: 10px;
}

.category-item:hover {
    color: #FF9800;
    transform: translateX(5px);
}

.category-count {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.price-range {
    position: relative;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    margin: 20px 0;
}

.price-slider {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #1aa17a);
    border-radius: 3px;
    width: 60%;
}

.price-thumb {
    position: absolute;
    top: -6px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.price-thumb:active {
    cursor: grabbing;
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.rating-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-filter:hover {
    color: var(--primary-color);
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 16px;
    transition: color 0.2s ease;
}

.star.filled {
    color: #ffc107;
}

.products-section {
    padding: 2rem 1.5rem;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-header h2 {
    font-size: 25px;
}

.sort-dropdown {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 16px;
    background: white;
    cursor: pointer;
    min-width: 160px;
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
} */

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
    transition: all 0.4s ease;
    /* border: 1px solid transparent; */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFC107;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    padding: 10px;
    border-radius: 5px;
    background: #f5f5f5;
    margin: 15px 15px 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    mix-blend-mode: darken;
}

/* .product-card:hover .product-img {
            transform: scale(1.05);
        } */

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FF9800;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.product-info {
    padding: 1.2rem;
}

.product-category {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.product-weight {
    color: var(--text-muted);
    font-size: 12px;
    padding: 0px 10px;
    background: #fff8ee;
    color: #FF9800;
    border-radius: 5px;
    border: 1px solid #ffeaaa;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* .product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
    justify-content: space-between;
    margin-top: 15px;
} */

.product-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}


.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--light-gray);
}

.qty-input {
    border: none;
    text-align: center;
    width: 50px;
    height: 36px;
    font-weight: 600;
}

.add-to-cart {
    background: #0a2964;
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s
ease;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.cart-button {
    width: 60px;
    height: 60px;
    background: #0a2964;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(63 81 181 / 41%);
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 20px;
}

.cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgb(63 81 181 / 41%);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #333;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-summary {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-total {
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
}

.checkout-btn {
    width: 100%;
    background: #f7bf09;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.checkout-btn:hover {
    background: #FF9800;
    transform: translateY(-2px);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: var(--text-muted);
}

.empty-cart-icon {
    font-size: 60px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        z-index: 1002;
        transition: left 0.4s ease;
    }

    .filters-sidebar.open {
        left: 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 0;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .search-container {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(even) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3n) {
    animation-delay: 0.2s;
}

/* Loading animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.MainProductSearch {
    margin-top: 85px;
}

.InnerVendor {
    margin-top: 40px;
}

.InnerVendor .vendorCardWrapper {
    padding: 15px 15px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row;
    justify-content: left;
    text-align: left;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
    transition: 0.2s all;
    min-height: auto;
}

.topProduct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cart-item-quantity button.btn.btn-sm.btn-outline-secondary {
    background: #f8f9fa;
    border: 1px solid #ececec;
    color: #000;
    padding: 5px 10px;
    font-size: 11px;
}

.cart-item-quantity button.btn.btn-sm.btn-outline-danger.ms-2 {
    background: #ffeaea;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #ffcfcc;
    color: #f00;
}

img.NoDataImg {
    width: 150px;
}

img.cartEmptyImg {
    width: 150px;
}

.empty-cart p {
    margin-bottom: 0;
    margin-top: 15px;
}

/*************************************
        Product Search page css End here
        **************************************/


/*************************************
        Product Detail page css Start here
        **************************************/

.product-detail-section {
    padding: 7rem 0 3rem;
}

.product-main-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.product-main-image img {
    width: 100%;
    height: 505px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.xzoom-preview {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 10px;
    width: 400px !important;
    height: 400px !important;
    border: 1px solid var(--border-color);
    background-color: white;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-detail-section .thumbnail-slider {
    width: 100px;
    max-height: 510px;
    /* 5 thumbnails * (100px height + 10px margin) */
    position: relative;
}

.product-detail-section .swiper {
    height: 510px;
}

.product-detail-section .swiper-slide {
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.product-detail-section .swiper-slide.active {
    border-color: var(--primary-color);
}

.product-detail-section .swiper-slide img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.product-detail-section .swiper-button-prev,
.product-detail-section .swiper-button-next {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    --swiper-navigation-size: 20px;
}

.product-detail-section .swiper-button-prev:hover,
.product-detail-section .swiper-button-next:hover {
    background: #0a2964;
    color: #ffffff !important;
}

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

.product-detail-section .swiper-button-prev iconify-icon,
.product-detail-section .swiper-button-next iconify-icon {
    font-size: 20px;
}

.product-detail-section .swiper-button-disabled {
    color: var(--text-muted) !important;
    cursor: not-allowed;
}

.product-detail-section .product-info {
    padding: 1.5rem;
}

.product-detail-section .product-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.product-detail-section .product-category {
    color: var(--text-muted);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 5px;
    font-weight: 400;
}

.product-detail-section .product-weight {
    color: var(--text-muted);
    font-size: 12px;
    padding: 4px 10px;
    background: #fff8ee;
    color: #FF9800;
    border-radius: 5px;
    border: 1px solid #ffeaaa;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-detail-section .product-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.product-detail-section .current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-detail-section .original-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-section .product-badge {
    display: inline-block;
    background: #FF9800;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    left: 0;
    top: 0;
}

.product-detail-section .product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-section .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.product-detail-section .qty-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-detail-section .qty-btn:hover {
    background: var(--light-gray);
}

.product-detail-section .qty-input {
    border: none;
    text-align: center;
    width: 50px;
    height: 36px;
    font-weight: 600;
}

.product-detail-section .add-to-cart {
    background: #0a2964;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-detail-section .add-to-cart:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.product-detail-section .nav-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.product-detail-section .nav-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.product-detail-section .nav-tabs .nav-link.active {
    color: #FF9800;
    border-bottom: 2px solid #FF9800;
    background: transparent;
}

.product-detail-section .nav-tabs .nav-link:hover {
    color: #FF9800;
}

.product-detail-section .tab-content {
    padding: 0 1.5rem;
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.08); */
}

.product-detail-section .tab-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-detail-section .tab-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.product-detail-section .tab-content ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.product-detail-section .tab-content ul li {
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.product-detail-section .specifications-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.product-detail-section .specifications-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
}

@media (max-width: 768px) {
    .product-detail-section .product-main-image img {
        height: 300px;
    }

    .product-detail-section .swiper {
        height: 410px;
        /* 5 thumbnails * (80px height + 10px margin) */
    }

    .product-detail-section .swiper-slide img {
        height: 80px;
    }

    .product-detail-section .xzoom-preview {
        width: 300px !important;
        height: 300px !important;
    }
}

.product-detail-section .swiper-button-next {
    top: unset !important;
    bottom: 8px !important;
    left: 35px !important;

    padding: 14px;
    background: #fff;
    color: #000 !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.product-detail-section .swiper-button-prev {
    top: 14px !important;
    left: 37px !important;
    padding: 14px;
    background: #fff;
    color: #000 !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.variationRadio {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.variationRadio .radio-container {
    position: relative;
}

.variationRadio .radio-container input[type="radio"] {
    display: none;
}

.variationRadio .radio-container label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #facc15;
    /* yellow border */
    background-color: #fffaf0;
    /* light background */
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #f97316;
    /* orange text */
    transition: all 0.3s ease;
}

.variationRadio .radio-container input[type="radio"]:checked+label {
    background-color: #fff7e6;
    border: 1px solid #FF9800;
    box-shadow: 0 0 5px #ff980078;
}

p.productDescription {
    margin-bottom: 20px;
}

.VendorProduct .vendorCardWrapper {
    padding: 0;
    background: #fff;
    border: none;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    justify-content: start;
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    box-shadow: none;
    transition: 0.2s all;
}

.VendorProduct .vendorCardWrapper:hover {
    transform: none;
    box-shadow: none;
}

.VendorProduct .vendorImg {
    width: 60px;
    height: 60px;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 70px;
    background: #fafafa;
}


.product-detail-section .product-actions {
    justify-content: start;
}

.product-detail-section .product-title {
    font-size: 27px;
    margin-bottom: 10px;
    line-height: 33px;
}

.product-detail-section .current-price {
    font-size: 30px;
    color: #000000;
    margin: 10px 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #dee2e6 !important;

}

/*************************************
        Product Detail page css End here
        **************************************/

.main-menu-ex li.active a {
    color: #FF9800 !important;
}

/* ******************************
Cart page style start here
******************************* */
.shopping-cart-page {
    background-color: transparent;
}


.shopping-cart-page .cart-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    justify-content: flex-start;
}

.shopping-cart-page .back-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 18px;
    margin-right: 15px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.shopping-cart-page .back-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.shopping-cart-page .cart-title {
    font-size: 22px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.shopping-cart-page .breadcrumb {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.shopping-cart-page .breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.shopping-cart-page .breadcrumb a:hover {
    color: #374151;
}

.shopping-cart-page .cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.shopping-cart-page .cart-items {
    background: white;
    border-radius: 12px;
    padding: 0px;
    box-shadow: none;
}

.shopping-cart-page .select-all {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.shopping-cart-page .select-all input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #FF5722;
    transform: scale(1.1);
    background: initial !important;
    appearance: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

.shopping-cart-page .select-all label {
    font-weight: 600;
    color: #374151;
    margin: 0;
    cursor: pointer;
}

.shopping-cart-page .cart-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.shopping-cart-page .cart-item:last-child {
    border-bottom: none;
}

.shopping-cart-page .item-checkbox {
    margin-right: 15px;
    margin-top: 5px;
    accent-color: #e00f0f;
    transform: scale(1.1);
    margin-right: 10px;
    accent-color: #FF5722;
    transform: scale(1.1);
    background: initial !important;
    appearance: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

.shopping-cart-page .item-image {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.shopping-cart-page .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.shopping-cart-page .item-details {
    flex: 1;
    margin-right: 15px;
}

.shopping-cart-page .item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.4;
}

.shopping-cart-page .item-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.shopping-cart-page .item-duration {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.shopping-cart-page .item-level {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.shopping-cart-page .item-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.shopping-cart-page .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.shopping-cart-page .quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.shopping-cart-page .quantity-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.shopping-cart-page .quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.shopping-cart-page .quantity-input {
    width: 60px;
    height: 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.shopping-cart-page .remove-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.2s ease;
    margin-left: 15px;
}

.shopping-cart-page .remove-btn:hover {
    color: #ef4444;
}

.shopping-cart-page .item-price {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopping-cart-page .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.shopping-cart-page .original-price {
    font-size: 14px;
    color: #6b7280;
    text-decoration: line-through;
}

.shopping-cart-page .stock-warning {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.shopping-cart-page .stock-warning i {
    margin-right: 6px;
}

.shopping-cart-page .cart-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: fit-content;
    /* position: sticky; */
    top: 20px;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
}

.shopping-cart-page .cart-countWp {
    color: #FF5722;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.shopping-cart-page .price-breakdown {
    margin-bottom: 20px;
}

.shopping-cart-page .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.shopping-cart-page .price-label {
    color: #6b7280;
}

.shopping-cart-page .price-value {
    color: #374151;
    font-weight: 500;
}

.shopping-cart-page .total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    margin-top: 15px;
    margin-bottom: 20px;
}

.shopping-cart-page .total-label {
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
}

.shopping-cart-page .total-value {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.shopping-cart-page .original-total {
    font-size: 14px;
    color: #6b7280;
    text-decoration: line-through;
    margin-top: 5px;
}

.shopping-cart-page .checkout-btn {
    width: 100%;
    background: #f7bf09;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.shopping-cart-page .checkout-btn:hover {
    background: #FF9800;
    transform: translateY(-1px);
}

/* Responsive Media Queries */
@media (max-width: 1400px) {
    .shopping-cart-page .cart-container {
        max-width: 1100px;
    }
}

@media (max-width: 1200px) {
    .shopping-cart-page .cart-container {
        padding: 0 20px;
        max-width: 1000px;
    }

    .shopping-cart-page .cart-content {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .shopping-cart-page .cart-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .shopping-cart-page .cart-summary {
        position: static;
        order: -1;
        margin-bottom: 0px;
    }

    .shopping-cart-page .cart-title {
        font-size: 24px;
    }

    .shopping-cart-page .cart-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .shopping-cart-page .back-btn {
        margin-right: 5px;
    }

    .shopping-cart-page .back-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .shopping-cart-page {
        padding: 15px 0;
    }

    .shopping-cart-page .cart-container {
        padding: 0 15px;
    }

    .shopping-cart-page .cart-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .shopping-cart-page .cart-title {
        font-size: 22px;
    }

    .shopping-cart-page .cart-items,
    .shopping-cart-page .cart-summary {
        padding: 20px;
    }

    .shopping-cart-page .cart-item {
        padding: 15px 0;
    }

    .shopping-cart-page .item-image {
        width: 70px;
        height: 70px;
    }

    .shopping-cart-page .item-title {
        font-size: 15px;
    }

    .shopping-cart-page .quantity-controls {
        margin-top: 8px;
    }

    .shopping-cart-page .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .shopping-cart-page .quantity-input {
        width: 50px;
        height: 28px;
        font-size: 12px;
    }

    .cartitemwrap {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .shopping-cart-page .select-all {
        margin-bottom: 10px;
    }

    .cart-item .item-main {
        display: flex;
        margin-top: 12px;
    }

    .shopping-cart-page .cart-item {
        display: flex;
        align-items: flex-start;
        padding: 10px 12px;
        position: relative;
        background: #f7f7f7;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .cartmainSection {
        border-radius: 30px !important;
        padding: 10px 0 20px !important;
    }
}

@media (max-width: 576px) {
    .shopping-cart-page .cart-container {
        padding: 0 0px;
    }

    .shopping-cart-page .cart-title {
        font-size: 20px;
    }

    .shopping-cart-page .cart-items {
        padding: 0px;
    }

    .shopping-cart-page .cart-summary {
        padding: 15px;
    }

    .shopping-cart-page .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .shopping-cart-page .item-main {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
    }

    .shopping-cart-page .item-image {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }

    .shopping-cart-page .item-title {
        font-size: 14px;
    }

    .shopping-cart-page .item-price {
        text-align: left;
        margin-top: 10px;
    }

    .shopping-cart-page .current-price {
        font-size: 16px;
    }

    .shopping-cart-page .total-value {
        font-size: 20px;
    }

    .shopping-cart-page .checkout-btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .shopping-cart-page {
        padding: 10px 0;
    }

    .shopping-cart-page .cart-header {
        margin-bottom: 15px;
    }

    .shopping-cart-page .cart-content {
        gap: 15px;
        grid-row: revert;
        display: flex !important;
        flex-direction: column-reverse;
    }

    .shopping-cart-page .item-main {
        align-items: flex-start;
    }

    .shopping-cart-page .item-image {
        width: 55px;
        height: 55px;
    }

    .shopping-cart-page .item-title {
        font-size: 13px;
        line-height: 1.3;
    }

    .shopping-cart-page .item-meta {
        font-size: 12px;
    }

    .shopping-cart-page .quantity-controls {
        margin-top: 12px;
    }

    .shopping-cart-page .quantity-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .shopping-cart-page .quantity-input {
        width: 45px;
        height: 26px;
        font-size: 11px;
    }

    .shopping-cart-page .empty-cart-state {
        padding: 40px 20px;
    }

    .shopping-cart-page .empty-cart-icon {
        width: 70px;
        height: 70px;
    }

    .shopping-cart-page .empty-cart-icon i {
        font-size: 28px;
    }

    .shopping-cart-page .empty-cart-title {
        font-size: 20px;
    }

    .shopping-cart-page .empty-cart-message {
        font-size: 14px;
    }

    .shopping-cart-page .continue-shopping-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .shopping-cart-page .cart-container {
        padding: 0 8px;
    }

    .shopping-cart-page .cart-items,
    .shopping-cart-page .cart-summary {
        padding: 12px;
    }

    .shopping-cart-page .cart-title {
        font-size: 18px;
    }

    .shopping-cart-page .item-title {
        font-size: 12px;
    }

    .shopping-cart-page .checkout-btn {
        padding: 10px;
        font-size: 14px;
    }

    .shopping-cart-page .cart-item {
        padding: 12px 0;
    }

    .shopping-cart-page .item-image {
        width: 50px;
        height: 50px;
    }

    .shopping-cart-page .current-price {
        font-size: 15px;
    }

    .shopping-cart-page .original-price {
        font-size: 12px;
    }

    .shopping-cart-page .total-value {
        font-size: 18px;
    }

    .shopping-cart-page .empty-cart-state {
        padding: 30px 15px;
    }

    .shopping-cart-page .empty-cart-icon {
        width: 60px;
        height: 60px;
    }

    .shopping-cart-page .empty-cart-icon i {
        font-size: 24px;
    }

    .shopping-cart-page .empty-cart-title {
        font-size: 18px;
    }

    .shopping-cart-page .empty-cart-message {
        font-size: 13px;
    }

    .cartitemwrap {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }
}

.cart-item .item-main {
    display: flex;
}

.cartitemwrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

/* Chrome, Safari, Edge, Opera */
.quantity-input[type=number]::-webkit-inner-spin-button,
.quantity-input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.quantity-input[type=number] {
    -moz-appearance: textfield;
}

#carminiHeight {
    min-height: auto !important;
}

.cartmainSection {
    position: relative;
    padding: 30px 0 60px;
    border-radius: 80px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

/* Empty Cart State Styles */
.shopping-cart-page .empty-cart-state {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: none;
    text-align: center;
    margin-top: 20px;
}

.shopping-cart-page .empty-cart-content {
    max-width: 400px;
    margin: 0 auto;
}

.shopping-cart-page .empty-cart-icon {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.shopping-cart-page .empty-cart-icon i {
    font-size: 32px;
    color: #9ca3af;
}

.shopping-cart-page .empty-cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.shopping-cart-page .empty-cart-message {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 32px 0;
}

.shopping-cart-page .continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e80000;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shopping-cart-page .continue-shopping-btn:hover {
    background: #e80000;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

section.mainCart {
    padding: 85px 0 70px;
}

/* .mainCart .cart-header {
    padding: 1rem 1rem 1rem 7rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 30px;
}
.mainCart  .breadcrumb {
    margin-bottom: 0;
} */
/* ******************************
Cart page style End Here
******************************* */



/********************************
  Checkout Page Css Start Here
************************************/

/* Checkout Page Unique Styles */


.checkout-main-container * {
    box-sizing: border-box;
}



.checkout-main-container .checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-main-container .checkout-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.checkout-main-container .checkout-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.checkout-main-container .checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.checkout-main-container .checkout-form-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: none;
    margin-right: 0px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.checkout-main-container .form-section {
    margin-bottom: 30px;
}

.checkout-main-container .form-section:last-child {
    margin-bottom: 0;
}

.checkout-main-container .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
}

.checkout-main-container .section-title i {
    margin-right: 10px;
    color: #FF9800;
    font-size: 18px;
}


.checkout-main-container .form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-main-container .form-label {
    position: relative;
    display: block;
    align-items: center;
    font-size: 13px !important;
    font-weight: 500;
    color: #151722;
    margin-bottom: 4px;
}

.checkout-main-container .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    height: 40px !important;
    border: 1px solid #d8d6e3 !important;
    background-color: hsl(0, 0%, 100%);
}

.checkout-main-container .form-input:focus {
    outline: none;
    border-color: #e00f0f;
    box-shadow: 0 0 0 3px rgba(241, 99, 99, 0.1);
}

.checkout-main-container .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-main-container .form-select:focus {
    outline: none;
    border-color: #e00f0f;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkout-main-container .checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.checkout-main-container .checkbox-input {
    margin-right: 10px;
    transform: scale(1.2);

    margin-right: 15px;
    margin-top: 5px;

    transform: scale(1.1);
    margin-right: 10px;
    accent-color: #FF5722;
    transform: scale(1.1);
    background: initial !important;
    appearance: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

.checkout-main-container .checkbox-label {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.checkout-main-container .payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.checkout-main-container .payment-method {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.checkout-main-container .payment-method:hover {
    border-color: #FF9800;
    background: #f8faff;
}

.checkout-main-container .payment-method.active {
    border-color: #FF9800;
    background: #f8faff;
    box-shadow: 0 0 0 3px rgba(241, 99, 99, 0.1);
}

.checkout-main-container .payment-method i {
    font-size: 24px;
    color: #6b7280;
    margin-bottom: 8px;
}

.checkout-main-container .payment-method.active i {
    color: #FF9800;
}

.checkout-main-container .payment-method-name {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.checkout-main-container .order-summary {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.checkout-main-container .summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.checkout-main-container .order-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.checkout-main-container .order-item:last-child {
    border-bottom: none;
}

.checkout-main-container .item-image {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-main-container .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.checkout-main-container .item-details {
    flex: 1;
}

.checkout-main-container .item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.checkout-main-container .item-quantity {
    font-size: 12px;
    color: #6b7280;
}

.checkout-main-container .item-price {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
}

.checkout-main-container .price-breakdown {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.checkout-main-container .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.checkout-main-container .price-label {
    color: #6b7280;
}

.checkout-main-container .price-value {
    color: #374151;
    font-weight: 500;
}

.checkout-main-container .total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid #f3f4f6;
    margin-top: 15px;
}

.checkout-main-container .total-label {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.checkout-main-container .total-value {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.checkout-main-container .place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 55px;
}

.checkout-main-container .place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(255 152 0 / 21%);
}

.checkout-main-container .place-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkout-main-container .back-to-cart {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 18px;
    margin-right: 15px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkout-main-container .back-to-cart:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.checkout-main-container .back-to-cart i {
    margin-right: 0px;
}

.checkout-main-container .security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 10px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 12px;
    color: #166534;
}

.checkout-main-container .security-badge i {
    margin-right: 6px;
    color: #16a34a;
}

/* Loading Animation */
.checkout-main-container .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.checkout-main-container .place-order-btn.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success Modal */
.checkout-main-container .success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.checkout-main-container .success-modal.active {
    display: flex;
}

.checkout-main-container .success-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.checkout-main-container .success-modal.active .success-content {
    transform: scale(1);
    opacity: 1;
}

.checkout-main-container .success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.checkout-main-container .success-icon i {
    font-size: 32px;
    color: white;
}

.checkout-main-container .success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.checkout-main-container .success-message {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.checkout-main-container .order-number {
    background: #f3f4f6;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
}

.checkout-main-container .success-btn {
    background: #FFC107;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-main-container .success-btn:hover {
    background: #FFC107;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-main-container .checkout-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkout-main-container .order-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-main-container .checkout-wrapper {
        padding: 0 15px;
    }

    .checkout-main-container .checkout-title {
        font-size: 28px;
    }

    .checkout-main-container .checkout-form-section,
    .checkout-main-container .order-summary {
        padding: 20px;
    }



    .checkout-main-container .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-main-container {
        width: 100% !important;
        margin: 0 auto;
    }

    .checkout-main-container .cart-header {
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
    }

    .checkout-main-container .summary-title {
        font-size: 17px;
    }

    .checkout-main-container .place-order-btn {
        padding: 10px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 400;
    }

    .checkout-main-container .payment-method-name {
        font-size: 11px;
        font-weight: 600;
        color: #374151;
    }

    .checkout-main-container .payment-method {
        border-radius: 8px;
        padding: 6px 9px;
        width: 50%;
    }

    .checkout-main-container .payment-method i {
        font-size: 17px;
    }

    .checkout-main-container .payment-methods {
        display: flex !important;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 6px;
        margin-top: 15px;
    }

    .checkout-main-container .section-title {
        font-size: 17px;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .checkout-main-container {
        padding: 10px 0;
    }

    .checkout-main-container .checkout-wrapper {
        padding: 0 0px;
    }

    .checkout-main-container .checkout-title {
        font-size: 24px;
    }

    .checkout-main-container .checkout-form-section,
    .checkout-main-container .order-summary {
        padding: 15px;
    }

    .checkout-main-container .payment-methods {
        grid-template-columns: 1fr;
    }

    .checkout-main-container .success-content {
        padding: 30px 20px;
    }

    .checkout-main-container .success-icon {
        width: 60px;
        height: 60px;
    }

    .checkout-main-container .success-icon i {
        font-size: 24px;
    }

    .checkout-main-container .success-title {
        font-size: 20px;
    }
}

/* Responsive Design */
.checkout-main-container .mobile-summary-header {
    display: none;
}

.checkout-main-container .mobile-summary-toggle {
    display: none;
}

.checkout-main-container .mobile-total-preview {
    display: none;
}

.checkout-main-container .mobile-accordion-content {
    display: block;
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */
/* Mobile: Fixed bottom order summary with accordion */
@media (max-width: 768px) {
    .checkout-main-container .checkout-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 0px;
    }

    .checkout-main-container .checkout-form-section {
        order: 1;
        margin-bottom: 20px;
    }

    .checkout-main-container .order-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        padding: 20px;
        /* max-height: 80vh; */
        overflow-y: auto;
        top: inherit !important;
    }

    /* Mobile summary header - always visible */
    .checkout-main-container .mobile-summary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #f3f4f6;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .checkout-main-container .mobile-summary-toggle {
        display: flex;
        align-items: center;
        gap: 11px;
        color: #ef0100;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
    }

    .checkout-main-container .total-row {
        display: flex;
        justify-content: space-between;
        padding-top: 0px;
        border-top: 0px;
        margin-top: 5px;
    }

    .checkout-main-container .mobile-summary-toggle i {
        transition: transform 0.3s ease;
    }

    .checkout-main-container .mobile-summary-toggle.expanded i {
        transform: rotate(180deg);
    }

    .checkout-main-container .mobile-total-preview {
        font-size: 18px;
        font-weight: 700;
        color: #1f2937;
    }

    /* Mobile accordion content - hidden by default */
    .checkout-main-container .mobile-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .checkout-main-container .mobile-accordion-content.expanded {
        max-height: 400px;
    }

    /* Hide desktop summary title on mobile */
    .checkout-main-container .summary-title {
        display: none;
    }

    /* Mobile order items styling */
    .checkout-main-container .order-item {
        padding: 10px 0;
    }

    .checkout-main-container .item-image {
        width: 50px;
        height: 50px;
    }

    .checkout-main-container .item-name {
        font-size: 13px;
    }

    .checkout-main-container .item-price {
        font-size: 13px;
    }

    #checkoutmainWrap {
        padding: 20px 0 10px;
    }

    #checkoutmainWrap .boxcar-container {
        padding-bottom: 250px;
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .checkout-main-container .checkout-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }


}

.checkout-main-container .cart-title {
    font-size: 22px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.checkout-main-container .cart-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.checkout-main-container .cart-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    justify-content: start;
}

.checkout-main-container .back-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 18px;
    margin-right: 15px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkout-main-container .back-to-cart:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.checkout-form-section .form-group {
    margin-bottom: 10px;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    background-color: white 1;
    height: 40px !important;
    border: 1px solid #d8d6e3 !important;
    background-color: hsl(0, 0%, 100%) !important;
    line-height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 11px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 15px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-radius: 7px !important;
    border: 1px solid #ccc !important;
    background: #fff !important;
    padding: 10px !important;
    box-shadow: none;
}

.checkout-main-container {
    width: 80%;
    margin: 0 auto;
}

#checkoutmainWrap {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

#checkoutsite_main {
    min-height: 100% !important;
}

.select2-container {
    width: 100% !important;
}

#shoppage_mwrapper {
    border-radius: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 30px !important;
    border-radius: 7px !important;
    border: none !important;
    background: #fff !important;
    padding: 10px !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    border-radius: 6px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FFC107 !important;
    color: white;
}

.select2-results__option {
    border-radius: 6px;
    padding: 6px 10px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 10px;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #ffc1070a !important;
    color: #FFC107 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 11px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 12px 0 11px;
    color: var(--pt-color-text);
    line-height: 1.5;
}

section.checkoutmainwrapper {
    padding: 85px 0 80px;
}

input.select2-search__field:focus-visible {
    outline: none;
}

/******************************
Checkout Page CSS End here
********************************/


/*************************************
   Profile Dropdown Css Start Here
***************************************/
a.btn.btn--ripple.ripple.vendorBtn {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
}

.profile-dropdown .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    padding: 0 0 10px;
}

.profile-dropdown .dropdown-toggle::after {

    color: #6a6a6a;
}

.profile-dropdown .dropdown-header {
    padding: 0.5rem 1rem;
}

.profile-dropdown .dropdown-header .name {
    font-weight: 600;
    font-size: 15px;
}

.profile-dropdown .dropdown-header .email {
    font-size: 13px;
    color: #6c757d;
}

.profile-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 15px;
    padding: 0.55rem 1rem;
}

.profile-dropdown .shortcut {
    margin-left: auto;
    font-size: 13px;
    color: #6c757d;
}

.profile-dropdown .dropdown-divider {
    margin: 0.5rem 0;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-info img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info .user-role {
    font-size: 13px;
    color: #6c757d;
    margin-top: -4px;
}

img.profileImg {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.NamTUi {
    line-height: 20px;
    color: #000;
    font-size: 14px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-dropdown .dropdown-header {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #ecececec;
}

.profile-dropdown {
    padding: 5px 6px;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    background: #f9f9f9;
    backdrop-filter: blur(5px);
}

.pagination-sec nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;

}

.pagination-sec {
    /* width: 68%; */
    margin: 0 auto;
}

.pagination-sec {
    margin-top: 30px;
    text-align: center;
}

.pagination-sec .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination-sec .pagination li:first-child a,
.pagination-sec .pagination li:last-child a {
    border: 1px solid #e1e1e1;
    width: 60px;
    font-size: 30px;
    line-height: 35px;
    border-radius: 50px;
}

.pagination-sec .pagination li a {
    font-size: 15px;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    padding: 0;
    line-height: 40px;
    border: 0;
    color: var(--theme-color-dark);
}

.pagination-sec .pagination li a:hover {
    background-color: #f9fbfc;
}

.pagination-sec .text {
    font-size: 14px;
    margin-top: 19px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #FF9800 !important;
}

/*************************************
   Profile Dropdown Css Start Here
***************************************/

/*************************************
     Customer Profice Css Start Here
***************************************/

/* Customer Profile Page Unique Styles */
section.ProfileMain {
    padding: 100px 0 50px;

}

/* .profile-content {
    display: flex;
    gap: 30px;
} */
.customer-profile-container {
    background: #fff;
    padding: 100px 0 50px;
}

.customer-profile-container * {
    box-sizing: border-box;
}

.customer-profile-container .profile-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.customer-profile-container .profile-header {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-profile-container .profile-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.customer-profile-container .profile-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e00f0f 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.customer-profile-container .profile-details h1 {
    font-size: 23px;
    font-weight: 500;
    color: #181f28;
    margin: 0 0 0px 0;
}

.customer-profile-container .profile-details p {
    color: #6b7280;
    margin: 0;
    font-size: 16px;
}

.customer-profile-container .profile-actions {
    display: flex;
    gap: 15px;
}

.customer-profile-container .btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f2f2f2;
    color: #000;
}

.customer-profile-container .btn-outline i {
    margin-right: 0px;
}

.customer-profile-container .btn-primary {
    background: #FF9800;
    color: white;
}

.customer-profile-container .btn-primary:hover {
    background: #092863;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.customer-profile-container .btn-outline {
    background: white;
    color: #313131;
    border: 1px solid #d3d3d3;
}

.customer-profile-container .btn-outline:hover {
    background: #092863;
    color: white;
    text-decoration: none;
}

/* .customer-profile-container .profile-content {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 30px;
        } */

.customer-profile-container .profile-sidebar {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
    height: fit-content;
}

.customer-profile-container .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.customer-profile-container .sidebar-nav li {
    margin-bottom: 5px;
}

.customer-profile-container .sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 15px;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.customer-profile-container .sidebar-nav a iconify-icon {
    font-size: 20px;
}

.customer-profile-container .sidebar-nav a:hover,
.customer-profile-container .sidebar-nav a.active {
    background: #f8faff;
    color: #000;
    text-decoration: none;
}

.customer-profile-container .sidebar-nav i {
    width: 20px;
    text-align: center;
}

.customer-profile-container .profile-main {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border: 1px solid #DDE2E6;
    /* width: 80%; */
}

.customer-profile-container .section-title {
    font-size: 21px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-profile-container .section-title i {
    color: #e00f0f;
}

/* Orders Section */
.customer-profile-container .orders-filters {
    display: flex;
    gap: 0px;
    margin-bottom: 25px;
    /* flex-wrap: wrap; */
}

.customer-profile-container .filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customer-profile-container .filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.customer-profile-container .filter-input {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.customer-profile-container .filter-input:focus {
    outline: none;
    border-color: #e00f0f;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.customer-profile-container .filter-select {
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customer-profile-container .filter-select:focus {
    outline: none;
    border-color: #e00f0f;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.customer-profile-container .orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-profile-container .order-card {
    border: 1px solid #eaebec;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.customer-profile-container .order-card:hover {
    border-color: #c4c4c4;
}

.customer-profile-container .order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-profile-container .order-number {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.customer-profile-container .order-date {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.customer-profile-container .order-status {
    padding: 4px 20px !important;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.customer-profile-container .status-delivered {
    background: #d1fae5;
    color: #065f46;
}

.customer-profile-container .status-processing {
    background: #fef3c7;
    color: #92400e;
}

.customer-profile-container .status-shipped {
    background: #dbeafe;
    color: #1e40af;
}

.customer-profile-container .status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.customer-profile-container .status-pending {
    background: #9E9E9E;
    color: #ffffff;
}



.customer-profile-container .order-items {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.customer-profile-container .order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

.customer-profile-container .item-image {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-profile-container .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.customer-profile-container .item-details {
    flex: 1;
}

.customer-profile-container .item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.customer-profile-container .item-quantity {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.customer-profile-container .order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.customer-profile-container .order-total {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.customer-profile-container .order-actions {
    display: flex;
    gap: 10px;
}

.customer-profile-container .btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    display: flex;
}

/* Profile Information Section */
.customer-profile-container .profile-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.customer-profile-container .form-group {
    display: flex;
    flex-direction: column;
}

.customer-profile-container .form-group.full-width {
    grid-column: 1 / -1;
}

.customer-profile-container .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.customer-profile-container .form-input {
    padding: 7px 16px;
    border: 1px solid #d8d6e3;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.customer-profile-container .form-input:focus {
    outline: none;
    border-color: #e00f0f;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.customer-profile-container .form-input:disabled {
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.customer-profile-container .form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Order Detail Modal */
.customer-profile-container .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.customer-profile-container .modal.active {
    display: flex;
}

.customer-profile-container .modal-content {
    background: white;
    border-radius: 16px;
    padding: 0px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.customer-profile-container .modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.customer-profile-container .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f1f5f9;
    padding-top: 10px;
    background: #fff !important;
}

.customer-profile-container .modal-title {
    font-size: 21px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.customer-profile-container .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.customer-profile-container .modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.customer-profile-container .order-detail-section {
    margin-bottom: 25px;
    padding: 0px 20px;
}

.customer-profile-container .detail-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-profile-container .detail-section-title i {
    color: #e00f0f;
}

.customer-profile-container .detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.customer-profile-container .detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customer-profile-container .detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.customer-profile-container .detail-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.customer-profile-container .order-timeline {
    position: relative;
    padding-left: 23px;
}

.customer-profile-container .timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.customer-profile-container .timeline-item:before {
    content: '';
    position: absolute;
    left: -22px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #FF9800;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #FF9800;
    z-index: 1;
}

.customer-profile-container .timeline-item:after {
    content: '';
    position: absolute;
    left: -16px;
    top: 20px;
    width: 2px;
    height: calc(100% - 8px);
    background: #e5e7eb;
}

.customer-profile-container .timeline-item:last-child:after {
    display: none;
}

.customer-profile-container .timeline-content {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
}

.customer-profile-container .timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.customer-profile-container .timeline-date {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* new code 07/10/2025 */

.new-globale-search {
background: #fff;
    box-shadow: rgb(247 191 9 / 17%) 0px 3px 12px 0px;
    max-width: 800px;
    margin: auto;
    margin-top: -60px;
    z-index: 9;
    position: relative;
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid #ebebeb;
}

.new-globale-search input#vendorSearch {
    width: 100%;
    padding: 12px 20px;
}
.searchVendors h3 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
}
.viewallvenders {
    text-align: center;
}

.viewallvenders a.btn.allvend-btns {
    background: #f7bf09;
}
/* .product-actions button.add-to-cart:nth-child(1) {
    background: #f7bf09;
    width: 100%;
} */

.product-actions button.add-to-cart:nth-child(1) {
    background: #0a2964;
    width: 50%;
}
.pagination-wrap {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.pagination-wrap ul {
    display: flex;
    gap: 20px;
}

.pagination-wrap ul li a {
    padding: 10px 16px;
    border-radius: 6px;
    text-transform: capitalize;
    color: #222;
    border: 1px solid #939393;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrap ul li a.active{
    background: #0a2964;
    color: #fff;
    border-color: #0a2964;
}

.pagination-wrap ul li:first-of-type a, .pagination-wrap ul li:last-of-type a {
    background: #f1f1f1;
    color: #000;
    border-color: #f1f1f1;
    width: auto;
}
.pagination-wrap ul li a span {
    position: relative;
    top: -7px;
    font-size: 26px;
}
.similarProducts .product-card {
    margin: 0px 10px;
}
.semiler-section h2.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    padding-bottom: 25px;
}

.semiler-section .slick-prev, .semiler-section .slick-next {
  background: #fff;
  border: none;
  color: #000;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 5;
  position: absolute;
    top: -46px;
}

.semiler-section .slick-prev:hover, .semiler-section .slick-next:hover {
  background: #000;
  color: #fff;
}

.semiler-section .slick-prev {
      left: 93.5%;
}

.semiler-section .slick-next {
  right: 0px;
}

.semiler-section  .slick-dots {
  bottom: -30px;
}
.semiler-section .slick-prev:before, .semiler-section .slick-next:before{
    display: none;
}
.semiler-section {
    background: linear-gradient(180deg, rgb(245 245 245 / 57%) 26%, rgba(255, 255, 255, 1) 100%);
    padding: 50px 0px 40px 0px;
}
.return-product-baggs {
    display: flex;
    gap: 20px;
    padding: 20px 0px;
}

.return-product-baggs p span {
    height: 44px;
    width: 44px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-size: 20px;
    margin-bottom: 10px;
}

.return-product-baggs p {
    text-align: center;
    max-width: 20%;
    text-transform: capitalize;
    line-height: 20px;
    font-size: 16px;
}
.product-detail-section button.add-to-cart.bynowdet {
    background: #FFC107;
    min-width: 120px;
}

.VendorProduct {
    position: relative;
}

.vender-dtl {
    position: absolute;
    top: 100px;
    border-radius: 8px;
    text-align: center;
    left: -22.5%;
    display: none;
    padding-bottom: 20px;

}
.vender-dtl-weap{
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #ededed;
    max-width: 425px;
    background: #ffffff;
    padding: 24px;
position: relative;
    top: 0px;
}
.vendor-wrapperss:hover .vender-dtl {
    display: block;
}
.vender-dtl p span {
    color: #5e5e5e;
}

.vender-dtl p {
    color: #000;
    margin-bottom: 4px;
    font-size: 15px;
}

.vender-dtl p a {
    text-decoration: underline;
}

.vender-dtl-weap:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #fff;
    bottom: -10px;
    transform: rotate(45deg);
    left: calc(50% - 10px);
}
.product-detail-section .product-info {
    position: relative;
}
.category-item-wraps {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 20px;
}
.category-item-wraps::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
}

.category-item-wraps::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

.category-item-wraps::-webkit-scrollbar-thumb
{
	background-color: #ddd;
}
.products-section.rsecforpeos {
    padding-bottom: 55px;
}

div#activeFiltersList {
    max-height: 138px;
    overflow-y: auto;
}

#activeFiltersList::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
}

#activeFiltersList::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

#activeFiltersList::-webkit-scrollbar-thumb
{
	background-color: #ddd;
}

/* new code 07/10/2025 */

/* Responsive Design */
@media (max-width: 1024px) {
    .customer-profile-container .profile-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .customer-profile-container .profile-sidebar {
        position: static;
        order: -1;
    }

    .customer-profile-container .sidebar-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 0px;
    }

    .customer-profile-container .sidebar-nav li {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .customer-profile-container {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
    }

    .customer-profile-container .profile-wrapper {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .customer-profile-container .profile-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .customer-profile-container .profile-info {
        flex-direction: column;
        gap: 15px;
    }

    .customer-profile-container .profile-actions {
        width: 100%;
        justify-content: center;
    }

    .customer-profile-container .orders-filters {
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        margin: 0px !important;
    }

    .customer-profile-container .filter-group {
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .filter-input,
    .customer-profile-container .filter-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .customer-profile-container .order-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .order-items {
        flex-direction: column;
    }

    .customer-profile-container .order-item {
        min-width: auto;
    }

    .customer-profile-container .order-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .customer-profile-container .order-actions {
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .order-card {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .customer-profile-container .profile-form {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .form-group {
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .form-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .customer-profile-container .form-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .modal-content {
        padding: 0px;
        margin: 20px;
        width: 95%;
        max-width: 95%;
        overflow-x: hidden;
    }

    .customer-profile-container .detail-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .customer-profile-container {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .customer-profile-container .profile-wrapper {
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .profile-header,
    .customer-profile-container .profile-sidebar,
    .customer-profile-container .profile-main {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .section-title {
        font-size: 20px;
    }

    .customer-profile-container .order-card {
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }

    .customer-profile-container .sidebar-nav a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Hidden sections by default */
.customer-profile-container .profile-section {
    display: block;
}

.customer-profile-container .profile-section.active {
    display: block;
}

/* Loading states */
.customer-profile-container .loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #6b7280;
}

.customer-profile-container .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #e00f0f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

button.btn.btnfilterapply {
    padding: 12px 20px;
    margin-top: 32px;
}

/*************************************
     Customer Profice Css End Here
***************************************/
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;

}


:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --error-color: #ef4444;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --background-light: #f8fafc;
    --background-modal: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.2s ease-in-out;
}

.Login_SignupWrapper {

    /* Main Content */
    .main-content {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        position: relative;
    }

    .hero-section {
        text-align: center;
        color: white;
        z-index: 1;
        position: relative;
    }

    .hero-section h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero-section p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 400;
    }

    .auth-trigger-btn {
        background: white;
        color: var(--primary-color);
        border: none;
        padding: 1rem 2rem;
        border-radius: var(--border-radius);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .auth-trigger-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
    }

    .auth-trigger-btn i {
        margin-right: 0.5rem;
    }

    /* Modal Styles */
    .modal-backdrop {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .modal-dialog {
        max-width: 460px;
        margin: 2rem auto;
    }

    .modal-content {
        border: none;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-xl);
        overflow: hidden;
        background: var(--background-modal);
    }

    .modal-header {
        background: var(--background-modal);
        border-bottom: none;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .btn-close {
        margin: 0;
        opacity: 0.5;
        transition: var(--transition);
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.2rem;
    }

    .btn-close:hover {
        opacity: 0.8;
        background: var(--background-light);
    }

    /* Modal Body */
    .modal-body {
        padding: 0 2rem 2rem;
        background: var(--background-modal);
    }

    /* Auth Forms */
    .auth-form {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }

    .auth-form.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .form-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .auth-icon {
        width: 100px;
        height: 48px;
        /* background: var(--background-light); */
        border-radius: var(--border-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: var(--text-secondary);
        font-size: 1.2rem;
    }

    .auth-icon i {
        font-size: 30px;
    }

    .auth-icon.success {
        background: #dcfce7;
        color: var(--success-color);
    }

    .form-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: var(--text-secondary);
        font-size: 0.875rem;
        line-height: 1.4;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        font-size: 0.875rem;
        z-index: 2;
    }

    .input-wrapper input {
        width: 100%;
        padding: 8px 40px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        font-size: 0.875rem;
        transition: var(--transition);
        background: var(--background-modal);
        color: var(--text-primary);
    }

    .input-wrapper input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .input-wrapper input::placeholder {
        color: var(--text-light);
    }

    .password-toggle {
        position: absolute;
        right: 3rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--text-light);
        cursor: pointer;
        padding: 0;
        font-size: 0.875rem;
        transition: var(--transition);
    }

    .password-toggle:hover {
        color: var(--text-secondary);
    }

    /* Forgot Password Link */
    .forgot-password-link {
        text-align: right;
        margin-bottom: 1.5rem;
    }

    .forgot-password-link a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.875rem;
        transition: var(--transition);
    }

    .forgot-password-link a:hover {
        color: var(--primary-color);
    }

    /* Auth Button */
    .auth-btn {
        width: 100%;
        padding: 0.875rem;
        background: #052561;
        color: white;
        border: none;
        border-radius: var(--border-radius);
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        margin-bottom: 1.5rem;
    }

    .auth-btn:hover {
        background: #052561;
        transform: translateY(-1px);
    }

    .auth-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    /* Auth Divider */
    .auth-divider {
        text-align: center;
        margin: 1.5rem 0;
        position: relative;
    }

    .auth-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--border-color);
    }

    .auth-divider span {
        background: var(--background-modal);
        padding: 0 1rem;
        color: var(--text-light);
        font-size: 0.75rem;
        position: relative;
        z-index: 1;
    }

    /* Social Buttons */
    .social-buttons {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .social-btn {
        width: 48px;
        height: 48px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        background: var(--background-modal);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1.1rem;
    }

    .social-btn:hover {
        border-color: var(--text-secondary);
        transform: translateY(-1px);
    }

    .google-btn {
        color: #ea4335;
    }

    .facebook-btn {
        color: #1877f2;
    }

    .apple-btn {
        color: var(--text-primary);
    }

    /* Switch Form */
    .switch-form {
        text-align: center;
    }

    .switch-form p {
        color: var(--text-secondary);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .switch-form a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .switch-form a:hover {
        color: var(--primary-hover);
    }

    /* OTP Inputs */
    .otp-inputs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .otp-input {
        width: 48px !important;
        height: 48px;
        text-align: center;
        font-size: 1.125rem;
        font-weight: 600;
        border: 1px solid var(--border-color) !important;
        border-radius: var(--border-radius) !important;
        padding: 0 !important;
    }

    .otp-input:focus {
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    }

    /* Email Display */
    #emailDisplay {
        font-weight: 600;
        color: var(--text-primary);
    }

    /* Loading State */
    .auth-btn .fa-spinner {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* Validation Messages */
    .validation-message {
        font-size: 0.75rem;
        margin-top: 0.25rem;
        padding-left: 2.5rem;
    }

    .validation-message.error {
        color: var(--error-color);
    }

    .validation-message.success {
        color: var(--success-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 2.5rem;
        }

        .hero-section p {
            font-size: 1.1rem;
            padding: 0 1rem;
        }

        .modal-dialog {
            margin: 1rem;
        }

        .modal-body {
            padding: 0 1.5rem 1.5rem;
        }

        .modal-header {
            padding: 1rem 1.5rem 0;
        }
    }

    @media (max-width: 576px) {
        .main-content {
            padding: 1rem;
        }

        .modal-dialog {
            margin: 0.5rem;
        }

        .modal-body {
            padding: 0 1rem 1rem;
        }

        .modal-header {
            padding: 0.75rem 1rem 0;
        }

        .otp-inputs {
            gap: 0.25rem;
        }

        .otp-input {
            width: 40px !important;
            height: 40px;
            font-size: 1rem;
        }

        .social-buttons {
            gap: 0.5rem;
        }

        .social-btn {
            width: 44px;
            height: 44px;
        }
    }

    /* Form Animation */
    .auth-form.slide-in {
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Focus States for Accessibility */
    .auth-btn:focus-visible,
    .social-btn:focus-visible,
    .password-toggle:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--background-light);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--text-secondary);
    }

}
























/*************************************
 Responsive Media Query Css Start Here
***************************************/
@media (max-width: 768px) {

    .header-area.header-area1 .header-elements .main-menu-ex::after,
    .header-area.header-area1 .header-elements .main-menu-ex::before {
        display: none;
    }

    .banner-outer-wrap {
        padding: 60px 0 30px;
    }

    .banner-slide-inner {
        flex-direction: column;
        height: auto;
        padding-right: 0;
        border-radius: 15px;
    }

    .banner-slide-image {
        max-width: 100%;
        height: 200px;
    }

    .banner-slide-image.cars {
        top: 0;
    }

    .banner-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .banner-text:before,
    .banner-text:after {
        display: none;
    }

    .banner-text h3 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    .banner-text p {
        font-size: 14px;
    }

    .banner-text a {
        width: 120px;
        margin: 20px auto 0;
    }

    .banner-wrap .slick-dots {
        margin-top: 15px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100%;
        padding: 0 15px;
    }

    .brands-area6 .apps-images .image1,
    .brands-area6 .apps-images .image2 {
        margin: 0;
        position: static;
    }

    .AllVendors {
        padding: 0 0 30px;
    }

    .vendorCardWrapper {
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .vendorImg {
        width: 60px;
        height: 60px;
    }

    .storeName {
        font-size: 16px;
    }

    .innerVenDT h6 {
        font-size: 12px;
    }

    .hero-section {
        min-height: 50vh;
        padding: 85px 0 110px;
    }

    .hero-content {
        padding: 30px 0;
        text-align: center;
    }

    .hero-title .highlight::after {
        display: none;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .shop-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .delivery-notification {
        margin-top: 20px;
    }

    .delivery-person {
        max-width: 100%;
        margin-left: 0;
    }

    .feature-card {
        height: auto;

    }

    .features-section {
        padding: 30px 0;
    }

    .feature-card {
        margin-bottom: 15px;
        padding: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .InfoCnt {
        width: 100%;
        margin-left: 10px;
    }

    .compani8 {
        padding: 30px 0;
    }

    .heading8 h2 {
        font-size: 32px;
        line-height: 38px;
    }

    ul.ModernList li {
        width: 100%;
        font-size: 14px;
    }

    .feature-top {
        gap: 20px;
        flex-direction: column;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item-title {
        font-size: 18px;
    }

    .feature-item::after {
        display: none;
    }

    /* Product Search Page */
    .main-header {
        padding: 0.5rem 0;
    }

    .search-container {
        max-width: 100%;
        margin-bottom: 0;
        width: 100%;
    }

    .search-input {
        padding: 10px 40px 10px 15px;
        font-size: 12px;
    }

    .search-btn {
        width: 35px;
        height: 35px;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        z-index: 1002;
        transition: left 0.4s ease;
    }

    .filters-sidebar.open {
        left: 0;
    }

    .products-section {
        padding: 1rem;
    }

    .products-header h2 {
        font-size: 20px;
    }

    .sort-dropdown {
        min-width: 120px;
        padding: 8px 12px;
    }

    .view-btn {
        width: 35px;
        height: 35px;
    }

    .product-image {
        height: 150px;
        margin: 10px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 14px;
    }

    .current-price {
        font-size: 16px;
    }

    .original-price {
        font-size: 12px;
    }

    .cart-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .MainProductSearch {
        margin-top: 60px;
    }

    .InnerVendor .vendorCardWrapper {
        padding: 10px;
        gap: 10px;
    }

    /* Product Detail Page */
    .product-detail-section {
        padding: 4rem 0 2rem;
    }

    .product-main-image img {
        height: 300px;
    }

    .xzoom-preview {
        width: 300px !important;
        height: 300px !important;
    }

    .thumbnail-slider {
        width: 80px;
    }

    .swiper {
        height: 410px;
    }

    .swiper-slide img {
        height: 80px;
    }

    .product-detail-section .product-title {
        font-size: 20px;
        line-height: 26px;
    }

    .product-detail-section .current-price {
        font-size: 24px;
    }

    .product-detail-section .product-info {
        padding: 1rem;
    }

    .product-detail-section .tab-content {
        padding: 0 1rem;
    }

    .product-detail-section .tab-content p,
    .product-detail-section .tab-content ul li {
        font-size: 14px;
    }

    .variationRadio .radio-container label {
        padding: 8px 15px;
        font-size: 14px;
    }

    .VendorProduct .vendorImg {
        width: 50px;
        height: 50px;
    }

    .profile-details {
        text-align: center;
    }

    button.btn.btnfilterapply {
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .orders-filters.row .col-lg-3,
    .orders-filters.row .col-auto {
        padding: 0;
    }

    .customer-profile-container .sidebar-nav {
        justify-content: center;
    }

    .pagination-sec nav {
        margin-top: 0;
        flex-direction: column;
    }

    .pagination-sec {
        margin-top: 0;
    }

    .mobile-header .mobile-header-elements .mobile-logo img {
        width: 100px;
    }

    .TopVendorSection {
        flex-direction: column;
    }

    .AllVendors .heading5 {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .heading5 h2 {
        font-size: 28px;
        line-height: 40px;
        text-align: center;
    }

    input#vendorSearch {
        padding: 15px 20px;
        border-radius: 50px;
        width: 350px;
    }

    .vendorCardsWrapper .col-lg-2 {
        width: 50%;
        padding: 0 5px;
    }

    .compani8 .images-all .image1 {
        margin-left: 0;
    }

    section.feature-area {
        padding: 40px 0;
    }

    section.feature-area .heading5 {
        width: 100%;
        margin-bottom: 20px;
    }

    .menu-close {
        color: #000000;
    }

    .ItemSearch {
        width: 100%;
    }

    .products-header {
        margin-bottom: 1rem;
    }
}

/* @media (max-width: 576px) {
    .banner-slide-inner {
        border-radius: 10px;
    }

    .banner-text h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .banner-text a {
        width: 100px;
        font-size: 14px;
        padding: 8px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 20px 10px;
    }

    .shop-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .heading8 h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .search-input {
        padding: 8px 35px 8px 12px;
        font-size: 11px;
    }

    .search-btn {
        width: 30px;
        height: 30px;
    }

    .product-image {
        height: 120px;
    }

    .product-title {
        font-size: 13px;
    }

    .current-price {
        font-size: 14px;
    }

    .cart-button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
    }

    .product-detail-section .product-title {
        font-size: 18px;
        line-height: 24px;
    }

    .product-detail-section .current-price {
        font-size: 20px;
    }
}         */

/*************************************
 Responsive Media Query Css End Here
***************************************/

/* 10/10/2025 */

.category-item span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-item span iconify-icon {
    font-size: 20px;
    display: none;
}

.category-item.active {
    background: #fff8ee;
    color: #FF9800;
}

.category-item.active span iconify-icon {
    display: block;
}

.category-item.active .category-count {
    background: #fff;
    color: #222;
}
.product-detail-section .product-info .vendorCardWrapper {
    min-height: auto;
}


/* 10/10/2025 */


/* 13/10/2025 */

/* PENDING */
span.order-status.status-Pending {
    background: #fef3c7;  /* Light Yellow */
    color: #92400e;       /* Dark Golden Brown */
}

/* PROCESSING */
span.order-status.status-Processing {
    background: #dbeafe;  /* Light Blue */
    color: #1e40af;       /* Deep Blue */
}

/* SHIPPED */
span.order-status.status-Shipped {
    background: #cffafe;  /* Light Cyan */
    color: #155e75;       /* Teal Blue */
}

/* DELIVERED */
span.order-status.status-Delivered {
    background: #dcfce7;  /* Light Green */
    color: #166534;       /* Dark Green */
}

/* CANCELLED */
span.order-status.status-Cancelled {
    background: #fee2e2;  /* Light Red */
    color: #991b1b;       /* Dark Red */
}

/* UNKNOWN */
span.order-status.status-Unknown {
    background: #e5e7eb;  /* Light Gray */
    color: #374151;       /* Dark Gray */
}
span.ration-wraps {
    font-size: 18px;
    position: relative;
    top: 3px;
    color: #FF9800;
}


/* 13/10/2025 */
