@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    overflow-x: hidden;
}

.line {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #FFD600 0%, #FFD600 100%);
    border-radius: 40% 40% 40% 40% / 50% 50% 50% 50%;
    min-width: 0;
    box-sizing: border-box;
}

#menu_mob {
    position: fixed;
    background-color: #000000d1;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

#menu_mob nav {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 10px 20px;
    left: -280px;
}

#menu_mob nav a {
    padding: 5px 0px;
    display: block;
}

#menu_mob nav a.active {
    @apply font-bold text-yellow;
}

#menu_mob .menu_close {
    position: absolute;
    right: 8px;
}