
.footer-container {
    position: relative;
    z-index: 0;
    background-color: var(--footer-colour);
    overflow: hidden;
}

.sponsor-container{
    width:100%;
    height:15vh;
    border-color:var(--submenu-border);/*border color of traditional header.*/
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    min-height: 70px;
}



/*stuff for the sponsor logos*/
.logos{
    overflow: hidden;
    white-space: nowrap;
    align-items: center;
}
  
  
.logos-slide {
    display: inline-block;
    animation: 115s carousel infinite linear;
    padding: 20px 0;
}
  
.logos-slide img{
    height: 10vh;
    margin-right: 100px;
    transition: all 300ms linear;
    min-height: 30px;
}
  
.logos-slide img:hover{
    transform: scale(1.1);
}
  
@keyframes carousel {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}
  
  
  /* stuff for the socials*/
  
.no-transition {
    transition: none !important;
}

.footer-info-container{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


  
.footer-info{
    position: relative;
    height: 15vh;
    overflow: hidden;
    display: flex;
    min-height: 90px;
    margin-left: max(100px, 10%);
    margin-right: max(100px, 10%);
    margin-bottom: 10px;
}
  
#footer-logo{
    height: auto;
    width: 30%;
    margin-top: 30px;
    min-width: 200px;
}
  
.info-text{
    margin-top: 4%;
    align-self: center;
    font-size: max(min(1vw, 2.1vh), 0.8rem);
    color: #033e63;
}

/* .info-text-2{
    margin-top: 4%;
    align-self: center;
    font-size: max(min(0.9vw, 2vh), 0.8rem);
    color: var(--footer-text-colour);
} */
  
.footer-text-holder{
    display: flex;
    flex-direction: column;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}
  
/* @media (max-width: 900px) {
    .footer-text-holder:nth-child(even){
      display: none;
    }
}
@media (max-width: 600px) {
    .footer-text-holder:nth-child(odd){
      display: none;
    }
    .social-section{
        margin-left: auto;
    }
} */
  
.social-logos{
    display: flex;
    align-self: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

.social-logos a{
    height: 25%;
    display: flex;
    align-items: center; 
    justify-content: center;
    transition: .4s ease-in-out;
}



  .social-logos img{
    height: 3.2vh;
    margin: max(1vh, 3px);
    min-height: 15px;
    transition: .4s ease-in-out;
    filter: brightness(0) saturate(100%) invert(17%) sepia(49%) saturate(2335%) hue-rotate(180deg) brightness(89%) contrast(98%);
}
  
.social-logos a:hover img {
    transform: scale(1.1);
    animation: tilt 0.35s infinite;
}
  
@keyframes tilt {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-7deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(7deg); }
    100% { transform: rotate(0deg); }
}
  
.vertical-line{
    border-right: 1px solid #033e636c;
    height: 35%;
    align-self: center;
    margin-left: 5%;
    display: none;
}

.vertical-line-end{
    border-right: 1px solid #033e636c;
    height: 35%;
    align-self: center;
    margin-right: 5%;
    display: none;
}
  
.license{
    text-align: center;
    font-size: max(0.8vw, 13px);
    padding-bottom: 8px;
    color: #1c1c1c;
}

.horizontal-line{
    width: 450px;
    height: 1px;
    margin-top: 5px;
    margin-bottom: 10px;
    background-color: #033e636c;
    margin-left: auto;
    margin-right: auto;
}


.social-section{
    display: flex;
    flex-direction: column;
}


.spacer{
    position: relative;
    aspect-ratio: 900/100;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.layer1{
    position: relative;
    background-image: url(https://static.igem.wiki/teams/5427/assets/footer-wave.svg);
}

.page-up{
    display: flex;
    flex-direction: column;
    margin-left:20px;
    align-items: center;
    position: absolute;
    z-index: 100;
    color: var(--footer-text-colour)
}







@media (max-width: 870px) {/*So when the width of screen is 900px or less: change the following classes. USEFUL FOR MOBILE-VIEW*/
    .horizontal-line {
        display: none;
    }
    .vertical-line{
        display: none;
    }
    .vertical-line-end{
        display: none;
    }
}