body {
    font-family: 'Open Sans', serif;
    padding-top: 54px;
    color: #868e96;
    margin: auto;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101,0,94,0.2) 3%, rgba(60,132,206,0.2) 38%, rgba(48,238,226,0.2) 68%, rgba(68, 1, 253, 0.2) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
  }
  
  @media (min-width: 992px) {
    body {
      padding-top: 0;
      padding-left: 17rem;
    }
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Saira Extra Condensed', serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #343a40;
  }
  
  h1 {
    font-size: 6rem;
    line-height: 5.5rem;
  }
  
  h2 {
    font-size: 3.5rem;
  }
  
  .subheading {
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Saira Extra Condensed', serif;
    font-size: 1.35rem;
  }
  
  .list-social-icons a {
    color: #495057;
  }
  
  .list-social-icons a:hover {
    color: #2471A3;
  }
  
  .list-social-icons a .fa-lg {
    font-size: 1.75rem;
  }
  
  .list-icons {
    font-size: 3rem;
  }
  
  .list-icons .list-inline-item i:hover {
    color: #2471A3;
  }
  
  #sideNav .navbar-nav .nav-item .nav-link {
    font-weight: 600;
    text-transform: uppercase;
  }
  
  @media (min-width: 992px) {
    #sideNav {
      text-align: center;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      width: 17rem;
      height: 100vh;
    }
    #sideNav .navbar-brand {
      display: flex;
      margin: auto auto 0;
      padding: 0.5rem;
    }
    #sideNav .navbar-brand .img-profile {
      max-width: 10rem;
      max-height: 10rem;
      border: 0.5rem solid rgba(255, 255, 255, 0.2);
    }
    #sideNav .navbar-collapse {
      display: flex;
      align-items: flex-start;
      flex-grow: 0;
      width: 100%;
      margin-bottom: auto;
    }
    #sideNav .navbar-collapse .navbar-nav {
      flex-direction: column;
      width: 100%;
    }
    #sideNav .navbar-collapse .navbar-nav .nav-item {
      display: block;
    }
    #sideNav .navbar-collapse .navbar-nav .nav-item .nav-link {
      display: block;
    }
  }
  
  section.resume-section {
    border-bottom: 1px solid #dee2e6;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  
  section.resume-section .resume-item .resume-date {
    min-width: none;
  }
  
  @media (min-width: 768px) {
    section.resume-section {
      min-height: 100vh;
    }
    section.resume-section .resume-item .resume-date {
      min-width: 18rem;
    }
  }
  
  @media (min-width: 992px) {
    section.resume-section {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }
  }
  
  .bg-primary {
    background-color: #2471A3!important;
  }
  
  .text-primary {
    color: #2471A3 !important;
  }
  
  a {
    color: #2471A3;
  }
  
  a:hover, a:focus, a:active {
    color: #276f82;
  }

  .my-icon:hover{
    background-color: #2471A3!important;
  }


/*

    WAVE

*/


@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}



/*

Dots moving

*/

  .dot-animate {
      font-size: 50px;
  }

  ul.dot-animate-ul {
      list-style: none;
      height: 100vh;
      max-height: 800px;
      min-height: 400px;
      overflow: hidden;
      text-align: center;
      perspective: 900px;
      margin-top: 0;
  }

  li.dot-animate-li {
      position: absolute;
      top: 0;
      width: 100%;
      font-size: 23px;
      font-weight: bold;
      transform: translateY(100vh);
      animation: animate 5s linear infinite;
  }

  @keyframes animate {
      0% {
          transform: rotateY(90deg) translateY(105vh) translateX(1vw) rotate(0deg);
      }

      50% {
          transform: rotateY(0deg) translateY(50vh) rotate(0deg);
      }

      100% {
          transform: rotateY(-90deg) translateY(-5vh) translateX(-1vw) rotate(0deg);
      }
  }

  li:has(> p.dot-animate):nth-child(1) {
      animation-delay: 0.3s;
      right: 1vw;
  }

  li:has(> p.dot-animate):nth-last-child(1) {
      right: 1vw;
  }

  li:has(> p.dot-animate):nth-child(2) {
      animation-delay: 0.6s;
      right: 2vw;
  }

  li:has(> p.dot-animate):nth-last-child(2) {
      right: 2vw;
  }

  li:has(> p.dot-animate):nth-child(3) {
      animation-delay: 1s;
      right: 3vw;
  }

  li:has(> p.dot-animate):nth-last-child(3) {
      right: 3vw;
  }

  li:has(> p.dot-animate):nth-child(4) {
      animation-delay: 1.3s;
      right: 4vw;
  }

  li:has(> p.dot-animate):nth-last-child(4) {
      right: 4vw;
  }

  li:has(> p.dot-animate):nth-child(5) {
      animation-delay: 1.6s;
      right: 5vw;
  }

  li:has(> p.dot-animate):nth-last-child(5) {
      right: 5vw;
  }

  li:has(> p.dot-animate):nth-child(6) {
      animation-delay: 2s;
      right: 6vw;
  }

  li:has(> p.dot-animate):nth-last-child(6) {
      right: 6vw;
  }

  li:has(> p.dot-animate):nth-child(7) {
      animation-delay: 2.3s;
      right: 7vw;
  }

  li:has(> p.dot-animate):nth-last-child(7) {
      right: 7vw;
  }

  li:has(> p.dot-animate):nth-child(8) {
      animation-delay: 2.6s;
      right: 8vw;
  }

  li:has(> p.dot-animate):nth-last-child(8) {
      right: 8vw;
  }

  li:has(> p.dot-animate):nth-child(9) {
      animation-delay: 3s;
  }

  li:has(> p.dot-animate):nth-child(10) {
      animation-delay: 3.3s;
  }

  li:has(> p.dot-animate):nth-child(11) {
      animation-delay: 3.6s;
  }

  li:has(> p.dot-animate):nth-child(12) {
      animation-delay: 4s;
  }

  li:has(> p.dot-animate):nth-child(13) {
      animation-delay: 4.3s;
  }

  li:has(> p.dot-animate):nth-child(14) {
      animation-delay: 4.6s;
  }

  li:has(> p.dot-animate):nth-child(15) {
      animation-delay: 5s;
  }