p {
  margin: 0;
  padding: 0;
}

.content-item {
  background: url(landeye.praxis-logo.jpg);
  height: 300px;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  width: 400px;
  .overlay {
    border-bottom: 100px solid #e8c63d;
    border-left: 100px solid transparent;
    bottom: 0;
    height: 0;
    opacity: 0.95;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    transition: (all 0.5s ease-out);
    width: 0;
  }
  &:hover .overlay {
    border-bottom: 800px solid #e8c63d; 
    border-left: 800px solid transparent;
    transition: (all 0.5s ease-out);
  }
  .corner-overlay-content {
    bottom: 15px;
    color: #333;
    position: absolute;
    right: 15px;
    transition: (all 0.5s ease-out);
  }
  &:hover .corner-overlay-content {
    opacity: 0;
    transition: (all 0.5s ease-out);
  }
  .overlay-content {
    bottom: 0;
    color: #333;
    left: 0;
    opacity: 0;
    padding: 30px;
    position: absolute;
    right: 0;
    top: 0;
    transition: (all 0.3s ease-out);
    h2 {
      border-bottom: 1px solid #333;
      padding: 0 0 12px;
    }
  }
  &:hover .overlay-content {
    opacity: 1;
    transition: (all 0.3s ease-out);
    transition-delay: (0.3s);
  }
}

body {
  display: grid;
  height: 100vh;
  margin: 0;
  place-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  background-color: #fff;
}

.instagram {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.btn {
  cursor: pointer;
  font-size:16px;
  line-height: 45px;
  margin: 0 0 2em;
  max-width: 160px; 
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  color:#333;
}

.btn-1 {
  background: #FFFFFF;
  font-weight: 100;
  
  svg {
    height: 45px;
    left: 0;
    position: absolute;
    width: 105%;

  }
  
  rect {
    fill: none;
    stroke: #e8c63d;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
  }
}

.btn-1:hover {
  background: rgba(#FFFFFF, 0);
  color: #e8c63d;
  text-decoration: none;
  
  rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.disclaimer {
  font-size: 10px;
  padding: 20px;
}