.block-hero{
    display: flex;
    padding: 10rem 0;
}

.block-hero .hero-content{
    position: absolute;
    z-index: 10;
    width: 430px;
    height: 477px;
    padding: 2rem;

    left: 0;
}
.block-hero .hero-content div:not(:first-child){
  text-transform: uppercase;
}
.block-hero .hero-content:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border: 8px solid var(--color-dark-4);
    background-color: var(--background-color-body);
}

.block-hero .hero-content .texts {
    display: flex;
    font-size: var(--font-size-35);
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.block-hero .hero-content .texts span{
    margin-bottom: .5rem;
    white-space: nowrap;
}

.block-hero .hero-content .baseline {
    margin-top: 3rem;
}
.block-hero .hero-content .baseline .b1 {
  font-size: 5.2rem;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
  color: var(--color-dark-1);
}
.block-hero .hero-content .baseline .b2 {
  font-size: 4.5rem;
  font-style: italic;
}
.block-hero .hero-content .baseline .b3 {
  font-size: 8rem;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
    color: var(--color-accent);
}

.block-hero .hero-media{
    position: relative;
    z-index: 8;
    width: 100%;
    height: 70vh;
    max-width: 1180px;
    max-height: 580px;
    margin-left: auto;
    top: 5.2rem;
}
.block-hero .hero-media .image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-base) !important;
    box-shadow: var(--shadow-elevation-2);
}
.block-hero .hero-media .filter::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.block-hero .hero-media:after{
    content: "";
    display: block;
    width: 56rem;
    height: 55.2rem;
    position: absolute;
    top: -3rem;
    right: -3.8rem;
    z-index: 0;
    border: .8rem solid var(--color-accent);
}
