:root {
    --gray: #333333;
    --gray-hover: #262626;
    --gray-rgb: rgba(51, 51, 51, .8);
    --yellow: #D1A954;
    --yellow-hover: #88651B;
    --white35: rgba(255, 255, 255, .35);
}

body {
    background: var(--gray);
    color: #FFF;
    font-family: 'Rubik', sans-serif;
}

.wrap {
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 99;
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    align-items: center;
}

.header__menu {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--gray);
    width: 15em;
    box-shadow: 1px 1px 8px 1px rgb(255, 255, 255, .1);
    height: 100vh;
    overflow-x: auto;
    transform: translateX(-15em);
    transition: .3s;
}

.header__menu.active {
    transform: translateX(0);
}

.burger {
    display: flex;
    flex-direction: column;
    gap: .3em;
}

.burger i {
    width: 1.6em;
    height: .1em;
    background: #FFF;
}

.burger i:nth-child(2) {
    width: 1.2em;
}

.burger i:nth-child(3) {
    width: 0.8em;
}

.logo {
    padding: 0 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__cover {
    cursor: pointer;
    font-size: 1.5em;
}

a.logo__link img {
    width: 3.6em;
}

ul.menu {
    list-style: none;
    padding: 1em 2em;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75em;
}

a.menu__item-link {
    color: #FFF;
    text-transform: uppercase;
    font-size: .9em;
}

.menu__button {
    text-align: center;
    border-bottom: 1px solid var(--yellow);
    padding: .75em 0;
    cursor: pointer;
    transition: .3s;
}

.menu__button:hover {
    border-bottom: 1px solid var(--yellow-hover);
}

.social {
    padding: 1em 1em 1em 2em;
}

.social__title {
    font-size: .875em;
    color: var(--white35);
}

.social__links {
    display: flex;
    flex-wrap: wrap;
    padding: 1em 1em 0 0;
    gap: 1em;
    justify-content: space-between;
}

.social__links a {
    text-align: center;
    font-size: 1.4em;
    color: #FFF;
    align-items: center;
    transition: .3s;
}

.social__links a:hover {
    color: var(--yellow);
}

main.content {
    padding: 5em 0;
}

.banner {
    transform: translateY(-5em);
}

.banner__item {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.banner__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-rgb);
    z-index: 1;
}

.banner__item img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.banner__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 3em;
    z-index: 5;
}

.banner__title {
    font-size: 1.75em;
    width: calc(100vw - 3em);
}

.banner__caption {
    display: flex;
    flex-direction: column;
    gap: 1em;
    color: #FFF;
}

.banner__name {
    background: var(--yellow);
    display: inline-flex;
    width: fit-content;
    padding: .75em 2em;
    border-radius: .4em;
}

.banner__action {
    position: absolute;
    bottom: 2em;
    right: 1em;
    display: flex;
    gap: 1em;
    z-index: 9;
}

.banner__action button {
    border: 1px solid var(--white35);
    background: rgba(0, 0, 0, 0);
    color: #FFF;
    font-size: 1.2em;
    padding: .75em;
    width: 3.688em;
    height: 3.688em;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: .3s;
}

.banner__action button:disabled {
    opacity: 0;
}

.banner__item {
    display: none;
}

.banner__item.active {
    display: block;
}

.banner__list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 0;
    margin: 0;
}

.banner__item {
    flex: 0 0 100%;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.banner__text {
    width: calc(100vw - 2em);
}

.auth {
    background: var(--gray-rgb);
}

.auth__container {
    background: var(--gray);
}

.c-auth {
    position: relative;
    background: var(--gray-color);
}

.c-auth .row {
    background: var(--gray-color) !important;
}

footer {
    background: rgba(41, 41, 41, .8);
    background: linear-gradient(rgba(51, 51, 51, .8), rgba(41, 41, 41, .8));
}

.footer {
    padding: 2em;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-between;
}

.footer__row-column {
    width: 100%;
}

.footer__logo {
    display: flex;
    gap: 1em;
    align-items: center;
}

.footer__logo img {
    width: 5em;
}

.footer__logo a {
    color: var(--white35);
}

ul.footer__links > li > a {
    color: var(--white35);
}

ul.footer__links {
    text-align: right;
    list-style: none;
    line-height: 1.4em;
}

.person {
    padding: 1em;
}

.person__information a, .event__information a {
    color: var(--yellow);
    transition: .3s;
}

.person__information a:hover, .event__information a:hover {
    color: var(--yellow-hover);
}

.person__item {
    margin-top: 5em;
    position: relative;
    background: rgba(0, 0, 0, .1);
    padding: 16em 2em 2em;
}

.person__item-caption {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 1em 1em 0;
    position: relative;
    z-index: 5;
}

.person__item-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.person__item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
    transition: .3s;
}

