/* colors -> https://coolors.co/e54b4b-ebebd3-464655-e4b363-e8e9eb */

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

body {
  background: #ffffff;
  font-family: 'Quicksand', sans-serif;
}

.container {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

header {
  background: #ffffff5c;
  color: #EBEBD3;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 65px;

}

header::after {
  content: '';
  clear: both;
  display: block;
}

.logo {
  float: left;
  margin: 0;
  width: 15%;
  height: 100%;
  position: relative;

}

.logo span {
  font-weight: 400;
}

.site-nav {
  z-index: 99;
  position: absolute;
  right: 0%;
  background: #464655;
  -webkit-clip-path: circle(0px at top right);
          clip-path: circle(0px at top right);
  transition: -webkit-clip-path ease-in-out 500ms;
  transition: clip-path ease-in-out 500ms;
  transition: clip-path ease-in-out 500ms, -webkit-clip-path ease-in-out 500ms;
/*   display: none; */
}

.site-nav--open {
  -webkit-clip-path: circle(250% at top right);
          clip-path: circle(250% at top right);
/*   display: block; */
}

.sns1 {
    position: relative;
    margin-right: 47px;
    width: 10px;


}

.sns2 {
position: relative;
    margin-right: 47px;
    width: 10px;
}

.sns3 {
position: relative;
    margin-right: 47px;
    width: 10px;
}

.snslogo {

      margin-left: -60px;
    position: relative;
    width: 56px;
    top: 19px;

}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
}

.site-nav li {
  border-bottom: 1px solid #7b7b7c;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: #0d0654e0;
  display: block;
  padding: 2em 4em 2em 1.5em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #E4B363;
  color: #464655;
}

.site-nav--icon {
  display: inline-block;
  font-size: 1.5em;
  margin-right: 1em;
  width: 1.1em;
  text-align: right;
  color: rgba(255,255,255,.4);
}

.menu-toggle {
  padding: 1em;
  position: absolute;
  top: .5em;
  right: .5em;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  background: #394ecc;
  height: 3px;
  width: 1.75em;
  border-radius: 3px;
  transition: all ease-in-out 500ms;
}

.hamburger::before {
  transform: translateY(-6px);
}

.hamburger::after {
  transform: translateY(3px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translateY(-3px) rotate(-90deg);
}

@media (min-width: 730px) {

  header {
  background-color: noen;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
    -webkit-clip-path: initial;
    clip-path: initial;
    bottom: 15px;
    width: 85%;
    left: 18%;
        
  }
  
  .site-nav li {
    display: inline-block;
    border: none;
    left: 300px;
  }
  
  .site-nav a {
    padding: 0;
    margin-left: 3em;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }
  
  .site-nav--icon {
    display: none;
  }

  .header{
    width: 100%;
    background: #E54B4B;
    color: #EBEBD3;
    padding: 0em 0;
    position: fixed;
  }
}


@media (max-width: 730px) {

 .site-nav {
 
  top: 100%;

  }

.site-nav a {

  color: #ffffffe0;
  background-color: #004682;
  text-align: center;

  }


  .logo {
  
  left: 5px;

}

.sns1 {

display: none;

}

.sns2 {

display: none;

}

.sns3 {

display: none;

}




}

