/* STYLES 5.0
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: Cutest;
    src: url(../fonts/cutest-light.woff2) format("woff2"),url(../fonts/cutest-light.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Cutest;
    src: url(../fonts/cutest-regular.woff2) format("woff2"),url(../fonts/cutest-regular.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Cutest;
    src: url(../fonts/cutest-semibold.woff2) format("woff2"),url(../fonts/cutest-semibold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

/* BASIC */
:root {
    --bg: #16141e;
    --bg2: #201d2a;
    --text: #fff;
    --text1: #000;
    --text2: #a39eb7;
    --color1: #5a3df5;
    --color2: #807dfd;
    --color3: #10c44c;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 15px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Cutest", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* HEADER */
header {
    position: absolute;
    background: transparent;
    color: var(--text);
    padding: 15px 0;
    width: 100%;
    z-index: 7;
}

.header-full {
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    margin-right: auto;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-logo > img {
    width: 100px;
    height: auto;
}

.header-logo > span {
    color: var(--text);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-menu {
    display: flex;
    align-items: center;
    margin: 0 auto;
    color: #cec7e9;
}

.header-menu > a:hover {
    color: var(--color1);
}

.header-menu > a + a {
    margin-left: 10px;
}

@media (max-width: 860px) {
    .header-menu > a + a {
        margin-left: 0;
    }
}

.header-menu > a i {
    margin-right: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* HEADER MENU SUB 0.3 */
.header-menu_sub {
    position: relative;
}

.header-menu > a, .header-menu_sub > a {
    display: inline-block;
    padding: 15px 10px;
}

.header-menu_sub div a {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
}

.header-menu_sub div a:hover {
    background: var(--light);
    color: var(--color1);
}

.header-menu_sub > a i {
    float: right;
    margin: 2px 8px;
}

.header-menu_sub > div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    column-count: 1;
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 20px 0;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 8;
}

@media (min-width: 860px) {
    .header-menu div:hover.header-menu_sub div {
        visibility: visible;
        opacity: 1;
    }
}

.header-menu_sub > div:before {
    content: "";
    position: absolute;
    background: var(--bg2);
    top: -5px;
    left: 10%;
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
    z-index: -1;
}

/* MOB MENU 0.3 */
.mobmenu-btn {
    display: none;
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        background: var(--bg2);
        color: var(--color2);
        border-radius: 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        text-align: center;
        margin-left: 10px;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu-btn.active {
        z-index: 9;
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        left: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        background: var(--bg);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 9;
    }

    .mobmenu.active {
        display: flex;
        align-items: flex-start;
        left: 0;
        padding: 20px;
        border-radius: 0;
    }

    .mobmenu a + div, .mobmenu a {
        display: block;
        width: 100%;
    }

    .mobmenu div > div {
        display: none;
        width: 100%;
        top: 0;
        column-count: 1;
    }

    .mobmenu div > a.active + div {
        position: relative;
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* HEADER SEARCH */
.header-search {
    display: flex;
    align-items: center;
    background: var(--light);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    margin-left: auto;
    margin-right: 30px;
    transition: 0.3s;
    z-index: 8;
}

@media (max-width: 860px) {
    .header-search {
        margin-left: auto;
        margin-right: 10px;
    }

    .header-search.active {
        position: fixed;
        background: var(--bg2);
        padding: 10px;
        border-radius: 0;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
    }
}

.header-search_icon, .header-search_voice {
    display: inline-block;
    color: #afafaf;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

.header-search_voice {
    background: var(--light);
    border-radius: 15px;
}

.header-search input {
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: auto;
    height: inherit;
    line-height: inherit;
    font-weight: 400;
}

@media (max-width: 860px) {
    .header-search input, .header-search_voice {
        display: none;
    }
}

.header-search input::placeholder {
    color: var(--light2);
}

.header-search.active input, .header-search.active .header-search_close {
    display: inline-block;
}

.header-search_close {
    display: none;
}

@media (max-width: 860px) {
    .header-search_close {
        display: none;
        position: absolute;
        opacity: 0.6;
        top: 0;
        right: 0;
        width: 60px;
        height: 60x;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
    }
}

/* HEADER USER */
.header-user > img {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--light);
    border: 2px solid var(--light);
    backdrop-filter: blur(50px);
    width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
}

.header-user > a i:last-child {
    margin-left: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.header-user.active > a i:last-child {
    transform: rotate(180deg);
}

.header-user > div {
    position: absolute;
    background: var(--bg2);
    color: var(--text);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: 220px;
    top: 50px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_av {
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--light);
}

.header-user_av > img {
    width: 34px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.header-user_av > span {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 50px;
    margin-left: 10px;
    font-weight: bold;
}

.header-user_av > span span {
    display: block;
    font-size: 12px;
}

.header-user_menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
}

.header-user_menu a:hover {
    background: var(--color1);
    color: var(--text);
}

.header-user_menu a i {
    margin-right: 10px;
    opacity: 0.8;
}

/* MODAL AUTH */
[href="#modal"] {
    display: inline-block;
    background: var(--color1);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin: 0 5px;
    cursor: pointer;
}

[href="#modal"]:hover {
    background: var(--color2);
}

@media (max-width: 860px) {
    [href="#modal"] span {
        display: none;
    }
}

[href="#modal"] i {
    margin-right: 10px;
}

@media (max-width: 860px) {
    [href="#modal"] i {
        margin-right: 0;
    }
}

.modal-auth {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    text-align: center;
    z-index: 9;
}

.modal-auth > i {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    background: var(--light);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}

.modal-auth > i:hover {
    background: var(--color3);
}

.modal-auth_bg {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 860px) {
    .modal-auth_bg {
        display: none;
    }
}

.modal-auth_bg > img:nth-child(2) {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100px;
    height: auto;
}

.modal-auth_content {
    width: 800px;
    padding: 30px 60px;
}

@media (max-width: 860px) {
    .modal-auth_content {
        width: 100%;
        padding: 30px;
    }
}

.modal-auth_type {
}

.modal-auth_type > span {
    display: block;
    color: var(--text2);
    margin-bottom: 20px;
}

.modal-auth_type > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-auth_type > div > a {
    background: var(--bg2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.modal-auth_type > div > a img {
    padding: 10px;
    width: 100%;
    height: 100%;
}

.modal-auth_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    color: var(--text2);
    margin-bottom: 30px;
}

.modal-auth_link > div a {
    color: var(--color3);
    font-weight: bold;
}

.modal-auth_link > a {
    text-decoration: underline dotted;
}

.modal-auth_link a:hover {
    text-decoration: underline dotted;
    opacity: 0.8;
}

.modal-auth_content button {
    width: 100%;
    font-weight: bold;
}

/* MOB BOTTOM */
.prj-bottom {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    bottom: 0;
    backdrop-filter: blur(50px);
    background: rgb(32 29 42 / 40%);
    border: 1px solid var(--light);
    padding: 15px 20px 10px;
    border-radius: 30px 30px 0 0;
    z-index: 5;
}

@media (min-width: 860px) {
    .prj-bottom {
        display: none;
    }
}

.prj-bottom a {
    font-size: 20px;
    text-align: center;
}

.prj-bottom a span {
    display: block;
    color: #a39eb7;
    margin-top: 5px;
    font-size: 12px;
}

/* PRJ CATS */
.prj-cats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 40px;
}

.prj-cats li {
    background: var(--bg2);
    color: #e0dcef;
    padding: 10px 20px;
    border-radius: var(--radius);
}

/* PRJ HOME */
.prj-home {
    position: relative;
    padding-top: 200px;
    padding-bottom: 0;
}

@media (max-width: 860px) {
    .prj-home {
        padding-top: 100px;
    }
}

.prj-home:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(42.37% 55.04% at 63.88% 44.96%,rgba(0,20,36,0) 32.81%,var(--dark) 100%), linear-gradient(360deg, transparent, var(--bg));
}

.prj-home:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--bg));
}

.prj-home .container {
    align-items: center;
    z-index: 2;
}

.prj-home .container > img {
    width: 50%;
    height: auto;
    object-fit: contain;
    margin-left: 30px;
}

@media (max-width: 860px) {
    .prj-home .container > img {
        display:none;
    }
}

.prj-home > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.prj-home_title p {
    color: var(--text2);
}

/* PRJ SEARCH */
.prj-search {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 15px;
    height: 55px;
    margin-bottom: 60px;
}

.prj-search_icon, .prj-search_voice {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    text-align: center;
    opacity: 0.5;
}

.prj-search_voice {
    background: var(--light2);
    backdrop-filter: blur(5px);
    color: var(--text);
    border-radius: 15px;
    margin-left: auto;
}

.prj-search #story {
    background: transparent;
    color: var(--text);
    padding: 0;
    height: inherit;
    line-height: inherit;
}

/* PRJ SECT */
.prj-sect {
}

.prj-sect_head {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.prj-sect_head h1 {
    margin-bottom: 0;
}

.prj-sect_head a {
    color: var(--color2);
}

.prj-short_items {
    position: relative;
    padding: 0 15px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .prj-short_items {
        padding: 0;
    }
}

.prj-short_items > .fal {
    position: absolute;
    backdrop-filter: blur(5px);
    background: var(--color1);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    border-radius: 10px;
    top: 40%;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 860px) {
    .prj-short_items > .fal {
        display: none;
    }
}

.prj-short_items > .fal:hover {
    background: var(--color2);
}

.prj-short_items .fa-chevron-left {
    left: 0;
}

.prj-short_items .swiper-button-disabled {
    display: none;
}

.prj-short_item {
    position: relative;
    display: block;
    background: var(--bg2);
    border-radius: var(--radius);
    overflow: hidden;
}

.prj-short_item img {
    height: 200px;
}

.prj-short_label {
    position: absolute;
    top: 15px;
    left: 15px;
}

.prj-short_label span {
    display: inline-block;
    background: var(--color1);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.prj-short_label span.hit {
    background: #FE696A;
}

.prj-short_label span.new {
    background: #69B3FE;
}

.prj-short_label span.sale {
    background: #42D697;
}

.prj-short_label span.free {
    background: #5A3DF5;
}

.prj-short_content {
    padding: 20px;
    min-height: 120px;
}

.prj-short_content h4 {
    margin-bottom: 10px;
    font-weight: bold;
    min-height: 50px;
}

.prj-short_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prj-short_meta span {
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
}

.prj-short_meta span:last-child {
    background: var(--light);
    padding: 2px 8px;
    float: right;
    margin-top: 3px;
}

.prj-short_content .prj-short_price {
    display: block;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0;
    opacity: 1;
}

/* PRJ FILES */
.prj-file_item {
    background: var(--bg2);
    padding: 20px;
    border-radius: 15px;
}

.prj-file_content h4 {
    margin-bottom: 10px;
}

.prj-file_content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.prj-file_content a {
    display: inline-block;
    background-color: var(--color1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
}

.prj-file_content a:hover {
    background-color: var(--color2);
}

.prj-file_item > img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-left: 20px;
}

/* PRJ FULL */
.prj-full {
    margin-top: 30px;
    margin-bottom: 30px;
}

.prj-full_bg {
    position: absolute;
    filter: blur(5px);
    top: -20%;
    width: 100%;
    height: auto;
    z-index: -1;
}

.prj-full_bg:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 44.96%,rgb(32 29 42 / 90%) 32.81%,var(--bg) 100%);
}

.prj-full_demo {
    position: relative;
    display: block;
    max-width: 250px;
    margin: 0 auto;
    margin-top: -30px;
    background: var(--color1);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.prj-full_right {
    position: relative;
    width: 340px;
    margin-left: 60px;
}

@media (max-width: 860px) {
    .prj-full_right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
        order: 2;
    }
}

.prj-full_right div + div {
    margin-top: 20px;
}

.prj-full_detal {
    background: linear-gradient(135deg,rgb(255 255 255 / 20%),rgb(255 255 255 / 2%));
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
}

.prj-full_detal h3 {
    margin-bottom: 20px;
}

.prj-full_detal ul li {
    color: var(--text2);
    font-weight: 400;
    margin-bottom: 5px;
}

.prj-full_price {
    display: inline-block;
    margin: 20px 0;
}

.prj-full_price span {
    font-size: 30px;
}

.prj-full_price span:nth-child(2) {
    margin-left: 20px;
    color: #8e8e8e;
    font-size: 15px;
    text-decoration: line-through;
}

.prj-full_ant {
    font-size: 14px;
    color: var(--text2);
}

.prj-full_ant i {
    float: left;
    color: #4caf50;
    margin-top: -2px;
    margin-right: 10px;
    font-size: 18px;
}

.prj-full_link {
    display: flex;
    align-items: center;
}

.prj-full_link a:first-child {
    flex: 1 1 0;
    margin-right: 15px;
    background: #FE696A;
}

.prj-full_share {
    background: linear-gradient(135deg,rgb(255 255 255 / 20%),rgb(255 255 255 / 2%));
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 20px;
}

.prj-full_share h4 i {
    margin-left: 15px;
}

.prj-full_meta > span, .myl-full_meta > a {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text2);
}

