/*  fonts  */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Roboto+Condensed:wght@300;400;500;700&display=swap');
/*  end fonts  */

*,*::after,*::before {box-sizing: border-box;}
html {
    width: 100vw;
    height: 100vh;
    background: url(../img/bkgr_clouds.jpg) 0% 30%/cover no-repeat border-box;
    position: relative;
    z-index: -1;
}

body {
    font-family: 'EB Garamond', serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.backdrop {
    position: fixed;
    display: none;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    transition: all 
}
.wrapper-header {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wrapper-brand-nav {
    width: 100%;
    font-family: Garamond;
    font-size: 2.375rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.wrapper-brand-nav a {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 6px #05007e;
    text-decoration: none;
}
.main-nav {
    font-family: Roboto;
    display: none;
	font-size: 1.1rem;
}


/*  Hamburger  */
/*  HAMGURGER  */
.toggle-button {
    width: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: block;
}
.toggle-button:focus {
    outline: none;
}
.toggle-button__bar {
    width: 100%;
    height: 0.2rem;
    background: hotpink;
    display: block;
    margin: 0.5rem 0;
    border-radius: 0.15rem;
}
.toggle-button

/*
.wrapper-brand-nav {
    font-family: Garamond;
    font-size: 3rem;
    display: flex;
    align-items: center;
    align-self:flex-end;
}
.wrapper-brand-nav a {
    color: #fff;
    line-height: 0%;
    display: block;
    text-decoration: none;
}
.wrapper-brand-nav img {
    height: 36px;
}
.wrapper-brand-nav a:hover,
.main-nav li a:hover {
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid #fff;
}
*/
.main-nav a:hover {
     border-bottom: none;
}
.main-nav a:active,
.main-nav li a:active {
    color: #fff;
}

/*  mobile-nav  */
.mobile-nav {
    font-family: Roboto;
    display: none;
    position: fixed;
    z-index: 201;
    top: 5.25rem;
    top: 0;
    left: 0;
    background: #000;
    width: 80%;
    height: 100vh;
/*    transition: all 2s ease;*/
}
ul.sub-item,
ul.mobile-nav__items {
    list-style: none;
}
.mobile-nav__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    list-style: none;
    margin: auto;
    padding: 0;
    text-align: center;
}
.sub-item {
    width: 100%;
}
li.mobile-nav__item {
    margin: 0;
}
li.mobile-nav__sub-item {
    background-color: rgb(36, 36, 36);
    margin: 6px 0;
}
.mobile-nav__item a {
    display: block;
    padding: 1.125rem;
    text-decoration: none;
    font-size: 1.375rem;
    color: hotpink;
}
li.mobile-nav__sub-item a {
    padding: 0.75rem;
    display: block;
   font-size: 1rem;
   color: darkgray; 
}


@media (min-width: 960px) {
/*
    .main-nav {
        display: none;
    }
    .mobile-nav {
        display: none;
    }
*/
    
    .wrapper-brand-nav {
        font-size: 2.4rem;
        flex-direction: row;
        justify-content: flex-start;
    }
    .wrapper-brand-nav a {
        
    }
    .wrapper-header {
        padding: 1.25rem 2.5rem;
    }
    .toggle-button {
        display: none;
    }
    .main-nav {
        padding: 0;
        display: flex;
        font-family: Roboto;
        width: 100%;
        justify-content: flex-end;
        align-items: baseline;
    }
    .main-nav a {
        text-decoration: none;
    }
    .main-nav ul {
        padding-left: 0;
        text-transform: uppercase;
        list-style: none;
        display: flex;
        justify-content: flex-end;
    }
    .main-nav li {
        display: block;
        padding: 0 0.625rem;
    }
    
    .main-nav li a {
        padding: 16px 0;
        font-weight: 500;
        color: hotpink;
        transition: all ease .5s;
    }
    .main-nav li a:hover,
    .main-nav li a:active {
        color: #fff;
        text-shadow: 0 0 6px #05007e;
    }
}

.modal {
    position: fixed;
/*    display: none;*/
    z-index: 200;
    top: 20%;
    left: 30%;
    width: 40%;
    background: #fff;
    padding: 1rem;
    border: 1px solid #ccc;
    box-shadow: 3px 3px 6px #rgba(0, 0, 0, 0.5);
}
.modal__title {
    text-align: center;
    margin: 0 0 1rem 0;
}

/*
.mn {
    display: block;
    transform: scaleX(80%);
}
*/

.open {
    display: block !important;
}