/*------------------------------------------------------------------
Project:
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start--------------------------- 
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:
Content:
-------------------------------------------------------------------*/
/*----------------------- [ Default css ] -----------------------*/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge mate */
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

p {
    margin: 0;
    padding: 0;
}

svg {
    vertical-align: middle;
}

input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}

textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}

button {
    all: unset;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    margin: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--body-color);
    font-family: "Play", sans-serif;
    font-family: "Montserrat", sans-serif;

}

#toggleDark {
    font-size: 24px;
    cursor: pointer;
}

.with-bg-size {
    background-image: url("../image/review/BG-4.jpg");
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    animation: back 8s infinite;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -1;
}

@keyframes back {
    25% {
        background-image: url("../image/review/BG-1.jpg");
    }

    50% {
        background-image: url("../image/review/BG-2.jpg");
    }

    75% {
        background-image: url("../image/review/BG-3.jpg");
    }
}

/*--------------------- [ Root Color Dark & Light Color ] ---------------------*/
:root {
    --body-color: #f8f9fa;
    --title-color: #040404;
    --text-color: #040404;
    --light-text-color: #040404d6;
    --right-light-color: #777;
    --hard-card-title: #161616;
    --main-box-color: #dfe6ed4d;
    --condac-color: #545454;
    --box-shadow: 0px 2px 20px #02051214;
    --line-color: #04040433;
    --client-box: #FFFF;
    --box-color: #fafbff;
    --main-box-color-light: #ffffff;
    --sign-bg-color: #f5ede9;
    --line-bg-sign: #040404;
}

body.dark-theme {
    --body-color: #1a1c23;
    --title-color: #FFFF;
    --text-color: #FFFF;
    --light-text-color: #FFFF;
    --right-light-color: #b9b9b9;
    --hard-card-title: #FFF;
    --main-box-color: #dfe6ed14;
    --condac-color: #9d9d9d;
    --box-shadow: #959da500 0px 0px 4px;
    --line-color: #ffffff24;
    --client-box: #dfe6ed14;
    --box-color: #22242b;
    --main-box-color-light: #dfe6ed14;
    --sign-bg-color: #22242b;
    --line-bg-sign: #FFF;
    --filter-apple: invert(1) brightness(2);
}

