@keyframes fade{
  0% {opacity: 0; filter: grayscale(0%);}
  50% {filter: grayscale(100%);}
  100% {opacity: 1; filter: grayscale(0%);}
}




body {
  font-size: 16px;
  font-family: 'Inter', sans-serif; 
	line-height: 1.6;
	color: #2a2a2a;
  overflow-x: hidden;

}

h1 {
	font-size: 48px;
  line-height: 1.2;
}

p{
  margin: 12px 0 ;
}

a{
  color: inherit;
  text-decoration: none;
  transition: all .5s;
}

a:hover{
  color: black;
}

a.toggle-nav{
  position:  fixed;
  top: 0;
  right: 0;
  padding: 24px;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 24px;
  z-index: 10;
}
a.toggle-nav.open{
  color: #2b2b2b;
}

.info.open{
  opacity: 1;
  background-color: rgba(255,255,255,.5);
  transition: all .5s;
  transition-timing-function: ease-in-out;
  z-index: 3;
}

.info{
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  color: #4C4C4C;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: all .5s;
  transition-timing-function: ease-in-out;
}
.contact p{
  margin: 0;
}




main{
  position: relative;
  min-height: 100vh;
  transition: all .5s;
  transition-timing-function: ease-in-out;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  /* background-color: white; */
}

main.open{
  /* background-color: white; */
  transition: all .5s;
  transition-timing-function: ease-in-out;
  filter: blur(10px);
  transform: scale(0.8);
  overflow-y: hidden;
}

.brands{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.brand {
  height: 50px;
  margin-right: 24px;
}
.brand img{
  height: 100%;
}
.about{
  width: 70vmax;
  align-self: center;
}
.about p{
  font-size: 28px;
  text-align: center;
  line-height: 1.4em;
}
.contact{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.contact div{
  padding-right: 2em;
}

section{
  display: flex;
  align-items:  center;
  justify-content: center;
  height: 100vh;
}
section div{
  width:  70vw;
  height: 70vh;
}

@media only screen and (max-width: 800px) and (orientation : portrait) {
  .about p{
    font-size: 16px;
    text-align: center;
  }
  .about{
    width: 90vmin;
  }
}

@media only screen and (min-width: 1920px) {
  .about p{
    font-size: 48px;
    text-align: center;
    margin-bottom: 36px;
  }
  .about{
    width: 70vmax;
  }
  .info{
    padding: 48px;
  }
  a.toggle-nav.open{
    color: #ED8B00;
  }
}