@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,600');
:root {
  --background:  rgb(255, 255, 255);;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
    margin: 0;
    background: #222;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
}
.content {
  height: 200vh;
  background-image: url(//unsplash.it/1000/1000);
  background-color: #333;
  background-blend-mode: multiply;
  background-size: cover;
  display: grid;
  


  place-items: center;
}
/* navigation styles start here */
header {
  background: var(--background);
  background: #fff; /* for ie*/
  text-align: center;
  position: fixed;
  z-index: 999;
  width: 100%;
  
}
.nav-toggle {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}
.nav-toggle:focus ~ .nav-toggle-label {
  outline: 3px solid rgba(lightblue, .75);
}
.nav-toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 1em;
  height: 100%;
  display: flex;
  align-items: center;
  
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: BLACK;
  height: 2px;
  width: 2em;
  border-radius: 2px;
  position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}
.nav-toggle-label span::before {
  bottom: 7px;
}
.nav-toggle-label span::after {
  top: 7px;
}
nav {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background: var(--background);
  width: 100%;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 400ms ease-in-out;
  
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  margin-bottom: 1em;
  margin-left: 1em;
}
nav a {
  color: #444;
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
nav a:hover {
  color: #000;
}
.nav-toggle:checked ~ nav {
  transform: scale(1,1);
}
.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}
.pic{
  border-radius: 50%;
  width: 200px;
}
.about{
    background-image:url("images/about_bkg.jpg"); 
    background-repeat: no-repeat;
    background-size: cover;
}
.about,h2,h1{
  display: grid;
  place-items: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}
.about, ol{
  list-style: none;
  font-family: cursive;
}
.about,li{
  text-align: center;
}
.about{
  font-family:  Poppins,Helvetica,Arial,Lucida,sans-serif;
  font-weight: 500px;
  font-size: 20px ;
  
}
.atalogo{
  width: 100px;
}
.services{
  line-height: 1.8;

}

footer{
  color:white;
  font-size:10px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .nav-toggle-label {
    display: none;
  }
  header {
    display: flex;
 justify-content: space-between;
 padding: 0 8vw;
  
  }
  
 
  
  nav {
     all: unset; /* this causes issues with Edge, since it's unsupported */
    
    /*  Edge support */
    position: relative;
    text-align: left;
    transition: none;
    transform: scale(1,1);
    background: none;
    top: initial;
    left: initial;
    /* end Edge support stuff */
    
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  
  nav ul {
    display: flex;
    /*margin-top:-20px;*/
   
  }
  
  nav li {
    margin-left: 3em;
    margin-bottom: 0;
  }
  
  nav a {
    opacity: 1;
    position: relative;
  }
  
  nav a::before {
    content: '';
    display: block;
    height: 5px;
    background: black;
    position: absolute;
    top: -.75em;
    left: 0;
    right: 0;
    transform: scale(0, 1);
    transition: transform ease-in-out 250ms;
  }
  
  nav a:hover::before {
    transform: scale(1,1);
  }
  
.about{
    background-image:url("images/about_bkg.jpg"); 
    background-repeat: no-repeat;
    background-size: cover;
}
.about,h2,h1{
  display: grid;
  place-items: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.about, ol{
  list-style: none;
  font-family: cursive;
}
.about,li{
  text-align: center;
}
.services,span{
  text-align: left;

}
.services{
  margin-left: 200px;
}
.services.h1{
  text-align: center!important;
}
}  
 