        /* Header */

        header {
            background-color: #F6F3F1;
            width: 100%;
            position: fixed;
            top: 0;
            margin: 0;
            padding: 0;
            list-style-type: none;
            transition: 0.3s;
            z-index: 10;
            height: 80px;
            display: flex;
            justify-content: space-between;
        }

        .logo {
           position: relative;
            top: 50%;
            transform: translateY(-50%);
            margin-left: 8em;
        }
        
        .logo img {
            height: 50px;
        }

        .nav-bar {
            position: relative;
            top: 50%;
            transform: translateY(-50%);
            margin-right: 8em;
        }

        .option {
            display: inline-block;
            margin: 0 20px;
            position: relative;
            padding: 3px 10px;
            bottom: 2px;
        }
        
        .option:first-child {
            margin-left: 0;
            padding-left: 0;
        }
        
        .option:hover {
            color: #b27174;
        }
        
        .profile {
            display: inline-block;
            margin: 0 20px;
            position: relative;
        }

        .icon {
            height: 30px;
        }
        
        .item .icon {
            margin-right: 10px;
        }
        
        ion-icon {
            font-size: 32px;
            position: absolute;
            top: 75%;
            transform: translateY(-75%);
        }
        
        .active-nav {
            color: #b27174;
        }
        
        #sideNav .active-sidebar {
            background-color: #6D5A52;
            color: #F2EBE8;
        }
        
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  width: 0;
  height: 0;
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #BCA79D;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #BCA79D;
  width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 15px;
  left: -66px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
    background-color: #dbd3d0;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #b27174;
}

        #sideNav {
            width: 250px;
            height: 100vh;
            position: fixed;
            right: -250px;
            top: 0;
            background: #BCA79D;
            z-index: 3;
            transition: 0.5s;
        }

        #sideNav a, .sidenav-btn {
            font-size: 16px;
            padding: 20px;
            text-decoration: none;
            font-family: inherit;
            color: black;
            display: block;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            outline: none;
            position: relative;
        }

        #sideNav a:hover, .sidenav-btn:hover {
            background-color: #6D5A52;
            color: #F2EBE8;
        }

        .nav-content {
            position: relative;
            top: 100px;
        }
        
        .dropdown-container {
            display: none;
            opacity: 0;
            padding-left: 8px;
            transition: 0.3s;
        }
        
        .chevron-down {
            position: absolute;
            top: 22px;
            left: 73px;
            font-size: 20px;
        }

        .option:hover .chevron-down, .sidenav-btn:hover .chevron-down {
            transform: rotate(180deg);
            transition: all 0.3s;
        }

        .option:not(:hover) .chevron-down, .sidenav-btn:not(:hover) .chevron-down {
            transform: rotate(0deg);
            transition: all 0.3s;
        }
    
            
        footer {
            height: 70px;
            font-size: 14px;
            margin-top: 200px;
            position: relative;
        }

        .inner-footer {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-top: 1px #6D5A52 solid;
            bottom: 0;
            width: 70vw;
            padding: 20px;
            color: #6D5A52;
            margin: 0 auto 40px 0;
            z-index: 90;
        }
        
        .copyright {
            float: left;
            font-family: Montserrat, sans-serif;
        }
        
        .links {
            float: right;
            z-index: 90;
        }
        
        footer .icon {
            height: 20px;
            padding: 0;
            margin: 0 5px;
        }
        
        footer .icon:first-child {
            margin-left: 0;
        }
        
        footer .icon:last-child {
            margin-right: 0;
        }
        
        .nav-option {
  padding: 15px 30px;
  display: block;
  background-color: #EFE9E7;
  margin: 2px 0;
  position: relative;
  right: 20px;
  top: -20px;
}

.active-option {
    background-color: #b27174;
    color: white;
}

.nav-option:hover {
    background-color: #dbd3d0;
    color: black;
}


    .profile-details {
        background-color: #EFE9E7;
        padding: 50px;
    }
        .profile-img {
            height: 100px;
            margin-bottom: 30px;
        }
        
        #edit {
            margin-top: 30px;
            background-color: #b27174;
            color: white;
            padding: 10px 20px;
            text-transform: uppercase;
        }
        
        
          @media only screen and (max-width: 767px) {
            
            .profile-details {
                width: 100%;
           }
           
           .navigation-bar {
               width: 96vw;
           }

        }
        
        @media only screen and (max-width: 1024px) {

            .logo {
                position: relative;
                top: 50%;
                transform: translateY(-50%);
                float: left;
                margin-left: 2em;
            }

            .mobile {
                position: relative;
                top: 50%;
                transform: translateY(-50%);
                float: right;
                margin-right: 2em;
            }

            #exit {
                position: relative;
                float: right;
                margin-right: 1.6em;
                top: 40px;
            }
            
             #desktop-navigation {
                display: none;
            }

            
            #sideNav, #menuBtn {
                display: block;
            }


        }
        
        @media only screen and (min-width: 1025px) {
            
            #desktop-navigation {
                display: block;
            }
            
            #sideNav, #menuBtn {
                display: none;
            }
            
        }
        
        @media only screen and (min-width: 768px) {
            
        .profile-container {
           justify-content: space-between;
           display: flex;     
        }
        
            .profile-details {
        display: inline-block;
        width: 75%;
    }
    
        .navigation-bar {
        display: inline-block;
        display: flex;
    }
    
            
        }