@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;
}
.mySlides {display:none;}
/* Places the header in the top of the page */
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  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
{
  background: url(/images/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  cursor: pointer;
}

.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-color: black;
  z-index: 2;
}


.carousel {
  width: 100%;
  height: 100%;
  position: inherit;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.portrait {
  display: none
}

.slide > img {
  inset: 0;
  display: block;
  width: 100%;
  max-height: 100dvh;
  object-fit: cover;
  object-position: center;
}
.slide picture source {
  inset: 0;
  display: block;
  width: 100%;
  max-height: 100dvh;
  object-fit: cover;
  object-position: center;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  bottom: 20px;
  color: #ffffff80;
  cursor: pointer;
  border-radius: .25rem;
  padding: 0 .5rem;
}

.carousel-button:hover,
.carousel-button:focus {
  color: white;
}

.carousel-button:focus {
  outline: 1px solid black;
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}



/* 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: 1px;
  margin-right: 1px;
}

.social li img
{
  display: inline-block;
  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; 
}

.pause-button {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
  z-index: 1000;
  background-color: transparent;
}

.pause-button img:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px)
{

  .showcase
  {
    background-image: url('/images/group2.jpg');
    padding: 40px;
  }
  .showcase header
  {
    padding: 40px;
  }
  .landscape {
    display: none;
  }
  .portrait {
    display: unset;
  }
}

@media (orientation: landscape) and (max-width: 800px)
{
  .showcase header
  {
    padding: 20px;
  }
}