.prj-full_meta > a {
    display: block;
    color: #a39eb7;
    border: 1px solid #a39eb7;
    border-radius: var(--radius);
    padding: 8px 10px;
    margin-bottom: 15px;
    text-align: center;
}

.prj-full_meta > a i {
    margin-left: 5px;
}

.prj-fag {
    background: url(../images/help.png) no-repeat scroll #5a3df5;
    background-size: 190px;
    background-position: right -50px bottom -50px;
    padding: 30px;
    border-radius: 15px;
}

.prj-fag a {
    background-color: var(--light);
    backdrop-filter: blur(20px);
}

.prj-full_center > img, .myl-full_center > iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    object-fit: cover;
    overflow: hidden;
}

@media (max-width: 860px) {
    .prj-full_center > img, .prj-full_center > iframe {
        width: 101vw;
        height: 250px;
        margin-left: -6vw;
        border-radius: 0;
    }
}

.prj-full_screens > ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: left;
    margin-top: 10px;
    padding-bottom: 15px;
}

.prj-full_screens > ul::-webkit-scrollbar {
    height: 5px;
}

.prj-full_screens > ul::-webkit-scrollbar-track {
    background: var(--bg2);
}

.prj-full_screens > ul::-webkit-scrollbar-thumb {
    background: var(--light2);
}

