@media (max-width: 767px) {
  p {
    font-size: 1.2rem;
  }
  .container-header {
    background-image: none;
  }
  #headerTop {
    background: #253163;
  }
  #headerTop .fa-solid {
    color: #f1f1f1;
  }
  #headerTop a {
    text-decoration: none;
    color: #f1f1f1;
    padding-right: 1rem;
  }
  #headerTop .headerInfo {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
  }
  #headerSearch {
    width: 100%;
    padding-top: 1.5rem;
  }
  #headerSearch .mod-finder {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    height: auto;
  }
  #headerSearch .mod-finder__search {
    width: 100%;
  }
  #headerSearch .mod-finder__search .awesomplete {
    width: 80%;
  }
  #headerSearch input {
    padding: 0.3rem 0 0.3rem 0.3rem;
    border-radius: 0;
    min-width: 100%;
  }
  #headerMenu {
    padding: 1rem;
  }
  #headerMenu .fa-solid {
    font-size: 2rem;
    display: block;
  }
  #headerMenu ul {
    display: none;
  }
  #headerMenu ul li a {
    color: #253163;
  }
  #slideouter {
    position: absolute;
    border: 3px solid #613124;
    width: 300px;
    top: 0;
    right: 0;
    padding: 1.5rem;
    background: #fff;
    z-index: 4;
    border-radius: 1rem;
    visibility: hidden;
  }
  #slideouter #close {
    cursor: pointer;
    float: right;
    font-size: 2.5rem;
    color: #613124;
  }
  #slideouter ul li {
    margin-bottom: 0.5rem;
  }
  #slideouter ul li span {
    font-size: 1.5rem;
  }
  #slideouter ul li a {
    color: #446124;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1rem;
  }
  #slideouter.slideouterVisible {
    visibility: visible;
    transition: all 1s;
  }
  #homeImage {
    width: 100%;
  }
  #homeImage #homeParallax {
    height: 250px;
  }
  #homeImage #homeParallax .seoPage {
    z-index: 3;
    position: absolute;
    left: 0;
    top: 3rem;
    background: transparent;
    padding: 3rem;
    width: 100%;
  }
  .parallax-container {
    position: relative;
    overflow: hidden;
    min-height: 200px;
  }
  .parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  .parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .seoWhite {
    width: 100%;
  }
  .seoWhite p {
    font-size: 2rem;
    font-style: italic;
    animation-duration: 3s;
    animation-name: slidein;
    opacity: 0;
    transform: translateX(-100%);
    animation: entrar 2s ease-out forwards;
  }
  .seoWhite p strong {
    color: #e0df15;
  }
  @keyframes entrar {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
      text-align: center;
    }
  }
}