@media (max-width: 450px) {
  body {
    overflow-x: hidden;
  }

  .hero-section {
    height: 50vh;
  }

  .hero-video {
    object-fit: cover;
  }

  .nav-container {
    align-items: baseline;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    margin: 10px 0;
  }

  .nav-button {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.5);
    position: fixed;
    top: -2000px;
    right: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    transition: all 0.5s ease-in-out;
  }

  #nav_links.visible {
    top: 0px;
  }

  .nav-links a {
    padding-bottom: 40px;
  }

  .custom-cursor {
    display: none;
  }

  .main-cursor-item {
    display: none;
  }

  .main-cursor-item.pink {
    display: none;
  }

  .main-cursor-item span {
    display: none;
  }

  .cursor-item {
    display: none;
  }

  .info-section-wrapper {
    flex-direction: column;
  }

  .info-section-wrapper .info-wrapper .info {
    font-size: 30px;
    font-weight: 500;
  }

  .info-section-wrapper .info-logo {
    width: 35%;
    font-size: 120px;
    font-weight: 600;
  }

  .image-display-grid {
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
  }

  .grid-item-wrapper {
    width: 85%;
  }

  .grid-item-wrapper .grid-item-img {
    width: 100%;
    height: 20%;
  }

  .grid-item-wrapper .grid-item-img img {
    width: 100%;
    height: 100%;
  }

  .grid-item-wrapper .grid-item-about {
    text-align: center;
  }

  .trigger-section-wrapper .trigger-section-content h2 {
    font-size: 50px;
  }

  .trigger-section-wrapper .trigger-section-content p {
    font-size: 24px;
  }

  .trigger-section-wrapper .trigger-section-content button {
    width: 50%;
    margin-top: 60px;
    font-size: 20px;
  }

  .trigger-section-wrapper .trigger-section-video {
    margin-top: 10px;
    width: 100%;
  }

  .featured-news-section {
    margin: 100px 40px;
  }

  .featured-news-grid .featured-news-img img {
    max-width: 100%;
    width: 60%;
  }

  .featured-news-grid:hover img {
    transform: scale(1.2);
  }

  .featured-news-content > :nth-child(1) {
    font-size: 20px;
    width: 70%;
  }

  footer {
    background: var(--black-bg);
    color: var(--white-bg);
  }

  .footer-content-wrapper {
    flex-direction: column;
    gap: 50px;

    padding: 80px 40px;
  }

  .footer-content-wrapper .footer-logo {
    font-size: 80px;
  }

  .footer-content-wrapper .footer-content {
    font-size: 30px;
    width: 100%;
  }

  .footer-socials {
    flex-direction: column;
    align-items: center;
    gap: 50px;

    padding: 0 50px 10px 50px;
    font-size: 16px;
  }

  .footer-socials-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 40px;
  }

  /* FIXES HERE */
  .hero-section {
    height: 50vh;
  }

  .nav-container {
    padding: 20px;
    margin: 0;
  }

  .nav-links {
    width: 100%;
    padding: 80px 15px;
  }

  .info-section-wrapper {
    padding: 0 15px;
  }

  .image-display-grid {
    padding: 0 10px;
  }

  .grid-item-wrapper {
    width: 100%;
    margin: auto;
    padding: 10px;
  }

  .trigger-section {
    margin: 50px 15px;
  }

  .trigger-section-wrapper {
    flex-direction: column;
  }

  .trigger-section-wrapper .trigger-section-content {
    width: 100%;
  }

  .featured-news-grid {
    padding: 0 15px;
  }
}
