:root {
  --clr: #fff;
}

body {
  
  background: var(--clr);
}

#lavalamp {
  nav {
    margin: 27px auto 0;

    position: relative;
    width: 590px;
    height: 50px;
    background-color: #34495e;
    border-radius: 8px;
    font-size: 0;
  }
  nav a {
    line-height: 50px;
    height: 100%;
    font-size: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: white;
    cursor: pointer;
  }
  nav .animation {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all .5s ease 0s;
    border-radius: 8px;
  }
  a:nth-child(1) {
    width: 100px;
  }
  a:nth-child(2) {
    width: 110px;
  }
  a:nth-child(3) {
    width: 100px;
  }
  a:nth-child(4) {
    width: 160px;
  }
  a:nth-child(5) {
    width: 120px;
  }
  nav .start-home, a:nth-child(1):hover~.animation {
    width: 100px;
    left: 0;
    background-color: #1abc9c;
  }
  nav .start-about, a:nth-child(2):hover~.animation {
    width: 110px;
    left: 100px;
    background-color: #e74c3c;
  }
  nav .start-blog, a:nth-child(3):hover~.animation {
    width: 100px;
    left: 210px;
    background-color: #3498db;
  }
  nav .start-portefolio, a:nth-child(4):hover~.animation {
    width: 160px;
    left: 310px;
    background-color: #9b59b6;
  }
  nav .start-contact, a:nth-child(5):hover~.animation {
    width: 120px;
    left: 470px;
    background-color: #e67e22;
  }

  body {
    font-size: 12px;
    font-family: sans-serif;
    background: #2c3e50;
  }
  h1 {
    text-align: center;
    margin: 10px 0 10px;
   
    font-size: 30px;
    color: #ecf0f1;
    text-shadow: 2px 2px 4px #000000;
    font-family: 'Cherry Swash', cursive;
  }

  p {
      position: absolute;
      bottom: 20px;
      width: 100%;
      text-align: center;
      color: #ecf0f1;
      font-family: 'Cherry Swash',cursive;
      font-size: 16px;
  }

  span {
      color: #2BD6B4;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
#navigation {
    margin: 30px;
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
  }
  body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: #06021b;
  }
  .navigation {
      position: relative;
      width: 400px;
      height: 70px;
      background: linear-gradient(45deg, #2196f3, #e91e63);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
  }
  .navigation ul {
      display: flex;
      width: 350px;
  }
  .navigation ul li {
      position: relative;
      width: 70px;
      height: 70px;
      list-style: none;
      z-index: 1;
  }
  .navigation ul li a {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 100%;
      text-align: center;
      font-weight: 500;
  }
  .navigation ul li a .icon {
      position: relative;
      display: block;
      line-height: 75px;
      font-size: 1.5em;
      text-align: center;
      color: #fff;
      transition: .5s;
  }
  .navigation ul li.active a .icon {
      transform: translateY(-32px);
  }
  .navigation ul li a .text {
      position: absolute;
      color: #fff;
      font-weight: 400;
      font-size: .75em;
      letter-spacing: .05em;
      opacity: 0;
      transform: translateY(20px);
      transition: .5s;
  }
  .navigation ul li.active a .text {
      opacity: 1;
      transform: translateY(10px);
  }
  .navigation ul li a .circle {
      position: absolute;
      display: block;
      width: 50px;
      height: 50px;
      background: transparent;
      border-radius: 50%;
      border: 1.8px solid #fff;
      transform: translateY(-37px) scale(0);
  }
  .navigation ul li.active a .circle {
      transition: .5s;
      transition-delay: .5s;
      transform: translateY(-37px) scale(1);
  }
  .indicator {
      position: absolute;
      top: -50%;
      width: 70px;
      height: 70px;
      background: linear-gradient(45deg, #2196f3, #e91e63);
      border: 6px solid #06021b;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: .5s;
  }
  .indicator::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -22px;
      width: 20px;
      height: 20px;
      background: transparent;
      border-top-right-radius: 20px;
      box-shadow: 1px -10px 0 #06021b;
  }
  .indicator::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -22px;
      width: 20px;
      height: 20px;
      background: transparent;
      border-top-left-radius: 20px;
      box-shadow: -1px -10px 0 #06021b;
  }
  .navigation ul li:nth-child(1).active~.indicator {
      transform: translateX(calc(70px * 0));
  }
  .navigation ul li:nth-child(2).active~.indicator {
      transform: translateX(calc(70px * 1));
  }
  .navigation ul li:nth-child(3).active~.indicator {
      transform: translateX(calc(70px * 2));
  }
  .navigation ul li:nth-child(4).active~.indicator {
      transform: translateX(calc(70px * 3));
  }
  .navigation ul li:nth-child(5).active~.indicator {
      transform: translateX(calc(70px * 4));
  }

}

