@import url("https://use.typekit.net/law8ihm.css");
body {
  margin: 0;
  padding: 0;
  font-family: "bebas-neue-pro", sans-serif;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  padding: 50px 65px 0;
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .hero-wrapper {
    padding: 50px 15px 0;
  }
}

.showreel-wrapper {
  position: absolute;
  top: 50px;
  right: 65px;
}
@media (max-width: 960px) {
  .showreel-wrapper {
    position: unset;
    display: flex;
    justify-content: center;
  }
}
.showreel-frame {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.showreel-frame .frame {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  transition: all 0.4s ease;
}
.showreel-frame .frame-top-left {
  top: 0;
  left: 0;
}
.showreel-frame .frame-top-right {
  top: 0;
  right: 0;
}
.showreel-frame .frame-bottom-left {
  bottom: 0;
  left: 0;
}
.showreel-frame .frame-bottom-right {
  bottom: 0;
  right: 0;
}
.showreel-frame:hover .frame-top-left, .showreel-frame:focus .frame-top-left {
  transform: translate(5px, 5px);
}
.showreel-frame:hover .frame-top-right, .showreel-frame:focus .frame-top-right {
  transform: translate(-5px, 5px);
}
.showreel-frame:hover .frame-bottom-left, .showreel-frame:focus .frame-bottom-left {
  transform: translate(5px, -5px);
}
.showreel-frame:hover .frame-bottom-right, .showreel-frame:focus .frame-bottom-right {
  transform: translate(-5px, -5px);
}
.showreel-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showreel-thumbnail {
  height: 150px;
}
.showreel-text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  font-size: 26px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.showreel-btn {
  display: block;
  width: 32px;
  height: 32px;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 0;
}
.main-logo {
  display: block;
  width: 260px;
  margin: 0 auto 45px;
}
@media (max-width: 960px) {
  .main-logo {
    width: 150px;
  }
}
.main-title {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 960px) {
  .main-title {
    font-size: 40px;
    line-height: 40px;
  }
}
.main-underline {
  position: relative;
  display: inline-block;
}
.main-underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  display: block;
  width: 100%;
  height: 15px;
  background-image: url("assets/underline.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.popup-video {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px;
  box-sizing: border-box;
  background-color: rgba(10, 12, 27, 0.8);
  z-index: 10;
}
.popup-video.open {
  display: flex;
  animation: popup 0.4s ease;
}
@media (max-width: 960px) {
  .popup-video {
    padding: 50px 15px;
  }
}
.popup-content {
  position: relative;
  animation: popupcontent 0.8s ease;
  overflow: visible;
}
.popup-content iframe {
  max-width: 100%;
}
.popup-close {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
  cursor: pointer;
}
.popup-close .close-icon {
  display: block;
  width: 23px;
  height: 23px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.footer-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 864px;
  box-sizing: border-box;
  margin: auto auto 0;
  padding: 25px 85px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-wrapper::before, .footer-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
}
.footer-wrapper::before {
  left: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
}
.footer-wrapper::after {
  right: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
}
@media (max-width: 960px) {
  .footer-wrapper {
    flex-direction: column;
    padding: 25px 15px;
  }
}
.footer-content {
  color: #fff;
  text-align: center;
  padding: 0 20px;
}
.footer-content h2 {
  margin: 0 0 5px;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
}
.footer-content p,
.footer-content a {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer-content a {
  transition: all 0.4s ease;
}
.footer-content a:hover, .footer-content a:focus {
  color: #fff;
}
@media (max-width: 960px) {
  .footer-content {
    padding: 0 15px;
  }
}

@keyframes popup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popupcontent {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=styles.css.map */