/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 8px 0;
    position: absolute;
    background: #000000;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header-top ul {
    text-align: right;
    margin-right: 5px;
  }
  
  .header-top ul li {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
  }
  
  .header-top ul li a {
    color: #fff;
  }
  
  @media (max-width: 960px) {
    .header-top {
      display: none;
    }
  }
  
  
  #header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
  }
  
  #header #logo h1 a, #header #logo h1 a:hover {
    color: #fff;
    padding-left: 10px;
    border-left: 4px solid #eec214;
  }
  
  #header #logo img {
    padding: 0;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    #header #logo h1 {
      font-size: 28px;
    }
    #header #logo img {
      max-height: 40px;
    }
  }

  h2 {
    margin: 20px auto 80px;
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  
  details {
    width: 100%;
    min-height: 5px;
    max-width: 1200px;
    padding: 25px 50px 25px 25px;
    margin: 0 auto;
    position: relative;
    font-size: 22px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 15px;
    box-sizing: border-box;
    transition: all .3s;
  }
  
  details + details {
    margin-top: 20px;
  }
  
  details[open] {
    min-height: 50px;
    background-color: #f6f7f8;
    box-shadow: 2px 2px 20px rgba(0,0,0,.2);
  }
  
  details p {
    color: #96999d;
    font-weight: 300;
  }
  
  summary {
    font-weight: 500;
    cursor: pointer;
  }
  
  /* removed outline as for codepen only
    don't remove focus on elements
    it's bad accessibility
    don't be _that_ guy
  */
  summary:focus {
    outline: none;
  }
  
  summary::-webkit-details-marker {
    display: none
  }
  
  summary::after {
    padding: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    color: #eec214;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-style: normal;
    font-variant-caps: normal;
    -webkit-font-variant-ligatures: normal;
            font-variant-ligatures: normal;
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f078";
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    transition: .3s ease;
  }
  
  details[open] summary::after {
    content: "\f057";
    font-size: 30px;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: .3s ease;
  }
  
  details[open] summary:hover::after {
    -webkit-animation: pulse 1s ease;
            animation: pulse 1s ease;
  }
  
  @-webkit-keyframes pulse {
    25% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
    50% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    75% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  
  @keyframes pulse {
    25% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
    50% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    75% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }