/*#region ------ Variables --- */
/*#region ------ Arrays --- */
/*#endregion*/
/*#endregion*/
/*#region ------ Mixins --- */
/*#endregion*/
/*#region ------ Functions --- */
/*#endregion*/
/* ------ Parts ------ */
/* ------ Components ------ */
/* ------ Widgets ------ */
/* ------ Elements ------ */
/* ------ Templates ------ */
.component_banner {
  overflow: hidden;
  position: relative;
  display: flex;
  height: calc(100vh - 90px);
}
.component_banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4196078431);
}
.component_banner .container {
  z-index: 2;
}
.component_banner .component__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.component_banner .component__info {
  width: 900px;
  max-width: 100%;
}
.component_banner .component__background {
  display: flex;
  transform: scale(1.2);
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: inherit;
  top: 0;
  z-index: -1;
}
.component_banner .component__background .front,
.component_banner .component__background .back {
  position: absolute;
  width: 100%;
  height: 100%;
}
.component_banner .component__background .front {
  z-index: 1;
}
.component_banner .component__background img {
  object-fit: cover;
}
.component_banner .component__title {
  color: var(--color-light);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.component_banner .component__link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 60px;
  padding: 0 15px;
  font-family: "FiraSans-Medium";
  color: var(--color-light);
  border: 1px solid var(--color-main-1);
  border-radius: 5px;
  transition: background-color ease 400ms, transform ease-in-out 300ms;
  background-color: var(--color-main-1);
  max-width: 200px;
}
.component_banner .component__link:hover {
  transform: scale(1.1);
  color: var(--color-main-1);
}
.component_banner .component__link:hover {
  border-color: var(--color-main-1);
  background-color: transparent;
}
@media (max-width: 1919px) {
  .component_banner {
    height: 100%;
    max-height: 700px;
    min-height: calc(0.125 * 100vw + 260px);
  }
}
@media (min-width: 1920px) {
  .component_banner {
    max-height: 900px;
  }
}