.navbar {
  transition: background-color 0.5s ease-in-out 0s, height 0.4s ease-in-out 0s, top 0.4s ease-in-out 0s;
}

.navbar {
  transition: top 0.5s ease;
}

.navbar-hide {
  top: -56px;
}

.video-player {
  position: absolute;
  top: 50%;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-50%);
  transform-origin: center;
  object-fit: cover;
  height: calc(100vw/1.77);
  z-index: 1;
}

.bb {
  height: 1000px;
}

.overlay {
  position: absolute;
  background: #00000059;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 5;
  height: calc(100vw/1.77);
}

.sec-banner {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.banner-content {
  position: relative;
  z-index: 20;
}

.banner-title {
  font-size: 55px;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: .5s;
}

.btn-black {
  border-width: 3px;
  padding: 15px 20px 17px;
  width: 220px;
  font-size: 18px;
  background: #000;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  margin-top: 27px;
}

.btn-black:hover {
  background: #404040;
}

.btn-scroll {
  position: relative;
  display: block;
  width: 25px;
  height: 45px;
  margin: 0 auto;
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-radius: 15px;
}

.mouse-scroll {
  position: absolute;
  bottom: 70px;
  z-index: 30;
}

.btn-scroll:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 3px;
  height: 9px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background: #000;
  padding: 80px 0px;
}

h4 {
  font-size: 22px;
  font-weight: 800;
}

.form-search {
  height: 50px;
  border-radius: 0px;
}

.search-f-icon {
  border-radius: 0px;
}

.quick-links li a {
  color: #fff;
  font-size: 16px;
  margin-right: 14px;
}

.quick-links li a:hover {
  color: #ccc;
}

.social-links li a {
  width: 50px;
  height: 50px;
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.social-links li a:hover {
  border-color: #fff;
}

a:hover {
  color: #ccc;
}

.f-link a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.f-link a:hover {
  color: #ccc;
}

.navbar {
  background: rgba(0,0,0,0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
  color: #fff;
  padding: 20px 15px;
}

.btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 20px 40px !important;
}

.btn-white:hover {
  background: #000;
  color: #fff;
}

.navbar-toggler {
  border: 0px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.navbar-toggler-icon {
  color: #fff !important;
  box-shadow: none;
  padding: 0px;
}

.navbar-toggler {
  padding: 0px;
}

.expand span {
  display: block;
  /*height: 0;*/
  transform: translateY(-50%);
  position: relative;
  top: 17px;
  width: 100px;
  height: 20px;
}

.expand span:before {
  content: "";
  display: block;
  width: 20px;
  top: -4px;
  height: 2px;
  position: absolute;
  right: 10px;
  background-color: #fff;
  opacity: 1;
  transition: transform 0.4s ease-in-out 0s, left 0.4s ease-in-out 0s, top 0.4s ease-in-out 0s, width 0.3s ease-in-out 0s;
}

.expand span:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  top: 4px;
  position: absolute;
  right: 10px;
  background-color: #fff;
  opacity: 1;
  transition: transform 0.4s ease-in-out 0s, left 0.4s ease-in-out 0s, top 0.4s ease-in-out 0s, width 0.3s ease-in-out 0s;
}

.expand span code {
  position: absolute;
  top: -11px;
  font-size: 16px;
  right: 40px;
  font-style: normal;
  opacity: 1;
  transition: opacity 0.4s ease-in-out 0s, right 0.4s ease-in-out 0s;
}

.expand.active span::before {
  transform: rotate(-45deg);
  top: 3px;
}

.expand.active span code {
  right: 45px;
  opacity: 0;
}

.expand.active span::after {
  transform: rotate(45deg);
}

.expand {
  display: block;
  /*width: 100px;*/
  /*height: 40px;*/
  /*position: relative;*/
}

.btn-yellow {
  background: #fff;
  color: #000;
  border-radius: 0px;
  width: 130px;
  padding: 12px 0px;
  font-weight: 700;
}

.btn-yellow:hover {
  background: #ffff00;
  color: #000;
}

