
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4em;
    background: #ffffff;
}

.logotype {
    "nudista-web", Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: #000;
    
}
@media screen and (max-width: 48em) {
.logotype {
        padding-left: 20px;
    }
}

.row {
    display: flex;
    margin-left: 0px;
    margin-right: 0px;
}

nav {
display: flex;
align-items: center;
flex: end !important;
z-index: 100;
}
@media screen and (max-width: 48em) {
    nav nav {
        display: inline;
    }
}

.menu__box {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
.menu__box2 {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
@media screen and (max-width: 48em) {
    .menu__box {
        flex-direction: column;
        position: fixed;
        visibility: hidden;
        top: 0;
        left: 0;
        width: 100%;
        height: 15em;
        margin: -600px 0 0 0;
        padding: 0.6em 0;
        text-align: center;
        background-color: #FBC9C9;
        box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
        z-index: 1;
        transition-duration: 0.5s;
    }
   .menu__box1 {
        flex-direction: column;
        position: fixed;
        visibility: hidden;
        top: 0;
        left: 0;
        width: 100%;
        height: 15em;
        margin: -600px 0 0 0;
        padding: 0.6em 0;
        text-align: center;
        background-color: #FBC9C9;
        box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
        z-index: 1;
        transition-duration: 0.5s;
    }
}

.red {
    color: #8b0000;
}

.menu__item {
    display: flex;
    flex-direction: column;
    padding: 0 1em 0 1em;
    color: #333;
    font-family: "nudista-web", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}

.menu__item {
    display: flex;
    flex-direction: column;
    padding: 0 1em 0 1.9em;
    color: #333;
    font-family: "nudista-web", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}
.menu__box2 .menu__item {
    display: flex;
    flex-direction: column;
    padding: 0 1em 0 1.0em;
    color: #000000;
    font-family: "nudista-web", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}

.menu__box a{
            color: #131313;
            font-weight: bold;
            font-size: 22px;
        }
.menu__box a:hover {
            color: darkred
        }
.menu__box2 a{
            color: #131313
        }
.menu__box2 a:hover {
            color: darkred
        }

@media screen and (max-width: 48em) {
   .menu__box2 {
        display: block;
}
   .menu__box2 .menu__item {
        display: block;
        padding: 12px 24px;
        color: #000000;
        font-size: 10px;
        transition-duration: 0.5s;
    }
    .menu__box2 .menu__item:hover {
        color: #ffffff;
    }
    .menu__item {
        display: block;
        padding: 12px 24px;
        color: #000000;
        font-size: 18px;
        transition-duration: 0.5s;
    }
    .menu__item:hover {
        color: #ffffff;
    }
}

#menu__toggle {
    opacity: 0;
}

#menu__toggle:checked~.menu__btn>span {
    transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
    top: 0;
    transform: rotate(0);
    background: darkred;
}

#menu__toggle:checked~.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
    background: darkred;
}

#menu__toggle:checked~.menu__box {
    visibility: visible;
    left: 0;
    margin: 0;
}
#menu__toggle:checked~.menu__box2 {
    visibility: visible;
    left: 0;
    margin: 0;
}
.menu__btn {
    transition-duration: 0.25s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    bottom: 2px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 2;
}

.menu__btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #030303;
}

.menu__btn span::before {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #050505;
    content: "";
    top: -8px;
    transition-duration: 0.25s;
}

.menu__btn span::after {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000;
    content: "";
    top: 8px;
    transition-duration: 0.25s;
}

@media screen and (min-width: 48em) {
    .menu__btn {
        display: none;
    }
}

.gotop{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #FFF;
    border: 1px solid #999;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: relative;
}
.gotop{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}
html{
    scroll-behavior: smooth;
}



