.marquee,
body.no-scroll {
    overflow: hidden;
}
@font-face {
    font-family: "CF Asty Plaisio";
    src:
        url("https://www.plaisio.gr/assets/fonts/CFAstyPlaisio-Light.woff2") format("woff2"),
        url("https://www.plaisio.gr/assets/fonts/CFAstyPlaisio-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "CF Asty Plaisio";
    src:
        url("https://www.plaisio.gr/assets/fonts/CFAstyPlaisio-Bold.woff2") format("woff2"),
        url("https://www.plaisio.gr/assets/fonts/CFAstyPlaisio-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "CF Asty Plaisio";
    src:
        url("https://www.plaisio.gr/assets/fonts/CFAstyPlaisio-Regular.woff2") format("woff2"),
        url("https://www.plaisio.gr/assets/fonts/CFAstyPlaisio-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --bar-bg: white;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}
.marquee {
    width: 100%;
}
body {
    background: #000;
    color: #fff;
    font-family: "CF Asty Plaisio", sans-serif;
}
.menu-icon {
    transform: scale(0.9);
    position: relative;
    width: 1.3125rem;
    height: 2rem;
    cursor: pointer;
}
.menu-icon div {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 12px;
}
.menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bar-bg, #000);
    border-radius: 1px;
    transition: 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
    top: 0;
}
.menu-icon span:last-of-type {
    bottom: 0;
}
.menu-icon.active span:first-of-type {
    transform: rotate(45deg);
    top: 5px;
}
.menu-icon.active span:last-of-type {
    transform: rotate(-45deg);
    bottom: 5px;
}
.menu-icon.active:hover span:first-of-type,
.menu-icon.active:hover span:last-of-type {
    width: 22px;
}
@media (min-width: 1024px) {
    .menu-icon:hover span:first-of-type {
        width: 26px;
    }
    .menu-icon:hover span:last-of-type {
        width: 12px;
    }
}
