/* STYLES
Screen resolution: 460, 860, 1200, 1600, 1920 */
@font-face {
    font-family: Root;
    src: url(../fonts/root-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Root;
    src: url(../fonts/root-medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Root;
    src: url(../fonts/root-bold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

/* BASIC */
:root {
    --bg: #fff;
    --bg2: #f1f1f1;
    --text: #000;
    --text1: #fff;
    --color1: #0567cd;
    --color2: #1783f0;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 5px;
}

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

/* HEADER */
header {
    position: relative;
    width: 100%;
    top: 0;
    padding: 20px 0;
}

header.fixed {
    position: absolute;
}

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

.header-logo span {
    color: var(--color1);
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Segoe UI,Arial,sans-serif;
}

.header-logo p {
    font-size: 16.5px;
    font-weight: 600;
    margin-top: -6px;
}

@media (max-width: 860px) {
    .header-logo span + span, .header-logo p {
        display: none;
    }
}

.header-menu {
    display: flex;
    align-items: center;
}

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

.header-lang {
}

.header-lang a.active {
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 3px 10px;
    margin: 0 10px;
}

/* 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(--bg2);
    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(--bg);
    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(--bg);
    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;
        box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
        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(--bg);
    backdrop-filter: blur(20px);
    border-radius: 5px;
    transition: 0.3s;
    z-index: 6;
}

@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: auto;
        left: 0;
        width: 100%;
        margin-left: 0;
    }
}

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

.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 {
        display: none;
    }
}

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

.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;
    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(--bg3);
    color: var(--text1);
    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(--dark);
}

.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 LOGIN */
.modal-login > a {
    display: inline-block;
    background: var(--color1);
    padding: 12px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

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

.modal-login > a:hover {
    background: var(--color2);
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
    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(--light);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

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

.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(--light);
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: var(--light2);
}

/* HEADER TOP */
.header-top {
    background: var(--bg2);
    padding: 5px 0;
}

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

.header-pog_menu {
    position: relative;
}

.header-pog_menu a {
    display: inline-block;
    padding: 15px 10px;
}

.header-pog_menu a i {
    float: right;
    margin: 4px 8px;
}

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

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

.header-pog_menu:hover.header-pog_menu ul {
    visibility: visible;
    opacity: 1;
}

.header-pog_menu li {
    margin: 10px 0;
}

.header-pog_menu li span {
    float: right;
    font-weight: bold;
}

.header-pog_item {
    margin-left: auto;
    margin-right: 30px;
}

.header-pog_item span {
    display: inline-block;
    margin-right: 20px;
    font-weight: bold;
}

.header-top_curs i {
    display: inline-block;
    border: solid 1px var(--color1);
    border-radius: 50px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    margin-right: 5px;
    font-size: 12px;
}

.header-top_curs span {
    margin: 0 10px;
}

.header-top_soc {
    display: flex;
    align-items: center;
    margin-left: 0px;
}

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

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

.header-top_soc a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.header-top_soc a:nth-child(3):hover {
    background: #1877f2;
}

/* SECTION, ASIDE, MAIN */
section {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
}

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

main {
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    main {
        order: -1;
    }
}

/* ABA HOME */
.aba-home_slide {
    position: relative;
    margin-right: 30px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-home_slide, .aba-report {
        flex: none;
    }
}

.aba-home_nav {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 5;
}

.aba-home_nav i {
    background: var(--color1);
    color: var(--text1);
    border-radius: var(--radius);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.aba-home_nav i:hover {
    background: var(--color2);
}

.alt-home_bg {
    border-radius: var(--radius);
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .alt-home_bg {
        height: 200px;
    }
}

.alt-home_content h3 {
    margin-bottom: 0;
}

.aba-home_slide:hover h3 {
    color: var(--color1);
}

.alt-home_content span {
    display: block;
    opacity: 0.8;
    margin-top: 5px;
    font-size: 14px;
}

/* ABA SHORT */
.aba-home_items .aba-short_item {
    position: relative;
    display: block;
    width: 250px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-home_items .aba-short_item {
        width: 100%;
    }
}

.aba-home_items .aba-short_bg {
    height: 140px;
}

@media (max-width: 860px) {
    .aba-home_items .aba-short_bg {
        height: 220px;
    }
}

.aba-home_items .aba-short_item + .aba-short_item {
    margin-top: 30px;
}

.aba-short_bg {
    position: relative;
    height: 160px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-short_bg {
        height: 220px;
    }
}

.aba-short_content h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.aba-short_item:hover h3 {
    color: var(--color1);
}

.aba-short_content span {
    opacity: 0.8;
    font-size: 14px;
}

/* ABA TOP */
.aba-tops {
    grid-gap: 40px;
    align-items: center;
}

.aba-tops h2 {
    color: var(--color1);
    text-transform: uppercase;
}

.aba-top_items {
    counter-reset: toc1;
    max-height: 260px;
    overflow-y: auto;
}

.aba-top_item {
    display: flex;
    align-items: center;
}

.aba-top_item:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    color: var(--color1);
    font-size: 40px;
    font-weight: bold;
    margin-right: 20px;
}

.aba-top_item + .aba-top_item {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--dark);
}

.aba-top_item:hover.aba-top_item p {
    color: var(--color1);
}

/* ABA REPORT */
.aba-report {
    position: relative;
}

.aba-report_nav {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 5;
}

@media (max-width: 860px) {
    .aba-report_nav {
        position: relative;
        top: -15px;
    }
}

.aba-report_nav i {
    background: var(--color1);
    color: var(--text1);
    border-radius: var(--radius);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.aba-report_nav i:hover {
    background: var(--color2);
}

.aba-report_bg {
    border-radius: var(--radius);
    height: 160px;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-report_bg {
        height: 220px;
    }
}

.aba-report_content h3 {
    margin-bottom: 0;
}

.aba-report_slide:hover h3 {
    color: var(--color1);
}

.aba-report_content span {
    display: block;
    opacity: 0.8;
    margin-top: 5px;
    font-size: 14px;
}

/* ABA EVENT */
.aba-event_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.aba-event_title h3 {
    margin-bottom: 0;
}

.aba-event_title a {
    opacity: 0.6;
    font-weight: bold;
}

.aba-event_item {
    display: block;
}

.aba-event_item + .aba-event_item {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--dark);
}

.aba-event_item span {
    display: block;
    color: var(--color1);
    margin-bottom: 10px;
    font-size: 14px;
}

.aba-event_item:hover.aba-event_item p {
    opacity: 0.8;
}

/* ALT FULL */
.alt-full_bg {
    display: inline-block;
    width: 100%;
    height: 470px;
}

@media (max-width: 860px) {
    .alt-full_bg {
        height: 100%;
    }
}

.alt-full_meta {
    position: relative;
    margin: 20px 0;
}

.alt-full_meta span + span {
    margin-left: 20px;
}

@media (max-width: 460px) {
    .alt-full_meta span:nth-child(4) {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
}

.alt-full_meta span i {
    margin-right: 8px;
    color: var(--color1);
}

.alt-full_text {
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .alt-full_text iframe {
        height: 200px;
    }
}

.alt-full_text p + p {
    margin: 20px 0;
}

.alt-full_text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-full_text a {
    color: blue;
}

.alt-full_text ol, .alt-full_text ul {
    counter-reset: toc1;
    margin: 20px 0;
    margin-left: 40px;
}

.alt-full_text ol li {
    position: relative;
    margin-bottom: 30px;
}

.alt-full_text 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;
}

.alt-full_text ol li::marker {
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

.alt-full_text ul {
    list-style: disc;
}

.alt-full_text ul li::marker {
    color: var(--color1);
    font-size: 20px;
}

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

.alt-full_text blockquote:before, .alt-full_text 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;
}

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

.alt-full_fot {
    align-items: center;
    justify-content: space-between;
}

.alt-full_tags a:hover, .clouds_xsmall a:hover {
    color: blue;
}

.alt-full_tags a:before, .clouds_xsmall a:before {
    content: "#";
}

.alt-reltd {
    position: relative;
    background: var(--bg);
    box-shadow: -2px 0px 8px rgb(0 0 0 / 12%);
    padding: 30px;
    margin: 30px 0;
}

.alt-reltd > span {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 10px;
}

.alt-reltd_items > a {
    display: block;
    max-width: max-content;
    border-bottom: 1px dashed transparent;
    font-weight: bold;
    margin: 15px 0;
}

.alt-reltd_items > a:hover {
    color: var(--color1);
    border-bottom: 1px dashed var(--color1);
}

.alt-podpis {
    display: flex;
    align-items: center;
}

@media (max-width: 860px) {
    .alt-podpis {
        display: block;
    }
}

.alt-podpis a {
    display: inline-block;
    width: 100%;
    background: #50cc5d;
    color: var(--text1);
    border-radius: var(--radius);
    padding: 15px 30px;
}

.alt-podpis a:last-child {
    background: #27a3e3;
    margin-left: 20px;
}

@media (max-width: 860px) {
    .alt-podpis a:last-child {
        margin-left: 0;
        margin-top: 10px;
    }
}

.alt-podpis a i {
    margin-right: 10px;
}

/* ALT FULL ALBUM */
.alt-full_album > ul {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
    .alt-full_album > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alt-full_album > ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ABA REP SLIDER */
.aba-rep_slider {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-rep_slider {
        height: 200px;
    }
}

.aba-rep_slider > .fa-regular {
    position: absolute;
    top: 50%;
    left: 2%;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 860px) {
    .aba-rep_slider > .fa-regular {
        top: 40%;
    }
}

.aba-rep_slider > .fa-regular:hover {
    transform: scale(1.2);
}

.aba-rep_slider > .fa-angle-right {
    left: unset;
    right: 2%;
}

.aba-rep_thumbs {
    padding: 20px;
}

.aba-rep_thumbs .swiper-slide {
    height: 100px;
    border-radius: 10px;
    opacity: 0.6;
    transform: scale(0.9);
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}

@media (max-width: 860px) {
    .aba-rep_thumbs .swiper-slide {
        height: 40px;
    }
}

.aba-rep_thumbs .swiper-slide-thumb-active {
    transform: scale(1);
    opacity: 1;
}

/* ABA AUTHOR */
.aba-author_item {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

.aba-author_info {
    align-items: center;
}

.aba-author_info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 30px;
}

.aba-author_info span {
}

/* ABA AUTHOR */
.aba-author2_item {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

.aba-author2_info {
    align-items: center;
}

.aba-author2_info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 30px;
}

.aba-author2_info span {
}

/* ACCORD */
.accord, .accordi {
    display: block;
    background: var(--light);
    box-shadow: 0 20px 50px 0 rgb(4 73 89 / 10%);
    border-radius: 10px;
    padding: 16px 30px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 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-bottom: 1px solid var(--light);
    border-radius: 10px 10px 0 0;
}

.accord.active + .accordi {
    opacity: 1;
    visibility: visible;
}

.accordi p {
    padding: 20px;
}

.accordi {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    max-height: 0px;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}

/* BADGES */
.badge {
    display: inline-block;
    background: var(--light);
    border-bottom: 2px solid transparent;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.badge-red {
    border-color: #ff4954;
}

.badge-green {
    border-color: #3cd458;
}

.badge-blue {
    border-color: #50a1ff;
}

.badge-yellow {
    border-color: #fffa50;
}

/* FOOTER */
footer {
    background: var(--bg2);
    padding: 30px 0;
}
.footer-logo, .footer-logo img {
    
    position: relative;
    width: 150px;
    height: 130px;

}
.footer-soc a {
    font-size: 25px;
}

.footer-soc a:hover {
    color: var(--color1)
}

.footer-soc a + a {
    margin-left: 50px;
}

.footer-menu {
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--dark);
    font-weight: 600;
    display: flex;
	align-items: center;

}

.footer-menu + div {
    border-top: none;
    padding-top: 0;
    opacity: 0.8;
    font-weight: 400;
}

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

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

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    opacity: 0.9;
    border-top: 1px solid var(--dark);
}

.footer-copyright p {
    font-size: 14px;
    margin-top: 10px;
}

/* GO TOP */
.gotop {
    position: fixed;
    background: var(--bg);
    box-shadow: 0 4px 8px rgb(0 0 0 / 12%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 860px) {
    .gotop {
        display: none!important;
    }
}

.overlay {
    position: fixed;
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 8;
}

.overlay.active {
    display: block;
}