#nav_turquoise {
    * {margin: 0;padding: 0;outline: none;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
*:after, *:before { -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {  display: block;}
html {font-size: 100%;height: auto !important;height: 100%;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
.clear {display: block;	}
.clear::after {clear: both;content: ".";display: block;height: 1px;visibility: hidden;}
	
/*GENERIC STYLES*/
body { background: #f2f2f2;color: #222;-webkit-font-smoothing: antialiased;font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: 1.05em;font-weight: 400;height: auto !important;height: 100%;line-height: 1.6rem;min-height: 100%;}
/*NAV*/
	header {
		background: linear-gradient(to left,rgba(54,194,182,0.96) 0,rgba(62,188,207,0.96) 100%);
		border-bottom: 1px solid rgba(0,0,0,.1);
		box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
		display: block;
		position: fixed;
		width: 100%;
		z-index: 1000;
	}
	
	header > nav > ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
		header > nav > ul > li {
			flex: 0 1 auto;
			margin: 0;
			padding: 0;
			position: relative;
			transition: all linear 0.1s;	
		}
		
			header > nav > ul > li:hover {
				background: rgba(58,162,173,1);
			}
			
			header > nav > ul > li a + div {
				background: linear-gradient(to bottom,rgba(58,162,173,1) 0,rgba(62,188,207,0.96) 100%);;
				border-radius: 0 0 2px 2px;
				box-shadow: 0 3px 1px rgba(0,0,0,.05);
				display: none;
				font-size: 1rem;
				position: absolute;
				width: 195px;
			}
			
				header > nav > ul > li:hover a + div {
					display: block;
				}
				
				header > nav > ul > li a + div > ul {
					list-style-type: none;	
				}
				
					header > nav > ul > li a + div > ul > li {
						margin: 0;
						padding: 0;
					}
					
						header > nav > ul > li a + div > ul > li > a {
							color: rgba(255,255,255,.9);
							display: block;	
							font-size: .75rem;
							letter-spacing: 1.5px;
							padding: .25rem 1.5rem;
							text-decoration: none;
							text-transform: uppercase;
						}
						
							header > nav > ul > li a + div > ul > li:hover > a {
								background-color: rgba(0,0,0,.15);	
							}
	
			header > nav > ul > li > a {
				align-items: flex-start;
				color: #fff;
				display: flex;
				font-size: 1.55rem;
				font-weight: 200;
				letter-spacing: 1px;
				max-width: 130px;
				padding: 1rem 1.5rem;
				text-decoration: none;
				text-shadow: 0 1px 1px rgba(0,0,0,.1);
				transition: all linear 0.1s;
			}
			
				header > nav > ul > li > a > div > span {
					color: rgba(255,255,255,.75);
					display: block;
					font-family: Georgia, "Times New Roman", Times, serif;
					font-size: .7rem;	
					font-style: italic;
					line-height: 1rem;
					max-width: 260px;
				}

@media (min-width: 990px) {
  header > nav > ul > li > a {
    max-width: 500px;
    font-size: 1.7rem;
	line-height: 2rem;
  }
  
  header > nav > ul > li > a > div > span {
	  margin: 4px 0 0;  
  }
}


}

#nav_marker {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: #1e2759;
    }
    
    ul {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    }
    
    ul li {
        list-style: none;
    
    }
    
    ul li a {
        position: relative;
        color: #514c4c;
        text-decoration: none;
        display: inline-block;
        padding: 20px 30px;
        z-index: 1000;
        backdrop-filter: blur(15px);
    }
    
    ul li a ion-icon {
        font-size: 1.5em;
        pointer-events: none;
        opacity: 0.25;
        transition: 0.25s;
    }
    
    ul li.active a ion-icon {
        opacity: 1;
    }
    
    #marker {
        position: absolute;
        top: 0;
        transition: 0.5s;
        z-index: 1;
    }
    
    #marker::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 40px;
        border-radius: 8px;
        background: #5da6ff;
        box-shadow: 0 0 15px #5da6ff,
            0 0 30px #5da6ff,
            0 0 40px #5da6ff,
            0 0 60px #5da6ff
    }
    
    ul li:nth-child(1).active~#marker::before {
        background: #5da6ff;
        box-shadow: 0 0 15px #5da6ff,
            0 0 30px #5da6ff,
            0 0 40px #5da6ff,
            0 0 60px #5da6ff
    }
    
    ul li:nth-child(2).active~#marker::before {
        background: #ff0;
        box-shadow: 0 0 15px #ff0,
            0 0 30px #ff0,
            0 0 40px #ff0,
            0 0 60px #ff0
    }
    
    ul li:nth-child(3).active~#marker::before {
        background: #df2fff;
        box-shadow: 0 0 15px #df2fff,
            0 0 30px #df2fff,
            0 0 40px #df2fff,
            0 0 60px #df2fff
    }
    
    ul li:nth-child(4).active~#marker::before {
        background: #0f0;
        box-shadow: 0 0 15px #0f0,
            0 0 30px #0f0,
            0 0 40px #0f0,
            0 0 60px #0f0
    }
    
    ul li:nth-child(5).active~#marker::before {
        background: #ff308f;
        box-shadow: 0 0 15px #ff308f,
            0 0 30px #ff308f,
            0 0 40px #ff308f,
            0 0 60px #ff308f
    }
}