.person__item-cover:hover img {
    opacity: .5;
}

p.person__item-post {
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

h2.person__item-name {
    margin: 0;
    padding: 0;
}

a.person__item-link {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 1em;
    width: 100%;
    box-sizing: border-box;
    transition: .3s;
}

a.person__item-link:hover {
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .25);
}

.breadcrumbs {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
}

.breadcrumbs__item > a {
    color: rgba(255, 255, 255, .35);
}

.person__row {
    padding: 3em 1em;
}

img.person__image {
    width: 100%;
    max-height: 20em;
    object-fit: contain;
}

.person__information > p > br, .event__information > p > br {
    display: none;
}

.pagination {
    padding: 5em 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
    justify-content: flex-end;
}

.pagination__item {
    min-width: 1em;
}

.pagination__item a {
    border: 1px solid var(--white35);
    color: var(--white35);
    display: block;
    text-align: center;
    padding: 1em;
}

.pagination__item.active a {
    cursor: default;
    color: var(--yellow);
    border-color: var(--yellow);
}

.c-poster__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.c-poster__item {
    position: relative;
    border-radius: .4em;
    overflow: hidden;
    width: 100%;
    height: 30em;
}

.c-poster__photo img {
    width: 100%;
    height: 30em;
    object-fit: cover;
}

.c-poster__age {
    position: absolute;
    top: 1em;
    right: 1em;
    background: rgba(0, 0, 0, .75);
    padding: .25em .5em;
    border-radius: .3em;
    font-size: 1.25em;
    color: var(--yellow);
}

.c-poster__age.censure {
    background: var(--danger-color);
    color: var(--danger-color-text);
}

.c-poster__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    background: var(--gray-rgb);
}

.c-poster__title {
    font-size: 1.2em;
    padding-bottom: 1em;
}

.c-poster__button {
    background: var(--yellow);
    text-align: center;
    color: #313131;
    padding: 1em;
    border-radius: .4em;
    cursor: pointer;
    transition: .3s;
}

.c-poster__button:hover {
    background: var(--yellow-hover);
}

.c-poster__date {
    position: absolute;
    top: 1em;
    left: 1em;
    background: var(--gray);
    text-align: center;
    border-radius: .4em;
    overflow: hidden;
}

.c-poster__date-day {
    font-size: 2em;
    padding: .4em;
}

.c-poster__date-month {
    padding: 0 .75em;
}

.c-poster__date-year {
    font-size: .875em;
    padding-bottom: .75em;
}

.c-poster__time {
    background: var(--yellow);
    padding: .4em;
    color: #313131;
    font-weight: 700;
}

.repertoire__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5em;
}

.repertoire__item {
    width: 100%;
    position: relative;
}

.repertoire__photo img {
    width: 100%;
    height: 20em;
    object-fit: contain;
}

.repertoire {
    padding: 1em 2em;
}

.repertoire__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    margin: 1em 0;
}

.repertoire__genre {
    color: var(--yellow);
    padding-bottom: .35em;
}

.repertoire__age {
    color: rgba(255, 255, 255, .35);
}

a.repertoire__link {
    display: block;
    border: 1px solid var(--yellow);
    text-align: center;
    color: var(--yellow);
    padding: 1em;
    transition: .3s;
}

a.repertoire__link:hover {
    color: var(--yellow-hover);
    border-color: var(--yellow-hover);
}

.repertoire__row {
    padding: 5em 0;
}

.repertoire__descriptions {
    line-height: 1.5em;
    padding-top: 1em;
    text-align: justify;
}

span.title__age {
    font-size: .75em;
    background: rgba(0, 0, 0, .15);
    padding: .3em;
    border-radius: .3em;
    display: inline-block;
}

h1.title {
    font-size: 1.5em;
    text-align: center;
}

section.section {
    padding: 0 2em 5em 2em;
}

p.section__text {
    line-height: 1.5em;
    text-align: justify;
}

[data-role="text"].edit--block {
    outline: none;
    background: rgba(0, 0, 0, .15);
}

