@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color:black;
  text-transform: uppercase;
  cursor: pointer;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(menu.png);
 
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(close.png);
  
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}

.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #03a9f4; 
}









.showcase
{
  position: absolute;
  right: 0px;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

*
.overlay
{
  left: 0;
  height: 100%;
  mix-blend-mode:normal ;
}

.overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.3); /* Black see-through */
  color: white; 
  width: 100%;
  transition: .10s ease;
  opacity:0;
  color: white;
  font-size: 1em;
  padding: 20px;
  text-align: center;
}


.container:hover .overlay {
  opacity: 1;
}
.text
{
  position: relative;
  z-index: 10;
}

.text p
{
  font-size: 1em;
  color: #fff;
  margin: 0px 0;
  font-weight: 400;
  max-width: 700px;
}

.social
{
  position: absolute;
  z-index: 10;
  bottom: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}



div.desc {
  padding: px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}
* {
  box-sizing: border-box;
}


.responsive {
  padding: 0 30px;
  float: left;
  width: 24.99999%;
}
.text h1
{

  font-size: 1.5em;

} 

.text h2
{
  position: relative;
  top: 80px;
  left: 60px;
  font-size: 5em;
  font-weight: 100;
  color:black;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
 
  font-size: 10em;
  font-weight: 100;
  color:black;
  line-height: 1em;
  text-transform: uppercase;
}

@media only screen and (max-width: 1400px) {
  .responsive {
    width: 49.99999%;
    margin: 30px 0;
  }
}


@media only screen and (max-width: 700px) {
  .responsive {
    width: 100%;
  }
}


.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0px;
  margin-top: 70px;
  margin-right: 0px;
  
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 30%;
  max-width: 50%;
  padding: 0 0px;
}

.column img {
  margin-top: 1px;
  margin-left: 1px;
  margin-right: 1px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

.container {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.image {
  display: block;
  width: 200%;
  height: auto;
}
