body {
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
#main {
  width: 100%;
  height: 100vh;
  position: relative;
}
.main-text {
  position: absolute;
  left: 13%;
  top: 42%;
  transform: translate(-13%, -42%);
  line-height: 0;
}
.main-text img {
    display: block;
    margin: 25px 0px 50px;
}
.main-text h2 {
  font-weight: 500;
  font-size: 30px;
  color: #e0ffff;
}
.main-text h1 {
  font-size: 70px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.main-text p {
  font-size: 20px;
  color: #e0ffff;
  margin: 25px 0px 25px;
  line-height: 50px;
}
.btn {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  background: transparent;
  color: #e0ffff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 200;
  cursor: pointer;
  padding: 12px;
  padding-left: 24px;
  padding-right: 24px;
}
.btn:hover {
    background:rgba(0, 109, 119, 0.2);
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: linear-gradient(to right, rgba(34, 35, 46, 1), rgba(0, 109, 119,0.75));
}
@media (min-aspect-ratio: 16/9) {
  video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  video {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 768px) {
  input, textarea {
    width: 95% !important;
  }
  #main {
    margin-top: -25px;
  }
  .main-text {
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    line-height: normal;
  }
  .main-text img {
    display: block;
    margin-bottom: 25px;
  }
  .main-text h2 {
    font-size: 18px;
  }
  .main-text h1 {
    font-size: 36px;
    margin-top: 0;
  }
  .main-text p {
    font-size: 12px;
    line-height: 18px;
  }
}
#contact {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
#contact.active {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
#contact p {
    margin-bottom: 0;
}
input, textarea {
    padding: 8px;
    padding-left: 12px;
    background-color: transparent;
    color: #e0ffff;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    width: 300px;
    border-color: #e0ffff;
}
input:focus, textarea:focus {
    outline: none;
}
#welcome {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
#welcome.active {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
#sent {
    display: none;
    font-weight: bold;
}
p.sent {
    display: block !important;
}
button.sent {
    display: none;
}