/* STYLES 18.01.2026
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #f1f1f1;
    --bg2: #fff;
    --engine: #fff;
    --engine2: #f7f7f7;
    --text: #191c20;
    --text1: #fff;
    --text2: #676e7e;
    --text3: #a4a8b2;
    --color1: #4772ff;
    --color2: #5f82f8;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 20px;
    --shadow: 0px 4px 24px 0px rgb(0 0 0 / 10%);
}

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

/* HEADER */
header {
    position: relative;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 15px auto 0;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    color: var(--text);
    transition: top 0.3s;
    z-index: 5;
}

header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
}

header.is-hidden {
    top: -100px;
}

header > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    padding: 10px 40px;
    height: 67px;
}

@media (max-width: 860px) {
    header {
        margin: 0 calc((100% - 100vw) / 2);
        padding: 0 calc((100vw - 100%) / 2);
        padding-left: 20px;
        padding-right: 20px;
        width: 100vw;
        border-radius: 0;
    }

    header > div {
        padding: 0;
    }
}

.header-logo {
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-menu {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto;
}

.header-menu.menu {
    visibility: visible;
    opacity: 1;
    padding: 0 20px;
}

header.search .header-menu {
    display: none;
}

.header-menu > a, .header-menu > div {
    padding: 15px 0;
}

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

.header-menu > div > a, .header-menu > a, .header-menu > div > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    cursor: pointer;
}

.header-menu > div {
    position: relative;
}

.header-menu > div.menu > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-menu > div > div {
    position: absolute;
    width: 200px;
    top: 100%;
    left: 0;
    background: #fff;
    color: #000;
    box-shadow: 0 3px 32px 0 rgb(18 31 39 / 16%);
    border-radius: var(--radius);
    padding: 3px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-menu > div:hover > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-menu > div > div:before {
    content: "";
    position: absolute;
    top: -4px;
    left: 16px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(225deg);
    z-index: -1;
}

@media (max-width: 860px) {
    .header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg2);
        border-top: 1px solid var(--dark);
        align-items: flex-start;
        padding: 20px;
        z-index: 9;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    .header-menu > div > div {
        left: unset;
        right: 0;
    }

    .header-menu > div > div:before {
        left: unset;
        right: 16px;
    }
}

.header-menu > div > div > a {
    display: block;
    padding: 5px 20px;
    border-radius: var(--radius);
}

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

.header-menu_btn {
    background: var(--color1);
    color: #fff;
    border-radius: 0 10px 10px 0;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    order: -1;
    margin-left: -20px;
}

.header-menu_btn.menu:before {
    content: "\f00d";
}

/* HEADER SEARCH */
.header-search {
    margin-left: auto;
}

header.search .header-search {
    display: flex;
    align-items: center;
    background: var(--bg);
    backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 3px;
    margin-left: auto;
    z-index: 2;
    visibility: visible;
    opacity: 1;
    top: 0;
}

@media (max-width: 860px) {
    header.search .header-search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--bg2);
        width: 100%;
        border-radius: 0;
        padding: 12px 10px;
    }
}

.header-search_btn, .header-search .fa-xmark {
    background: var(--bg);
    border-radius: 12px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.header-search input:not(header.search .header-search input), .header-search > .fa-xmark:not(header.search .header-search > .fa-xmark) {
    display: none;
}

.header-search input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 380px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search input::placeholder {
    color: #777e89;
}

/* HEADER USER AND LOGIN 2025*/
.header-user {
    position: relative;
}

.header-user > a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text2);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.header-user > a img {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    border: 1px solid var(--dark);
    object-fit: cover;
}

.header-user > div {
    position: absolute;
    width: 210px;
    top: 100%;
    right: 0;
    background: var(--bg2);
    color: #000;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    transform: translateY(0);
    transition: 0.3s;
    z-index: 6;
}

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

.header-user_info {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    border-bottom: 1px solid var(--bg);
    padding: 10px 20px;
}

