*{
    margin: 0;
    padding: 5px 0 5px 0;
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 300;
}

header{
  overflow-x: hidden;
  z-index: 20;
  top: 0;
  position: fixed;
  width: 100vw;
}

nav{
    height: auto;
    padding: 0px 4em;
    left: 0;
    top: 0;
    right: 0;
    background-color: #FFF;
    box-shadow: 3px 6px 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    position: fixed;
    z-index: inherit;
    justify-content: space-between;
}

/*Styling logo*/
.logo{
  display: flex;
  align-items: center;
  margin: inherit;
  z-index: inherit;
}
.logo img {
    width: 275px;
}

/*Styling Links*/
.nav-links{
    display: flex;
    list-style: none; 
    justify-content: space-between;
    gap: 2em;
    margin: inherit;
    align-items: center;
    white-space: nowrap;
    z-index: inherit;
}
.nav-links li a{
    text-decoration: none;
}
.nav-links li a:hover {
    color: #74459b;
}
.nav-links li {
    position: relative;
}

/* The container <div> - needed to position the dropdown content */
.myDropDown {
  position: relative;
  display: block;
  cursor: pointer;
}

/* Dropdown Content (Hidden by Default) */
.mydropdown-mycontent {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 3px 6px 30px 0px rgba(0,0,0,0.1);
  min-width: 180px;
  max-width:300px;
  border-radius: 10px;
  z-index: 1;
}

/* Links inside the dropdown */
.mydropdown-mycontent a {
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  align-items: center;
}

/* Change color of dropdown links on hover */
.mydropdown-mycontent a:hover {
  background-color: #f1f1f1;
  color: #74459b;
}

/* Show the dropdown menu on hover */
.myDropDown:hover .mydropdown-mycontent {
  display: block;
}



/* Change the background color of the dropdown button when the dropdown content is shown */
.myDropDown:hover .mydropSubMenu {
  color: #74459b;
}

.myDropDown:hover .mydropSubMenu::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #74459b;
    position: absolute;
    transition: all ease-in-out 350ms;
    margin: 28px 0 0 -5%;
}
.myDropDown:hover .mydropSubMenu:hover::before{
    width: 110%;
}


/*Styling Buttons*/
.headerButton{
  padding: 15px 25px 15px; /* top, right/left, bottom */
  background-color: #74459b;
  align-content: center;
  border-color: #74459b;
  text-decoration: none;
  color: #FFF;
  border-radius: 10px;
  white-space: nowrap;
}

/*Styling Hamburger Icon*/
.hamburger div{
    width: 40px;
    background: #46295d;
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hamburger{
    display: none;
}

.mobile-nav-links{
    display: none;
}
/*Stying for small screens*/
@media screen and (max-width: 1025px){
      *{
       padding: 0;
      }
     .nav-links{
        display: none;
      }
     nav{
        height: 60px;
        position: fixed;
        z-index: inherit;
        padding: 0;
      }
    .logo {
        display: flex;
        margin-left: 20px;
        z-index: inherit;
    }
    
    .logo a{
        display: flex;
        margin: auto;
  }
    .logo img {
      width: 175px;
      align-items: inherit;
    }
    .headerButton{
      width: 300px !important;
      display: block;
      text-wrap: nowrap;
      margin-top: 40px;
    } 
    .hamburger{
        display: block;
        position: absolute;
        cursor: pointer;
        right: 10px;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    
    .hamburger .line{
        height: 5px;
    }
  
    #listHeader{
      font-family: fieldwork, none;
      font-size: 15px;
      color: #0685af;
      margin-bottom: -10px !important;
      font-weight: 600;
    }
    .mobile-nav-links{
        font-family: 'roboto';
        align-items: center;
        white-space: nowrap;
        list-style: none;
        display: flex;
        position: fixed;
        background: #cdedf8;
        height: 100vh;
        align-content: center;
        justify-content: center;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        padding-left: unset;
    }
  
    .mobile-nav-links.open{
        clip-path: circle(3000px at 90% -10%);
        -webkit-clip-path: circle(2500px at 90% -10%);
        pointer-events: all;
    }
  
    .mobile-nav-links li a{
        text-decoration: none;
    }
    .mobile-nav-links li a::before {
        content: "";
        display: block;
        height: 15px;
        width: 0%;
        background-color: #906aaf40;
        position: absolute;
        transition: all ease-in-out 250ms;
        margin: 3% 0% 0% -3%;
    }
    .mobile-nav-links li:nth-child(1) a:hover::before{
        width: 44%;
    }
    .mobile-nav-links li:nth-child(3) a:hover::before{
        width: 32%;
    }
    .mobile-nav-links li:nth-child(4) a:hover::before{
        width: 41%;
    }
    .mobile-nav-links li:nth-child(5) a:hover::before{
        width: 44%;
    }
    .mobile-nav-links li:nth-child(7) a:hover::before{
        width: 49%;
    }
    .mobile-nav-links li:nth-child(8) a:hover::before{
        width: 0%;
    }
    .mobile-nav-links li{
        opacity: 0;
    }
    .mobile-nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .mobile-nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .mobile-nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .mobile-nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .mobile-nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .mobile-nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
    }
    .mobile-nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
    }
    .mobile-nav-links li:nth-child(8){
        transition: all 0.5s ease 1.1s;
    }
    li.fade{
        opacity: 1;
    }
  
  @media screen and (min-width: 500px){
    .mobile-nav-links li a::before {
    content: "";
    display: block;
    height: 15px;
    width: 0%;
    background-color: #906aaf40;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 2% 0% 0% -2%;
    }
     .mobile-nav-links li:nth-child(1) a:hover::before{
        width: 200px;
    }
    .mobile-nav-links li:nth-child(3) a:hover::before{
        width: 150px;
    }
    .mobile-nav-links li:nth-child(4) a:hover::before{
        width: 190px;
    }
    .mobile-nav-links li:nth-child(5) a:hover::before{
        width: 200px;
    }
    .mobile-nav-links li:nth-child(7) a:hover::before{
        width: 220px;
    }
  #listHeader{
    font-size: 17px;
    margin-bottom: -60px;
  }
  .headerButton{
    width:500px;
  }  
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 9px);
}

.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}


.toggle .line3{
    transform: rotate(45deg) translate(-5px,-9px);
}