.prj-full_screens > ul li {
    min-width: max-content;
}

.prj-full_screens > ul img {
    background: var(--bg);
    width: 200px;
    height: 150px;
    object-fit: cover;
    padding: 5px;
    border: 3px solid var(--bg2);
    border-radius: 15px;
}

@media (max-width: 860px) {
    .prj-full_screens > ul img {
        width: 60px;
        height: 60px;
    }
}

.prj-full_screens li + li {
    margin-left: 10px;
}

.prj-full_short, .prj-full_short p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: -10px;
    margin-bottom: 40px;
}

.prj-full_text {
    color: var(--text2);
    margin-top: 30px;
}

.prj-tabs {
    position: relative;
    margin: 30px 0;
}

.prj-tabs_controls {
    align-items: center;
    margin-bottom: 30px;
}

.prj-tabs_controls span {
    background: var(--bg2);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    opacity: 0.6;
    transition: 0.3s;
    cursor: pointer;
}

.prj-tabs_controls span:hover {
    opacity: 0.8;
}

.prj-tabs_controls span + span {
    margin-left: 10px;
}

.prj-tabs_controls span.active {
    background: var(--color1);
    opacity: 1;
}

.prj-tabs p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.prj-tabs-hide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #424242;
    border-radius: 0 0 8px 8px;
    padding: 12px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.prj-tabs-hide:after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg,rgba(38,38,38,0),#262626);
    bottom: 42px;
    width: 100%;
    height: 100px;
    left: 0;
}

/* PRJ RELATED */
.prj-rel_items {
}

.prj-rel_item {
    position: relative;
    display: block;
    background: var(--bg2);
    border-radius: var(--radius);
    height: 200px;
    margin-top: 20px;
    overflow: hidden;
}

.prj-rel_item:before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg,var(--bg2),rgba(17,17,19,0)), linear-gradient(0deg,var(--bg2),rgba(17,17,19,0));
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.prj-rel_item:hover.prj-rel_item img {
    transform: scale(1.05);
}

.prj-rel_item:hover .prj-rel_content h4, .prj-rel_item:hover .prj-rel_text {
    transform: translateY(-10px);
}

.prj-rel_item img, .prj-rel_content h4, .prj-rel_text {
    transition: 0.3s;
}

.prj-rel_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.prj-rel_content {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 2;
}

.prj-rel_content > span:first-child {
    margin-bottom: auto;
    font-size: 12px;
    opacity: 0.5;
}

.prj-rel_content h4 {
    margin-bottom: 10px;
}

.prj-rel_text, .prj-rel_text * {
    font-size: 14px!important;
    font-weight: 400!important;
    color: var(--text2);
    line-height: 1.5;
    margin-top: 5px;
}

.prj-rel_text > *:not(.prj-rel_text > p, .prj-rel_text > p) {
    display: none;
}

/* PRJ BLOG */
.prj-blog_item {
    position: relative;
    display: block;
    background: var(--bg2);
    border-radius: var(--radius);
    height: 300px;
    margin-top: 20px;
    overflow: hidden;
}

.prj-blog_item:before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg,var(--bg2),rgba(17,17,19,0)), linear-gradient(0deg,var(--bg2),rgba(17,17,19,0));
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.prj-blog_item:hover.prj-blog_item img {
    transform: scale(1.05);
}

