:root {
    --bg: #f7f7ff;
    --font: "Gilroy", sans-serif;
    --font2: "Barlow", sans-serif;
    --main-color: #3765e6;
    --base-color: #191b2a;
    --light-text: #a2a5b9;
    --soft-text: #6b7295;
    --main-text: #40445c;
    --base-text: #282c3f;
    --white: #fff;
    --danger: #f56a6a;
    --warning: #ebb35f;
    --primary: #6a7bf5;
    --success: #57c781;
    --light: #5f728a;
}

/* -------------------------- Main -------------------------- */

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #575a6d;
    font-family: var(--font);
    background-color: var(--bg);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

body.noscroll {
    overflow: hidden;
}

a {
    color: var(--soft-text);
    text-decoration: none;
}

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

ul,
ol {
    list-style: none;
}

:active,
:focus {
    outline: 0;
}

button {
    background: transparent;
    border: none;
}

/* -------------------------- General Styling -------------------------- */
.cl-white {
    color: #fff !important;
}

.cl-black {
    color: #000 !important;
}

.cl-main {
    color: var(--main-color) !important;
}

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

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

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

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

.cl-light {
    color: var(--light) !important;
}

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

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

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

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

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

/* Animation */
[data-ani="start"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
[data-ani="end"] {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
[data-ani-type="down"] {
    transform: translateY(-20px);
}
[data-ani-type="left"] {
    transform: translateX(-20px);
}
[data-ani-type="right"] {
    transform: translateX(20px);
}
[data-ani-type="up"] {
    transform: translateY(20px);
}
[data-ani="run"]:is([data-ani-type="down"], [data-ani-type="left"], [data-ani-type="right"], [data-ani-type="up"]) {
    transform: translate(0px, 0px);
    position: relative;
}
[data-ani="end"] {
    transform: none;
}

.container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-grid {
    display: -ms-grid !important;
    display: grid !important;
}

.grid-2 {
    -ms-grid-columns: 1fr 1fr !important;
    grid-template-columns: 1fr 1fr !important;
}

.grid-3 {
    -ms-grid-columns: 1fr 1fr 1fr !important;
    grid-template-columns: 1fr 1fr 1fr !important;
}

.grid-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.grid-30-auto {
    grid-template-columns: 30% auto;
}

.grid-auto-30 {
    grid-template-columns: auto 30%;
}

.grid-auto-40 {
    grid-template-columns: auto 40%;
}

.grid-40-auto {
    grid-template-columns: 40% auto;
}

.grid-auto {
    -ms-grid-columns: auto !important;
    grid-template-columns: auto !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.grid-cg-0 {
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
}

.grid-cg-1 {
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.grid-cg-2 {
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.grid-cg-3 {
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.grid-rg-0 {
    row-gap: 0 !important;
}

.grid-rg-1 {
    row-gap: 0.25rem !important;
}

.grid-rg-2 {
    row-gap: 0.5rem !important;
}

.grid-rg-3 {
    row-gap: 1rem !important;
}

.grid-w100 {
    grid-column: 1 / -1;
}

.border-0 {
    border: 0 !important;
}

.well {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.well [class^="ww"] {
    padding: 0 10px;
}

.well.form {
    margin: 0 -6px;
}

.well.form [class^="ww"] {
    padding: 0 6px;
}

.well .ww-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
}

.well .ww-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.well .ww-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
}

.well .ww-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
}

.well .ww-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.well .ww-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
}

.well .ww-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
}

.well .ww-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}

.well .ww-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
}

.well .ww-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

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

.miw-100 {
    min-width: 100% !important;
}

.maw-100 {
    max-width: 100% !important;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-100 {
    height: 100%;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

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

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

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

.m-auto {
    margin: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

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

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

.br0 {
    border-radius: 0 !important;
}

.br2 {
    border-radius: 2px !important;
}

.br5 {
    border-radius: 5px !important;
}

.br8 {
    border-radius: 8px !important;
}

.br10 {
    border-radius: 10px !important;
}

.br12 {
    border-radius: 12px !important;
}

.br15 {
    border-radius: 15px !important;
}

.br25 {
    border-radius: 25px !important;
}

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

.fs14 {
    font-size: 14px !important;
}

.fs15 {
    font-size: 15px !important;
}

.fs16 {
    font-size: 16px !important;
}

.fs17 {
    font-size: 17px !important;
}

.fs18 {
    font-size: 18px !important;
}

.fs20 {
    font-size: 20px !important;
}

.butto,
.badge {
    color: #fff;
    border: none;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    padding: 8px 15px;
    text-decoration: none !important;
    font-size: 15px;
    border-radius: 7px;
    transition: 0.4s;
    display: inline-block;
}

.butto:hover,
.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

[class*="butto-outline"],
[class*="badge-outline"] {
    padding: 7px 15px;
}

.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.butto-xs,
.badge-xs {
    padding: 5px 12px;
    font-size: 13px;
}

[class*="butto-outline"].butto-xs,
[class*="badge-outline"].badge-xs {
    padding: 4px 12px !important;
}

.butto-sm,
.badge-sm {
    padding: 6px 12px;
    font-size: 15px;
}

[class*="butto-outline"].butto-sm,
[class*="badge-outline"].badge-sm {
    padding: 5px 12px !important;
}

.butto-lg,
.badge-lg {
    padding: 10px 20px !important;
    font-size: 16px;
}

[class*="butto-outline"].butto-lg,
[class*="badge-outline"].badge-lg {
    padding: 9px 20px !important;
}

.butto-xlg,
.badge-xlg {
    padding: 15px 25px !important;
    font-size: 18px;
}

[class*="butto-outline"].butto-xlg,
[class*="badge-outline"].badge-xlg {
    padding: 14px 25px !important;
}

.butto-primary,
.badge-primary {
    color: #fff !important;
    background: var(--primary);
    font-weight: 500;
}
.border-primary {
    border-color: var(--primary) !important;
}
.badge-outline-primary,
.butto-outline-primary {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-primary:hover,
.butto-outline-primary:hover {
    color: #fff !important;
    background: var(--primary);
}

.butto-main,
.badge-main {
    color: #fff !important;
    background: var(--main-color);
    font-weight: 500;
}
.badge-outline-main,
.butto-outline-main {
    color: var(--main-color) !important;
    border: 1px solid var(--main-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-main:hover,
.butto-outline-main:hover {
    color: #fff !important;
    background: var(--main-color);
}

.butto-success,
.badge-success {
    color: #fff !important;
    background: var(--success);
    font-weight: 500;
}
.border-success {
    border-color: var(--success) !important;
}
.badge-outline-success,
.butto-outline-success {
    color: var(--success) !important;
    border: 1px solid var(--success);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-success:hover,
.butto-outline-success:hover {
    color: #fff !important;
    background: var(--success);
}

.butto-warning,
.badge-warning {
    color: #fff !important;
    background: var(--warning);
    font-weight: 500;
}
.border-warning {
    border-color: var(--warning) !important;
}
.badge-outline-warning,
.butto-outline-warning {
    color: var(--warning) !important;
    border: 1px solid var(--warning);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-warning:hover,
.butto-outline-warning:hover {
    color: #fff !important;
    background: var(--warning);
}

.butto-danger,
.badge-danger {
    color: #fff !important;
    background: var(--danger) !important;
    font-weight: 500;
}
.border-danger {
    border-color: var(--danger) !important;
}
.badge-outline-danger,
.butto-outline-danger {
    color: var(--danger) !important;
    border: 1px solid var(--danger);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-danger:hover,
.butto-outline-danger:hover {
    color: #fff !important;
    background: var(--danger);
}

.butto-light,
.badge-light {
    color: var(--white);
    background: var(--light);
    font-weight: 500;
}

.badge-outline-light,
.butto-outline-light {
    color: var(--light) !important;
    border: 1px solid #95a1b1;
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-light:hover,
.butto-outline-light:hover {
    color: var(--white) !important;
    background: var(--light) !important;
    border-color: var(--light) !important;
}

.butto-base,
.badge-base {
    color: var(--white);
    background: var(--base-color);
}

.badge-outline-base,
.butto-outline-base {
    color: var(--base-color) !important;
    border: 1px solid var(--base-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.butto-disabled {
    opacity: .5;
    pointer-events: none;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-primary {
    background: #bfcaff;
    color: #1b3a76;
}

.alert-danger {
    background: #febdbe;
    color: #8f2630;
}

.alert-warning {
    background: #ffddb0;
    color: #72602e;
}

.alert-success {
    background: #acedc3;
    color: #155724;
}

.alert-light {
    background: #e7e9f3;
    color: #565b74;
}

.btnAnimated {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btnAnimated::before {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    bottom: 0;
    width: 100%;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #ffffff10;
    -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    z-index: -1;
}

.btnAnimated:hover:before {
    left: -20%;
}
.tabsArea .tabHead {
    padding: 5px;
    background: #ececf5;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 2px !important;
}
.tabsArea .tabHead.soft {
    background: #f2f4f8;
}
.tabsArea .tabHead .item {
    border-radius: 12px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #63687b;
    margin-right: 5px;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabsArea .tabHead.small .item {
    padding: 7px 20px;
}
.tabsArea .tabHead .item i {
    font-size: 14px;
    margin-right: 5px;
}
.tabsArea .tabHead .item:last-child {
    margin-right: 0;
}
.tabsArea .tabHead .item.active {
    background: #fff !important;
    box-shadow: 0 3px 6px #00000008;
}
.tabsArea .tabHead .item:hover {
    background: #00000005;
}
.tabContent .tabitem {
    display: none;
}
.tabContent .tabitem.show {
    display: block;
}
.card {
    background: #fff;
    border-radius: 5px;
}

.card .card-header {
    color: var(--main-text-color);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 25px;
    border-bottom: 1px solid var(--bg);
}

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

.card .card-footer {
    color: var(--main-text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid var(--bg);
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover {
    position: relative;
    z-index: 1;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    font-size: 14px !important;
    font-weight: 400 !important;
    text-align: center;
    position: absolute;
    width: max-content;
    max-width: 239px;
    top: calc(90% + 5px);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background-color: #1a1e36af;
    padding: 4px 15px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 99;
}
[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

[data-tooltip]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(90% + 1px);
    transform: translateX(-50%);
    border-color: transparent transparent #1a1e36af transparent;
    border-style: solid;
    border-width: 0px 4px 4px 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 1px);
}

.checkbox,
.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[type="checkbox"],
[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: #f8f9fc;
    border: 1px solid #e6e8ed;
    border-radius: 7px;
    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;
    margin-right: 7px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

[type="checkbox"]:checked,
[type="radio"]:checked {
    position: relative;
    background: var(--main-color);
    border: transparent;
}

[type="checkbox"]:checked + label,
[type="radio"]:checked + label {
    font-weight: 500;
}

[type="checkbox"]:checked::before,
[type="radio"]:checked::before {
    content: "\eae6";
    font-family: eg;
    position: absolute;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.checkbox label,
.radio label {
    font-size: 16px;
    color: var(--soft-text);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.switch {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.switch > span {
    width: 34px;
    height: 20px;
    display: block;
    background: #fff;
    border-radius: 12px;
    position: relative;
}

.switch > span::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: var(--main-color);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.switch > label {
    margin-left: 5px;
}

.switch.active > span {
    background: var(--main-color);
}

.switch.active > span::before {
    left: calc(100% - 17px);
    background: #fff;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 11;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.modal .modal-content {
    position: relative;
    left: 50%;
    top: 50vh;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 750px;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    padding: 15px;
    padding-bottom: 75px;
}

.modal .modal-content.modal-md {
    max-width: 600px;
}

.modal .modal-content.modal-lg {
    max-width: 1100px;
}

.modal .modal-content .modalArea {
    background: #fff;
    border-radius: 12px;
    position: relative;
}

.modal .modal-content .modalArea .modal-close {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 18px;
    height: 34px;
    width: 34px;
    color: #fff;
    background: var(--main-color);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    overflow: auto;
    background-color: #1a1d2bf0;
}

.modal.show .modal-content {
    top: 6vh;
    opacity: 1;
}

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

.modalHead {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg);
    color: var(--main-text-color);
    font-size: 16px;
    font-weight: 600;
}

.modalFoot {
    border-top: 1px solid var(--bg);
}

/* -------------------------- AllCodes ---------------------------*/

/* -- Side - Nav -- */

.side-content-area {
    min-height: 500px;
}

.wrap-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    margin-top: 20px;
}

.wrap-side .wrap-head .logo {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.wrap-side .wrap-head .logo img {
    display: block;
    position: relative;
    top: 2px;
}

.wrap-side .wrap-head .logo .icon {
    transition: 0.2s;
}

.wrap-navbar {
    transition: 0.2s;
    transition-delay: 0s;
}
.wrap-navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.wrap-navbar ul li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    transition: 0.2s;
}
 
.wrap-navbar ul li a.nav-text { 
    font-weight: 600;
    color: var(--soft-text);
    display: block;
    transition: 0.2s;
    font-size: 17px;
}

.wrap-navbar ul li a:hover {
    color: var(--main-color);;
}

.wrap-navbar ul li:last-child a {
    border: none;
}

.wrap-side li.hideShow {
    margin-top: auto;
}

.wrap-side li.hideShow .navShow {
    display: none;
}

.wrap-side .wrap-head .logo .icon img {
    width: 36px;
    transition: 0.2s;
}

.wrap-side .wrap-head .logo .text {
    transition: 0.2s;
    transition-delay: 0.2s;
    position: relative;
    top: 1px;
}

.wrap-navbar ul li {
    position: relative;
}

.wrap-view-head {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.wrap-view-head .wrap-view-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
}

.wrap-view-head .wrap-view-title :is(h1, h2, span) {
    font-size: 1.2rem;
    color: var(--main-text);
    font-weight: 600;
}

.wrap-view-head .head--more {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary);
    font-size: 15px;
    padding-left: 12px;
    margin-left: 12px;
    border-left: 1px solid #808dbb3b;
    position: relative;
    top: 1px;
    transition: .1s;
}

.wrap-view-head .head--more i {
    position: relative;
    margin-left: 2px;
    transition: .1s;
}

.wrap-view-head .head--more:hover i {
    margin-left: 6px;
    transform: rotate(45deg);
}

.wrap-view-head .head--more:hover {
    letter-spacing: 1px;
}

.wrap-view-head .wrap-view-title p {
    color: var(--soft-text);
}

.wrap-view-action {
    margin-left: auto;
}

.wrap-view-action .nav-action .item .icon {
    border-color: #a2a5b93d;
    color: var(--soft-text);
    transition: 0.2s;
}

.wrap-view-action .nav-action .item:hover .icon {
    background: #191b2a10;
}

.wrap-view-head .wrap-view-title::before {
    content: "\ec01";
    font-family: "eg";
    font-size: 22px;
    color: var(--main-color);
    position: relative;
    left: -3px;
}

.nav-action ul.list.user li a {
    gap: 8px;
    padding: 12px;
}

.nav-action ul.list.user li a .ico {
    color: var(--soft-text);
    font-size: 16px;
    display: flex;
    align-items: center;
}

.nav-action .item.show .icon {
    background: var(--main-color) !important;
    color: #fff !important;
}
.nav-action {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-action .icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff10;
    background: #ffffff05;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
    position: relative;
}

.nav-action .icon.have::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--bg);
    background: #e91e63;
    border-radius: 100%;
    top: -4px;
    right: -4px;
}

.wrap-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    transition: 0.2s;
    transition-delay: 0s;
}

.wrap-container .wrap-page-content {
    padding: 0 15px;
}

.wrap-inner-content {
    padding-top: 20px;
}

.nav-action ul.list {
    position: absolute;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px #5e628924;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-top: -10px;
    transition: 0.2s;
    border-radius: 8px;
    z-index: 9;
}

.nav-action ul.list.notify {
    width: 20rem;
}

.nav-action ul.list.user {
    width: 12rem;
}

.nav-action .item {
    position: relative;
}

.nav-action .item.show ul.list {
    opacity: 1;
    margin-top: 5px;
    pointer-events: all;
    visibility: visible;
}

.nav-action ul.list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
}

.nav-action ul.list.notify li a .ico {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--soft-text);
    border-radius: 7px;
    font-size: 17px;
}

.nav-action ul.list li {
    border-bottom: 1px solid var(--bg);
    transition: 0.2s;
}

.nav-action ul.list li:hover {
    background: #191b2a05;
}

.nav-action ul.list li:last-child {
    border: none;
}

.nav-action ul.list li a .text {
    font-size: 15px;
    color: var(--soft-text);
    font-weight: 500;
}

.nav-action ul.list li a .text .time {
    font-size: 12px;
    color: #aab1cb;
}
/* -- Side - Nav END -- */

/* -- Theme General -- */
.wbox {
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 12px;
}

.wbox .wbox-head {
    padding: 15px;
    font-weight: 600;
    color: var(--main-text);
    border-bottom: 1px solid #34334c0a;
}

.wbox .wbox-head span {
    display: block;
    font-weight: 400;
    color: var(--soft-text);
    font-size: 14px;
}

.wbox .wbox-body {
    padding: 20px;
    color: var(--main-text);
}

.wbox .wbox-foot {
    padding: 15px;
    font-weight: 600;
    color: var(--main-text);
    border-top: 1px solid #34334c0a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.content-area {
    display: grid;
    grid-template-columns: auto 70%;
    gap: 20px;
}

.content-area-main {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    height: fit-content;
}

.well-box {
    background: #fff;
    border-radius: 12px;
}

.well-box .head {
    padding: 15px;
    font-weight: 600;
    color: var(--main-text);
    border-bottom: 1px solid #34334c0a;
}

.well-box .foot {
    padding: 15px;
    border-top: 1px solid #34334c0a;
    display: flex;
}

.well-box .head.big {
    padding: 20px;
}

.well-box .body {
    padding: 15px;
}

.well-box .body.big {
    padding: 20px;
}

.well-box .head.down {
    border-top: 1px solid #34334c0a;
    border-bottom: 0;
}

.well-box .head span {
    display: block;
    font-weight: 400;
    color: var(--soft-text);
    font-size: 14px;
}

.well-box .item {
    padding: 17px 15px;
    border-bottom: 1px solid #34334c0a;
}

.well-box .item .butto {
    border-radius: 30px;
}

.well-box.small .item {
    padding: 12px 15px;
}

.well-box .item .top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.well-box .item .top .icon,
.well-box .head .icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 8px;
}

.well-box.dark .head .icon {
    background: #ffffff12;
    color: #fff;
}

.well-box .item .top .text {
    font-size: 15px;
    color: var(--soft-text);
    line-height: normal;
}

.well-box .item .top .text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-text);
}

.well-box .item:last-child {
    border: none;
}

.well-box.dark {
    background: var(--base-text);
}

.well-box.dark .head {
    color: var(--white);
    border-color: #ffffff08;
}

.well-box.dark .head span {
    color: var(--light-text);
}

.well-box.bar-dark {
    background: var(--base-color);
    display: flex;
}

.well-box.bar-dark .item {
    width: 100%;
    border-bottom: 0;
    border-right: 1px solid #ffffff10;
    padding: 20px;
}

.well-box.bar-dark .item .top .icon {
    display: block;
    border: 1px solid #ffffff10;
}

.well-box.bar-dark .item .top .text {
    font-size: 13px;
    color: var(--light-text);
}

.well-box.bar-dark .item .top .text span {
    color: #fff;
}

.well-box.bar-dark .item .progress {
    background: #ffffff20;
}

.well-box .icon.ico1 {
    background: #e6e1ef;
    color: #8167b1;
}

.well-box .icon.ico2 {
    color: #0398e2;
    background: #cdeefe;
}
.well-box .icon.ico3 {
    color: #80c576;
    background: #e9f9e7;
}

.well-box .icon.ico4 {
    color: #db7a7a;
    background: #ffe6e6;
}

.well-box .icon.ico5 {
    color: #ffb18c;
    background: #ffeee6;
}

.well-box .icon.ico6 {
    color: #707aac;
    background: #e3e6f1;
}

.well-box .item .progress {
    height: 8px;
    width: 100%;
    border-radius: 5px;
    margin-top: 15px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.well-box .item .progress .proBar {
    height: 100%;
    width: 0%;
    transition: 0.8s;
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(0.02, 0.1, 0, 1);
    background: var(--probar);
}

.well-box .item.subs .progress .proBar {
    background: #8167b1;
}

.well-box .item.tenure .progress .proBar {
    background: #1698e2;
}

.well-box .item .top .action {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 7px;
}

.page-content-head .title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-content-head .title::before {
    content: "\e93c";
    font-family: "eg";
    color: var(--main-color);
    font-size: 20px;
}

.page-content-head .title h2 {
    font-size: 1.3rem;
    color: var(--main-text);
    font-weight: 600;
}

.page-content-head .action {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-content-head .search {
    position: relative;
}

.page-content-head .search .search-control {
    width: 100%;
    color: var(--main-text);
    background: #ededf3;
    border: 1px solid #3a38520d;
    height: 44px;
    padding: 15px;
    font: var(--font);
    border-radius: 10px;
}

.page-content-head .search .search-control::placeholder {
    color: #b0b0c5;
}

.page-content-head .search .butto {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.page-content-head .action .butto {
    width: max-content;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

/* Drop */

.dropList {
    position: relative;
}
.dropList.mb10 {
    margin-bottom: 10px;
}
.dropListTable {
    display: none;
    border-top: 0;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 2;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    overflow: hidden;
    box-shadow: 0 10px 15px #acacbd7d;
    max-height: 320px;
    overflow: auto;
}
.dropListTable::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
.dropListTable::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}
.dropListTable::-webkit-scrollbar-thumb {
    background-color: var(--soft-text);
}
.dropListTable .item {
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f4fb;
    font-size: 16px;
    color: var(--soft-text);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropList.light,
.dropList.selected {
    background: var(--white);
    border-radius: 5px;
}

.dropList.light .dropListTitle,
.dropList.selected .dropListTitle {
    background-color: #f8f9fc;
    align-items: center;
}
.dropListTable .search {
    padding: 10px;
    border-bottom: 1px solid #f5f4fb;
    position: relative;
}

.dropListTable .search .butto {
    display: flex;
    align-items: center;
    gap: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
}
.dropListTable .search .butto.show {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.dropListTable .item.active {
    background: #fafafb;
}
.dropListTable .item .text {
    color: #9699ad;
}
.dropListTable .item .text span {
    color: #565b74;
    display: block;
    margin-bottom: 2px;
}
.dropListTable .item.active .icon {
    opacity: 1;
}
.dropListTable .item:last-child {
    border: none;
}
.dropListTable .item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}
.dropListTable .item span span {
    font-weight: 400;
}
.dropListTable .item:hover {
    background: #fbfbfd;
}
.dropListTitle {
    position: relative;
    padding: 1rem 1rem;
    border: 1px solid #e5e5f5;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--soft-text);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    transition-delay: 0.2s;
    height: 58px;
}
.dropListTitle.border-0 {
    border: 0 !important;
}
.dropListTitle .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 29px;
    color: var(--color-text-light);
}
.dropList.show .dropListTitle {
    background: #f5f6f9;
    transition: 0s;
    border-radius: 10px 10px 0 0;
}
.dropListTable .item .icon {
    display: flex;
    font-size: 22px;
    opacity: 0.2;
}
.dropListTitle::after {
    content: "\e96f";
    font-family: "eg";
    color: var(--light-text);
    position: absolute;
    right: 15px;
    font-size: 25px;
    display: flex;
    transform: rotateX(0deg);
    transition: 0.2s;
    margin-top: 2px;
}
.dropListTitle.nodrop::after {
    content: "";
}
.dropList.show .dropListTitle::after {
    transform: rotateX(180deg);
}
.dropListTitle label.title {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    padding: 1.15rem 1rem;
    font-weight: 500;
    font-size: 16px;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.dropList.selected .dropListTitle label.title {
    opacity: 0.6;
    transform: scale(0.8) translateY(-0.27rem) translateX(0.2rem);
}
.dropList.selected .dropListTitle .dlabName {
    padding-top: 1.5rem;
    padding-bottom: 0.625rem;
}
/* Drop */

.form-control {
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    color: var(--soft-text);
    background: #fff;
    border: 1px solid #e5e5f5;
    padding: 0.8rem 1rem;
    height: 58px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    transition: 0.2s;
}

.form-control:disabled {
    color: var(--light-text);
    background: #f4f5f7 !important;
}

.form-control::placeholder {
    color: var(--light-text);
    font-weight: 400;
}

.form-control:focus {
    border-color: var(--light-text) !important;
}

.form-floating {
    position: relative;
    margin-bottom: 12px;
}

.form-floating .form-control {
    padding-top: 27px;
}
.form-floating textarea {
    min-height: 70px;
}

.form-floating > label {
    color: var(--light-text);
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    height: 58px;
    padding: 1.25rem 1rem;
    font-size: 15px;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.8) translateY(-0.27rem) translateX(0.25rem);
}

.form-floating > .form-control::placeholder {
    color: transparent;
}

.main-sidebar.sticky .hi-content {
    position: sticky;
    top: 20px;
}

.main-sidebar.horizontal .hi-content .top {
    flex-direction: row;
    padding-left: 10px;
}

.main-sidebar.horizontal .hi-content .top .socials {
    margin-left: auto;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 0;
}

.main-sidebar.horizontal .hi-content .top .text {
    text-align: left;
    padding: 0 12px;
}

.main-sidebar.horizontal .hi-content {
    margin-bottom: 15px;
}

.main-sidebar.horizontal .hi-content .top .socials .soci {
    height: 100%;
    aspect-ratio: 1/1;
    justify-content: center;
}

.main-sidebar.horizontal .hi-content .top .socials .soci .icon {
    font-size: 24px;
    margin-bottom: 3px;
}

.well-box.hi-content {
    padding: 20px;
}

.well-box.hi-content .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
}

.well-box.hi-content .top .text .name {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    display: block;
}

.well-box.hi-content .top .text .job {
    display: block;
    font-size: 13px;
    color: #9ea8c3;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: var(--font2);
}

.well-box.hi-content .top .text {
    text-align: center;
    line-height: normal;
}

.well-box.hi-content .socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.well-box.hi-content .socials .soci {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--soft-text);
    border: 1px solid #7980a124;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.2s;
    position: relative;
}

.well-box.hi-content .socials .soci .icon {
    font-size: 22px;
    transition: 0.2s;
}

.well-box.hi-content .socials .soci .text {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.2s;
    opacity: 0.8;
    font-family: var(--font2);
}

.well-box.hi-content .socials .soci::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: var(--soci-color);
    opacity: 0;
    transition: 0.4s;
}

.well-box.hi-content .socials .soci:hover:before {
    opacity: 0.05;
}

.well-box.hi-content .socials .soci:hover :is(.icon, .text) {
    color: var(--soci-color);
}

[class*="wpath"] {
    position: relative;
    overflow: hidden;
}

[class*="wpath"]::before {
    content: "";
    position: absolute;
    background: url(../img/well-path.webp);
    width: 230px;
    height: 260px;
    opacity: 0.2;
}

.wpath-tr::before {
    left: -90px;
    top: -200px;
    transform: rotate(45deg);
}

.why-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.why-list .el {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff08;
    border: 1px solid #ffffff10;
    padding: 5px;
    border-radius: 10px;
}

.why-list .el .icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ffffff12;
    border-radius: 6px;
    font-size: 20px;
}

.why-list .el .text {
    line-height: normal;
    font-size: 14px;
    color: var(--light-text);
}

.why-list .el .text span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.grid-list-area {
    position: relative;
}

.grid-list-area .port-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.grid-list-area .port-list .ref {
    position: relative;
    transition: 0.3s;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px 0 rgb(24 28 33 / 2%);
    overflow: hidden;
}

.grid-list-area .port-list .ref .featured {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex
;
    align-items: center;
    gap: 2px;
    background: var(--main-color);
    padding: 6px 12px;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    font-weight: 500;
}

.grid-list-area .port-list .ref img {
    width: 100%;
    height: 160px;
    display: block;
}

.grid-list-area .port-list.img-auto .ref img {
    height: auto;
    aspect-ratio: 5 / 3;
}

.port-list.product--list {
    grid-template-columns: repeat(3, 1fr);
}

.port-list.product--list .ref img {
    aspect-ratio: 5/3;
    height: auto;
    object-fit: cover;
}

.grid-list-area .port-list .ref .bottom {
    padding: 20px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -25px;
    position: relative;
    border-top-left-radius: 25px;
    background: #fff;
    box-shadow: 5px 0 10px #00000010;
}

.grid-list-area .port-list .ref .bottom::before {
    content: "";
    position: absolute;
    right: -23px;
    top: -27px;
    width: 50px;
    height: 50px;
    box-shadow: inset -23px -23px #fff;
    border-radius: 100px;
}

.grid-list-area .port-list .ref .bottom .text {
    line-height: normal;
    color: var(--soft-text);
    font-size: 15px;
    font-weight: 500;
}

.grid-list-area .port-list .ref .bottom .text span {
    display: block;
    font-weight: bold;
    color: var(--main-text);
    font-size: 18px;
}

.grid-list-area .port-list .ref .bottom .butto {
    border-radius: 30px;
}

.blog-product-area {
    margin-top: 20px;
    display: grid;
    grid-template-columns: auto 350px;
    gap: 20px;
}

.blog-area-content {
    display: grid;
    grid-template-columns: 300px auto;
    gap: 12px;
}

.blog-product-area .sidebar-category-list {
    padding: 5px 0;
}

.blog-area-content img {
    width: 100%;
    border-radius: 10px;
}

.blog-product-area .blog-area {
    background: var(--base-color);
    padding: 15px;
    border-radius: 15px;
    height: fit-content;
}

.blog-product-area .widget_popular {
    display: none;
}

.blog-area-content .blog-post-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-area-content .blog-post-featured {
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.blog-area-content .blog-post-featured::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(10deg, #222441, #8a91c74d);
    border-radius: 8px;
    pointer-events: none;
}

.blog-post-featured a.blog-post-item .detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}

.blog-post-featured a.blog-post-item .detail h3 {
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-post-featured a.blog-post-item .detail p {
    color: var(--light-text);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-area-content .blog-post-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-area-content .blog-post-list .blog-post-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to left, #ffffff0f, transparent);
    padding: 7px;
    padding-left: 18px;
    border-radius: 12px;
    transition: 0.2s;
}

.blog-area-content .blog-post-list .blog-post-item img {
    width: 100%;
    max-width: 110px;
    height: 75px;
    object-fit: cover;
}

.blog-area-content .blog-post-list .blog-post-item .detail h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-area-content .blog-post-list .blog-post-item:hover {
    background: #ffffff12;
}

.main-product--list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-product--list .item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 202px;
    z-index: 1;
}

.main-product--list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 2;
    position: relative;
}

.main-product--list .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #212332, transparent);
    z-index: 3;
}

.main-product--list .item .featured {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--main-color);
    padding: 6px 12px;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    font-weight: 500;
    z-index: 4;
}

.main-product--list .item .bottom {
    position: absolute;
    left: 0;
    z-index: 4;
    bottom: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.main-product--list .item .bottom .text {
    color: #ffc671;
    font-weight: 500;
}

.main-product--list .item .bottom .text span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.main-product--list .item .bottom .butto {
    border-radius: 30px;
    color: #fff !important;
    background: #ffffff10;
    border: 1px solid #ffffff30;
    font-size: 14px;
    padding: 6px 15px !important;
}

.footer {
    margin: 30px 0 5px;
    border-top: 1px solid #00000010;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
}

.footer .copyright {
    color: var(--light-text);
}

.footer .footer-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 500;
    color: var(--light-text);
}

.footer .footer-nav .nav-item {
    transition: 0.3s;
}

.footer .footer-nav .nav-item:hover {
    color: var(--main-text);
}

.line-path {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.line-path::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../img/line-path.webp);
    background-size: 250px;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

.text-content {
    position: relative;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 400;
}

.text-content p:last-child {
    margin: 0;
}

.work-view {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
}

.work-features, .box-features {
    position: relative;
    display: grid;
    gap: 7px;
    margin-bottom: 20px;
}

.work-features .item, .box-features .item {
    padding: 15px 18px;
    background: var(--white);
    border-radius: 12px;
    color: #9daad1;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    font-weight: 500;
}

.work-features .item span, .box-features .item span {
    display: block;
    font-size: 17px;
    color: var(--soft-text);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.offer-area {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: center;
}

.offer-area .icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--main-color);
    font-size: 30px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.offer-area .icon::before {
    content: "";
    position: absolute;
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 100%;
    z-index: -1;
    background: var(--main-color);
    opacity: 0.15;
}

.offer-area .text {
    color: var(--light-text);
    text-align: center;
    font-size: 17px;
    margin: 10px 0;
    max-width: 200px;
}

.offer-area .text span {
    display: block;
}

.offer-area .butto {
    padding: 15px 23px !important;
    width: 100%;
    justify-content: center;
}

.offer-area .text span {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
    margin-top: 7px;
}

.work-slide_show {
    position: relative;
    overflow: hidden;
    transition: 0.2s ease all;
}

.work-slide_show img {
    width: 100%;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.work-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.work-slide {
    position: relative;
    padding: 2px;
}

.work-slide_gallery {
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--bg);
    padding: 10px;
    background: #fcfcfd;
}

.work-slide_gallery .item {
    border: 2px solid #e7e7f3;
    border-radius: 8px;
    padding: 2px;
    aspect-ratio: 4/3;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s ease all;
}

.work-slide_gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.work-slide_gallery .item.selected {
    border-color: var(--main-color);
    opacity: 1;
}

.work-slide_gallery .item:hover {
    opacity: 1;
}

.work-detail_content {
    padding: 20px;
}

.work-detail_content .work-head {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.work-detail_content .work-head h1 {
    font-size: 22px;
    color: var(--main-text);
}

.work-detail_content .work-head::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 10px;
    background: var(--main-color);
}

.work-detail_content .work-body p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 400;
}

.work-body_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.work-body_list .item {
    padding: 12px 15px;
    border-radius: 8px;
    background: #f9f9fb;
    border: 1px solid var(--bg);
    color: var(--light-text);
}

.work-body_list .item span {
    font-weight: 600;
    color: var(--soft-text);
    display: block;
}

.well-service {
    display: grid;
    grid-template-columns: 30% auto 30%;
    gap: 15px;
    padding: 15px;
}

.well-service .service {
    position: relative;
    z-index: 1;
}

.well-service .featured {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    background: #ffffff10;
    padding: 8px 12px 9px;
    color: #fff;
    font-size: 13px;
    border-radius: 0 8px 0 12px;
    font-weight: 500;
    z-index: 4;
}

.well-service .service img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.well-service .service .icon {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 28px;
    color: #fff;
    transform: rotate(-45deg);
    z-index: 2;
    transition: 0.3s ease all;
}

.well-service .service .service--detail {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 25px;
    z-index: 1;
    transition: 0.3s ease all;
}

.well-service .service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(22deg, #8b4f33c9 25%, #4257a700, #8b4f33db);
    border-radius: 8px;
    transition: 0.2s;
    opacity: 1;
}

.well-service .service:nth-child(3)::before {
    background: linear-gradient(22deg, #58338bc9 25%, #4257a700, #58338bc9);
}

.well-service .service--detail span.service-detail_hash {
    font-size: 14px;
    font-weight: 500;
    color: #ffffffa6;
}

.well-service .service--detail .service-detail_text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.well-service .service:hover .icon {
    transform: rotate(0deg);
}

.well-service .service:hover .service--detail {
    left: 5px;
}

.well-service .service:hover:before {
    opacity: 0.8;
}

.well-service .service-about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.well-service .service-about-me .image {
    text-align: center;
    margin-bottom: 25px;
}

.well-service .service-about-me .text span.bottom {
    color: #fff;
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.well-service .service-about-me .text {
    text-align: center;
}

.well-box.well-service {
    background: var(--base-color);
}

.well-service .service-about-me .text span.bottom span {
    display: block;
    font-weight: 300;
    font-family: var(--font2);
    font-size: 20px;
    letter-spacing: 2px;
}

.well-service .service-about-me .action {
    margin-top: 35px;
}

.well-service .service-about-me .action .butto {
    color: #fff !important;
    border-color: #ffffff30;
    padding: 15px 20px;
    min-width: 200px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font2);
}

.well-service .service-about-me .action .butto i {
    display: flex;
    position: relative;
    font-size: 18px;
}

.well-service .service-about-me .action .butto:hover {
    background: #ffffff15 !important;
    border-color: #ffffff8a !important;
}

.well-service[class*="well_service"] {
    display: grid;
    grid-template-columns: 250px auto 200px;
    gap: 35px;
    align-items: center;
}

.well-service[class*="well_service"] .service img {
    aspect-ratio: 1;
}

.well-service[class*="well_service-code"] .service::before {
    background: linear-gradient(22deg, #58338bc9 25%, #4257a700, #58338bc9);
}

.well-service .service_detail .hash {
    background: #ffd5a830;
    padding: 7px 15px;
    display: inline-block;
    font-size: 14px;
    color: #ffa562;
    border-radius: 7px;
    margin-bottom: 3px;
}

.well-service[class*="well_service-code"] .service_detail .hash {
    background: #9c70e136;
    color: #d262ff;
}

.well-service .service_detail h1.title {
    color: #fff;
}

.well-service .service_detail p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.well-service .service_detail .action .butto {
    color: #fff !important;
    border-color: #ffffff54;
    padding: 15px 20px;
    width: 175px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font2);
}

.well-service .service_detail .action .butto:hover {
    background: #ffffff15 !important;
    border-color: #ffffff8a !important;
}

.well-service .service_detail .action .butto i {
    display: flex;
    position: relative;
    font-size: 18px;
}

.service-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #ffffff15;
    border: 1px dashed #ffffff35;
    padding: 20px 12px;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: 15px;
}

.service-tools i {
    font-size: 20px;
    color: #fff;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
}

.well_service-graphic .service-tools i.active {
    color: var(--warning);
}

.well_service-code .service-tools i.active {
    color: #d77cf3;
}

.service-tools i:hover {
    transform: rotate(-15deg);
}

.service-detail_content {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 275px auto;
    gap: 15px;
}

.service-detail_content.product--content {
    grid-template-columns: auto 280px;
}

.service-detail_content.product--content .service-features_list {
    position: sticky;
    top: 20px;
}

.service-features_list {
    display: grid;
    gap: 7px;
}

.service-features_list .feature {
    color: var(--soft-text);
    font-size: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-family: var(--font2);
    text-transform: uppercase;
    font-weight: 500;
}

.service-content_detail .article-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.service-content_detail .article-content img {
    max-width: 100%;
}

.article-content p {
    font-size: 17px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 400;
}

.accordion .item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 5px;
}

.accordion .item.show .head .icon {
    color: var(--main-color);
    transform: rotate(45deg);
}

.accordion .item .head {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

.accordion .item .head .icon {
    color: #c4cad9;
    transition: 0.2s;
}

.accordion .item .head .icon i {
    display: flex;
    font-size: 17px;
}

.accordion .item .body {
    padding: 15px;
    border-top: 1px solid var(--bg);
    font-size: 17px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 400;
    display: none;
}

.well-box.well-bank .top {
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--bg);
}

.well-box.well-bank .top .icon img {
    display: block;
    border-radius: 8px;
}

.well-box.well-bank .top .text {
    font-size: 18px;
    font-weight: 600;
    color: var(--soft-text);
}

.well-box.well-bank .bank-detail {
    padding: 20px;
}

.well-box.well-bank .bank-detail {
    font-size: 18px;
    color: var(--soft-text);
    font-weight: 600;
    position: relative;
}

.well-box.well-bank .bank-detail .iban {
    font-family: var(--font2);
    font-size: 18px;
    font-weight: 400;
}

.well-box.well-bank .copy {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #efeffd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease all;
}

.well-box.well-bank .copy:hover {
    background: var(--bg);
}

.well-box.well-bank .copy.copied {
    background: #bdf5d3;
    border-color: #bdf5d3;
    color: #599d74;
}

.well-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
    padding: 15px;
    background: var(--base-color) !important;
}

.well-blog .featured_post {
    position: relative;
}

.well-blog .featured_post img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 9px;
	z-index: 1;
}

.well-blog .icon {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 28px;
    color: #fff;
    transform: rotate(-45deg);
    z-index: 3;
    transition: 0.3s ease all;
}

.well-blog .featured_post::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #2a3043e3 25%, #171c313b, #0c122387);
    border-radius: 6px;
    transition: 0.2s;
    opacity: 1;
    z-index: 2;
}

.well-blog .featured_post .post-detail {
    position: absolute;
    padding: 25px;
    left: 0;
    bottom: 0;
    right: 0;
    transition: .3s ease all;
	z-index: 3;
}

.post-detail h2 {
    color: #fff;
    font-size: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    transition: .2s;
}

.well-blog .post-description p {
    color: #d0d2db;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    opacity: 0;
    transition-delay: .0s !important;
    transition: .1s;
    margin-bottom: -45px;
}

.well-blog .featured_post:hover .icon {
    transform: rotate(0deg);
}

.well-blog .featured_post:hover .post-detail {
    bottom: 0;
}

.well-blog .featured_post:hover .post-detail p {
    opacity: 1;
    transition: .2s ease all;
    transition-delay: .1s !important;
    margin-bottom: 0;
}

.blog-list {
    display: grid;
    grid-template-columns: auto 300px;
    gap: 20px;
    margin-top: 25px;
}

.blog-posts .post {
    background: var(--white);
    padding: 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-posts .post .thumbnail {
    position: relative;
    max-width: 240px;
}

.blog-posts .post .thumbnail img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.blog-posts .post .title {
    margin-bottom: 5px;
    display: block;
}

.blog-posts .post .title h3 {
    background-image: linear-gradient(var(--main-color), var(--main-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    display: initial !important;
    font-size: 22px;
    color: var(
    --main-text);
}

.blog-posts .post .title h3:hover {
    background-size: 100% 2px;
}

.blog-posts .post .description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: normal;
    color: var(--soft-text);
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-posts .post .post-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-posts .post .post-detail .el {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--light-text);
}

.blog-posts .post .post-detail .el.category {
    padding: 7px 15px;
    background: #f6f6fb;
    color: #969bc3;
    border-radius: 20px;
    font-weight: 500;
    transition: .3s ease all;
}

.blog-posts .post .post-detail .el.category:hover {
    background: #ececf5;
}

.sidebar-category-list {
    display: grid;
    background: #fff;
    border-radius: 12px;
    padding: 5px 0;
}

.sidebar-category-list .category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px;
    padding-left: 30px;
    border-bottom: 1px solid var(--bg);
    color: var(--soft-text);
    font-weight: 600;
    position: relative;
    font-size: 15px;
}

.sidebar-category-list .category:last-child {
    border: 0;
}

.sidebar-category-list .category .count {
    font-size: 12px;
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 5px;
    color: var(--light-text);
    transition: .3s ease all;
}

.sidebar-category-list .category::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: var(--main-color);
    z-index: 1;
    opacity: .3;
    transition: .3s ease all;
}

