html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1 {
  color: #fff;
  position: relative;
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
h1:after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  left: 0;
  bottom: -8px;
  background: #fff;
  -webkit-transition: 500ms all ease-in-out;
  transition: 500ms all ease-in-out;
}

a.cta {
  display: block;
  position: absolute;
  height: 50px;
  line-height: 50px;
  width: 120px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  left: 50%;
  bottom: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 2px solid #fff;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
a.cta:before {
  content: "";
  background: #fff;
  height: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}
a.cta:hover:before {
  height: 4px;
}

.container {
  background: #09f;
  width: 100%;
  height: 100%;
  position: relative;
}
.container .one-half {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.container .one-half.left {
  left: 0;
  background: url("img/fmwallpaper.jpg") center center no-repeat;
  background-size: cover;
}
.container .one-half.left:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(6, 104, 143, 0.3);
  position: absolute;
}
.container .one-half.right {
  right: 0;
  background: url("img/telecomwallpaper.jpg") center center no-repeat;
  background-size: cover;
}
.container .one-half.right:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(251, 197, 87, 0.3);
  position: absolute;
}
.container .one-half.left, .container .one-half.right {
  -webkit-transition: 500ms all ease-in-out;
  transition: 500ms all ease-in-out;
}
.container .one-half.left:before, .container .one-half.right:before {
  -webkit-transition: 500ms all ease-in-out;
  transition: 500ms all ease-in-out;
}
.container.left-is-hovered .left {
  width: 80%;
}
.container.left-is-hovered .left h1:after {
  width: 100%;
}
.container.left-is-hovered .right {
  width: 20%;
}
.container.left-is-hovered .right:before {
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.container.right-is-hovered .right {
  width: 80%;
}
.container.right-is-hovered .right h1:after {
  width: 100%;
}
.container.right-is-hovered .left {
  width: 20%;
}
.container.right-is-hovered .left:before {
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.img-responsive{
  width: 50%;
  height: auto;
  text-align: center;
  max-width: 400px;
 
  padding: 10px;
  border-radius: 5px;
}
.logocont{
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  top: 40%;
  position: relative;
}