section .bannerVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
section .bannerVideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
section .bannerVideo video.active {
  opacity: 1;
}
.container1 {
  position: relative;
  padding: 0 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}
.container1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(10,61,99,1) 0%, rgba(10,61,99,0) 100%);
}
.container1 .content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.container1 .content .bannerText {
  position: relative;
  max-width: 50%;
}
.container1 .content .bannerText div {
  display: none;
  transition: 0.5s ease-in-out;
}
.container1 .content .bannerText div.active {
  display: initial;
}
.container1 .content .bannerText div h2 {
  color: #fff;
  font-size: 3.2em;
  line-height: 1em;
  font-weight: 700;
}
.container1 .content .bannerText div p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5em;
  margin: 25px 0;
}

.controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
}
.controls li {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}
.menuIcon {
  display: none;
}
.controls li:hover {
  background: #f8ac19;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .container1 {
    padding: 20px;
  }
  .container1::before {
    width: 100%;
  }
  .container1 header {
    padding: 10px 20px;
  }
  .container1 .content .bannerText {
    text-align: center;
    max-width: 100%;
  }
  .container1 .content .bannerText div h2 {
    font-size: 3em;
  }
  .container1 header ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  .container1 header.active ul {
    display: flex;
  }
  .container1 header ul li {
    text-align: center;
    margin: 10px;
  }
  .container1 header ul li a {
    color: #333;
    font-size: 1.5em;
  }
  .container1 header ul li a:hover {
    color: crimson;
  }
  .menuIcon {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: initial;
    z-index: 10000;
    background: #fff url(./images/menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  .menuIcon.active {
    background: #fff url(./images/close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  .sci li a {
    width: 50px;
    height: 50px;
  }
  .controls li {
    width: 50px;
    height: 50px;
  }
}
