h1 {
  font-size: 70px;
  line-height: 110%;
}
.iconic-box.style-one {
  height: 100%;
}

/* Footer */
.footer-nav-widget {
  padding: 0 50px;
}
@media (max-width: 767px) {
  .footer-nav-widget {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .site-branding {
    max-width: 200px;
  }
}
/* Menu */
.active-link {
  color: #dcfd68 !important;
}

.sub-menu .active-link {
  color: #a9be5a !important;
}
.header-navigation .main-menu ul li .sub-menu {
  width: 350px;
}
.site-branding .brand-logo {
  max-width: 350px;
  width: 100%;
}
.mobile-logo a {
  padding: 30px;
}
/* Homepage */
.hero-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  object-fit: cover;
}
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c0c1c;
  opacity: 0.5;
  z-index: 1;
}

.hero-wrapper-two {
  position: relative;
  z-index: 2;
}

/* Services */
.testimonial-item.style-one {
  background-color: #0f0f1a;
}

.iconic-box.style-six {
  text-align: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--primary-dark-color);
  height: 100%;
}
/* Legal pages */
.legal-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Contact */
.slidercaptcha.card {
  background-color: var(--primary-dark-color);
}
.card-header:first-child {
  background-color: var(--primary-color);
  color: #000;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  color: #99c203;
}
/* About */
.choose-image img {
  border-radius: 0;
}

/* Effects */
.iconic-box {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.iconic-box .border-line {
  position: absolute;
  background: linear-gradient(to right, #ffea00, #ffffff);
}

.iconic-box .top {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  animation: animateTop 2s linear infinite;
}
@keyframes animateTop {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.iconic-box .right {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  animation: animateRight 2s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animateRight {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.iconic-box .bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  animation: animateBottom 2s linear infinite;
}
@keyframes animateBottom {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.iconic-box .left {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  animation: animateLeft 2s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animateLeft {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