#navigation1 {
    margin: 20px 0;
    * {
        
        padding: 0;
        box-sizing: border-box;
      }
      
      :root {
        --clr: #fff;
      }
      
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: var(--clr);
      }
      
      .navigation1 {
        width: 420px;
        height: 70px;
        background: #209cff;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
      }
      
      .navigation1 ul {
        position: relative;
        display: flex;
        width: 350px;
      }
      
      .navigation1 ul li {
        position: relative;
        list-style: none;
        width: 70px;
        height: 70px;
        z-index: 1;
      }
      
      .navigation1 ul li a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      }
      
      .navigation1 ul li a .icon {
        position: relative;
        display: block;
        font-size: 1.5em;
        color: #fff;
        line-height: 75px;
        opacity: 0.75;
        transition: 0.5s;
      }
      
      .navigation1 ul li.active a .icon {
        opacity: 1;
        color: #209cff;
        transform: translateY(-8px);
      }
      
      .indicator {
        position: absolute;
        top: -10px;
        width: 70px;
        height: 70px;
        background: var(--clr);
        border-bottom-left-radius: 35px;
        border-bottom-right-radius: 35px;
        border: 6px solid var(--clr);
        cursor: pointer;
        transition: 0.5s;
      }
      
      .indicator::before {
        content: "";
        position: absolute;
        top: 4px;
        left: -25.75px;
        width: 20px;
        height: 20px;
        background: transparent;
        border-top-right-radius: 20px;
        box-shadow: 4px -6px 0 2px var(--clr);
      }
      
      .indicator::after {
        content: "";
        position: absolute;
        top: 4px;
        right: -25.75px;
        width: 20px;
        height: 20px;
        background: transparent;
        border-top-left-radius: 20px;
        box-shadow: -4px -6px 0 2px var(--clr);
      }
      
      .indicator span {
        position: absolute;
        left: -1px;
        width: 60px;
        height: 60px;
        border: 4px solid #209cff;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transform: scale(0.85);
      }
      
      .navigation1 ul li:nth-child(3).active ~ .indicator {
        transform: translateX(calc(70px * 1));
      }
      
      .navigation1 ul li:nth-child(4).active ~ .indicator {
        transform: translateX(calc(70px * 2));
      }
      
      .navigation1 ul li:nth-child(5).active ~ .indicator {
        transform: translateX(calc(70px * 3));
      }
      
      .navigation1 ul li:nth-child(6).active ~ .indicator {
        transform: translateX(calc(70px * 4));
      }
      
}




#skew-menu {




body {
  font-family: Helvetica Neue, Helvetica, sans-serif;
  background: tomato;
}

.skew-menu {
  text-align: center;
  
}

.skew-menu ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: skew(-25deg);
}

.skew-menu ul li {
  background: #fff;
  float: left;
  border-right: 1px solid #eee;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  color: #555;
  font-weight: bolder;
  transition: all 0.3s linear;

  &:first-child {
    border-radius: 7px 0 0 7px;
  }

  &:last-child {
    border-right: none;
    border-radius: 0 7px 7px 0;
  }

  &:hover {
    background: #eee;
    color: tomato;
  }

  a {
    display: block;
    padding: 1em 2em;
    color: inherit;
    text-decoration: none;
    transform: skew(25deg);
  }
}
}

#menu1{
    nav {
        overflow: hidden;
      font-size: 0;
      width: 700px;
    }
    
    nav a {
      font-family: Tahoma;
      font-size: 12px;
      text-decoration: none;
      text-align: center;
      color: #2073a4;
    }
    
    nav > ul {
      padding: 0;
      margin: 0;
      position: relative;
      margin-bottom: 40px;
    }
    
    nav > ul li { display: inline-block; }
    
    nav > ul > li > a {
      display: block;
      width: 96.2px;
      line-height: 43px;
      font-weight: 700;
      border-style: solid;
      border-width: 2px 1px 0 1px;
      border-color: #63b5dd #aadaef;
      margin-right: -1px;
      -ms-border-top-left-radius: 5px;
      border-top-left-radius: 5px;
      -ms-border-top-right-radius: 5px;
      border-top-right-radius: 5px;
      background: linear-gradient(#fdffff, #e5f5fb);
    }
    
    nav > ul > li:hover > a {
        color: #fff;
        background: linear-gradient(to bottom, rgb(84, 173, 206), rgba(66, 142, 187, 1));
    }
    
    nav > ul li ul { display: none; }
    
    nav > ul li:hover ul {
      display: block;
      position: absolute;
      padding: 0;
      margin: -4 0 0;
      left: 0;
      width: 100%;
      top: 38px;
      border: 1px solid #156a9c;
      background: linear-gradient(to bottom, rgb(84, 173, 206), rgba(66, 142, 187, 1));
    }
    
    nav > ul li:hover ul > li > a {
      display: block;
      width: 96.2px;
      color: #fff;
      line-height: 35px;
      z-index: -9999;
    }
}