.prj-blog_item:hover .prj-blog_content h4, .prj-blog_item:hover .prj-blog_text {
    transform: translateY(-10px);
}

.prj-blog_item img, .prj-blog_content h4, .prj-blog_text {
    transition: 0.3s;
}

.prj-blog_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.prj-blog_content {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 2;
}

.prj-blog_content > span:first-child {
    margin-bottom: auto;
    font-size: 12px;
    opacity: 0.5;
}

.prj-blog_content h4 {
    margin-bottom: 10px;
}

.prj-blog_text, .prj-blog_text * {
    font-size: 14px!important;
    font-weight: 400!important;
    color: var(--text2);
    line-height: 1.5;
    margin-top: 5px;
}

.prj-blog_text > *:not(.prj-blog_text > p) {
    display: none;
}

/* ACCORD */
.accord, .accord-text {
    display: block;
    background: var(--light);
    color: var(--text2);
    border-radius: 10px;
    padding: 16px 30px;
    cursor: pointer;
    transition: border-radius 0.3s;
}

.accord:after {
    content: "\002B";
    color: #777;
    font-size: 25px;
    font-weight: 400;
    float: right;
    margin-top: -5px;
}

.accord.active:after {
    content: "\2212";
}

.accord.active {
    border-radius: var(--radius) var(--radius) 0 0;
}

.accord.active + .accord-text {
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: 1px solid var(--light);
    line-height: 1.5;
}

/* FAGS */
.prj-fags {
    align-items: flex-start;
}

.prj-fags_link {
    width: 300px;
    margin-right: 20px;
    border-right: 1px solid var(--light);
    padding-right: 20px;
}

@media (max-width: 860px) {
    .prj-fags_link {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--light);
        padding-bottom: 20px;
    }
}

.prj-fags_link a {
    display: block;
    color: #b6aed7;
}

.prj-fags_link a + a {
    margin-top: 20px;
}

.prj-fags_link a i {
    margin-right: 10px;
}

.prj-fags_link a:hover {
    color: var(--color2);
}

.prj-fags_content {
    flex: 1 1 0;
    line-height: 1.5;
}

.prj-fags_content > ol, .prj-fags_content > ul {
    counter-reset: toc1;
    margin: 20px 0;
    margin-left: 40px;
}

.prj-fags_content > ol li {
    position: relative;
    margin-bottom: 30px;
}

.prj-fags_content > ol li:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    position: relative;
    display: inline-block;
    background-color: var(--color1);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-right: 20px;
}

.prj-fags_content > ol li::marker {
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

.prj-fags_content > ul {
    list-style: disc;
}

.prj-fags_content > ul li::marker {
    color: var(--color1);
    font-size: 20px;
}

.prj-fags_content blockquote, .prj-fags_content .quote {
    position: relative;
    background: var(--bg2);
    border-radius: 10px;
    padding: 30px 30px 30px 80px;
    margin: 30px 0;
    border: none;
}

.prj-fags_content blockquote:before, .prj-fags_content blockquote:after, .alt-full_text .quote:before, .alt-full_text .quote:after {
    content: '\f10d';
    position: absolute;
    display: inline-block;
    top: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-family: "Font Awesome 5 Pro";
    font-size: 40px;
    font-weight: 700;
    color: #1B74D1;
}

.prj-fags_content blockquote:after, .prj-fags_content .quote:after {
    top: auto;
    bottom: -20px;
    left: auto;
    right: 20px;
}

/* FOOTER */
footer {
    position: relative;
    background: url(https://i.postimg.cc/pr2N3Y2M/6220532.webp) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg) 0%, rgb(22 20 30 / 86%));
}

footer .container {
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer_logo {
    margin-right: 40px;
}

.footer_logo span {
    color: var(--text2);
    font-size: 12px;
}

.footer_logo img {
    display: block;
    width: 100px;
    height: 100%;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .footer_logo img {
        display: none;
    }
}

.footer_menu {
    align-items: center;
    color: #a39eb7;
}

@media (max-width: 860px) {
    .footer_menu {
        margin: 15px 0;
    }
}

.footer_menu a + a {
    margin-left: 20px;
}

.footer_soc {
    display: flex;
    align-items: center;
}

.footer_soc a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--light);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.footer_soc a:nth-child(1):hover {
    background: #23aaea;
}

.footer_soc a:nth-child(2):hover {
    background: #25D366;
}

.footer_soc a:nth-child(3):hover {
    background: #F44336;
}
.dle-atta.e-flex {
    width: 100%;
}