p.section__quote {
    font-weight: 500;
    color: var(--yellow);
    line-height: 1.5em;
}

[data-role="text"] {
    position: relative;
}

[data-role="text"]::before {
    content: "\ee65";
    font-family: boxicons, sans-serif;
    position: absolute;
    top: 0;
    left: -2em;
    opacity: 0;
}

[data-role="text"]:hover:before {
    opacity: 1;
}

.section__search {
    padding-bottom: 2em;
}

.section__search label {
    display: block;
    padding-bottom: 1em;
}

.c-poster__genre {
    font-size: .875em;
    color: rgba(255, 255, 255, .5);
    transform: translateY(-1em);
}

ul.section__list {
    list-style: decimal;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

li.section__item {
    line-height: 1.5em;
}

section.section.section--bg {
    background: rgba(0, 0, 0, .15);
    padding: 5em 2em;
    color: rgba(255, 255, 255, .5);
}

h3.section__name {
    color: var(--yellow);
}

.event__row {
    padding: 2em 0;
}

.event__video {
    margin-bottom: 2em;
    margin-left: -2em;
    margin-right: -2em;
}

.event__watch {
    display: flex;
    gap: 2em;
    padding: 1em 0;
}

.event__watch-total, .event__watch-users {
    display: flex;
    align-items: center;
    gap: .5em;
}

.event__watch-total i, .event__watch-users i {
    display: inline-block;
    color: var(--yellow);
    transform: translateY(-.05em);
}

.event__list {
    display: flex;
    flex-wrap: wrap;
    gap: 3em 1em;
}

.event__item {
    position: relative;
    width: 100%;
}

.event__item-cover img {
    width: 100%;
    border-radius: .4em;
    height: 100%;
    object-fit: cover;
}

.event__information {
    line-height: 1.75em;
}

.event__item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em;
    background: rgba(31, 31, 31, .7);
    color: #FFF;
}

h2.event__item-name {
    margin: 0;
    padding-bottom: 1em;
    font-size: 1.2em;
}

a.event__item-link {
    display: block;
    padding: 1em;
    text-align: center;
    color: #313131;
    background: var(--yellow);
    border-radius: .4em;
    transition: .3s;
}

a.event__item-link:hover {
    background: var(--yellow-hover);
}

.event__item-cover, .event__item-cover > picture {
    height: 100%;
}

.contact__info {
    padding: 2em 0;
    width: 100%;
}

.contact__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact__grid-column {
    width: 100%;
}

.contact__grid-column p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.5em;
}

div#map_container {
    width: 100%;
    height: 400px;
}

.form__button {
    padding: 1em;
}

h3.contact__grid-title {
    color: var(--yellow);
}

h3.form--contact__title {
    margin: 0;
    padding: 1em;
    color: var(--yellow);
}

button.form__submit {
    background: var(--yellow);
    border-radius: .4em;
}

button.form__submit:hover {
    background: var(--yellow-hover);
}

h3.map--title {
    padding: 1em 0;
    font-size: 1.5em;
    margin: 0;
}

.row.block {
    gap: 3em 1em;
}

.row.block video {
    max-width: 100%;
}

.document a {
    color: rgba(255, 255, 255, .5);
    text-transform: capitalize;
    line-height: 1.5em;
    transition: .3s;
}

.document a:hover {
    color: rgba(255, 255, 255, .75);
}

.document {
    display: flex;
    gap: 1em;
    align-items: center;
    padding: .5em;
}

.document i {
    color: var(--yellow);
    transition: .3s;
}

.document:hover i {
    color: var(--yellow-hover);
}

@media (min-width: 620px) {
    .person__list {
        display: flex;
        flex-wrap: wrap;
        gap: 1em;
    }

    .person__item {
        margin-top: 2em;
        width: calc(50% - .5em);
    }

    p.person__item-post {
        width: 100%;
    }

    .c-poster__item {
        width: calc(50% - 1em);
    }

    .repertoire__item {
        display: flex;
        gap: 2em;
    }

    .repertoire__photo {
        width: 30%;
        padding-top: 1.5em;
    }

    .repertoire__caption {
        width: calc(70% - 2em);
    }

    .repertoire__photo img {
        height: auto;
    }

    .event__item {
        width: calc(50% - .5em);
    }
}