.header-user_info > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-user_info > div > span {
    display: block;
    font-size: 10px;
    font-weight: 200;
    color: var(--text2);
}

.header-user_info > a {
    display: inline-block;
    color: var(--color1);
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px dotted var(--color1);
    margin: 5px;
}

.header-user_info > a i {
    margin-right: 5px;
}

.header-user_group {
    display: inline-block;
    background: var(--bg3);
    border-radius: var(--radius);
    color: #b9b3d3;
    padding: 4px 10px;
    font-size: 10px;
}

.header-user_group * {
    color: #b9b3d3!important;
}

.header-user_link {
    padding: 8px;
}

.header-user_link a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius);
    color: #14192a;
    font-size: 14px;
}

.header-user_link a:last-child {
    color: #F44336;
}

.header-user_link a:hover {
    background: var(--bg);
    color: var(--color2);
}

.header-user_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 5px 10px;
    border-top: 1px solid var(--bg);
    color: var(--text2);
    padding: 10px 20px;
    font-size: 12px;
}

.header-user_meta > span {
    font-size: 10px;
    font-weight: 400;
    color: var(--text3);
}

.header-user_meta a:hover {
    color: var(--color2);
}

a[href="#modal-login"] {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 10px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
}

a[href="#modal-login"]:hover {
    opacity: 0.8;
}

.header-login {
    position: fixed;
    min-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--text);
    padding: 40px 60px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .header-login {
        min-width: 100%;
        border-radius: 0;
    }
}

.header-login > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.header-login > i:hover {
    background: var(--color1);
    color: var(--text1);
}

.header-login_logo {
    font-size: 25px;
    font-weight: 600;
}

.header-login_type {
    display: block;
    max-width: max-content;
    border: 1px solid #d1d3d8;
    border-radius: var(--radius);
    padding: 3px;
    margin: 20px auto 30px;
}

.header-login_type > a:first-child {
    background: #e9e9ef;
    color: #000;
}

.header-login_type > a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    color: var(--text2);
}

.header-login_lost {
    display: block;
    color: var(--text2);
    margin-bottom: 20px;
    font-size: 14px;
}

.header-login_lost > a {
    color: var(--color1);
    border-bottom: 1px dotted;
    margin-left: 8px;
}

.header-login button {
    min-width: 100%;
}

.header-login_soc {
    position: relative;
    max-width: max-content;
    font-size: 14px;
    color: var(--text2);
    margin: 20px auto 0;
}

.header-login_soc > div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin-top: 15px;
}

.header-login_soc > div > a {
    background: var(--bg);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

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

/* MEL HOME */
.mel-home {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 400px;
    align-content: center;
    background: var(--bg2);
    padding: 3px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .mel-home {
        grid-template-columns: 1fr;
        margin: -28px calc((100% - 100vw) / 2) 40px;
        border-radius: 0;
    }
}

.mel-home_items {
    position: relative;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
}

.mel-home_items > .far {
    position: absolute;
    top: 40%;
    left: -10px;
    background: var(--bg2);
    color: var(--color1);
    border-radius: 0 80px 80px 0;
    width: 40px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 860px) {
    .mel-home_items > .far {
        display: none;
    }
}

.mel-home_items > .fa-chevron-right {
    left: unset;
    right: -10px;
    border-radius: 80px 0 0 80px;
}

.mel-home_items .swiper-pagination .swiper-pagination-bullet {
    background: var(--light2);
}

.mel-home_items .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--light2);
    width: 20px;
    border-radius: 50px;
}

.mel-home_item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000007a;
    z-index: 1;
}

.mel-home_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 600px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    padding: 30px 30px 60px;
    text-align: center;
    z-index: 2;
}

@media (max-width: 860px) {
    .mel-home_content {
        max-width: 100%;
        width: 100%;
    }
}

.mel-home_content .label {
    margin-top: auto;
}

.mel-home_content > a {
    display: block;
    font-size: 28px;
    font-weight: bold;
}

.mel-home_content > a:before {
    content: "";
    position: absolute;
    inset: -100%;
    width: 1000%;
}