/*--------------------- [ Loader Sppiner ] ---------------------*/
.dot-spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 2.8rem;
    width: 2.8rem;
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: #ff5500;
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(.9s * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(.9s * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(.9s * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(.9s * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(.9s * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(.9s * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(.9s * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(.9s * -0.125);
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-mask {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    background-color: var(--body-color);
    z-index: 99999;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    height: 78px;
    width: 100%;
    padding: 0 12px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #22242b21;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    z-index: 15;
    transition: 0.5s ease;
}

.header-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    width: 100%;
    max-width: 150px;
}

.header-search-box {
    margin-left: 20px;
    position: relative;
}

.hedaer-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-doct {
    background-color: transparent;
    position: relative;
}

.form-doct input {
    min-width: 300px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #FFF;
    border-radius: 5px;
    background-color: transparent;
    color: #FFF;
    box-shadow: var(--box-shadow);
    font-size: 16px;
    position: relative;
}

.search-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #FFF;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.hedaer-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.button-buy {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #ff5500;
    transition: all 0.2s ease;
}

.button-buy:hover {
    color: #fff;
}

.button-buy:active {
    transform: scale(0.96);
}

.button-buy:before,
.button-buy:after {
    position: absolute;
    content: "";
    width: 100%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1000;
    background-repeat: no-repeat;
}

.button-buy:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #ff5500 20%, transparent 30%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #ff5500 15%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.button-buy:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #ff5500 15%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%),
        radial-gradient(circle, #ff5500 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.header__toggle {
    font-size: 25px;
    font-weight: normal;
    color: var(--text-color);
    display: none;
}

.search-btn:hover {
    color: var(--title-color);
}

.link-nav {
    background-color: var(--body-color);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--title-color);
}

/* Main Content start */
.main-content {
    padding-top: 100px;
    transition: all .5s ease;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.main-title-right {
    font-size: 32px;
    font-weight: 700;
    font-family: "Play", sans-serif;
    line-height: 48px;
    color: #FFF;
}

.right-top-ul {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
}

.right-top-li {
    font-size: 14px;
    color: #FFF;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.right-top-li a {
    color: #FFF;
    transition: all 0.3s ease-in-out;
}

.right-top-li:not(:first-child) {
    padding-left: 20px;
}

.right-top-li:not(:first-child)::after {
    content: "\ea6e";
    font-family: "remixicon" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    left: 3px;
}

.gx-card {
    margin-bottom: 24px;
    background-color: var(--box-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.topic-sidebar {
    height: calc(100vh - 120px);
    position: sticky;
    top: 100px;
    overflow: auto !important;
}

.hx-card-header {
    padding: 24px;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--main-box-color-light);
}

.hx-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: "Play", sans-serif;
    color: var(--hard-card-title);
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
}

.gx-card .gx-card-content {
    padding: 15px 20px;
}

.gx-sb-list .gx-sb-item {
    position: relative;
}

.gx-sb-list li {
    padding: 5px 0;
}

.condense-1 {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease-in-out;
    color: var(--condac-color);
}

.gx-drop-toggle {
    padding: 10px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.gx-sb-list .gx-sb-item a {
    width: 100%;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
}

.gx-sb-list .gx-sb-item-last a {
    width: 100%;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
}

.gx-sb-list .gx-sb-title {
    margin-top: 30px;
    padding: 0 0 5px 0;
    text-transform: uppercase;
    color: var(--condac-color);
    font-size: 13px;
    font-weight: 600;
}

.gx-sb-list .gx-sb-item {
    position: relative;
}

.gx-page-link {
    padding: 12px 0;
}

.gx-sb-item:hover .gx-drop-toggle {
    transition: all .5s ease;
    color: #ff5500;
}

.dropdown-data li {
    padding: 5px 0 0 20px;
}

.drop-down {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: start !important;
    gap: 10px;
    color: var(--text-color);
}

.drop-down p {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.drop-down i {
    font-weight: 400;
    font-size: 15px;
}

.dropdown-data {
    display: none;
}

::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 999px;
    border: 1px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-track {
    background: transparent;
}

.drop-down:hover {
    color: #ff5500 !important;
    transition: all .5s ease;
}

.drop-arrow {
    transform: rotate(270deg);
    transition: transform 0.3s ease;
}

.drop-arrow.rotate {
    transform: rotate(360deg);
}

.gx-side-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 42;
    display: none;
}

.gx-card {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    background-color: var(--box-color);
    border-radius: 10px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.gx-card-header {
    padding: 25px;
    border-bottom: 1px solid var(--line-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--main-box-color-light);
}

.second-main-title {
    font-size: 22px;
    font-weight: 600;
    font-family: "Play", sans-serif;
    line-height: 34px;
    color: var(--title-color);
}

.header-tools {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-tools a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--right-light-color);
    border: 1px solid #eee;
    border-radius: 5px;
}

.gx-card-content {
    padding: 25px;
}

.auth-detail {
    background: var(--main-box-color);
    padding: 20px 30px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.auth-detail-li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--title-color);
    line-height: 24px;
}

.popins-data-helpex {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-text-color);
    margin-bottom: 18px;
}

.main-heading {
    font-size: 28px;
    font-weight: 600;
    font-family: "Play", sans-serif;
    color: var(--title-color);
    line-height: normal;
    margin-bottom: 10px;
}

.gx-full-screen {
    width: 100%;
    max-width: 1140px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 999;
    padding: 12px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.gx-full-screen.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gx-card-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gx-card-overlay.show {
    opacity: 1;
}

.gx-full-screen .gx-card {
    margin: 0;
    max-height: calc(100vh - 24px);
    overflow: auto;
}

.core-boxes {
    row-gap: 30px;
}

.gx-main-structure {
    overflow: auto;
}

.gx-main-structure>li:not(:last-child) {
    margin-bottom: 0px;
}

.gx-main-structure.active>li {
    display: block;
}

.gx-main-structure ul li {
    padding: 10px 0;
    list-style-type: none;
    color: var(--title-color);
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.03rem;
    font-weight: 400;
}

.gx-main-structure a {
    color: var(--title-color);
    transition: all 0.3s ease-in-out;
}

.gx-main-structure i {
    font-size: 20px;
    line-height: normal;
    margin-right: 5px;
    color: #ff5500;
}

.gx-main-structure.active a i.ri-arrow-up-s-line {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.gx-main-structure i.ri-arrow-up-s-line {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    font-size: 16px;
    color: var(--right-light-color);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-main-structure ul {
    margin-left: 35px;
    padding-left: 15px;
    border-left: 1px dashed #ddd;
}

.gx-page-block ul li {
    padding: 10px 0;
    color: var(--text-color);
}

.navbar-third {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

#theme-button {
    display: contents;
}

.popins-data-helpex span {
    color: #ff5500;
}

.nav .nav-item {
    padding: 0;
}

.nav-item button {
    color: var(--text-color);
    font-size: 16px;
    display: flex;
    gap: 5px;
}

.nav-item button:hover {
    color: var(--text-color);
}

.tab-content {
    padding-top: 30px;
    margin-bottom: 25px;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--text-color);
    border-bottom-color: var(--box-color);
}

.tab-content>.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.data-list i {
    font-size: 18px;
    line-height: normal;
}

.hx-service-box {
    text-align: center;
    padding: 20px;
    background-color: var(--body-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.service-icon i {
    font-size: 30px;
    color: #ff5500;
}

.service-icon {
    line-height: normal;
}

.feature-box .row {
    row-gap: 20px;
}

.service-name p {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    color: var(--title-color);
}

.data-ming {
    font-size: 14px;
    font-weight: normal;
    color: var(--condac-color);
    margin-top: 5px;
}

/*  */
.faq-container {
    max-width: 100%;
    margin: auto;
}

.faq {
    background: var(--body-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.faq-question:hover {
    color: #ff5500;
    transition: all 0.3s ease-in-out;
}

.faq i {
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.faq.open i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    color: var(--text-color);
    font-size: 14px;
}

.faq.open .faq-answer {
    max-height: 1000px;
    margin-top: 20px;
}

.megs-doct {
    row-gap: 20px;
}

.team-member .team-images img {
    width: 100%;
}

.team-images {
    border-radius: 6px;
    margin-bottom: 5px;
}

.team-images .social {
    padding: 15px;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all .4s cubic-bezier(.12, 0, .39, 0);
    background-image: linear-gradient(to top, rgba(32, 35, 41, .8) 0, transparent 100%);
}

.social-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
}

.social-icon a {
    text-decoration: none;
    font-size: 18px;
    transition: all .8s ease;
    transform: translateY(25px);
    display: inline-block;
    opacity: 0;
}

.social-icon a i {
    transition: all .35s ease-in-out;
}

.social-icon a:hover i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #FFF;
    color: #000;
    border-radius: 50%;
    transition: all .35s ease-in-out;
}

.team-member:hover .social-icon a:nth-child(1) {
    transition: all .3s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-member:hover .social-icon a:nth-child(2) {
    transition: all .4s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-member:hover .social-icon a:nth-child(3) {
    transition: all .6s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-member:hover .social-icon a:nth-child(4) {
    transition: all .8s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.team-member:hover .team-images .social {
    transition: all .4s cubic-bezier(.12, 0, .39, 0);
    opacity: 1;
}

.descr {
    text-align: center;
}

.descr a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    margin: 0;
    color: var(--text-color);
    transition: all .35s ease-in;
}

.descr span {
    font-size: 14px;
    font-weight: 400;
    color: var(--right-light-color);
}

.data-most {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.data-most a {
    padding: 15px 30px;
}

.custom-model-main {
    text-align: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* z-index: 1050; */
    -webkit-overflow-scrolling: touch;
    outline: 0;
    opacity: 0;
    -webkit-transition: opacity 0.15s linear, z-index 0.15;
    -o-transition: opacity 0.15s linear, z-index 0.15;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
}

.model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}

.custom-model-inner {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out,
        -webkit-transform 0.3s ease-in-out;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    margin: 30px auto;
    max-width: 100%;
}

.custom-model-wrap {
    display: block;
    width: 100%;
    margin: auto;
    position: relative;
    background-color: var(--body-color) !important;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    text-align: left;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 94vh;
    height: 94vh;
    overflow-y: auto;
}

.model-open .custom-model-inner {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
}

.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0);
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-transition: background 0.15s linear;
    -o-transition: background 0.15s linear;
    transition: background 0.15s linear;
}

.close-btn {
    position: absolute;
    right: 0px;
    top: -35px;
    cursor: pointer;
    z-index: 99;
    font-size: 30px;
    color: #fff;
}

.data-megnest {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-color);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.form-field:not(:last-child) {
    margin-bottom: 15px;
}

.label-heading {
    float: left;
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: inherit;
    color: var(--text-color);
}

.drop-down {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid var(--line-color);
    border-radius: 5px;
    padding: 0;
}

.drop-down .header {
    height: 40px;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    background-color: var(--body-color);
}

.drop-down .header .filter_selected {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
}

.drop-down .header i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 30px;
    color: var(--text-color);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.drop-down .filters {
    position: absolute;
    top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--body-color);
    border: 1px solid var(--line-color);
    border-radius: 10px;
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

.drop-down .filters .filter.selected {
    color: #ff5500;
}

.drop-down .filters .filter {
    padding: 0.5rem;
    font-size: 16px;
    font-weight: 400;
}

.contact {
    width: 100%;
    font-weight: 400;
    border: 1px solid var(--line-color) !important;
    padding: 8px 15px;
    line-height: 22px;
    border-radius: 5px;
    background-color: var(--body-color);
    font-size: 14px;
    box-shadow: var(--box-shadow);
    color: var(--text-color);
}

.second-in {
    margin-top: 15px;
}

input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ff5500 !important;
    transition: all .3s ease-in-out;
}

.second-in-sec {
    margin-top: 30px;
}

textarea {
    width: 100%;
    height: 200px;
    outline: none;
    padding: 10px;
    padding-left: 15px;
    background-color: var(--body-color);
    border: 1px solid var(--line-color);
    border-radius: 5px;
    font-size: 13px;
    color: var(--text-color);
}

.deta-text {
    font-size: 14px;
    color: var(--text-color);
}

.pop-up-content-wrap {
    overflow: scroll;
}

.magnetic {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
}

.blog-social {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 0px;
}

.blog-social li:first-child {
    border-right: 1px solid var(--line-color);
    padding-right: 15px;
}

.blog-social li {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 28px;
    margin-top: 10px;
}

.blog-detail {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-top: 10px;
    line-height: 24px;
}

.doctenidr {
    margin: 20px 0;
    row-gap: 20px;
}

.comment-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.comment-detail {
    display: flex;
    align-items: start;
    justify-content: start;
}

.Generic {
    border: 1px dashed var(--line-color);
    border-radius: 15px;
    height: 90px;
    margin-right: 20px;
    padding: 8px;
    width: 90px;
}

.detail-name {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.part-name {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.part-name p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.part-name span {
    color: var(--condac-color);
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
}

.comment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.name-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 10px;
}

.metic {
    gap: 5px;
}

.comment-show {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: var(--text-color);
}

.margin-data-set {
    margin-left: 100px;
}

.replay-title {
    font-size: 22px;
    font-weight: 700;
    font-family: "Play", sans-serif;
    color: var(--text-color);
    line-height: 36px;
    margin-top: 20px;
}

.replay-title {
    margin-bottom: 20px;
}

.replay-name {
    row-gap: 30px;
}

.message {
    height: 100px;
    width: 100%;
}

.blog-list-box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    width: 100%;
}

.blog-list-box img {
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    box-shadow: var(--box-shadow);
    max-height: 290px;
}

.blog-list-detail {
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--body-color);
    box-shadow: var(--box-shadow);
}

.use-name {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.category-ser {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.category-ser i {
    color: var(--text-color);
}

.category-ser p {
    color: var(--title-color);
    font-size: 14px;
    line-height: 24px;
}

.blog-list-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 28px;
    margin-top: 10px;
}

.blog-list-text a {
    color: var(--text-color);
}

.blog-text-num {
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
    margin-top: 10px;
}

.blog-list {
    row-gap: 30px;
}

.step-detail-title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Play", sans-serif;
    line-height: 30px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.data-list-table a {
    margin-left: 20px;
    color: #ff5500;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.data-list-table {
    margin-top: 10px;
    margin-bottom: 10px;
}

.data-list-table i {
    margin-right: 5px;
}

.data-list-table:hover {
    color: #ff5500;
}

.know-ul li {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: var(--text-color);
    list-style: decimal;
}

.know-ul {
    margin-left: 60px;
}

.list-docuement {
    font-size: 16px;
    font-weight: normal;
    color: var(--right-light-color);
    line-height: 30px;
    margin-top: 10px;
}

.document-data {
    color: #ff5500;
}

.data-commen {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 32px;
    font-family: "Play", sans-serif;
    margin-top: 20px;
}

.data-commen span {
    color: var(--text-color);
    margin-right: 5px;
}

.discription-file {
    margin-left: 20px;
    margin-top: 10px;
}

.centerl-title {
    font-size: 16px;
    color: #ff5500;
    font-weight: 600;
    line-height: 24px;
}

.centerl-title:hover {
    color: #ff5500;
}

.desc-data {
    font-size: 16px;
    font-weight: normal;
    color: var(--right-light-color);
    line-height: 28px;
    margin-top: 10px;
}

.mosted {
    margin-left: 15px;
}

.mosted li {
    padding: 5px 0 !important;
    color: var(--right-light-color);
    list-style: circle;
}

.metrixwe {
    margin-left: 10px;
}

.send-coment {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}

.normal-data-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    font-family: "Play", sans-serif;
}

.button-que {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.yes-button {
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    padding: 5px 40px;
    color: #ff5500;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all .3s ease-in-out;
}

.yes-button:hover {
    background-color: var(--text-color);
    transition: all .3s ease-in-out;
}

.hx-community {
    padding: 25px;
    background-color: var(--body-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: all .3s ease-in-out;
}

.data-community {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    transition: all .3s ease-in-out;
}

.hx-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hx-icon i {
    font-size: 50px;
    color: var(--condac-color);
}

.hx-community:hover .hx-icon i {
    color: #ff5500;
    transition: all .5s ease-in-out;
}

.hx-question {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 30px;
}

.hx-community:hover .hx-question {
    color: #ff5500;
    transition: all .5s ease-in-out;
}

.hx-admin {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.admin-class {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.admin-class i {
    color: #ff5500;
}

.admin-class p {
    color: var(--condac-color);
    font-size: 14px;
    line-height: 24px;
}

.data-hx {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hx-detail {
    color: var(--title-color);
    font-size: 16px;
    line-height: 28px;
    margin-top: 10px;
}

.main-hx {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hx-edited {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding: 5px 0;
    flex-wrap: wrap;
}

.hx-detected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hx-detected span {
    font-size: 16px;
    color: var(--condac-color);
}

.hx-detected p {
    font-size: 16px;
    color: var(--text-color);
}

.mosted-title {
    font-size: 16px;
    color: #ff5500 !important;
}

.hx-mega-title {
    font-size: 22px;
}

.line-hx {
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
    margin: 10px 0;
}

.tab-hx {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
}

.note {
    background-color: #ff55002c;
    color: #ff5500;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
    border-radius: 5px;
}

.note:hover {
    color: #ff5500;
}

.hx-detail:hover {
    color: var(--text-color);
}

.max-hx {
    gap: 20px;
}

.hx-dat-mug {
    font-size: 14px;
    line-height: 28px;
    margin-top: 5px;
}

.hx-answer-box {
    margin-top: 30px;
}

.hx-answer {
    align-items: center;
    justify-content: center;
}

.form-select {
    font-size: 14px;
    font-weight: 400;
    background-color: var(--body-color);
    color: var(--text-color);
    border-color: var(--line-color);
}

.form-select:focus {
    border-color: #ff55002c;
    box-shadow: 0 0 0 .25rem #ff55002c;
}

.bg-light-white {
    background-color: #e3e6e8;
    border-radius: 5px;
    padding: 5px;
    margin-top: 10px;
}

pre {
    margin-bottom: 0;
}

.question-hx {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 15px;
    padding-bottom: 5px;
}

.gx-singal-list ol p {
    color: var(--title-color);
    font-weight: 400;
}

.gx-singal-list-inner li {
    padding: 0 !important;
    font-size: 14px;
}

.hx-text-area {
    width: 100%;
    height: 200px;
    outline: none;
}

textarea:focus {
    border-color: #ff5500 !important;
}

.hx-list-que {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 28px;
    margin-top: 15px;
}

.data-max {
    margin-top: 0;
}

.most-hx {
    box-shadow: none;
    border-radius: 0 !important;
}

.main-hx li {
    padding: 0 !important;
}

.sign-up {
    background-color: var(--box-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.data-mode {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 99;
}

.box-sign {
    max-width: 650px;
    width: 100%;
    margin: auto;
    background-color: var(--body-color);
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.sign-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 38px;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: "Play", sans-serif;
}

.welcome-class {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-color);
    line-height: 24px;
}

.signup-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.sign-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 25px;
    border: 1px solid var(--line-bg-sign);
    width: 48%;
}

.sign-google img {
    max-width: 24px;
    width: 100%;
}

.sign-google p {
    color: var(--text-color);
    font-weight: 500;
}

.login-title {
    text-align: center;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    z-index: 1;
    display: flex;
    margin: 25px 0px;
    align-items: center;
}

.login-title::before, .login-title::after {
    content: "";
    height: 1px;
    flex: 1 1;
    left: 0;
    background-color: var(--line-bg-sign);
    top: 50%;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.login-title span {
    padding: 0 10px;
    color: var(--condac-color);
}

.form-data {
    margin-bottom: 30px;
}

.label-title {
    font-size: 16px;
    color: var(--title-color);
    font-weight: 500;
}

.input-sign {
    height: 50px;
    border: 1px solid var(--line-bg-sign);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    background: transparent;
    border-radius: 0;
    margin-top: 10px;
}

.toggle {
    background: none;
    border: none;
    color: #337ab7;
    font-weight: 600;
    position: absolute;
    right: .75em;
    top: 2.25em;
    z-index: 9;
}

.meg-data-sign {
    position: relative;
}

.toggle {
    position: absolute;
    right: 15px;
    top: 20px;
}

.toggle i {
    font-size: 20px;
    color: var(--text-color);
    font-weight: normal;
}

.meg-seven {
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    display: flex;
    letter-spacing: 1px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #ff5500;
    border: 1px solid #ff5500;
    transition: all .3s ease-in-out;
}

.decorate {
    margin-top: 50px;
    margin-bottom: 10px;
}

.meg-seven:hover {
    color: var(--text-color);
    background-color: transparent;
    transition: all .3s ease-in-out;
}

.motion {
    color: var(--text-color);
    margin-top: 10px;
}

.next-class {
    color: #ff5500;
}

.next-class:hover {
    color: #ff5500;
}

.fogot-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 5px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-data {
    width: 12px;
    background-color: #ff5500;
    border-color: #ff5500;
}

.forget-pass {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    color: #ff5500;
}

.forget-pass:hover {
    color: #ff5500;
}

.dat-back {
    position: fixed;
    top: 20px;
    left: 30px;
    width: 100%;
}

.dat-back a {
    color: #FFF;
}

.dat-back a i {
    margin-right: 5px;
}

.pospont {
    margin: 15px 0px;
}

.apple {
    filter: var(--filter-apple);
}