.textContent, .intro{
  width: 100%;
  padding-top: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flexbox{
  width: 80%;
  padding: 60px 00px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.icon{
  display: block;
  height:200px;
  width: 50%;
  object-fit: contain;
  justify-content: center;
  align-items: center;
}

.text{
  width: 50%;
  text-align: left;
}

.cable_scroll{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding:60px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

div.scroll-container {
  height: 500px;
  width:90%;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  height: 460px;
  padding: 10px;
}

/* Style the image container*/

.scrollimg {
  transition: transform 0.2s;
}

.scrollimg:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  padding-top: 100px;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

.modal-content {
  margin: auto;
  display: flex;
  flex-direction: column;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}