body {
  height: 100%;
  background-color: #fff;
}

#footer {
  position: relative;
  z-index: 1;
}

.support_organisers_wrapper {
  position: relative;
  top: 13px;
  padding-bottom: 120px;
  z-index: 0;
}

.support_organisers_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  padding-bottom: 100px;
}

.support_organisers_table > div {
  display: inline-block;
  width: calc(50% - 10px);
  padding: 10px;
  margin: 5px;
}

.support_organisers_table > div.half_left,
.support_organisers_table > div.half_right {
  width: 50%;
  height: 190px;
}

.support_organisers_table > div.half_left a {
  width: 400px;
  float: right;
}

.support_organisers_table > div.half_right a {
  width: 280px;
  float: left;
}

.support_organisers_table > div > div:first-child {
  display: inline-block;
  width: 100%;
  height: 170px;
  text-align: center;
  padding: 5px;
  vertical-align: middle;
}

.support_organisers_table > div > div:first-child a {
  display: block;
  height: 100%;
  vertical-align: middle;
  position: relative;
}

.support_organisers_table > div > div:first-child a:hover {
  transform: scale(1.1) translateY(-7px);
  transition: all 0.3s ease;
}

.support_organisers_table > div > div:first-child a > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95%;
  max-height: 95%;
}

.support_organisers_table > div > div:last-child {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px;
  vertical-align: middle;
}

.image-container {
  width: 20%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container .image {
  
	/* max-width: 100%; */
	/* max-height: 100%; */
	
	height: 85px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.animatedFadeInUp,
.fadeInUp {
  opacity: 0;
}

.fadeInUp {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .support_organisers_table > div {
    display: block;
    margin: auto;
  }

  .support_organisers_table div:nth-child(4) {
    height: 80px;
  }
}

@media (min-width: 767px) {
  .support_organisers_table {
    justify-content: flex-start;
  }

  .image-container {
    margin: 0 25px !important;
  }
}

@media (max-width: 768px) {
  .support_organisers_table {
    flex-direction: column;
  }

  .image-container {
    width: 40% !important;
    text-align: center;
    position: relative;
  }

  .image-container:nth-of-type(1) {
    margin-top: 10px;
  }
}

/* General Section Styling */

.section-header {
  margin-bottom: 40px;
}

.section-header h1 {
  /* font-size: 2rem; */
  /* font-weight: 600; */
  /* color: #333; */
  position: relative;
}



/* Support Content Grid */
.support-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));  
  gap: 20px;   
  justify-items: center;
  align-items: center;
}

/* .support-content {
  display: grid;
  grid-template-columns: repeat(4, 200px); 
  gap: 20px;  
  justify-content: center; 
  margin: 0 auto;
  padding: 20px;
} */

.support-content .support-card:hover {
  transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .support-content {
    grid-template-columns: 1fr;
  }
}