.mel_av {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.mel_av > img {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    object-fit: cover;
    border: 1px solid var(--dark);
}

.mel_av > div a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.mel_av > div span {
    display: block;
    font-size: 10px;
    color: #ffffffa1;
}

.mel-home_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    color: #ffffffd1;
    margin-top: auto;
}

.mel-home_meta > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 12px;
}

.mel-home .mel_av > img {
    width: 30px;
    height: 30px;
}

.mel-home_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.mel-home_item:hover > img {
    transform: scale(1.05);
}

/* MEL BREAK */
.mel-break {
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}

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

.mel-break:before, .mel-break:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient( 90deg, var(--bg), transparent);
    z-index: 2;
}

.mel-break:after {
    left: unset;
    right: 0;
    background: linear-gradient( 270deg, var(--bg), transparent);
}

.mel-break > div {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    animation: break 20s linear infinite;
}

@keyframes break {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(calc(-100% - 20px));
    }
}

.mel-break_item {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    min-width: max-content;
    font-size: 16px;
    font-weight: 500;
}

.mel-break_item:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #c0c0c3;
    border-radius: 50px;
}

/* MEL ACT */
.mel-act {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .mel-act {
        margin: 0 calc((100% - 100vw) / 2);
        padding: 50px calc((100vw - 100%) / 2);
        border-radius: 0;
        margin-top: -30px;
    }
}

.mel-act.full {
    margin: 0 calc((100% - 100vw) / 2);
    padding: 50px calc((100vw - 100%) / 2);
}

.mel-act.nofull {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 40px 0;
}

.mel-act_title {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    background: var(--bg2);
    border-radius: var(--radius) var(--radius) 0 0;
    font-size: 22px;
    font-weight: 500;
    padding: 20px 20px;
    border-bottom: 1px dashed var(--dark);
}

.mel-act_subtitle {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #49a8b4;
}

.mel-act_subtitle > i, .mel-act_title > i {
    background: #63CDDA;
    color: #fff;
    border-radius: 12px;
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
}

.mel-act_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .mel-act_items {
        grid-template-columns: 1fr;
    }
}

.mel-short {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    border: 1px solid var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.mel-short_bg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    z-index: 1;
    overflow: hidden;
}

.mel-short_bg img {
    transition: 0.3s;
}

.mel-short:hover .mel-short_bg img {
    transform: scale(1.05);
}

.mel-short_content {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    padding: 20px 30px;
    z-index: 2;
}

.mel-short_head {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    justify-content: space-between;
}

.mel-short_head a[onclick] {
    background: rgb(204 204 204 / 22%);
    border-radius: 10px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    text-align: center;
}

.mel-short_content > a {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.mel-short_content > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.mel-short_meta {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    color: var(--text2);
}

.mel-short_meta > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 12px;
}

.mel-short .mel_av > div span {
    display: none;
}

.mel-short .mel_av > img {
    width: 30px;
    height: 30px;
}

.mel-act .mel-short:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 860px) {
    .mel-act .mel-short:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        min-height: 350px;
    }
}

.mel-act .mel-short:nth-child(1):before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, black, transparent), linear-gradient(180deg, #00000052, transparent);
    z-index: 2;
}

.mel-act .mel-short:nth-child(1) > .mel-short_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mel-act .mel-short:nth-child(1) .mel-short_content {
    color: #fff;
    height: 100%;
    justify-content: end;
}

.mel-act .mel-short:nth-child(1) .mel-short_head {
    margin-bottom: auto;
}

.mel-act .mel-short:nth-child(1) .mel-short_content > a {
    font-size: 25px;
}

/* MEL FULL */
.mel-full {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 350px;
}

@media (max-width: 860px) {
    .mel-full {
        grid-gap: 25px;
        grid-template-columns: 1fr;
        margin: 0 calc((100% - 100vw) / 2);
        width: 100vw;
    }
}

.mel-full > div:first-child {
    position: relative;
    width: 100%;
    background: var(--bg2);
    padding: 50px;
    border-radius: var(--radius);
    max-height: max-content;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mel-full > div:first-child {
        padding: 30px;
    }
}

.mel-full_head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    margin: 20px 0 40px;
}

.mel-full_head > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg);
    padding: 8px 15px;
    border-radius: var(--radius);
}

.mel-full_head > span:first-child {
    background: none;
    padding: 0;
    margin-right: auto;
    font-size: 16px;
}

.mel-full_subtitle, .mel-full_subtitle * {
    font-size: 20px;
    font-weight: 300;
}

.mel-full .dle-comm {
    border-top: 1px dashed var(--dark);
    padding-top: 30px;
}

.mel-full textarea {
    background: var(--bg);
}

.mel-full_bg {
    position: relative;
    width: auto;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    margin: -45px -45px 30px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mel-full_bg {
        margin: -25px -25px 25px;
    }
}

.mel-full_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 15px;
    margin: 30px 0;
}

.mel-full_meta .mel_av {
    margin-right: auto;
}

@media (max-width: 860px) {
    .mel-full_meta .mel_av {
        margin-right: 100%;
    }
}

.mel-full_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--color1);
    font-size: 14px;
}

.mel-full_tags > a + a {
    margin-left: 20px;
}

.mel-full_tags > a:before {
    content: "#";
}

.mel-full_meta > a[onclick] {
    background: var(--bg);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.mel-full_share {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 400;
}

.mel-full > div:last-child {
}

.mel-full > div:last-child > span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* RELATED NEWS */
.mel-rel_items {
    background: var(--bg2);
    padding: 3px;
    border-radius: 0 0 var(--radius) var(--radius);
}

.mel-rel_item {
    position: relative;
    display: grid;
    grid-gap: 18px;
    grid-auto-rows: max-content;
    grid-template-columns: 80px 1fr;
    padding: 20px;
    overflow: hidden;
}

.mel-rel_item + .mel-rel_item {
    border-top: 1px dashed var(--dark);
}

.mel-rel_item .label {
    font-size: 8px;
    padding: 5px 15px;
}

.mel-rel_item a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin: 10px 0;
}

.mel-rel_item:hover a {
    color: var(--color1);
}

.mel-rel_item a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.mel-rel_bg {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
}

.mel-rel_meta {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    color: var(--text2);
}

.mel-rel_meta > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 12px;
}

/* MEL CAT */
.mel-cat_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 860px) {
    .mel-cat_items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mel-cat_item {
    position: relative;
    background: #000000ad;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mel-cat_item {
        font-size: 12px;
    }
}

.mel-cat_item > span {
    position: absolute;
    top: 0;
    background: var(--light2);
    backdrop-filter: blur(50px);
    padding: 3px 10px;
    font-size: 10px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.mel-cat_item > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 0.3s;
}

.mel-cat_item:hover > img {
    transform: scale(1.05);
}

/* LABEL, BADGE */
.label {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    max-width: max-content;
    padding: 8px 20px;
    background: #1bba5b;
    border-radius: 0 50px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.label.blue {
    background: #1389c4;
}

.label.red {
    background: #e74c3c;
}

.label.voilet {
    background: #8e75ea;
}

/* FOOTER */
footer {
    position: relative;
    background: #18191d;
    box-shadow: 0px -7px 10px rgb(0 0 0 / 10%);
    color: #fff;
}

footer > .container {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
    justify-content: space-between;
    font-size: 14px;
    padding: 30px 0;
}

@media (max-width: 860px) {
    footer > .container {
        grid-template-columns: 1fr;
    }
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    color: #c4d6e2;
}

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: auto;
}

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

.footer-soc a {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #4d5161;
    font-size: 18px;
    color: #fff;
}

.footer-soc a:hover {
    background: var(--color2);
    border: 2px solid var(--color2);
}

.footer-copy {
    color: var(--text2);
    font-size: 12px;
}

.footer-dev {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: var(--text2);
    font-size: 12px;
    font-weight: 200;
    margin-left: auto;
}
