@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 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-image: url('/images/group1.jpg');
  background-repeat: no-repeat; 
  background-size: cover;
  background-attachment: fixed;
  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: 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; 
}

.info {
  position: absolute;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2.9px);
  backdrop-filter: blur(2.9px);
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  z-index: 3;
}


#appt-iframe {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 0;
  right: 5%;
  bottom: 5%;
  opacity: 85%;
  border: 4px thick #e8e5e5;
  -moz-border-radius: 10px;
  border-radius: 10px;
}




@media (orientation: portrait) and (max-width: 400px)
{

  .showcase
  {
    background-image: url('/images/group2.jpg');
    padding: 40px;
  }
  .showcase header
  {
    padding: 40px;
  }
  
  #appt-iframe {
    position: absolute;
    width: 80%;
    height: 90%;
    border: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 85%;
    border: 4px thick #e8e5e5;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

}

@media (orientation: landscape) and (max-width: 800px)
{
  .showcase header
  {
    padding: 20px;
  }
  .info h1 {
    padding-top: 2%;
    padding-left: 8%;
  }
  table {
    padding-top: 1%;
    padding-left: 4%;
  }
  td{
    padding-top: 0;
  }
  #map {
    width: 40%;
  }
}