body{
    height: 100%;
    /* background-image: linear-gradient(to right, #C8EEFF, #FFFFFF, #FFFFFF, #C8EEFF); */
    background-color: white;
}

/* == 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:150px;
    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;
}



.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;

}