.banner {
  position: relative;
  overflow: hidden;
}
.banner.big-banner .container {
  min-height: 100vh;
}
.banner .scroll-down {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  cursor: pointer;
}
.banner .scroll-down img {
  animation: movedown 0.7s infinite alternate;
}
.admin-bar .banner.big-banner .container {
  min-height: calc(100vh - 32px);
}
.banner .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 194px;
  min-height: 500px;
}
.banner .container .inner {
  max-width: 600px;
  padding-top: 40px;
  padding-right: 45px;
  position: relative;
  text-align: right;
}
.banner .container .inner p {
  margin-bottom: 30px;
  font-style: italic;
}
.banner .container .inner h1 {
  margin-bottom: 15px;
}
.banner .container .inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: calc(100% - 56px);
  background-color: rgba(70,70,70,0.41);
  backdrop-filter: blur(10px) brightness(0.81);
  border-top-right-radius: 80px;
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.16);
  z-index: -1;
}
.banner .mejs-controls {
  display: none;
}
.banner .mejs-container,
.banner .mejs-container video {
  height: 100% !important;
  pointer-events: none;
}
.banner .bg-wrp .wp-video {
  width: 100% !important;
  height: 100%;
}
.banner .bg-wrp .wp-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .row {
  align-items: center;
  width: 100%;
}
.banner.center-content .row .col-12,
.banner.center-content .row .col-lg-6 {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.banner .bg-wrp {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #242424;
  z-index: 1;
}
.banner .bg-wrp::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1C1C1C;
  opacity: 0.18;
}
.banner .bg-wrp.no-filter::before {
  opacity: 0;
}
.banner .bg-wrp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .buttons {
  display: flex;
  justify-content: flex-end;
  margin-right: -45px;
}
.banner.center-content .buttons {
  justify-content: center;
}
.banner .container .row .col-12,
.banner .container .row .col-lg-6 {
  color: white;
}
.banner .container .row .col-lg-6 .img-wrp img {
  display: flex;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {}
@media (max-width: 768px) {}
@media (max-width: 480px) {
  .banner .buttons a {
    padding: 16px 20px;
    font-size: 14px; 
  }
}
@media (max-width: 330px) {
  .banner .buttons a {
    padding: 16px 15px;
    font-size: 12px; 
  }
}