/*

    CSS3 Page Transition
    --------------------------------------------------

    Table of Contents
    --------------------------------------------------
    :: 1.0 - #Utilities
    :: 1.1 - #Scaffolding
    :: 1.2 - #Modifiers
    :: 1.3 - #Square
    :: 1.4 - #Button
    :: 1.5 - #Type

*/
* {
  box-sizing: border-box;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.hide {
  display: none;
}
html,
body {
  height: 100%;
}
body {
  background-color: white;
  margin: 0;
  color: #ffff;
  transition: background-color 1s cubic-bezier;
  transform: perspective(600px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  will-change: transform;
  border-top: 5px solid #000000;
  border-bottom: 5px solid #000000;

}

.is-open {
  color: white;
  background-color: #ffff;
}
.is-open .square {
  padding: 0;
}
.is-open .card {
  transform: scale(1);
}
.is-open .card:hover {
  mix-blend-mode: normal;
  opacity: 1;
  filter: grayscale(0);
}
.is-open .copy-wrap {
  transform: translate3d(0, -100%, 0);
}
.is-open .title {
  color: white;
  mix-blend-mode: normal;
}
.is-open .btn:hover {
  background-color: #ffff;
  color: white;
}
.is-open .btn:hover .btn-icon {
  fill: white;
}
.square {
  cursor: pointer;
  border: solid 0px transparent;
  padding: 0px;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  top: 50%;
  left: 50%;

  background-clip: content-box;
  background-size: 400% 400%;
  border-color: currentColor;
  -webkit-animation: partytime 7s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
          animation: partytime 7s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
  transition: padding 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
@-webkit-keyframes partytime {
  0% {
    background-position: 83% 0%;
  }
  50% {
    background-position: 18% 100%;
  }
  100% {
    background-position: 83% 0%;
  }
}
@keyframes partytime {
  0% {
    background-position: 83% 0%;
  }
  50% {
    background-position: 18% 100%;
  }
  100% {
    background-position: 83% 0%;
  }
}
.card {
  width: 100%;
  height: 50%;
  background-color: transparent;
  transition: transform 1.25s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 1.25s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 1.25s cubic-bezier(0.215, 0.61, 0.355, 1), filter 1.25s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 1.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: perspective(1600px) translate3d(0, 3, 0) scale(0.5);
  will-change: transform;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 400;
  
}
.card:hover {
  box-shadow: 0 0 75px rgba(0, 0, 0, 0.2), 0 5px 20px rgba(0, 0, 0, 0.2);
  mix-blend-mode: hard-light;
  filter: grayscale(100%);
  opacity: 0.8;
  
}
.card-title-wrap {
  transform: perspective(1600px) translate3d(0, 0, 100px);
  position: relative;
  z-index: 200;
  transition: transform 0.25s linear;
}
.card-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url(https://i.imgur.com/UmVPaPa.jpg);
  will-change: transform;
  transform: perspective(600px);
  z-index: 100;
  
}
.btn {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.25s ease-in-out;
  border: 0;
  background-color: black;
  padding: 12px 24px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  mix-blend-mode: overlay;
  box-shadow: white;
  will-change: transform;
  cursor: pointer;
  z-index: 900;
  margin-top: 60px;
}
.btn:active,
.btn:focus {
  outline: none;
}
.btn:hover {
  background-color: white;
  mix-blend-mode: normal;
  color: #fff;
}
.btn:hover .btn-icon {
  fill: black;
}
.btn-icon {
  fill: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.25s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.title {
  font-size: 120px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 900;
  overflow: hidden;
  color: black;
  mix-blend-mode: overlay;
}
.name,
.copyright {
  text-transform: uppercase;
  color: currentColor;
  position: absolute;
  left: 50%;
  margin: 0;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: translate3d(-50%, 0, 0);
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4em;
}
.name {
  top: 0px;
}
.copy-wrap {
  display: block;
  transition: all 0.7s 0s ease-in-out;
  position: relative;
}
.copyright {
  bottom: 20px;
  overflow: hidden;
  height: 72px;
  line-height: 60px;
  position: fixed;
}
.copyright .copy-wrap:before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  top: 505%;
  transform: translate3d(-50%, -50%, 0);
}
.responsive {
  width: 100%;
  max-width: 400px;
  height: 120px;
  position:inherit;
  padding-top: 0px;
  padding-bottom: 30px;

}

.line{
    width: 100%;
    height: 1%;
    border-bottom: 5px solid grey;
    position: relative;
	bottom: 65px;
    }
	
.line1{
    width: 100%;
    height: 1%;
    border-bottom: 5px solid grey;
    position: absolute;
	bottom: 30px;
    }
	
	