.sidebar-category-list .category:hover:before {
    height: 20px;
    opacity: 1;
}

.sidebar-category-list .category:hover {
    color: var(--main-color);
}

.sidebar-category-list .category:hover .count {
    color: var(--main-color);
}

.single-view-content {
    display: grid;
    grid-template-columns: auto 300px;
    gap: 20px;
}

.post--image {
    position: relative;
}

.post--image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
}

.post--body {
    margin-top: -30px;
    margin-bottom: 20px;
    z-index: 1;
    background: #fff;
    padding: 20px;
    border-radius: 20px 0 12px 12px;
    position: relative;
}

.post--body::before {
    content: "";
    position: absolute;
    right: -23px;
    top: -27px;
    width: 50px;
    height: 50px;
    box-shadow: inset -23px -23px #fff;
    border-radius: 100px;
}

.post-area {
    overflow: hidden;
}

.post--detail {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #e9e9f3;
}

.post--detail h1 {
    font-size: 25px;
    color: var(--main-text);
}

.post--detail .post--description {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 400;
    margin-top: 5px;
    line-height: 25px;
    color: #878dab;
}

.post--content {
    font-size: 17px;
    line-height: 25px;
    color: #6f7593;
    font-weight: 400;
}

.post--content img {
    border-radius: 12px;
    max-width: 100%;
}

