/* START HERO.SCSS */
.hero {
    background-color: #f7f4ef;
    margin-top: -100px !important;
    height: 735px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .hero {
        margin-top: -187px !important;
        height: 1235px;
    }
}

@media screen and (min-width: 2000px) {
    .hero .first-plan {
        bottom: initial;
        top: 0;
    }
}

.hero .image {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: 0;
}

.hero .image.-dark {
    filter: brightness(0.5);
}

.hero .container {
    z-index: 4;
}

.hero h1 {
    font-size: 32px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .hero h1 {
        font-size: 64px;
        line-height: normal;
    }
}

.hero h1 strong {
    font-weight: 700;
}

.hero h1 span {
    font-weight: 400;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .hero h1 span {
        font-size: 32px;
    }
}

.hero p {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 150%;
    text-align: center;
    color: white;
}

@media screen and (min-width: 768px) {
    .hero p {
        font-size: 16px;
    }
}

.hero .scroll-btn {
    margin: 130px auto 0 auto;
    justify-content: center;
}

.hero .scroll-btn p {
    font-size: 18px;
    line-height: 120%;
}

@media screen and (min-width: 768px) {
    .hero .scroll-btn p {
        font-size: 24px;
    }
}

.hero .scroll-btn .text {
    left: initial;
    align-items: center;
}

.hero .green-brush,
.hero .gold-brush {
    position: absolute;
    width: 103%;
    bottom: -6px;
    left: -6px;
    z-index: 3;
}

.hero .green-brush img,
.hero .gold-brush img {
    object-fit: cover;
    width: 100%;
}

.hero .container .subtitle {
    font-family: "Roboto Slab";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
    display: block;
}



@media screen and (min-width:768px) {
    .hero .container .subtitle {
        font-family: "Roboto Slab";
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 32px;
    }
}

.hero.-secondary {
    height: 100%;
    position: relative;
    min-height: 800px;
    justify-content: unset;
}

@media screen and (min-width: 768px) {
    .hero.-secondary {
        height: 100%;
        min-height: 900px;
    }
}

