p {
  font-size: 18px;
}

.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;
}

.navbar-nav .nav-item a {
  color: #555;
  font-size: 18px;
  position: relative;
  margin: 0 12px;
}
.navbar-nav .nav-item a:hover, .navbar-nav .nav-item a:focus {
  color: #360A7D;
  background-color: rgba(30, 50, 138, 0.18);
}

.navbar-area.sticky {
  position: fixed !important;
}

.collapse {
  visibility: visible !important;
}

.toggler-icon {
  background-color: #520ac5;
}

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