.post--content p {
    margin-bottom: 20px;
}

.post--content p:last-child {
    margin-bottom: 0;
}

.post--content :is(h1, h2, h3, h4, h5) {
    color: var(--main-text);
    margin: 7px 0;
}

.post--content blockquote {
    background: var(--bg);
    padding: 15px;
    border-radius: 8px;
    line-height: 20px;
    border-left: 2px solid #dfdfed;
}

.post--content :is(ul, ol) {
    list-style: disc;
}

.post--content iframe {
    width: 100%;
    border-radius: 12px;
}

.post-sub-detail {
    display: flex;
    align-items: center;
    gap: 7px;
}

.post-sub-detail .category {
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 15px;
    background: var(--main-color);
    color: #fff;
    font-weight: 500;
    transition: .3s ease all;
}

.post-sub-detail .category:Hover {
    opacity: .8;
    padding: 7px 25px;
}

.post-sub-detail .el {
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid #e3e6f9;
    color: #a0a5c5;
    transition: .3s ease all;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}

ul.most-viewed-posts {
    padding: 8px;
    background: #fff;
    border-radius: 12px;
}

.most-viewed-posts li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.most-viewed-posts li a img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    transition: .3s ease all;
}

ul.most-viewed-posts li {
    border-bottom: 1px solid var(--bg);
    padding-bottom: 7px;
    margin-bottom: 7px;
}

