@font-face {
  font-family: "Graduate";
  src: url("/fonts/Graduate-Regular.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Graduate", sans-serif;
  background: white;
  color: #333;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 110px;
}

h3 {
  color: navy;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .desktop-only {
    display: flex !important;
  }
}

.box-style {
  padding: 15px;
  background-color: rgba(244, 244, 244, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.section-container {
  background-color: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  background-image: url("/images/Lakers_no_bbg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.logo img {
  max-height: 130px;
  margin-top: 30px;
  width: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  height: 100px;
  width: 100%;
  background: rgba(0, 51, 102, 0.9);
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(0) !important;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100px;
  background-image: url("/images/balls_x2_standing.png");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}
.navbar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar li {
  margin-left: 30px;
}

.navbar a {
  font-size: 1.5rem;
  font-weight: bolder;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  text-shadow: -1.5px -1.5px 0 navy, 1.5px -1.5px 0 navy, -1.5px 1.5px 0 navy,
    1.5px 1.5px 0 navy;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.navbar a:hover {
  font-size: 1.5rem;
  color: orange;
  transform: scale(1.1);
}

.hamburger {
  display: none;
}

.navbar ul.desktop {
  display: flex;
}

.navbar ul.mobile {
  display: block;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 51, 102, 0.9);
  z-index: 99;
  padding: 1rem;
}

.navbar ul.mobile.show {
  display: block;
  flex-direction: column;
  z-index: 999;
}
*/ .navbar li {
  margin: 10px 0;
}

.slideshow {
  margin-top: auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0);
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 90vh;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.slides {
  position: relative;
  width: 100%;
  height: 90%;
}

.slides img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slides img.active {
  opacity: 0.5;
}

.content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  text-align: center;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
}

.content-overlay h1 {
  font-size: 6rem;
  margin-bottom: 2rem;
  font-weight: bolder;
  color: white;
  text-shadow: -7px -7px 0 navy, 7px -7px 0 navy, -7px 7px 0 navy,
    7px 7px 0 navy;
  display: flex;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  60% {
    opacity: 1;
    transform: translateX(-10px);
  }
  70% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.word:nth-child(1) {
  animation-delay: 0.3s;
}

.word:nth-child(2) {
  animation-delay: 0.5s;
}

.word:nth-child(3) {
  animation-delay: 0.7s;
}

.word:nth-child(4) {
  animation-delay: 0.9s;
}

.content-overlay p {
  font-size: 2rem;
  color: white;

  text-shadow: 1px 1px 0px grey, -1px -1px 0px grey, 1px -1px 0px grey,
    -1px 1px 0px grey, 2px 2px 0px grey;
}

.sponsors-partners-home {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2rem auto 0;
  width: auto;
  max-width: none;
}

.sponsors-box,
.partners-box {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.sponsors-box h3,
.partners-box h3 {
  margin-bottom: 1rem;
  color: navy;
  font-size: 1rem;
  letter-spacing: 1px;
}
.logos-grid--sponsors,
.logos-grid--partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.logos-grid--sponsors img,
.logos-grid--partners img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.sponsors-section h3,
.partners-section h3 {
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}

.sponsors-row,
.partners-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.sponsors-column,
.partners-column {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 100px;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.partners-section {
  margin-left: 150px;
}

.sponsors-column:hover,
.partners-column:hover {
  transform: scale(1.05);
}

.sponsors-column img,
.partners-column img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.join-club-text {
  display: none;
}

#lakers100-scroll {
  overflow: hidden;
  padding: 10px 0;
}

.lakers100-row {
  display: flex;
  animation: scroll 10s linear infinite;
  white-space: nowrap;
  width: calc(100% * 2);
}

.lakers100-column {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #fff;
}

.lakers100-column img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.fade-section {
  padding: 20px 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: navy;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fade-section p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

#section {
  position: relative;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.article p {
  font-family: "lato-regular", sans-serif;
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: grey;
  text-align: left;
}

.section-container h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Freshman", sans-serif;
  color: #ffa500;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.article h2 {
  font-size: 1.8em;
  color: white;
  text-shadow: 1px 1px 0px navy, -1px -1px 0px navy, 1px -1px 0px navy,
    -1px 1px 0px navy, 2px 2px 0px orange, -2px -2px 0px orange,
    2px -2px 0px orange, -2px 2px 0px orange, 0 0 2px rgba(22, 33, 105, 0.2);
}

.article a {
  color: navy;
  transition: color 0.3s;
}

.article a:hover {
  color: orange;
}

/* pfl */

.game-day-calendar {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.game-day-calendar h3 {
  margin-bottom: 0.75em;
}
.game-fixture {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 0.75em;
}
.game-fixture .team {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.game-fixture .team img {
  width: 40px;
  height: auto;
}
.game-fixture .at-sign {
  font-family: "Roboto", sans-serif;
  color: grey;
  font-size: 2rem;
  font-weight: bold;
}
.game-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.5em;
}
.game-info p {
  margin: 0;
  font-size: 1.2rem;
  color: #555;
}
.game-info strong {
  color: #333;
}

.league-table tbody tr.team-name td {
  color: orangered;
}

.league-table {
  position: relative;
  background-color: transparent;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.league-table::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: -1;
}

.league-table table {
  width: 100%;
  border-collapse: collapse;
}
.league-table th,
.league-table td {
  font-weight: bold;
  border: 2px solid #ccc;
  padding: 8px;
  text-align: center;
}
.league-table th {
  background-color: #004080;
  color: white;
}
.league-table .team img {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}
.results-list .team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 140px;
  text-align: center;
}

.results-list li.result-match {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.results-list .team-block .logo {
  width: 80px;
  height: auto;
}

.results-list .team-block .team-name {
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
}

.results-list .score {
  font-size: 1.5em;
  font-weight: bold;
  color: red;
  white-space: nowrap;
}

/* sponsors / partners  */

.sponsor-item img {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.sponsor-item {
  flex: 0 0 200px;
  text-align: center;
}

.partners-title {
  text-align: center;
  font-size: 2em;
  color: navy;
}

.sponsors-container,
.partners-container,
.lakers100-container {
  margin-bottom: 30px;
}

.sponsors-header,
.partners-header,
.lakers100-header {
  font-size: 1.5em;
  color: orange;
  text-align: center;
  margin-bottom: 15px;
}

.sponsors-grid,
.partners-grid,
.lakers100-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.partner-item,
.lakers100-item {
  flex: 0 0 100px;
  text-align: center;
}

.partner-item img,
.lakers100-item img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.sponsor-item img:hover,
.partner-item img:hover,
.lakers100-item img:hover {
  transform: scale(1.05);
}

/* social */

.social-media {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
}

.social-media a {
  font-size: 30px;
  color: white;
  transition: transform 0.3s;
}

.social-media a.facebook {
  color: #3b5998;
}

.social-media a.instagram {
  color: #e1306c;
}

.social-media a.twitter {
  color: black;
}

.social-media a.youtube {
  color: #ff0000;
}
.social-media a.email {
  color: orange;
}

.social-media a.phone {
  color: orange;
}

.social-media a:hover {
  transform: scale(1.5);
}
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px 0;
}

.map,
.contact-details {
  flex: 1;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.contact-details {
  text-align: center;
  padding: 20px;
}

.contact-detail {
  margin: 10px 0;
}

.contact-form {
  margin-top: 50px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: navy;
  font-size: 1.8rem;
  text-align: center;
}

.input-group {
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: navy;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  display: block;
  width: 100%;
  background-color: navy;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: orange;
  transform: scale(1.05);
}

/* footer */

.footer-content {
  text-align: center;
  background-color: rgba(0, 51, 102, 0.9);
  color: white;
  padding: 20px;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content p:first-of-type {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 0 orange, -1px -1px 0 orange, 1px -1px 0 orange,
    -1px 1px 0 orange;
}

.footer-content p:last-of-type {
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.footer-content a {
  color: #f0ad4e;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* email */
.popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 5px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* video */

.highlights-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video {
  flex: 1 1 300px;
  max-width: 100%;
}

.video iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}

/* lakers 100 scroll */

#lakers100-scroll {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 50;
  overflow: hidden;
}

.lakers100-row {
  display: flex;
  animation: scroll 10s linear infinite;
  white-space: nowrap;
}

.lakers100-column {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  margin: 0 8px;
}

.lakers100-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .game {
    display: block;
  }
  .league-table {
    display: contents;
  }
  .league-table th {
    font-size: 0.5rem;
  }
  .league-table td {
    font-size: 0.8rem;
  }
  .sponsors-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
  }
  .map {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .map iframe {
    width: 100%;
    height: 300px;
    border: none;
  }
  .contact-details {
    padding: 15px;
  }
  .contact-detail strong {
    display: block;
    margin-bottom: 5px;
  }
  .contact-detail {
    text-align: center;
  }
  .contact-form {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: white;
    border-radius: 10px;
  }
  .contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: navy;
  }
  .input-group {
    margin: 0px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .contact-form button {
    width: 100%;
    background-color: navy;
    color: white;
    padding: 12px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    justify-content: center;
  }
  .contact-form button:hover {
    background-color: orange;
    transform: scale(1.05);
  }
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    max-width: 100%;
    transition: transform 0.3s ease;
    z-index: 10;
  }
  .navbar a {
    font-size: 1.5rem;
  }
  .navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999;
  }

  .navbar-content {
    overflow: visible !important;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: white;
    z-index: 9999 !important;
    position: relative;
    margin-left: 0;
    transition: transform 0.3s ease-in-out;
  }

  .navbar ul.desktop {
    display: none;
  }

  .navbar ul.mobile {
    display: none;
    position: fixed;
    text-align: left;
    top: 100%;
    background: rgba(0, 51, 102, 0.9);
    flex-direction: column;
    padding: 1rem 0;
    z-index: 10001;
  }

  .navbar ul.mobile li {
    margin: 0.5rem 0;
    text-align: center;
  }

  .navbar ul.mobile.show {
    display: flex !important;
    flex-direction: column;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }
  .slideshow {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
  }
  .slideshow-container {
    position: relative;
    height: auto;
    max-height: 90vh;
  }
  .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }
  .mySlides {
    min-width: 100%;
    min-height: 100vh;
    position: relative;
  }
  .mySlides img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    padding-bottom: 200px;
  }
  .content-overlay h1 {
    font-size: 5rem;
    flex-direction: column;
    color: white;
    text-shadow: -4px -4px 0 navy, 4px -4px 0 navy, -4px 4px 0 navy,
      4px 4px 0 navy;
  }
  .content-overlay p {
    font-size: 1.5rem;
    color: white;
  }

  #lakers100-scroll {
    display: block !important;
    padding: 6px 0;
  }
  .lakers100-column {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  #pfl2 .section-container {
    padding: 10px 5px;
  }
  .game-day-calendar {
    padding: 10px;
  }
  .game {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .game-info p {
    margin: 4px 0;
  }
  .league-table {
    overflow-x: auto;
  }
  .league-table table {
    width: auto;
    min-width: 100%;
  }
  .league-table th:nth-child(6),
  .league-table th:nth-child(7),
  .league-table th:nth-child(8),
  .league-table td:nth-child(6),
  .league-table td:nth-child(7),
  .league-table td:nth-child(8) {
    display: none;
  }

  .results-list .team-name {
    display: none;
  }

  .results-list li.result-match {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }

  .results-list .score,
  .results-list .logo {
    white-space: nowrap;
  }

  .desktop-only,
  .sponsors-partners-inline {
    display: none !important;
  }

  #home {
    position: relative;
  }

  .sponsors-partners-home {
    position: absolute !important;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0 1rem;
    width: auto !important;
  }
  .sponsors-box,
  .partners-box {
    flex: 0 1 auto !important;
    width: 100%;
    padding: 10px !important;
    background: #fff;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    text-align: center;
  }
  .sponsors-box h3,
  .partners-box h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
    color: navy;
  }
  .logos-grid--sponsors,
  .logos-grid--partners {
    display: flex !important;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem !important;
    width: auto !important;
  }
  .logos-grid--sponsors img,
  .logos-grid--partners img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
  }
}
