@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;
}

/* Places the header in the top of the page */
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Places the toggle button inside the header and pushes it to the right side. */
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
}

.toggle.active
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
}

.showcase
{
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100dvh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  background-image: url('/images/group1.jpg');
  background-repeat: no-repeat; 
  background-size: cover;
  background-position: center;
  z-index: 2;
}

/* Adjusts the width of the menu when expanded */
.showcase.active
{
  right: 300px;
}


.showcase .logo
{
  position: relative;
  left: 50%;
  transform: translateX(-50%);

}

.showcase .logo img {
  max-width: 100%;
  opacity: 0.7;
  transition: 0.5s;
}

.showcase .logo:hover img {
  transition: 0.5s;
  opacity: 1;
}

.social
{
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.social ul {
  display: flex;
}

.social li
{
  list-style: none;
  margin-left: 5px;
  margin-right: 5px;
}

.social li img
{
  display: inline-block;
  filter: invert(1);
  opacity: 0.7;
  transform: scale(0.5);
  transition: 0.5s;
  cursor: pointer;
}

.social li img:hover
{
  opacity: 1;
  transform: scale(0.5) translateY(-15px);
}

.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; 
}

@media (max-width: 440px)
{
  .showcase
  {
    background-image: url('/images/group2.jpg');
    padding: 40px;
  }
  .showcase header
  {
    padding: 40px;
  }
  .showcase .logo img {
    max-width: 100%;
  }
}
@media (max-width: 1024px)
{

  .showcase
  {
    background-image: url('/images/group3.jpg');
    padding: 40px;
  }
  .showcase .logo img {
    max-width: 100%;
  }
}
