.color-facebook {
    color: white;
    transition: color 0.3s;
}

.color-facebook:hover {
    color: #1f4296;
}

.color-youtube {
    color: white;
    transition: color 0.3s;
}

.color-youtube:hover {
    color: #f80000;
}

.color-line {
    color: white;
    transition: color 0.3s;
}

.color-line:hover {
    color: #38c800;
}

.color-a {
    color: white;
}

.color-a:hover {
    color: #26b6a6;
}

.partner-branch-zoom {
    transition: transform .2s;
    height: 100%;
}

.partner-branch-zoom:hover {
    transform: scale(1.02);
}

* {box-sizing:border-box}

.mySlides-exclusive {display: none}

/* Slideshow container */
.slideshow-container-exclusive {
    width: auto;
    position: relative;
    margin: auto;
  }

.mySlides-partner {display: none}

/* Slideshow container */
.slideshow-container-partner {
    width: auto;
    position: relative;
    margin: auto;
  }
  
  /* Next & previous buttons */
  .prev-slide, .next-slide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next-slide {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover add a black background color hwith a little bit see-through */
  .prev-slide:hover, .next-slide:hover {
    background-color: #f3f3f3;
  }
  
  /* Fading animation */
  .fade-slide {
    -webkit-animation-name: fade-slide;
    -webkit-animation-duration: 1.5s;
    animation-name: fade-slide;
    animation-duration: 1.5s;
    display: flex;
}

.fade-slide:not(.show) {
    opacity: 1;
}
  
  @-webkit-keyframes fade-slide {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade-slide {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }