#header {
    padding: 1rem 3rem;
}

.navbar {
    width: 100%;
    height: 72px;
}

.navbar-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
    justify-content: space-between;
    align-items: center;
    
    z-index: 1;
}


.get-in-touch-btn {
    padding-right: 3rem;
}


.get-in-touch-btn a {
    text-decoration: none;
    border: 1px solid #ffffff;
    color: #ffffff;

    font-size: 18px;

    padding: 0.8rem 1.5rem;
    border-radius: 10rem;
}

.get-in-touch-btn a:hover {
    background: #CE181E;
    color: white;
    border: 1px solid #CE181E;
}

.logo {
    width: 100px;
}

#menu__toggle {
    opacity: 0;
    display: none;
}

#menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
    visibility: visible;
    right: 0;
}

.menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 2.2rem;
    right: 3rem;

    width: 30px;
    height: 30px;

    cursor: pointer;
    z-index: 2;
}


.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;

    width: 100%;
    height: 2px;

    background-color: #ffffff;

    transition-duration: .5s;
}

.menu__btn > span::before {
    content: '';
    top: -8px;
}

.menu__btn > span::after {
    content: '';
    top: 8px;
}

.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    align-content: center;

    z-index: 1;
    top: 0;
    right: -100%;

    width: 40%;
    height: 100%;

    margin: 0;
    padding: 5rem;

    list-style: none;

    background-color: #1a1a1a;
    box-shadow: 1px 0 6px rgba(0, 0, 0, .2);

    transition-duration: .5s;
}

.menu__item {
    display: block;
    /*padding: 2.3rem 1.2rem;*/
    padding: 1.5rem 1rem 0.5rem 0;
    width: 100%;

    color: #ffffff;

    font-family: 'Gotham-Medium', sans-serif;
    font-size: 35px;
    font-weight: 600;

    text-decoration: none;
    text-transform: uppercase;
    
    transition-duration: .25s;

    border-bottom: 1px solid gray;
}

.menu__item:hover {
    color: #E4282D;
}

/*a.menu__item {*/
/*    padding-bottom: 0;*/
/*}*/

.sub__item {
    font-size: 24px;
    padding-left: 3rem;
}

/*.accordion {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    justify-content: space-between;*/

/*    width: 100%;*/

/*    cursor: pointer;*/

/*    text-align: left;*/
/*    outline: none;*/
/*    font-size: 40px;*/
/*    transition: 0.4s;*/
/*}*/

/*.accordion:last-of-type {*/
/*    border-bottom: 0;*/
/*}*/

/*.accordion:after {*/
/*    content: "\002B";*/
/*    color: #ffffff;*/
/*    font-weight: 400;*/
/*    float: right;*/
/*    align-content: center;*/
/*    border-bottom: 1px solid gray;*/
/*}*/

/*.accordion:hover:after {*/
/*    color: #E4282D;*/
/*}*/

/*.active:after {*/
/*    content: "\2212";*/
/*}*/

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;

    /*margin-left: 2rem;*/
}

.get-in-touch__btn__side__menu {
    padding-right: 4rem;
    position: absolute;
    top: 2.2em;
    right: 3rem;
}

.get-in-touch__btn__side__menu a {
    text-decoration: none;
    background-color: #E4282D;
    color: #ffffff;

    font-size: 18px;

    padding: 0.8rem 1.5rem;
    border-radius: 10rem;
}

.language {
    display: flex;
    flex-direction: row;
    column-gap: 0.6rem;

    position: absolute;
    top: 2.2rem;

    font-size: 18px;

    color: #ffffff;
}

.language button {
    background-color: transparent;
    color: #ffffff;

    border: none;
    cursor: pointer;
}

.language button:hover {
    color: #E4282D;
}

@media only screen and (max-width: 1600px) {
    .menu__box {
        width: 45%;
        padding: 7rem 4rem 4rem 4rem;
    }

    .menu__item {
        font-size: 24px;
        align-self: center;
    }

    .sub__item {
        font-size: 18px;
        padding-left: 3rem;
    }
}

@media only screen and (max-width: 1366px) {
    .menu__box {
        width: 50%;
    }
}


@media only screen and (max-width: 1024px) {
    #header {
        padding: 1rem 2rem;
    }

    .menu__btn {
        right: 2rem;
    }
    
    .menu__box {
        width: 65%;
    }
    .get-in-touch__btn__side__menu {
        right: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    #header {
        padding: 1rem 2rem;
    }

    .menu__btn {
        right: 2rem;
    }
}

@media only screen and (max-width: 570px) {
    .navbar {
        width: 100%;
        height: 50px;
    }

    a.logo-image img {
        width: 40%;
    }
    
    #header {
        padding: 0.5rem 1rem;
    }

    .menu__box {
        width: 100%;
        padding: 7rem 2rem 4rem 2rem;
    }

    .menu__item {
        font-size: 22px;
        align-self: center;
    }

    .menu__btn {
        position: fixed;
        right: 1rem;
        
        top: 1.8rem;
    }

    .get-in-touch__btn__side__menu {
        right: 0;
    }
    
}