.most-viewed-posts li a .detail {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: .3s ease all;
}

.most-viewed-posts li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.most-viewed-posts li a:hover .detail {
    padding-left: 5px;
}

span.offer-start {
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--light-text);
    font-weight: 400;
    padding-left: 4px;
}

.offer--form-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.offer--form-tabs .item .head {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    padding: 15px;
    cursor: pointer;
    border: 0;
}

.offer--form-tabs .item .head .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 30px;
    background: var(--bg);
    border: 1px solid #e5e5f5;
    transition: .3s ease all;
    position: relative;
}

.offer--form-tabs .item .head .icon::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 10px;
    background: var(--main-color);
    opacity: 0;
    transition: .3s ease all;
}

.offer--form-tabs .item.active .head .icon::before {
    opacity: 1;
}

.offer--form-tabs .item {
    padding: 0;
    border: 1px solid #e5e5f5 !important;
    border-radius: 10px;
    height: fit-content;
}

.offer--form-tabs .item .head .text {
    color: var(--soft-text);
}

.offer--form-tabs .item .head:hover .icon {
    background: #eaeaf7;
}

.offer--form-tabs .offer-checks {
    padding: 15px;
    border-top: 1px solid #34334c0a;
    display: none;
}

.offer--form-tabs .offer-checks .checkbox label {
    width: 100%;
    font-weight: 500;
    color: #7c84ab;
}

.offer--form-tabs .offer-checks .checkbox {
    margin-bottom: 8px;
}

.offer--form-tabs .offer-checks .checkbox:last-child {
    margin: 0;
}

.offer-checks [type="checkbox"] {
    border-radius: 15px;
}

.widget.widget_popular {
    position: sticky;
    top: 10px;
}

.widget-list {
    height: 100%;
}

/* -- Product Detail -- */
.well-box.product--view {
    grid-template-columns: 450px auto 150px;
    gap: 25px;
}

.well-box.product--view .service img {
    aspect-ratio: 8 / 5;
    border: 1px solid #ffffff20;
}

.well-box.product--view .service::before {
    display: none;
}

.well-box.product--view .price {
    font-size: 24px;
    font-weight: bold;
    color: #ffa562;
    margin-bottom: 10px;
}

.well-box.product--view .price span {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.well-box.product--view .action {
    display: flex;
    align-items: center;
    gap: 6px;
}

.well-box.product--view .action .butto {
    width: auto;
    gap: 10px;
    min-width: 150px;
}

.well-box.product--view .action .butto-buy {
    border: 1px solid #ffa562;
    color: #ffa562 !important;
}

.well-box.product--view .action .butto-buy:hover {
    border-color: #ffa562 !important;
}

.well-box.well-service.tool--view {
    grid-template-columns: 180px auto 50px;
    gap: 25px;
}

.well-service.tool--view .service::before {
    display: none;
}

.well-service.tool--view .service_detail .hash {
    color: #fff;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ffffff4d;
    width: fit-content;
    margin-bottom: 0;
    margin-top: 0;
}

.tool-list-area, .tool--area{
    min-height: 500px;
}

.tools--list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tools--list .tool {
    background: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    border: 1px solid #ddddf5;
    transition: .3s ease;
}

.tools--list .tool .icon {
    min-width: 44px;
    height: 50px;
    width: 44px;
    background: var(--bg);
    border-radius: 6px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text);
    transition: .2s;
}

.tools--list .tool .text {
    font-weight: 500;
    transition: .2s;
}

.tools--list .tool:hover .icon {
    color: var(--main-color);
}

.tools--list .tool:hover .text {
    color: var(--main-text);
}

.tools--list .tool .new {
    display: flex;
    align-items: center;
    gap: 3px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    padding: 3px 12px;
    border-radius: 30px;
    margin-left: auto;
    margin-right: 5px;
}

.tools--list .tool:hover {
    border-color: #3765e666;
}

.well-box.well-service.tool--view.tool_detail {
    grid-template-columns: 120px auto;
}

.well-service .service.icon {
    background: #ffffff20;
    color: #fff;
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
}

.well-service.tool_detail .service_detail p {
    margin: 0;
}

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

.tool_detail .butto-tools {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ffffff4d;
    width: fit-content;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: .2s;
    margin-top: 15px;
}

.tool_detail .butto-tools:hover {
    background: #ffffff15;
    border-radius: 30px;
}

/* -- Theme General END -- */

