#sliderAreas {
  font-family: Arial;
  margin: 0;
  line-height: normal;
}

#sliderAreas * {
  box-sizing: border-box;
}

#sliderAreas img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
#sliderAreas .container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

#sliderAreas .slides-container {
  position: relative;
  width: 100%;
  padding-top: 33.3333%;
  overflow: hidden;
}

/* Hide the images by default */
#sliderAreas .slideAreas {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
#sliderAreas .cursor {
  cursor: pointer;
}

/* Next & previous buttons */
#sliderAreas .prev,
#sliderAreas .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  margin-top: -30px;
}

/* Position the "next button" to the right */
#sliderAreas .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#sliderAreas .prev:hover,
#sliderAreas .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Slide text */
#sliderAreas .slideOverlay {
  color: #f2f2f2;
  
  font-weight: 400;
  position: absolute;
  top: 0;
  width: 50%;
  padding: 7% 8.5% 5.6% 8.5%;
  height: 100%;
  background-color: rgba(0, 114, 194, 0.7); /* #0072c2b3; */
  background-color: #0072c2b3;
}

#sliderAreas .slideOverlay {
  font-size: 7px;
}
@media screen and (min-width: 320px) {
  #sliderAreas .slideOverlay {
    font-size: calc(7px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1280px) {
  #sliderAreas .slideOverlay {
    font-size: 16px;
  }
}

#sliderAreas h2 {
	margin-top: 0;
	color: #f2f2f2;
}

/* Container for image text */
#sliderAreas .caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

#sliderAreas .rowAreasEx {
  width: 100%;
  padding-top: 12.5%;
  position: relative;
}

#sliderAreas .rowAreas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#sliderAreas .rowAreas:after {
  content: "";
  display: table;
  clear: both;
}

#sliderAreas #virtualRowAreas {
	width: calc( 100% *4); //4 rows by 8 as max bufor
}

/* 8 columns side by side */
#sliderAreas .columnAreas {
  float: left;
  width: calc( 100% /8);
  height: 100%;
  padding:0 calc( 100% /64);
  text-align: center;
  cursor: pointer;
  transition: transform 1s;
  transition-timing-function: ease-in-out;
}

#sliderAreas #virtualRowAreas .columnAreas {
  
  width: calc( 100% /(8 * 4));
  padding:0 calc( 100% /(8 * 7.99999 * 4));
  
}


#sliderAreas .columnAreas.reorder {
  transition: transform 0s;
}

/* Add a transparency effect for thumnbail images */

#sliderAreas .active {
  background-color: #d3dce2;
}

#sliderAreas .columnAreas:hover {
  background-color: #e6eaed;
}

#sliderAreas .demo {
	opacity: 0.6;
	width: 50%;
	margin: auto;
	position: relative;
	top: 70%;
	transform: translateY(-55%);
}

#sliderAreas .tail-icon, #sliderAreas .tail-text {
  height: 50%;
}

#sliderAreas .tail-text {
  padding-top: 13%;
  color: #0072c2;
}

#sliderAreas .tail-text {
  font-size: 4px;
}
@media screen and (min-width: 320px) {
  #sliderAreas .tail-text {
    font-size: calc(4px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1280px) {
  #sliderAreas .tail-text {
    font-size: 12px;
  }
}

#sliderAreas .active,
#sliderAreas .columnAreas:hover .demo {
  opacity: 1;
}

#sliderAreas .slideAreas {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#sliderAreas .readMoreButton {
    
    background: #e6e6e6;
    width: fit-content;
	width: -moz-fit-content;
	
    padding: 10px 17px 10px 17px;
    border-radius: 40px;
    margin-top: 4%;
    font-size: 100%;
	
	position: absolute;
    bottom: 10%;
}

#sliderAreas .readMoreButton a {
	text-decoration: none;
	color: #0072c2;
}

#sliderAreas .toggleButton {
  background: #0072c2;
  width: fit-content;
  width: -moz-fit-content;
  padding: 14px 30px 14px 30px;
  border-radius: 40px;
  margin: 50px auto;
  text-align: center;
  cursor: pointer;
}

#sliderAreas .toggleButton a {
	color: white;
  }

/* Fading animation */
#sliderAreas .fadein {
  -webkit-animation-name: fadeinAreas;
  -webkit-animation-duration: 2.0s;
  animation-name: fadeinAreas;
  animation-duration: 2.0s;
}

@-webkit-keyframes fadeinAreas {
  from {opacity: 0}
  to {opacity: 1}
}

@keyframes fadeinAreas {
  from {opacity: 0}
  to {opacity: 1}
}

#sliderAreas .fadeout {
  -webkit-animation-name: fadeoutAreas;
  -webkit-animation-duration: 0.5s;
  animation-name: fadeoutAreas;
  animation-duration: 0.5s;
}

@-webkit-keyframes fadeoutAreas {
  from {opacity: 1}
  to {opacity: 0}
}

