@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;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
/*body {
  height: 100vh;
  width: 100vw;
}*/
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  margin-top:60px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(../img/menu.png), #000;
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(../img/close.png), #000;
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  /*height: 100%;*/
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 200px;
}
.showcase .img-container
{
  height: 100%
}
.showcase .img-container img
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(7, 119, 184);
  mix-blend-mode: overlay;
}
.text
{
  z-index: 10;
  padding: 2em;
  width: 100%;
  /*backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.55);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);*/
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.2em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text ul 
{
  color: #fff;
  margin: 20px 20px;
  max-width: 700px;
}
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}

.text img {
  width:100%;
  max-width: 300px;
  height: auto;
}
.ptext a, .text a.plain {
  font-size: 1em;
  padding: 0;
  background:none;
  font-weight: 400;
  color:white;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0;
}
.ptext a:hover, .text a.plain:hover {
  letter-spacing: 0;
  color: #03a9f4; 
} 
.text a:hover
{
  letter-spacing: 6px;
}
.social
{
  position: absolute;
  z-index: 20;
  bottom: 40px;
  margin-top: auto; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: absolute;
  top: 40;
  right: 0;
  width: 200px;
  height: 100%;
  display: flex;
  padding: 40px;
  /*justify-content: center;
  align-items: center;*/
  background-image: linear-gradient(to top, rgba(0, 162, 255, 1), rgb(8, 8, 8));
}
.menu ul
{
  position: relative;
  margin-top:60px;
}
.menu ul li
{
  list-style: none;
  margin-bottom: 10px;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 2em;
  color: #fff;
}
.menu ul li a:hover
{
  color: #03a9f4; 
}
/* photos page */
.row {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  padding: 2em;
}

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

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

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


@media (max-width: 992px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
  .text p {
    font-size: 1.8em;
  }
  .social li a{
    margin-right: 40px;
    transform: none;
  }
  .social li a:hover{
    transform: none;
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  /* */
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
  .text p {
    font-size: 1.8em;
  }
  .social li a{
  margin-right: 20px;
  transform: none;
}
.social li a:hover{
  transform: none;
}
  .menu ul li a {
    font-size:3em;
  }
  /* Responsive layout - makes the two img columns stack on top of each other instead of next to each other */
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  /* */}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  /* */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  /* */
}
