body{
    height: 100%;
    /* background-image: linear-gradient(to right, #C8EEFF, #FFFFFF, #FFFFFF, #C8EEFF); */
    background-color: white;
}

.support_organisers_table {
    
    display: flex;   
    flex-wrap : wrap;
    justify-content: space-between
  }
  
.image-container {
    width: 20%;      
    margin-bottom: 20px; 
    display: flex;
    justify-content: center;
    align-items: center
  }
.image {
    
    
  }
/* == fade up == */
@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 {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


/* //////////////////////////////////////// */


.support_organisers_wrapper{
    position: relative;
    top:30px;
    padding-bottom: 120px;

    /* 2/6/2024 */
    z-index: 0;
}

.support_organisers_table {
    width: 80%;
    margin: auto;
    padding-bottom: 100px;
}


.support_organisers_table>div {
    display: inline-block;
    width: calc(50% - 10px);
    height: auto;
    padding: 10px;
    margin: 5px;
}
.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;
    /* background-color: #fff;
    padding: 10px;
    border: 2px solid #c2c2c2; */
}

.support_organisers_table>div>div:first-child>a:hover {
    transform: translateY(-7px);
    transition: all 0.3s ease 0s;
    -ms-transform: scale(1); /* IE 9 */
    -webkit-transform: scale(1); /* Safari 3-8 */
    transform: scale(1.1);
}

.support_organisers_table>div>div:first-child>a>img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    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;
}
.support_organisers_table>div.half_left {
    width: 50%;
    height: 190px;
}
.support_organisers_table>div.half_left a {
    width: 400px;
    float: right;
}
.support_organisers_table>div.half_right {
    width: 50%;
    height: 190px;
}
.support_organisers_table>div.half_right a {
    width: 280px;
    float: left;
}

.support_organisers_wrapper h1{
    color:#0248A8;
    font-weight: 700;
    font-size: 33px;
    font-family:微軟正黑體 ;
}



.support_organisers_table div:nth-child(4){
    height: 30px;
}

/* .support_organisers_table div:nth-child(10) img:nth-child(1){
    background-color: red;
    height: 80px;
} */

@media screen and (max-width:600px){
    .support_organisers_table>div{
        display: block;
        margin: auto;
    }

    .support_organisers_table div:nth-child(4) {
        
        height: 80px;
    }
}

/* sunny vision 2/6/2024 */

#footer { 

    position: relative;
    z-index: 1;

}


/* added by Ricky */

.support_organisers_wrapper {
    top: 13px;
}

.support_organisers_wrapper h1 {
    color: rgb(2, 72, 168);
}

.support_organisers_table div:nth-child(4){
    height: auto;
}


@media (min-width:767px) {
    .support_organisers_table{
        justify-content: flex-start;
    }

    .image-container{
        margin: 0px 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;
    }
}






