@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  color: #333;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1px;
  line-height: 23px;
  font-weight: 500;
}

section {
  background-color: #eef4f7;
}

.contact-page-wrapper {
  /*
  * Input
  */
}
.contact-page-wrapper a,
.contact-page-wrapper a:active {
  color: #626262;
  text-decoration: none;
}
.contact-page-wrapper a:hover,
.contact-page-wrapper a:focus {
  color: #272727;
  text-decoration: none;
}
.contact-page-wrapper a:focus {
  outline: none !important;
}
.contact-page-wrapper img {
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
}
.contact-page-wrapper ul,
.contact-page-wrapper ol,
.contact-page-wrapper dl {
  list-style-position: outside;
}
.contact-page-wrapper ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
.contact-page-wrapper iframe {
  border: 0;
}
.contact-page-wrapper input,
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  max-width: 100%;
  padding: 8px 15px;
  resize: none;
  width: 100%;
}
.contact-page-wrapper input[type=button],
.contact-page-wrapper input[type=text],
.contact-page-wrapper input[type=email],
.contact-page-wrapper input[type=search],
.contact-page-wrapper input[type=password],
.contact-page-wrapper input[type=submit],
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  -webkit-appearance: none;
}
.contact-page-wrapper input,
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  border: 2px solid rgba(0, 0, 0, 0.13) !important;
}
.contact-page-wrapper input[type=button],
.contact-page-wrapper input[type=text],
.contact-page-wrapper input[type=email],
.contact-page-wrapper input[type=search],
.contact-page-wrapper input[type=password],
.contact-page-wrapper input[type=submit],
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  border-radius: 0;
}
.contact-page-wrapper input[type=button],
.contact-page-wrapper input[type=text],
.contact-page-wrapper input[type=email],
.contact-page-wrapper input[type=search],
.contact-page-wrapper input[type=password],
.contact-page-wrapper input[type=submit],
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  transition: border 0.2s ease-in-out;
}
.contact-page-wrapper input:focus,
.contact-page-wrapper textarea:focus {
  border: 1px solid #989898;
  outline: none;
}
.contact-page-wrapper input,
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  font-size: 18px;
}
.contact-page-wrapper input[type=button],
.contact-page-wrapper input[type=text],
.contact-page-wrapper input[type=email],
.contact-page-wrapper input[type=search],
.contact-page-wrapper input[type=password],
.contact-page-wrapper input[type=submit],
.contact-page-wrapper textarea,
.contact-page-wrapper select {
  padding: 12px 24px;
}
.contact-page-wrapper input[type=submit] {
  width: auto;
}
.contact-page-wrapper select {
  color: #272727;
  outline: none;
}

.banner-section {
  height: 100%;
  width: 100%;
  position: relative;
}

.video-container {
  height: 100vh;
  width: 100%;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
  color: #dc0000;
  padding: 10px;
  width: 500px;
  background: #00ffa0;
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  overflow: hidden;
  color: black;
  background: transparent;
}

.banner-section h1 {
  font-size: 24px;
  display: flex;
  align-items: center;
  color: #f2f2f2;
  font-weight: 300;
}
.banner-section .slider {
  position: relative;
  height: 2.5em;
  width: 90vw;
  overflow: hidden;
  margin-left: 12px;
  font-size: 60px;
  margin-top: 30px;
}
.banner-section .slider__word {
  font-weight: 800;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 0.7em;
  transform: translateY(100%);
  animation: slide 7s linear infinite;
  color: #f5f5f5;
  display: block;
  text-align: center;
}
.banner-section .slider__word:nth-child(2) {
  animation-delay: 1.5s;
}
.banner-section .slider__word:nth-child(3) {
  animation-delay: 3s;
}
.banner-section .slider__word:nth-child(4) {
  animation-delay: 4.5s;
}
@keyframes slide {
  0% {
    transform: translateY(100%);
    opacity: 0.1;
  }
  15% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(100%);
    opacity: 0.1;
  }
  60% {
    transform: translateY(0);
    opacity: 0.1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.1;
  }
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.owl-dots button.owl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background: #fff;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #f2f2f2;
  width: 35px;
  border-radius: 20px;
  height: 15px;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-dots button.owl-dot span {
  display: none;
}

.register-area {
  height: 900px;
}
@media only screen and (min-width: 768px) {
  .register-area {
    height: 500px;
  }
}
.register-area .header-hero-image img {
  width: 275px;
  height: auto;
  margin-top: 80px;
  margin-left: 70px;
}

.trucking-register-area {
  position: relative;
  display: flex;
  align-items: center;
}
.trucking-register-area:after {
  content: "";
  background: rgba(30, 50, 138, 0.38);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.trucking-register-area .hero-content {
  position: relative;
  z-index: 9;
}

.caption {
  margin-top: 50px;
}
@media only screen and (min-width: 991px) {
  .caption {
    margin-top: 0;
  }
}
.caption .owl-dots {
  margin-top: 30px;
}
.caption .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.caption .owl-nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  margin: 0 5px;
  border-radius: 50%;
}
.caption .owl-nav button.owl-prev {
  margin-left: 40px;
  padding-left: 10px;
}
.caption .owl-nav button.owl-prev i {
  margin-left: 0px;
}
.caption .owl-nav button.owl-next {
  padding-right: 5px;
}
.caption .owl-nav button.owl-next i {
  margin-right: 5px;
}
.caption .owl-nav button:hover {
  background: rgb(222, 222, 222) !important;
  border-radius: 50%;
}
.caption .owl-nav button:hover i {
  color: #333;
}
.caption .owl-nav button span,
.caption .owl-nav button i {
  font-size: 18px;
  color: #fff;
}

.shadow-text {
  text-shadow: 1px 1px #222;
}

/*# sourceMappingURL=theme.css.map */