.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0087ca;
    cursor: pointer;
    user-select: none;
  }
  
  .hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #0087ca;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .hover-underline-animation.active {
    color: rgb(6, 55, 123);
    font-weight: 700;
  }

  img {
    max-width: 100%;
  }

  .slide-up {
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
  }
  
  .slide-up.slide-up-active {
    transform: translateY(0%);
  }

  #header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
  }

  #content {
    margin-top: 120px;
  }

  .gradient {
    background: linear-gradient(45deg,#0d4593 0,#0b56a0 51%,#105aae 140%);
  }

  .gradient-full {
    background: linear-gradient(90deg,#06377b 0,#06377b 51%,#105aae 85%);
  }

  .side-cut {
    clip-path: polygon(120px 0, 100% 0, 100% 100%, 0% 100%);
  }

  .zoom {
    transition: transform .2s; /* Animation */
    cursor: pointer;
    user-select: none;
  }

  .zoom:hover, .zoom.zoomed {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }