.main-div{
  padding-top: 240px;
}
.section1{
  background-color: rgba(0,0,0,.5);
  position: relative;
  height: max-content;
}
.domain-section{
  padding: 0;
  margin: 0;
  width: 100%;
  height: 500px;
  position: relative;
  display: inline-flex;
}
.domain-sub-section{
  padding: 0;
  margin: 5px;
  position: relative;
  /*border-left: 5px solid #7bb0a8;*/
  width: 50%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 3s;
}
.text-section{
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  /*background: linear-gradient(90deg, rgba(0,255,205,1) 0%, rgba(235,0,255,1) 100%);*/

  align-items: center;
  justify-content: center;
  vertical-align: middle;
  z-index: 9;
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
  overflow: hidden;
  top: 0;
  transition: .5s;
}
.text-section > h2{
  margin-right: 50px;
  padding-right: 50px;
  border-right: 2px solid #ffffff;
}
.text-section > h3{
  text-align: left;
}
#text1{
  left: 100%;
}
#text2{
  left: -100%;
}
.show-text{
  overflow: hidden;
}
.show-text:hover > #text1{
  transform: translate(-100%, 0);
}
.show-text:hover > #text2{
  transform: translate(100%, 0);
}
