/* STYLES 1.0
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Thin.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl Book';
    src: url('../fonts/Stolzl-Book.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('../fonts/Stolzl-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/* BASIC */
:root {
    --bg: #fff;
    --bg2: #eff6ff;
    --bg3: #010410;
    --text: #030c3a;
    --text1: #fff;
    --text2: #6b728b;
    --color1: #23c3b2;
    --color2: #1c998b;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 12px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* HEADER */
header {
    position: fixed;
    background: var(--bg);
    border-bottom: 1px solid var(--bg2);
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 7;
}

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

.header-logo, .header-logo img {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
}

.header-logo > span {
    display: inline-block;
    background: var(--color1);
    box-shadow: 0 2px 10px 0 rgb(63 211 196 / 45%);
    border-radius: var(--radius);
    color: #fff;
    padding: 3px 6px;
    float: right;
    font-size: 10px;
    margin-left: 5px;
    margin-top: 4px;
}

.header-balanse {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px;
}

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

.header-balanse i {
    color: var(--bg3);
    font-size: 20px;
    margin-right: 10px;
}

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

.mobmenu-sub > a + div {
    background: var(--light);
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity 0.3s;
}

.mobmenu-sub > a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    margin-left: auto;
}

.mobmenu-sub > a.active {
    background: var(--color1)!important;
    color: #fff!important;
    border-radius: var(--radius) var(--radius) 0 0!important;
}

.mobmenu-sub > a.active:after {
    transform: rotate(180deg);
}

.mobmenu-sub > a.active + div {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 10px;
    border-radius: 0 0 var(--radius) var(--radius);
}

.mobmenu-sub > a.active + div a {
    display: block;
    margin: 10px 0;
    line-height: 1.5;
}

.mobmenu-sub > a.active + div a:hover {
    color: var(--color1)
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--color1);
        font-size: 25px;
        text-align: center;
        margin-right: 15px;
    }

    .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: 65px;
        left: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        background: var(--bg3);
        color: #fff;
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 8;
    }

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

/* HEADER SEARCH */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg2);
    border-radius: var(--radius);
    padding-left: 5px;
    margin-left: 120px;
    margin-right: auto;
    transition: 0.3s;
    z-index: 7;
}

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

    .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 {
    display: inline-block;
    color: var(--text);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

.header-search input {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 300px;
    height: inherit;
    line-height: inherit;
    font-weight: 400;
}

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

.header-search input::placeholder {
    color: inherit;
}

.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: 60px;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
    }
}

/* HEADER USER */
.header-user > img {
    display: inline-block;
    border: 1px solid var(--bg2);
    padding: 2px;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
}

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

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

.header-user_info {
    padding: 20px;
    text-align: center;
}

.header-user_info > img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.header-user_info > span {
    display: block;
    margin: 10px 0;
    font-weight: bold;
}

.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: 8px;
}

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

.header-user_link {
    border-top: 1px solid var(--bg2);
    padding: 20px;
}

.header-user_link a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #14192a;
    margin: 10px 0;
}

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

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

