@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@500&display=swap');

/* small devices */
@media only screen and (max-width: 827.98px) {
    html, body {
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
.nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: 10vh;
    background: #CAE9EF;
}

.nav img {
    padding: 0.5em;
    height: 100%;
    width: auto;
    cursor: pointer;
}

.nav-wrapper {
    margin-right: 5%;
}

.burger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    border: none;
    background: black;
    cursor: pointer;
    margin-right: 5%;
}

.btn {
    display: flex;
    z-index: 2;
    flex-direction: column;
    height: auto;
    width: 100vw;
    position: absolute; 
    background: #CAE9EF;
    right: 0;
    text-align: end;
    padding: 0;

}

.dropdown-content {
    display: flex;
    flex-direction: column;

}

.btn a{
    display: block;
    padding: 1rem;
    list-style: none;
    font-size: xx-large;
    
}

.btn a{
    text-decoration: none;
    font-weight: bold;
    color: #61868B;
}

.dropdown-content a{
    padding: 5px;
    font-size: medium;
    text-decoration: underline;
}



.show{
    display: flex;
}

.hidden {
    display: none;
}

.bar {
    display: block;
    position: absolute;
    width: 35px;
    height: 4px;
    background: white;
    border-radius: 3px;
}

.bar::after, .bar::before {
    transition: all 0.5s;
}

.close {
   width: 0;
   height: 0;
}

.close::after,
.close::before {
    position: absolute;
    content: ' ';
    width: 35px;
    height: 4px;
    background-color: white;
}

.close:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.open::before,
.open::after {
    content: "";
    width: 35px;
    height: 4px;
    position: absolute;
    background: white;
    border-radius: 3px;
}

.open::before {
    left: 50%;
    transform: translate(-50%, -12px);
}

.open::after {
    left: 50%;
    transform: translate(-50%, 12px);
}

}
/* tablet devices */
@media  screen and (min-width: 828px ) and (max-width: 967.98px) {
    html, body {
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
    
    .nav {
        display: flex;
        position: relative;
        right: 0;
        align-items: center;
        justify-content:space-between;
        width: 100vw;
        height: 10vh;
        background-color: #CAE9EF;
    
    }
    
    .nav img {
        padding: 0.5em;
        height: 100%;
        width: auto;
        cursor: pointer;
    }
    
    .nav-wrapper{
        
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        
    }

    .btn {
        position: absolute;
        right: 0;
        display: flex;
        flex-direction: row;
        
        padding: 0;
        font-family: 'Poiret One', cursive;
        
    
    }
    

    .btn li {
        list-style: none;
        padding: 10px;
        font-size:120%;
        transition: background-color 0.2s;
        border-radius: 5px;
    
    }
    
    .btn a {
        display: block;
        text-decoration: none;
        height: 100%;
        width: 100%;
        color: #61868B;
        font-weight: bold;
    
    }
    
    .btn li:hover {
        cursor: pointer;
        background-color: #79CACD;
        border-radius: 20px;
    }
    
    
    .dropdown {
        position: relative;
    
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 100%;
        left: 0;
        z-index: 1;
    
    }
    
    .dropdown-content a {
    
        color: #61868B;
        padding: 15px 0;
        text-align: center;
        background-color: #79CACD;
        transition: background-color 0.5s;
    
    }
    
    .drop-first {
        margin-top: 5px;
    }
    
    .drop-last {
        border-radius: 0 0 20px 20px;
    }
    
    
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .burger{
        display: none;
    }
}
/* Medium size */
@media only screen and (min-width: 968px ) and (max-width:1467.97px){
    html, body {
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
    
    .nav {
        display: flex;
        position: relative;
        right: 0;
        align-items: center;
        justify-content:space-between;
        width: 100vw;
        height: 10vh;
        background-color: #CAE9EF;
    
    }
    
    .nav img {
        padding: 0.5em;
        height: 100%;
        width: auto;
        cursor: pointer;
    }
    
    .nav-wrapper{
        
        width: 80vw;
        height: 100%;
        display: flex;
        align-items: center;
        
    }

    .btn {
        position: absolute;
        right: 0;
        display: flex;
        flex-direction: row;
        
        padding: 0;
        font-family: 'Poiret One', cursive;
        
    
    }
    

    .btn li {
        list-style: none;
        padding: 20px;
        font-size:150%;
        transition: background-color 0.2s;
        border-radius: 20px;
    
    }
    
    .btn a {
        display: block;
        text-decoration: none;
        width: 100%;
        height: 100%;
        color: #61868B;
        font-weight: bold;
    
    }
    
    .btn li:hover {
        cursor: pointer;
        background-color: #79CACD;
        border-radius: 20px;
    }
    
    
    .dropdown {
        position: relative;
    
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 100%;
        left: 0;
        z-index: 1;
    
    }
    
    .dropdown-content a {
    
        color: #61868B;
        padding: 15px 0;
        text-align: center;
        background-color: #79CACD;
        transition: background-color 0.5s;
    
    }
    
    .drop-first {
        margin-top: 5px;
    }
    
    .drop-last {
        border-radius: 0 0 20px 20px;
    }
    
    
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .burger{
        display: none;
    }
}
/* big devices */
@media only screen and (min-width: 1468px) {
    html, body {
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
    
    .nav {
        display: flex;
        position: relative;
        right: 0;
        align-items: center;
        justify-content:space-between;
        width: 100vw;
        height: 10vh;
        background-color: #CAE9EF;
    
    }
    
    .nav img {
        padding: 0.5em;
        height: 100%;
        width: auto;
        cursor: pointer;
    }
    
    .nav-wrapper{
        position:absolute;
        right: 0;
        width: 70%;
        height: 100%;
        display: flex;
        align-items: center;
        
    }

    .btn {
        position: absolute;
        right: 0;
        display: flex;
        flex-direction: row;
        
        padding: 0;
        margin: 0;
        font-family: 'Poiret One', cursive;
        
    
    }
    

    .btn li {
        list-style: none;
        padding: 30px;
        font-size:160%;
        transition: background-color 0.2s;
        border-radius: 20px;
    
    }
    
    .btn a {
        display: block;
        text-decoration: none;
        height: 100%;
        width: 100%;
        color: #61868B;
        font-weight: bold;
    
    }
    
    .btn li:hover {
        cursor: pointer;
        background-color: #79CACD;
        border-radius: 20px;
    }
    
    
    .dropdown {
        position: relative;
    
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 100%;
        left: 0;
        z-index: 1;
    
    }
    
    .dropdown-content a {
    
        color: #61868B;
        padding: 15px 0;
        text-align: center;
        background-color: #79CACD;
        transition: background-color 0.5s;
    
    }
    
    .drop-first {
        margin-top: 5px;
    }
    
    .drop-last {
        border-radius: 0 0 20px 20px;
    }
    
    
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .burger{
        display: none;
    }
}

