        :root { 
            /* Brand DNA Color Palette */ 
            --mediterranean-blue: #0E4B7F; 
            --valencia-orange: #FF6B35; 
            --olive-green: #6B8E23; 
            --soil-brown: #8B4513; 
            --sky-blue: #87CEEB; 
            --digital-grey: #4A4A4A; 
            --light-sand: #FFF8E1; 
            --water-blue: #4A90E2; 
            --success-green: #52C41A; 
        } 
 
      



.topnav {
    display: flex;
	justify-content: center;
    align-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}

.logo{
    
   
    float: left
        
}
  .logo { 
            padding: 20px;
            margin-right: 1rem;
            font-size: 1.2rem; 
            font-weight: 800; 
            letter-spacing: -0.02em; 
            position: relative; 
        } 
 
        .logo span:first-child { 
            color: var(--olive-green); 
        } 
 
        .logo span:last-child { 
            color: var(--mediterranean-blue); 
        } 

 
.topnav a {
  float: left;
  display: block;
  color: #4A4A4A;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
    background-color: aquamarine;
    color: black;
}

.topnav .icon {
 position: absolute;
      
    right: 0;
    top: 0;
  display: none;
}

@media screen and (max-width: 600px) {
    
    .logo{
        display: block;
        width: 80%;
        margin-right: 20%;
        padding: 20px;
    }
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 750px) {
	.topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {
	          display: block;
	  position: relative;}
  .topnav.responsive .icon {
    position: absolute;
      
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    
    display: block;
    text-align: left;
  }
    .links{
         width: 100vw;
    }
}