.hero.-secondary::after {
    content: "";
    background: linear-gradient(360deg, #1b1b1b 6.89%, rgba(0, 0, 0, 0) 46.45%, rgba(27, 27, 27, 0) 46.45%), linear-gradient(180deg, #181818 0%, rgba(24, 24, 24, 0) 36.99%), url(../../assets/images/noise.png), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero.-secondary video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero.-secondary .container {
    position: relative;
    z-index: 2;
    padding-top: 136px;
    padding-bottom: 80px;
    margin: unset;
}

@media screen and (min-width: 768px) {
    .hero.-secondary .container {
        padding-top: 181px;
        padding-bottom: 107px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .hero.-secondary .container .btn {
        margin-top: 22px;
    }
}

.hero.-secondary .container .uptitle {
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
}

.hero.-secondary .container h1 {
    font-weight: 200;
    font-size: 32px;
    line-height: 120%;
    margin: 16px auto 48px auto;
    max-width: 1008px;
}

@media screen and (min-width: 768px) {
    .hero.-secondary .container h1 {
        font-size: 48px;
    }
}

.hero.-secondary .container .scroll-btn {
    margin: 52px auto 0 auto;
    justify-content: center;
}

.hero.-secondary .container .scroll-btn .cta {
    width: 96px;
    height: 96px;
}

.hero.-secondary .container .scroll-btn .cta::after {
    width: 24px;
    height: 24px;
}

.hero.-tabs {
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 208px 24px 266px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .hero.-tabs {
        padding: 323px 24px 330px 24px;
    }
}

.hero.-tabs .image {
    left: 0;
    display: none;
}

.hero.-tabs .image.current {
    display: flex;
}

.hero.-tabs::before {
    content: "";
    background: linear-gradient(360deg, #1b1b1b 6.89%, rgba(0, 0, 0, 0) 46.45%, rgba(27, 27, 27, 0) 46.45%), linear-gradient(180deg, #181818 0%, rgba(24, 24, 24, 0) 36.99%), url(../../assets/images/noise.png), linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.hero.-tabs::after {
    content: "";
    background: url(../images/border-white.svg);
    background-repeat: repeat-x;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -2px;
    max-height: 24px;
    z-index: 2;
}

.hero.-tabs .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: unset;
}

.hero.-tabs .container .uptitle {
    color: white;
}

.hero.-tabs .container .title h1 {
    font-weight: 300;
    font-size: 32px;
    line-height: 120%;
    margin: 0;
    display: none;
}

@media screen and (min-width: 768px) {
    .hero.-tabs .container .title h1 {
        font-size: 48px;
    }
}

.hero.-tabs .container .title .current {
    display: block;
}

.hero.-tabs .container .subtitle {
    height: 100%;
}

@media screen and (min-width: 768px) {
    .hero.-tabs .container .subtitle {
        margin-top: 24px;
    }
}

.hero.-tabs .container .subtitle .subtitle-content {
    font-family: "Roboto" !important;
    font-weight: 500 !important;
    display: none;
    transition: opacity 0.3s ease-in-out, height 0.6s ease-in-out;
}

@media screen and (min-width: 768px) {
    .hero.-tabs .container .subtitle .subtitle-content {
        max-width: 1008px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

.hero.-tabs .container .subtitle .subtitle-content.current {
    display: block;
}

.hero.-tabs .dropdown {
    max-width: 350px;
    width: 100%;
    margin: auto;
}

.hero.-tabs .dropdown::after {
    content: url("../images/icon-arrow-down-ocre.svg");
    position: absolute;
    right: 32px;
    top: 22px;
    height: 24px;
    pointer-events: none;
}

.hero.-tabs .dropdown select {
    padding: 24px 32px;
    background: rgba(27, 27, 27, 0.7);
    border: 1px solid #646363;
    border-radius: 48px;
    color: white;
    text-align: left;
}

.hero.-intranet {
    background: linear-gradient(180deg, #181818 0%, rgba(24, 24, 24, 0) 36.99%), url(../images/noise.png), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../assets/images/mymfr-hero.jpg");
    text-align: center;
    min-height: 1000px;
}

@media screen and (min-width: 992px) {
    .hero.-intranet {
        min-height: 90vh;
    }
}

.hero.-intranet::after {
    display: none;
}

.hero.-intranet .container {
    padding-top: 112px;
}

.hero.-intranet .container h1 {
    margin: 56px auto 24px auto !important;
}

.hero.-intranet .container .subtitle {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
    max-width: 934px;
}

.hero.-intranet .container .btn-with-text {
    margin: 70px auto 0 auto;
    justify-content: center;
}

.hero.-intranet .container .btn-with-text:hover .cta::after {
    transform: none;
}

.hero.-intranet .container .btn-with-text .cta::after {
    background: url("../images/icon-play-white.svg");
    background-size: contain;
}

.hero.-intranet .container .btn-with-text p {
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .hero.-intranet .container .btn-with-text p {
        font-size: 24px;
    }
}

.hero.-error {
    height: 650px;
    background: #1a2c17;
    padding-top: 150px;
}

@media screen and (min-width: 768px) {
    .hero.-error {
        height: 80vh;
        min-height: 900px;
    }
}

.hero.-error .container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero.-error .container img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
}

.hero.-error .container div {
    position: relative;
}

.hero.-error .container div h1 {
    font-weight: 300;
    font-size: 32px;
    line-height: 120%;
    margin: 16px auto 48px auto;
}

@media screen and (min-width: 768px) {
    .hero.-error .container div h1 {
        font-size: 48px;
    }
}

.hero.-error .container div .subtitle {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
    max-width: 934px;
}

.hero.-error .container div .btn-with-text {
    margin: 40px auto 0 auto;
}

@media screen and (min-width: 768px) {
    .hero.-error .container div .btn-with-text {
        margin: 117px auto 0 auto;
    }
}

.hero.-error .container div .btn-with-text:hover .cta::after {
    filter: none;
    transform: rotate(-90deg);
}

.hero.-error .container div .btn-with-text .cta::after {
    content: "";
    background: url("../images/icon-scroll.svg");
    background-size: contain;
    transform: rotate(-90deg);
}