.parallax-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.parallax-grid > div {
    padding-bottom: 25%;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.parallax-grid > div:not(:last-child) {
    margin-right: 10px;
}

@media all and (max-width: 760px) {
    .parallax-grid > div {
        padding-bottom: 50% !important;
        grid-column-end: span 6 !important;
    }
}

.parallax-grid > div.colspan-2 {
    padding-bottom: 75%;
    grid-column-end: span 2;
}

.parallax-grid > div.colspan-3 {
    padding-bottom: 50%;
    grid-column-end: span 3;
}

.parallax-grid > div.colspan-4 {
    padding-bottom: 37.5%;
    grid-column-end: span 4;
}

.parallax-grid > div.colspan-6 {
    padding-bottom: 25%;
    grid-column-end: span 6;
}

.parallax-grid > div > div {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

.parallax-grid td:first-child > div {
    margin-left: 0;
}

.parallax-grid td:last-child > div {
    margin-right: 0;
}

.parallax-grid tr:first-child > td > div {
    margin-top: 0;
}

.parallax-grid tr:last-child > td > div {
    margin-bottom: 0;
}

.parallax-grid img {
    max-width: 100%;
}
/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
  }
  /* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: aqua;
    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 {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover {
    background-color: rgba(0,0,0,0.5);
  }
  .next:hover {
    background-color: rgba(0,0,0,0.5);
  }
  
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: none;
    transition: background-color 0.6s ease;
  }
  
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 4s;
    animation-name: fade;
    animation-duration: 4s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    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}
  }


/* Hover of More about us (main page) */
.blackToWhite > a{
    transition: 0.4s;
}
.blackToWhite > a:hover {
    color: rgb(255, 255, 255);
    opacity: 1;
}

#ot-widget-container6 {
  margin-left: 50%; 
  transform: translateX(-50%);
}
#ot-widget-container7 {
  margin-left: 50%; 
  transform: translateX(-50%);
} 