.hero {
    background-color: #f7f4ef;
    margin-top: -100px;
    height: 735px;
}

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

.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;
    }
}

.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.-navigation::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(../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.-navigation video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero.-navigation .container {
    position: relative;
    z-index: 2;
}

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

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

.hero.-navigation .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.-navigation .container h1 {
        font-size: 48px;
    }
}

/* TABS */
.tabs {
    width: -moz-max-content;
    width: max-content;
    padding: 0;
    margin: 48px auto 0 auto;
    border-radius: 48px;
}

.tabs.-desktop {
    display: none;
}

@media screen and (min-width: 768px) {
    .tabs.-desktop {
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .tabs.-desktop.pres {
        display: flex;
        position: sticky;
        top: 10px;
        z-index: 10;
    }
}

.tabs div {
    display: flex;
    align-items: center;
    /* padding: 24px 32px; */
    background: rgba(27, 27, 27, 0.9);
    font-size: 16px;
    line-height: 150%;
    color: white;
    font-weight: 500;
    opacity: 0.9;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    cursor: pointer;
}

.tabs div:first-child {
    border-radius: 48px 0px 0px 48px;
    border-right: 1px solid #646363;
}

.tabs div:last-child {
    border-radius: 0px 48px 48px 0px;
    border-left: 1px solid #646363;
}

.tabs div:hover {
    background-color: #d8b465;
    color: #1b1b1b;
    opacity: 1;
}

.tabs div.active {
    background-color: #d8b465;
    border: 1px solid #d8b465;
    color: #1b1b1b;
    opacity: 1;
}

.tabs div.tab-filter a {
    padding: 24px;
}

.tab-content {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease-in-out;
    padding-top: 174px;
}

.tab-content.current {
    opacity: 1;
    height: auto;
}

@media screen and (min-width: 768px) {
    .tab-content.current {
        margin-top: 210px;
        padding-top: 0;
    }
}

.tab-content.current .hidden-tab {
    display: block;
}

.hidden-tab {
    display: none;
}

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

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

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

.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(../../assets/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 .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;
    z-index: 1;
}

.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;
}