/* Flex Table */
.tabro {
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.tabro.head [class*="tb-"] {
    font-size: 14px;
    color: var(--light-text);
}

.tabro [class*="tb-"] {
    min-height: 35px;
    display: flex;
    align-items: center;
    -webkit-box-flex: 0;
    padding: 0 15px;
    color: var(--soft-text);
    font-size: 15px;
    border-left: 1px solid var(--bg);
}
.tabro [class*="tb-"]:first-child,
.tabro [class*="tb-"]:last-child {
    border-left: none;
}

.tabro .tb-id {
    flex: 0 0 95px;
    justify-content: center;
}

.tabro .tb-text {
    flex: 1;
}

.tabro .tb-text.short {
    flex: 0 0 140px;
}

.tablist .item {
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 12px;
    padding: 10px 0;
    margin-bottom: 5px;
}

.tabro [class*="tb-"] span {
    font-weight: 600;
}
.tabro [class*="tb-"] span.badge {
    font-weight: 500;
}

.tabro .tb-text.double {
    flex-direction: column;
    align-items: flex-start;
}

.tabro .tb-text.last {
    justify-content: flex-end;
    max-width: 200px;
}
/* Flex Table */

/* Pagination */
.pagination {
    padding: 0 5px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination ul.pageNumbers {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pagination ul.pageNumbers li a {
    background: #fff;
    padding: 4px 7px;
    font-size: 14px;
    min-width: 30px;
    display: block;
    text-align: center;
    border-radius: 5px;
    color: var(--soft-text);
    font-weight: 500;
    transition: 0.2s;
    border: 1px solid transparent;
}

.pagination ul.pageNumbers li a.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color) !important;
}

.pagination ul.pageNumbers li a:hover {
    border-color: #ccccdd;
}

.pagination .pageArrows {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination .pageArrows > a {
    width: 35px;
    padding: 5px;
    border-radius: 7px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccccdd5c;
    color: var(--soft-text);
    transition: 0.2s;
}

.pagination .pageArrows > a:hover {
    border-color: #ccccdd;
}
/* Pagination */

.tool-article {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.tool-article p {
    font-size: 17px;
    line-height: 22px;
    color: #6f7593;
    font-weight: 400;
}

.tool-article ul, .tool-article ol {
    list-style: disc;
    padding-left: 20px;
}

/* -------------------------- Keyframes -------------------------- */

@keyframes rotateOpacity {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* -------------------------- Navbar Media -------------------------- */
@media (min-width: 1024px) {
    .wrap-response-head {
        display: none !important;
    }
    .wrap-view-content {
        position: relative;
        height: 100%;
        transition: 0.2s;
        transition-delay: 0s;
    }
    .wrap-navbar ul li a.nav-text .icon {
        display: none;
    }
    .wrap-side .wrap-head .wrap-side-close {
        display: none;
    }
    .wrap-navbar ul li a.nav-text::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 3px;
        height: 2px;
        width: 0%;
        transition: .1s;
        border-radius: 4px;
        background: var(--main-color);
    }

    .wrap-navbar ul li a.nav-text:hover:before, .wrap-navbar ul li.active a.nav-text:before {
        width: 20px;
        left: calc(50% - 10px);
    }

    .wrap-navbar ul li.active a.nav-text {
        color: var(--main-color);
    }
}
@media (max-width: 1024px) {
    .wrap-inner-content {
        padding-top: 5px;
    }
    .mobile-menu-linear {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #171d2f82;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.2s all ease-in-out;
    }
    .wrap-side .wrap-head .wrap-side-close {
        display: flex;
        font-size: 25px;
        color: var(--soft-text);
    }
    body.menuShow .mobile-menu-linear {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .wrap-side {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 999;
        margin-top: 0;
        border-radius: 0;
        transition: 0.3s all ease-in-out;
        width: 100%;
        max-width: 300px;
    }

    .wrap-side .wrap-head {
        padding: 20px 15px;
        border-bottom: 1px solid var(--bg);
    }

    .wrap-side .wrap-head .logo {
        display: flex;
        align-items: center;
        margin-left: 0;
    }

    .wrap-side .wrap-head .logo img {
        display: block;
        height: 22px;
        width: auto;
    }

    .wrap-side .wrap-head .logo .icon {
        min-width: 38px;
        width: 38px;
        height: 38px;
        transition: 0.2s;
        display: none;
    }

    .wrap-side .wrap-navbar {
        width: 100%;
        height: fit-content;
        transition: 0.2s;
        transition-delay: 0s;
    }
    .wrap-side .wrap-navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: 0;
        height: fit-content;
    }

    .wrap-side .wrap-navbar ul li a {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
        border-bottom: 1px solid var(--bg);
        transition: 0.2s;
    }

    .wrap-side .wrap-navbar ul li a .icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        font-size: 18px;
        color: var(--soft-text);
        border-radius: 7px;
    }

    .wrap-side .wrap-navbar ul > li.active a .icon {
        background-color: var(--main-color);
        color: #fff;
    }

    .wrap-side .wrap-navbar ul li a .text {
        font-weight: 600;
        min-width: fit-content;
        display: block;
        transition: 0.2s;
        transition-delay: 0.2s;
    }

    .wrap-side .wrap-navbar ul li a:hover {
        background: #ffffff07;
    }

    .wrap-side .wrap-navbar ul li:last-child a {
        border: none;
    }

    .wrap-navbar ul li a.nav-text {
        font-size: 16px;
    }

    body.menuShow {
        overflow: hidden;
    }

    .wrap-action .wrap-view-action {
        display: none;
    }

    .wrap-side .wrap-action .butto {
        width: 100%;
        padding: 12px !important;
        text-align: center;
    }
    .nav-action .icon {
        border-color: #7f81893d;
        color: var(--main-text) !important;
    }
}

/* -------------------------- General Media -------------------------- */

@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
    .lg-d-none {
        display: none !important;
    }
    .lg-w-100 {
        width: 100% !important;
    }
    .lg-miw-100 {
        min-width: 100% !important;
    }
    .lg-maw-100 {
        max-width: 100% !important;
    }
    .lg-h-100 {
        height: 100% !important;
    }
    .lg-m-0 {
        margin: 0 !important;
    }
    .lg-d-grid {
        display: -ms-grid !important;
        display: grid !important;
    }
    .lg-gap-0 {
        gap: 0 !important;
    }
    .lg-gap-1 {
        gap: 0.25rem !important;
    }
    .lg-gap-2 {
        gap: 0.5rem !important;
    }
    .lg-gap-3 {
        gap: 1rem !important;
    }
    .lg-gap-4 {
        gap: 1.5rem !important;
    }
    .lg-gap-5 {
        gap: 3rem !important;
    }
    .lg-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .lg-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .lg-grid-3 {
        -ms-grid-columns: 1fr 1fr 1fr !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    .lg-grid-w100 {
        grid-column: 1 / -1;
    }
    .lg-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well .lg-ww-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .well .lg-ww-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .well .lg-ww-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .well .lg-ww-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .well .lg-ww-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .well .lg-ww-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .well .lg-ww-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .well .lg-ww-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .well .lg-ww-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .well .lg-ww-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .main-sidebar.horizontal .hi-content .top .socials {
        grid-template-columns: repeat(3, 1fr);
    }
    .main-sidebar.horizontal .hi-content .top .socials .soci {
        aspect-ratio: auto;
    }
}

@media (max-width: 1024px) {
    .md-w-100 {
        width: 100% !important;
    }
    .md-miw-100 {
        min-width: 100% !important;
    }
    .md-maw-100 {
        max-width: 100% !important;
    }
    .md-h-100 {
        height: 100% !important;
    }
    .md-d-none {
        display: none !important;
    }
    .md-gap-0 {
        gap: 0 !important;
    }
    .md-gap-1 {
        gap: 0.25rem !important;
    }
    .md-gap-2 {
        gap: 0.5rem !important;
    }
    .md-gap-3 {
        gap: 1rem !important;
    }
    .md-gap-4 {
        gap: 1.5rem !important;
    }
    .md-gap-5 {
        gap: 3rem !important;
    }
    .md-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .md-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .md-grid-w100 {
        grid-column: 1 / -1;
    }
    .md-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well .md-ww-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .well .md-ww-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .well .md-ww-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .well .md-ww-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .well .md-ww-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .well .md-ww-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .well .md-ww-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .well .md-ww-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .well .md-ww-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .well .md-ww-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .tablist.sell .tabro {
        flex-wrap: wrap;
    }

    .tablist.sell .tabro .tb-text.one-line {
        min-width: calc(100% - 100px);
    }

    .tablist.sell .tabro .tb-text.short {
        margin: 10px 0;
        border-top: 1px solid var(--bg);
        border-bottom: 1px solid var(--bg);
        min-width: 50%;
        height: 52px;
    }

    .tablist.sell .tabro .tb-text[data-title]::before {
        content: attr(data-title);
        font-weight: 400;
        color: var(--light-text);
    }

    .tablist.sell .tabro .tb-text[data-title] {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        font-weight: 500;
    }

    .tablist.sell .tabro .tb-text.last {
        max-width: 100%;
    }

    .tablist.sell .tb-text.short:nth-child(3) {
        border-left: none;
    }

    .tabro.head {
        display: none;
    }

    .container.responsive-container {
        max-width: 100%;
        padding: 0;
    }

    .wrap-side .wrap-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wrap-response-head {
        display: grid;
        grid-template-columns: 120px auto 120px;
        align-items: center;
        padding: 15px 20px;
        z-index: 9;
        position: relative;
    }

    .wrap-response-head .response-nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrap-response-head .response-nav-logo img {
        width: 38px;
        height: auto;
        display: block;
    }

    .wrap-response-head .response-nav-lines {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        width: 30px;
        height: 21px;
        cursor: pointer;
        position: relative;
    }

    .wrap-response-head .response-nav-lines .line {
        height: 3px;
        width: 100%;
        background: var(--base-text);
        transition: 0.2s;
        border-radius: 3px;
    }

    .wrap-response-head .response-nav-lines .line:nth-child(2) {
        width: 70%;
    }
    .wrap-side .wrap-action {
        width: 90%;
        margin-bottom: 20px;
        margin-top: 15px;
    }

    .wrap-side li.hideShow {
        display: none;
    }

    body.menuShow .wrap-side {
        left: 0%;
    }
    body.menuShow .wrap-response-head .response-nav-lines .line:nth-child(2) {
        width: 100%;
    }

    body.menuShow .wrap-response-head .response-nav-lines .line:nth-child(1) {
        width: 50%;
    }

    body.menuShow .wrap-response-head .response-nav-lines .line:nth-child(3) {
        width: 70%;
    }
    .wrap-view-head .wrap-view-action {
        display: none;
    }
    .content-area {
        grid-template-columns: auto;
    }

    .well-box.hi-content .top {
        flex-direction: row;
        gap: 15px;
    }

    .well-box.hi-content .socials {
        margin-top: 0;
        margin-left: auto;
    }

    .well-box.hi-content {
        padding-left: 25px;
    }

    .well-box.hi-content .top .text {
        text-align: left;
    }

    .why-list .el .icon {
        min-width: 40px;
        width: 40px;
    }

    .grid-list-area .port-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-list-area .port-list .ref img {
        height: auto;
    }

    .blog-product-area {
        grid-template-columns: auto;
        gap: 0;
    }

    .footer {
        flex-direction: column-reverse;
        min-height: auto;
        gap: 5px;
        padding: 20px 0;
    }
    .well-service .service-about-me .text span.bottom span {
        font-size: 18px;
    }

    .well-service .service-about-me .text span.bottom {
        font-size: 24px;
    }

    .well-service .service-about-me .image img {
        width: 75px;
    }

    .well-service .service--detail .service-detail_text {
        font-size: 20px;
    }

    .main-product--list {
        flex-direction: row;
        width: 100%;
    }
    
    .main-product--list .item {
        width: 100%;
        height: auto;
        aspect-ratio: 5/3;
    }
}

@media (max-width: 992px) {
    .well-service {
        grid-template-columns: 32% auto 32%;
    }
    .well-service .service img {
        aspect-ratio: 1;
    }
}

@media (max-width: 900px) {
    .well-service .service-about-me .image {
        display: none;
    }

    .well-service .service-about-me .action {
        margin-top: 20px;
    }

    .well-service .service-about-me {
        display: none;
    }

    .well-box.well-service {
        grid-template-columns: 1fr 1fr;
    }

    .well-service .service img {
        aspect-ratio: 3/2;
    }
    .well-service[class*="well_service"] {
        grid-template-columns: 250px auto 100px;
    }
    .blog-list {
        grid-template-columns: auto;
    }
    .widget-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .widget.widget_popular .wrap-view-head {
        margin: 0 !important;
        padding-top: 0;
    }
    .post-detail h2 {
        font-size: 18px;
    }
    .single-view-content {
        grid-template-columns: auto;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
    }
    .sm-d-none {
        display: none !important;
    }
    .sm-d-block {
        display: block !important;
    }
    .sm-w-100 {
        width: 100% !important;
    }
    .sm-miw-100 {
        min-width: 100% !important;
    }
    .sm-maw-100 {
        max-width: 100% !important;
    }
    .sm-h-100 {
        height: 100% !important;
    }
    .sm-gap-0 {
        gap: 0 !important;
    }
    .sm-gap-1 {
        gap: 0.25rem !important;
    }
    .sm-gap-2 {
        gap: 0.5rem !important;
    }
    .sm-gap-3 {
        gap: 1rem !important;
    }
    .sm-gap-4 {
        gap: 1.5rem !important;
    }
    .sm-gap-5 {
        gap: 3rem !important;
    }
    .sm-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .sm-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .sm-grid-w100 {
        grid-column: 1 / -1;
    }
    .sm-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .content-area {
        display: flex;
        flex-direction: column;
    }
    .content-area-main {
        grid-template-columns: auto;
    }
    .why-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-area-content {
        grid-template-columns: 42% auto;
    }
    .main-sidebar.horizontal .hi-content .top {
        flex-wrap: wrap;
        padding: 0;
    }
    .main-sidebar.horizontal .hi-content .top .socials {
        width: 100%;
        margin: 0;
    }
    .main-sidebar.horizontal .hi-content {
        padding: 20px;
    }
    .well-service .service img {
        aspect-ratio: 1;
    }
    .well-service .service--detail .service-detail_text {
        font-size: 18px;
    }
    .well-service[class*="well_service"] {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .well-service[class*="well_service"] .service {
        width: 100%;
    }
    .well-service[class*="well_service"] .service img {
        aspect-ratio: 5/3;
    }
    .well-service[class*="well_service"] .service_detail {
        flex: 1;
        order: 2;
    }
    .well-service[class*="well_service"] .service-tools {
        margin: 0;
    }
    .well-box.bar-dark {
        flex-direction: column;
    }
    
    .well-box.bar-dark .item {
        border-bottom: 1px solid #ffffff10;
        border-right: 0;
    }
    .service-features_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-detail_content {
        grid-template-columns: auto;
    }
    .post-detail h2 {
        font-size: 18px;
    }
    .well-blog {
        grid-template-columns: 1fr 1fr;
    }
    .well-blog .featured-posts:last-child {
        grid-column: 1 / -1;
    }
    .well-blog .featured-posts:last-child .featured_post img {
        aspect-ratio: 5 / 3;
    }
    .offer--form-tabs {
        grid-template-columns: auto;
    }
    .service-content_detail .article-content img {
        width: 100% !important;
    }
    .well-box.well-service.tool--view {
        display: grid;
    }
    .tools--list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-area-content {
        grid-template-columns: auto;
    }

    .blog-area-content .blog-post-list .blog-post-item {
        flex-direction: row;
        align-items: center;
        padding: 7px !important;
    }

    .blog-post-featured a.blog-post-item .detail h3 {
        font-size: 20px;
    }

    .blog-area-content .blog-post-featured img {
        height: 240px;
    }
    .well-box.well-service {
        grid-template-columns: auto;
    }
    
    .well-service .service img {
        aspect-ratio: 3/2;
    }
    
    .well-service .service--detail .service-detail_text {
        font-size: 22px;
    }

    .main-product--list {
        flex-direction: column;
    }
    
    .main-product--list .item {
        height: 250px;
    }
}
@media (max-width: 600px) {
    .xs-gap-0 {
        gap: 0 !important;
    }
    .xs-gap-1 {
        gap: 0.25rem !important;
    }
    .xs-gap-2 {
        gap: 0.5rem !important;
    }
    .xs-gap-3 {
        gap: 1rem !important;
    }
    .xs-gap-3 {
        gap: 1.5rem !important;
    }
    .xs-gap-5 {
        gap: 3rem !important;
    }
    .xs-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .xs-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .xs-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well [class^="ww"] {
        width: 100%;
    }
    .page-content-head.double {
        flex-direction: column;
    }

    .page-content-head.double .action {
        width: 100%;
    }

    .page-content-head.double .action .butto {
        width: 100%;
        justify-content: center;
    }
    .well-box.hi-content .top {
        flex-wrap: wrap;
        justify-content: center;
    }

    .well-box.hi-content .socials {
        width: 100%;
    }
    .post-detail h2 {
        font-size: 18px;
    }
    
    .well-blog {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-posts .post .thumbnail {
        max-width: 120px;
    }
    
    .blog-posts .post .thumbnail img {
        aspect-ratio: 1;
    }
    
    .blog-posts .post .description {
        display: none;
    }
    
    .blog-posts .post .title {
        margin-bottom: 10px;
    }
    
    .widget-list {
        grid-template-columns: auto;
    }
    .post--detail h1 {
        font-size: 22px;
    }
    
    .post--content h2 {
        font-size: 21px;
    }
    
    .post--content h3 {
        font-size: 20px;
    }

    .main-product--list .item {
        height: auto;
        aspect-ratio: 5/3; 
    }
    .well-box.well-service.tool--view {
        grid-template-columns: 100px auto !important;
        gap: 15px;
    }
    
    .well-box.well-service.tool--view .service.icon {
        height: 100%;
        width: 100px;
        font-size: 48px;
    }
    
    .well-service.tool--view .service_detail h1.title {
        font-size: 26px;
    }
    
    .well-service.tool--view .service_detail .hash {
        margin-top: 10px;
    }
    
    .well-service.tool--view .service_detail p {
        margin-bottom: 12px;
    }
    
    .well-service.tool--view .service_detail {
        padding: 10px 0;
    }
    
    .tools--list {
        grid-template-columns: auto;
    }
}
@media (max-width: 500px) {
    .grid-list-area .port-list {
        grid-template-columns: auto;
    }
    .grid-list-area .port-list.slide {
        display: flex;
        padding-right: 80px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-padding-inline-end: 0;
        padding-left: 15px;
        position: relative;
        margin: 0 -15px;
        gap: 15px;
    }
    .grid-list-area .port-list.slide::-webkit-scrollbar {
        display: none;
    }
    .grid-list-area .port-list.slide .ref {
        scroll-snap-align: center;
        min-width: 100%;
    }
    .footer .footer-nav {
        gap: 10px;
        font-size: 15px;
        color: var(--main-text);
    }
    .well-service[class*="well_service"] {
        flex-direction: column;
        align-items: baseline;
    }
    
    .well-service[class*="well_service"] .service-tools {
        flex-direction: row;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
        margin-top: -5px;
    }
    .main-sidebar.horizontal .hi-content .top .text {
        padding: 0;
    }
    .well-blog {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-padding-inline-end: 0;
        display: flex;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .well-blog .featured_post {
        min-width: 100%;
    }
    
    .featured-posts {
        scroll-snap-align: center;
        min-width: 90%;
    }
    .well-blog .featured_post img {
        aspect-ratio: 4 / 3;
        position: relative;
        z-index: -1;
    }
    .blog-posts .post {
        flex-direction: column;
    }
    
    .blog-posts .post .thumbnail {
        max-width: 100%;
    }
    
    .blog-posts .post .thumbnail img {
        aspect-ratio: 5/3;
    }
    
    .blog-posts .post .title h3 {
        font-size: 20px;
    }
    
    .blog-posts .post .title {
        margin-bottom: 15px;
    }
    .well-blog .featured-posts:last-child .featured_post img {
        aspect-ratio: 4 / 3;
    }
    .well-blog .featured_post .post-detail {
        position: relative;
        padding: 15px 5px 5px;
    }
    
    .well-blog .featured_post::before {
        display: none;
    }
    
    .well-blog {
        align-items: flex-start;
    }
    .well-box.well-service.tool--view.tool_detail {
        grid-template-columns: auto !important;
    }
    .well-box.well-service.tool--view {
        align-items: center;
    }
    .well-box.well-service.tool--view.tool_detail .service_detail {
        padding: 0;
    }
    
    .well-box.well-service.tool_detail .service.icon {
        width: 100%;
        aspect-ratio: auto;
        min-height: 80px;
        font-size: 44px;
    }
    
    .nav-action .item {
        position: inherit;
    }
    .nav-action ul.list.notify {
        width: calc(100% - 30px);
        left: 15px;
    }
    .nav-action ul.list.user {
        right: 15px;
    }
}
@media (max-width: 400px) {
    .well-box.hi-content .top .image img {
        display: block;
        max-width: 85px;
    }
    .post-sub-detail {
        flex-wrap: wrap;
    }
    
    .post-sub-detail .category {
        width: 100%;
        text-align: center;
    }
    
    .post-sub-detail .el {
        flex: 1;
        justify-content: center;
    }
    
    .response-nav-logo a img {
        display: block;
        height: 41px;
    }
    .wrap-side {
        width: 100%;
        max-width: calc(100% - 75px);
    }
    .wrap-side .wrap-navbar {
        width: 100%;
        max-width: 100%;
    }
}
