/*
============================
Name:  Email Marketing Sass Landing Page
Version: 1.0.0
Description:
Author:  Unifato
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&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&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 #e7e8ff;
    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: var(--qt-bg-bg-7);
    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: #6a5cff;
    --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));
    /* 100% */
}

.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/bg3.webp);
    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: 12px 0;
    position: absolute;
    background: transparent;
    width: 100%;
    z-index: 999;
}
.site-logo {
    max-width: 200px;
    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-image: url(../img/bg/bg.webp);
    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: #ece9fe;
    border-radius: 210px;
    border: 1px solid #e1dffe;
    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: #000000;
    font-weight: semibold;
    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: -100px;
    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; */
    padding-bottom: 20px;
    display: flex;
    /* align-items: center; */
    position: relative;
    padding-top: 120px;
    /* top: 80px; */
}

.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-image: url(../img/bg/bg.webp);
    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: 20px;
    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("https://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-image: url(../img/bg/bg3.webp);
    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: 40px;
    }
}

.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/logo/preloader-logo.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,
        %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="var%28--bs-body-color%29"%3e%3cpathfill-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,
        %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%230c63e4"%3e%3cpathfill-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 */