@keyframes fadeoutAreas {
  from {opacity: 1}
  to {opacity: 0}
}

/* *************************************** */


#sliderTech {
  font-family: Arial;
  margin: 0;
  line-height: normal;
}

#sliderTech * {
  box-sizing: border-box;
}

#sliderTech img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
#sliderTech .container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

#sliderTech .slides-container {
  position: relative;
  width: 100%;
  padding-top: 33.3333%;
  overflow: hidden;
}

/* Hide the images by default */
#sliderTech .slideTech {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
#sliderTech .cursor {
  cursor: pointer;
}

/* Next & previous buttons */
#sliderTech .prev,
#sliderTech .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  margin-top: -30px;
}

/* Position the "next button" to the right */
#sliderTech .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#sliderTech .prev:hover,
#sliderTech .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Slide text */
#sliderTech .slideOverlay {
  color: #f2f2f2;
  
  font-weight: 400;
  position: absolute;
  top: 0;
  width: 50%;
  padding: 7% 8.5% 5.6% 8.5%;
  height: 100%;
  background-color: rgba(37, 166, 135, 0.7); /* #25a687b3; */
  background-color: #25a687b3;
}

#sliderTech .slideOverlay {
  font-size: 7px;
}
@media screen and (min-width: 320px) {
  #sliderTech .slideOverlay {
    font-size: calc(7px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1280px) {
  #sliderTech .slideOverlay {
    font-size: 16px;
  }
}

#sliderTech h2 {
	margin-top: 0;
	color: #f2f2f2;
}

/* Container for image text */
#sliderTech .caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

#sliderTech .rowTechEx {
  width: 100%;
  padding-top: 12.5%;
  position: relative;
}

#sliderTech .rowTech {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#sliderTech .rowTech:after {
  content: "";
  display: table;
  clear: both;
}

#sliderTech #virtualRowTech {
	width: calc( 100% *4); //4 rows by 8 as max bufor
}

/* 8 columns side by side */
#sliderTech .columnTech {
  float: left;
  width: calc( 100% /8);
  height: 100%;
  padding:0 calc( 100% /64);
  text-align: center;
  cursor: pointer;
  transition: transform 1s;
  transition-timing-function: ease-in-out;
}

#sliderTech #virtualRowTech .columnTech {
  
  width: calc( 100% /(8 * 4));
  padding:0 calc( 100% /(8 * 7.99999 * 4));
  
}


#sliderTech .columnTech.reorder {
  transition: transform 0s;
}

/* Add a transparency effect for thumnbail images */

#sliderTech .active {
  background-color: #d3dce2;
}

#sliderTech .columnTech:hover {
  background-color: #e6eaed;
}

#sliderTech .demo {
	opacity: 0.6;
	width: 50%;
	margin: auto;
	position: relative;
	top: 70%;
	transform: translateY(-55%);
}

#sliderTech .tail-icon, #sliderTech .tail-text {
  height: 50%;
}

#sliderTech .tail-text {
  padding-top: 13%;
  color: #25a687;
}

#sliderTech .tail-text {
  font-size: 4px;
}
@media screen and (min-width: 320px) {
  #sliderTech .tail-text {
    font-size: calc(4px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 1280px) {
  #sliderTech .tail-text {
    font-size: 12px;
  }
}

#sliderTech .active,
#sliderTech .columnTech:hover .demo {
  opacity: 1;
}

#sliderTech .slideTech {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#sliderTech .readMoreButton {
    
    background: #e6e6e6;
    width: fit-content;
	width: -moz-fit-content;
	
    padding: 10px 17px 10px 17px;
    border-radius: 40px;
    margin-top: 4%;
    font-size: 100%;
	
	position: absolute;
    bottom: 10%;
}

#sliderTech .readMoreButton a {
	text-decoration: none;
	color: #25a687;
}

#sliderTech .toggleButton {
  background: #25a687;
  width: fit-content;
  width: -moz-fit-content;
  padding: 14px 30px 14px 30px;
  border-radius: 40px;
  margin: 50px auto;
  text-align: center;
  cursor: pointer;
}

#sliderTech .toggleButton a {
	color: white;
  }


/* Fading animation */
#sliderTech .fadein {
  -webkit-animation-name: fadeinTech;
  -webkit-animation-duration: 2.0s;
  animation-name: fadeinTech;
  animation-duration: 2.0s;
}

@-webkit-keyframes fadeinTech {
  from {opacity: 0}
  to {opacity: 1}
}

@keyframes fadeinTech {
  from {opacity: 0}
  to {opacity: 1}
}

#sliderTech .fadeout {
  -webkit-animation-name: fadeoutTech;
  -webkit-animation-duration: 0.5s;
  animation-name: fadeoutTech;
  animation-duration: 0.5s;
}

@-webkit-keyframes fadeoutTech {
  from {opacity: 1}
  to {opacity: 0}
}

@keyframes fadeoutTech {
  from {opacity: 1}
  to {opacity: 0}
}