/* MODAL LOGIN 0.2 */
.modal-login > a {
    display: flex;
    align-items: center;
    background: var(--bg4);
    color: var(--color1);
    padding: 10px 15px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

.modal-login > a i, .modal-login > a img {
    margin-right: 10px;
    margin-top: 1px;
    float: left;
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 40px 80px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

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

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

.modal-login form > i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-login .e-float > a {
    position: absolute;
    top: 15px;
    right: 15px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_lost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c5c5c5;
    margin-bottom: 20px;
}

.modal-login_lost a:hover {
    color: var(--color1);
}

.modal-login_btn a {
    background: var(--bg4);
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: var(--bg4);
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex > a, .modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* MAIN, ASIDE, SPEEDBAR, CAT NAME*/
@media (max-width: 860px) {
    .container {
        width: calc(100% - 40px);
    }
}

@media (min-width: 860px) {
    aside.mobmenu {
        position: fixed;
        top: 0;
        display: flex;
        flex-direction: column;
        padding: 80px 15px;
        width: 220px;
        height: 100%;
        background: var(--bg3);
        border-right: 1px solid var(--light);
        color: #fff;
    }
}

.aside-menu {
    display: inline-block;
}

.aside-menu > a, .aside-menu > div > a:not(.aside-soc a) {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.aside-menu > a img, .aside-menu > div > a i, .aside-menu > div > a img {
    font-size: 18px;
    margin-right: 10px;
}

.aside-menu > span {
    display: block;
    color: var(--text2);
    margin: 25px 20px 10px;
    font-size: 14px;
    font-weight: bold;
}

.aside-soc {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.aside-soc > a {
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.aside-soc > a i {
    font-size: 20px!important;
    margin-right: 0!important;
}

main {
    margin-left: 220px;
    margin-top: 64px;
}

@media (max-width: 860px) {
    main {
        margin-left: 0;
    }
}

/* SPEEDBAR */
.speedbar {
    color: #808191;
    font-size: 14px;
    margin-bottom: 30px;
}

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

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: -20%;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    left: 50%;
    bottom: 100%;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* WIND HOME */
.wind-home {
    position: relative;
    background: url(https://www.pixeden.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2FShowcase-Homepage-Background-0003.a226924c.jpg&w=1920&q=100) top/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    margin-bottom: 80px;
    text-align: center;
}

.wind-home .container {
}

.wind-home:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #20222d, transparent);
}

.wind-home_title {
    display: block;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wind-home_title + span {
    font-size: 22px;
    font-weight: 300;
}

.wind-home_trend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin-top: 20px;
}

.wind-home_trend > a {
    display: inline-block;
    border: 1px solid var(--light2);
    padding: 5px 10px;
    border-radius: var(--radius);
}

.wind-home_trend > a:hover {
    background: var(--color1);
    box-shadow: 0 2px 10px 0 rgb(63 211 196 / 45%);
}

.wind-home form {
    position: absolute;
    width: 100%;
    bottom: -130px;
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--bg2);
    border-radius: var(--radius);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
}

.wind-home form input {
    background: var(--bg);
    color: var(--text);
    padding: 20px 20px;
    box-shadow: none;
    border: none;
}

.wind-home form > i {
    display: inline-block;
    padding: 20px 0 20px 20px;
    color: var(--text);
    text-align: center;
    font-size: 20px;
}

/* WIND SHORT */
.wind-short_items {
    position: relative;
    padding: 10px 20px;
    overflow: hidden;
}

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

.wind-short_items > .fa-regular {
    position: absolute;
    left: 0;
    top: 30%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--color1);
    color: #fff;
    box-shadow: 0 2px 10px 0 rgb(63 211 196 / 45%);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 860px) {
    .wind-short_items > .fa-regular {
        display: none;
    }
}

.wind-short_items > .fa-chevron-right {
    left: unset;
    right: 0;
}

.wind-short_item {
}

.wind-short_bg, .wind-short_bg img {
    position: relative;
    border-radius: 20px;
    aspect-ratio: 16/9;
    transition: 0.3s;
    height: auto;
    overflow: hidden;
}

.wind-short_item:hover .wind-short_bg img {
    transform: scale(1.05);
}

.wind-short_head {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.wind-short_head > span {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #637382;
}

.wind-short_head > span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #637382;
    border-radius: 50%;
    margin-right: 10px;
}

.wind-short_title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.wind-short_price {
    display: block;
    color: var(--text2);
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.wind-short_price > span {
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 10px;
}

/* WIND USER */
.wind-user {
    display: flex;
    align-items: center;
}

.wind-user > img {
    border: 1px solid var(--bg2);
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.wind-user_check {
    color: #1793e6;
    margin-left: 5px;
    margin-top: 1px;
    font-size: 12px;
}

.wind-user_.fa-gem {
    color: #8BC34A;
}

/* WIND BLOG SHORT */
.wind-blog_item {
    position: relative;
    border: 3px solid var(--bg);
    border-radius: var(--radius);
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.wind-blog_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #161e29, transparent), linear-gradient(180deg, rgb(22 30 41 / 51%), transparent);
}

.wind-blog_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wind-blog_content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

.wind-blog_head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: auto;
}

.wind-blog_head > span {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #b9bdc0;
}

.wind-blog_head > span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #b9bdc0;
    border-radius: 50%;
    margin-right: 10px;
}

.wind-blog_title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.wind-blog_text, .wind-blog_text p {
    color: #dedede;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
}

/* WIND SHOP */
.wind-shop_item {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    overflow: hidden;
    transition: 0.3s;
}

.wind-shop_item:hover {
    box-shadow: 0px 10px 50px 0px rgb(97 105 140/10%);
    transform: translateY(-10px);
}

.wind-shop_bg {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.wind-shop_content {
    padding: 20px 30px;
    height: 180px;
}

.wind-shop_content > a {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}

.wind-shop_content > a:hover {
    color: var(--color2);
}

.wind-shop_content img {
    display: none;
}

.wind-shop_text, .wind-shop_text p {
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.wind-shop_price {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.wind-shop_price > span {
    color: #FF0000;
    text-decoration: line-through;
    margin-left: 15px;
}

/* WIND FULL */
.wind-full {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 860px) {
    .wind-full {
        flex-direction: column;
    }
}

.wind-full_center {
    flex: 1 1 0;
}

.wind-full_bg {
    border-radius: var(--radius);
    aspect-ratio: 16/9;
    margin-bottom: 30px;
    overflow: hidden;
}

.wind-full_pay {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 999px rgb(15 36 49 / 80%);
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    margin-bottom: 30px;
    overflow: hidden;
}

.wind-full_pay > i {
    color: #fff;
    font-size: 60px;
}

.wind-full_pay > a {
    display: inline-block;
    background: var(--color1);
    box-shadow: 0 2px 10px 0 rgb(63 211 196 / 45%);
    border-radius: var(--radius);
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    margin-top: 30px;
}

@media (max-width: 860px) {
    .wind-full_pay > a {
        font-size: 12px;
        padding: 15px 20px;
        text-transform: uppercase;
    }
}

.wind-full_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .wind-full_meta {
        justify-content: center;
    }
}

.wind-full_meta > span {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #637382;
}

.wind-full_meta > span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #637382;
    border-radius: 50%;
    margin-right: 10px;
}

.wind-full_meta > span i {
    margin-right: 8px;
}

.wind-full_right {
    width: 300px;
    margin-left: 30px;
}

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

.wind-rating {
}

.wind-rating_score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg2);
    padding: 20px;
    border-radius: var(--radius);
}

.wind-rating_score > span {
    display: block;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-right: 15px;
}

.wind-rating_score > span span {
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.wind-rating_tap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    font-weight: bold;
}

.ratingstats-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ratingstats-line:nth-child(1) .ratingstats-bar span {
    background: #42d697;
}

.ratingstats-line:nth-child(2) .ratingstats-bar span {
    background: #a7e453;
}

.ratingstats-line:nth-child(3) .ratingstats-bar span {
    background: #ffda75;
}

.ratingstats-line:nth-child(4) .ratingstats-bar span {
    background: #fea569;
}

.ratingstats-num {
    position: relative;
    background-image: url(../dleimages/rating.svg);
    background-size: 10px auto;
    background-position: 0 10px;
    width: 50px;
    height: 10px;
}

.ratingstats-num5 {
    width: 50px;
}

.ratingstats-num4 {
    width: 40px;
}

.ratingstats-num3 {
    width: 30px;
}

.ratingstats-num2 {
    width: 20px;
}

.ratingstats-num1 {
    width: 10px;
}

.ratingstats-bar {
    position: relative;
    background: #a1abb8;
    width: 120px;
    height: 4px;
    border-radius: 3px;
    margin: 0 5px;
    overflow: hidden;
}

.ratingstats-bar span {
    position: absolute;
    top: 0;
    left: 0;
    background: #fe696a;
    height: inherit;
}

.ratingstats-vote {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    text-align: center;
}

/* RELATED */
.wind-rel {
    background: var(--bg2);
    padding: 20px;
    border-radius: var(--radius);
}

.wind-rel_items {
    counter-reset: toc1;
}

.wind-rel_items > a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
}

.wind-rel_items > a:hover {
    color: #03A9F4;
}

.wind-rel_items > a:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    position: relative;
    display: inline-block;
    left: 0;
    top: 0;
    background: #03A9F4;
    box-shadow: 0 2px 10px 0 rgb(82 201 255 / 45%);
    color: #fff;
    border-radius: 50%;
    min-width: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    margin-right: 15px;
}

/* FOOTER */
footer {
    position: relative;
    background: #1c202f;
    color: #fff;
    padding-top: 20px;
}

.footer-soc, .footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.footer-soc > a {
    display: inline-block;
    background: var(--light);
    color: #a3a7bc;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 25px;
    text-align: center;
}

.footer-soc > a:hover {
    background: var(--color1);
    color: var(--text1);
}

.footer-menu > a {
    color: #a3a7bc;
    font-size: 14px;
}

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

.footer-menu > a + a, .footer-soc > a + a {
    margin-left: 20px;
}

.footer-down {
    border-top: 1px solid var(--light);
    padding: 15px 0;
    margin-top: 30px;
}

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

.footer-down .container > span {
    opacity: 0.4;
    font-size: 12px;
}

.footer-down > a, .footer-down a > img {
    display: inline-block;
    width: 80px;
    height: auto;
}

.footer-dev {
    color: #797882;
    font-size: 12px;
}

.footer-dev > a {
    color: var(--color1);
    margin-left: 5px;
}
