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

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



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

.block_about {
    font-family: 'Quicksand', sans-serif;
    margin: auto;
    width: 90%;
    font-size: 1.5em;
}

.inner_about {
    margin-left: 2em;   
    padding: 1em;
    line-height: 1.5em;}



.mga {
    max-height: 180px;
    max-width: 249px;
}



.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background: 	#006400;
  color: #EBEBD3;
  padding: 1.1em 0;
  position: relative;
}

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

.logo {
  float: left;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.logo span {
  font-weight: 400;
}

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

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

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.site-nav a {
  color: #EBEBD3;
  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: #EBEBD3;
  height: 3px;
  width: 1.75em;
  border-radius: 3px;
  transition: all ease-in-out 500ms;

}

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

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

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

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

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




.box {
    display: none;
    position: relative;
    margin-top: 40vh;
    margin: auto;
    background: white;
    padding: 2em;
    max-width: 500px;
    box-shadow: 10px 10px 10px;
    z-index: -1;
    
}


.text-wrapper {
    
display: none;
}



@media (min-width: 900px) {
  
  .menu-toggle {
    display: none;
  }
  
    .content-wrapper {
    width: 80%;
    margin: 4% 10% 5% 10%;
}

.content-wrapper img {
    width: 100%;
}

.text-wrapper {
    display: block;
    width: 100%;
    position: relative;
    margin-top: -40%;
    font-family: 'Do Hyeon', sans-serif;
    color: #EBEBD3;
    text-align: center;
    font-size: 8vw;
    
    
}

    
  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
    -webkit-clip-path: initial;
            clip-path: initial;
  }
  
  .site-nav li {
    display: inline-block;
    border: none;
  }
  
  .site-nav a {
    padding: 0;
    margin-left: 2em;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }
  
  .site-nav--icon {
    display: none;
  }
    
    .leg_grd {
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 3em;
}
  
}