@media (min-width: 968px) {

    .row.block .row__col-4 {
        width: calc(33.33333333% - .67em);
    }

    .row.block .row__col-6 {
        width: calc(50% - .75em);
    }

    .row.block .row__col-8 {
        width: calc(66.66666667% - .67em);
    }

    section.section.section--bg {
        padding: 5em 2em 5em 8em;
    }

    h2.section__title {
        padding-bottom: 1em;
    }

    .section__search .form {
        display: flex;
        gap: 1em;
    }

    img.person__image {
        max-height: max-content;
    }

    .section__search .form__group {
        padding: 0;
        width: 100%;
    }

    .content--count {
        display: block;
    }

    .burger {
        display: none;
    }

    .c-auth {
        padding: 5em;
    }

    .header {
        justify-content: center;
        gap: 4em;
    }

    .header__menu {
        position: relative;
        background: none;
        transform: none;
        box-shadow: none;
        height: fit-content;
        overflow: visible;
        width: max-content;
    }

    .logo {
        padding-left: 1em;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }

    .header__cover {
        display: none;
    }

    ul.menu {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 2em;
    }

    .social {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100vh;
        background: var(--gray-rgb);
        width: 6em;
    }

    .social__links {
        flex-direction: column;
    }

    .social__title {
        transform: rotate(-90deg) translateY(-0.313em);
        white-space: nowrap;
        padding-left: 2em;
        display: inline-flex;
        gap: 1em;
        text-transform: uppercase;
    }

    .menu__button {
        margin: 0;
        padding: .75em;
    }

    .banner__container {
        padding: 0 10em;
    }

    .banner__title {
        font-size: 2.25em;
    }

    .banner__text {
        width: calc(100vw - 5em);
    }

    .footer {
        max-width: 75em;
        margin: auto;
    }

    .footer__row-column {
        width: calc(50% - 2em);
        align-self: center;
    }

    .person {
        padding: 1em 1em 1em 6em;
    }

    .person__row {
        padding: 2em 0;
        display: flex;
        gap: 2em;
    }

    .person__photo {
        width: 30em;
    }

    .c-poster__item {
        width: 100%;
        display: flex;
        gap: 1em;
        align-items: center;
        height: fit-content;
        border-bottom: 1px solid rgba(255, 255, 255, .35);
        border-radius: 0;
        padding-bottom: 1em;
    }

    .c-poster__caption {
        position: relative;
    }

    .c-poster__date {
        position: relative;
        top: auto;
        left: auto;
        height: fit-content;
        width: 12em;
        background: rgba(0, 0, 0, .15);
    }

    .c-poster__age {
        position: relative;
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, .15);
    }

    .c-poster__photo img {
        height: auto;
        border-radius: .4em;
    }

    .c-poster__photo {
        width: 8em;
    }

    .c-poster__caption {
        border-left: 1px solid rgba(255, 255, 255, .35);
        border-right: 1px solid rgba(255, 255, 255, .35);
    }

    .c-poster__button {
        display: inline-block;
        padding: 1em 3em;
    }

    .repertoire {
        padding: 1em 2em 1em 6em;
    }

    .repertoire__row {
        display: flex;
        gap: 2em;
    }

    .repertoire__image {
        width: 30%;
    }

    .repertoire__information {
        width: calc(70% - 2em);
    }

    section.section {
        padding: 0 6em 5em 6em;
    }

    h1.title {
        font-size: 2em;
        text-align: left;
    }

    .event__video {
        margin-left: 0;
        margin-right: 0;
    }

    .event__item {
        width: calc(33.333333% - .67em);
    }
}

@media (min-width: 1024px) {
    .repertoire__photo img {
        height: 18em;
    }

    a.repertoire__link {
        display: inline-block;
        padding: 1em 3em;
    }
}

@media (min-width: 1200px) {
    .person__item {
        width: calc(33.3333% - .67em);
        padding: 20em 2em 2em;
    }

    h2.person__title {
        padding-bottom: 1em;
        font-size: 1.75em;
    }

    .c-poster__item {
        gap: 3em;
        padding: 1em;
    }

    .c-poster__caption {
        padding: 1em 3em;
    }

    form.form.form--contact {
        border: 1px solid var(--yellow);
        border-radius: .5em;
        padding: 1em;
        box-sizing: border-box;
    }
}

@media (min-width: 1600px) {
    .person__item {
        width: calc(25% - 1em);
    }

    .event__item {
        width: calc(25% - .67em);
    }
}