/**
Theme Name: Bucks
Theme Description: Bucks wp-theme
*/


/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "SourceSerif4";
    font-style: normal;
    font-weight: 900;
    src: url("./fonts/SourceSerif4-Black.woff2") format("woff2"),
        url("./fonts/SourceSerif4-Black.woff") format("woff");
}

@font-face {
    font-family: "InterstateBoldCondensed";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/InterstateBoldCondensed.woff2") format("woff2"),
        url("./fonts/InterstateBoldCondensed.woff") format("woff");
} 

@font-face {
    font-family: "OrelegaOne";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/OrelegaOne-Regular.woff2") format("woff2"),
        url("./fonts/OrelegaOne-Regular.woff") format("woff");
} 



/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* fonts */
    --font-basic: "interstate", sans-serif;
    --font-secondary: "OrelegaOne", sans-serif;
    --font-heading: "SourceSerif4", sans-serif;
    --font-heading-condensed: "InterstateBoldCondensed", sans-serif;

    /* colors */
    --color-dark-grey: #231f20;
    --color-grey: #454042;
    --color-blue: #007dc4;
    --color-light-blue: #48a9db;
    --color-red: #dc1e30;
    --color-orange: #f07400;
    --color-green: #569742;

    --text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-basic);
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
/* body.menu--on {
    overflow: hidden;
} */
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 1;
    font-weight: 900;
    margin: 50px 0 40px 0;
}
h2 {
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 1;
    font-weight: 900;
    margin: 40px 0;
}
h3 {
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    margin: 40px 0;
}
h4 {
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    margin: 35px 0 20px 0;
}
h5 {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin: 30px 0 15px 0;
}
h6 {
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    margin: 20px 0 15   px 0;
}
ul,
ol {
    margin: 20px 0;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}
ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.is-loading .body__inner {
    opacity: 0.2;
}
.wrapper {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
}
.wrapper--lg {
    width: 1200px;
}
.relative {
    position: relative;
    z-index: 1;
}
.cover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.cover.full-width {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
}
.text--italic {
    font-style: italic;
}
.bg--dark {
    background-color: #000;
    color: #fff;
    padding: 70px 0;
}
.bg--grey {
    background-color: #b2b2b2 !important;
}
.align--left {
    text-align: left;
}
.align--center {
    text-align: center;
}
.align--right {
    text-align: right;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-align--center {
    align-items: center;
}
.flex-justify--center {
    justify-content: center;
}
.wp-block-image {
    margin: 30px 0;
}
.wp-block-image:first-child {
    margin-top: 0;
}
.wp-block-image:last-child {
    margin-bottom: 0;
}
.disable-margin--top {
    margin-top: 0 !important;
}
.disable-margin--bottom {
    margin-bottom: 0 !important;
}
.disable-margin--top-and-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.visibility--hidden {
    display: none !important;
}

/* GRID ********************************************************************************/
.grid {
    display: grid;
    gap: 20px;
}
.grid.grid--1 {
    display: block;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* ACCORDION ********************************************************************************/
.js-accordion-body {
    display: none;
}


/* LOADING ********************************************************************************/
@keyframes loading {
    from {
      transform: scale(0);
      opacity: 1;
    }
  
    to {
      transform: scale(1);
      opacity: 0;
    }
}
.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 555;
}
body.is-loading .loading {
    display: block;
}
.loading div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.3rem solid #000;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}

/* DATE ********************************************************************************/
.date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    font-size: 25px;
    color: #fff;
    background-color: #000;
    text-transform: uppercase;
    padding: 10px 20px;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btns:not(:first-child) {
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70px;
    font-size: 25px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 50px;
    background-color: transparent;
    border: 2px solid #fff;
    transition: all .2s ease;
    cursor: pointer;
    text-shadow: none !important;
}
.btn.btn--md {
    height: 60px;
    padding: 10px 45px;
}
.btn.btn--sm {
    height: 50px;
    padding: 10px 40px;
}
.btn--white {
    color: #000;
    background-color: #fff;
}
.btn:hover {
    color: #000;
    background-color: #fff;
}

/* CLOSE ********************************************************************************/
.close {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1;
}
.close::before,
.close::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 3px;
    width: 70px;
    border-radius: 2px;
    background-color: #fff;
    z-index: 1;
}
.close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* TEXT BODY ********************************************************************************/
.text__body {
    color: #fff;
    line-height: 1.6;
}
.text__body.color--dark {
    color: #000;
}
.text__body__title {
    position: relative;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    z-index: 1;
}
.text__body__title:not(:last-child) {
    margin-bottom: 40px;
}
.text__body a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}
.text__body.color--dark a:not(.btn) {
    color: #000;
}
.text__body a:hover {
    text-decoration: none;
}
.text__body ul li {
    position: relative;
    padding-left: 15px;
    z-index: 1;
}
.text__body ul li:not(:last-child) {
    margin-bottom: 10px;
}
.text__body ul li:before {
    position: absolute;
    content: "";
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 1;
}
.text__body.color--dark ul li:before {
    background-color: #000;
}
.text__body h1 {
    font-size: 80px;
}
.text__body h2 {
    font-size: 60px;
}
.text__body h3 {
    font-size: 50px;
}
.text__body h4 {
    font-size: 40px;
}
.text__body h5 {
    font-size: 30px;
}
.text__body h6 {
    font-size: 25px;
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    z-index: 1;
}
.section__title {
    margin-bottom: 50px;
}
.section__title * {
    margin: 0;
}
.section__title *:not(:last-child) {
    margin-bottom: 10px;
}
.section__title > span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    z-index: 1;
}

/* SLICK SLIDER ********************************************************************************/
.slick-track {
    max-width: unset;
    margin: 0;
}

/* MODAL ********************************************************************************/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
}
.modal.is-visible {
    display: block;
}
.modal .close {
    position: absolute;
    top: 68px;
    right: 58px;
}
.modal .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 90px;
}
.modal iframe {
    width: 900px;
    max-width: 100%;
    height: 500px;
    max-height: 100%;
}
.modal video {
    width: 900px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}


/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header {
    position: relative;
    background-color: #000;
    z-index: 10;
}
.header .inner {
    position: relative;
    z-index: 1;
}
.header__logo {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 195px;
    height: 195px;
    flex-shrink: 0;
    z-index: 1;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
}
.header__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 30px ;
    flex-grow: 1;
}
.hamburger {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: var(--color-grey);
    cursor: pointer;
    z-index: 1;
}
.hamburger::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 37px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    pointer-events: none;
    z-index: 1;
}
.hamburger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 3px;
    background-color: #fff;
    pointer-events: none;
    z-index: 1;
}
.header__navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    color: #fff;
    transition: all .4s ease;
    background-color: #000;
    opacity: 0;
    z-index: 100;
}
body.menu--on .header__navigation {
    transform: translateY(0);
    opacity: 1;
}
.header__navigation .inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 100px;
    z-index: 1;
}
.header__navigation .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background-color: var(--color-grey);
    cursor: pointer;
    z-index: 1;
}
.header__navigation__contacts {
    width: 320px;
    margin-bottom: 100px;
}
.header__navigation__logo {
    display: block;
    width: 295px;
    height: 295px;
    margin-top: 4px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
}
.header__navigation__logo:not(:last-child) {
    margin-bottom: 30px;
}
.header__navigation__logo img {
    max-width: 100%;
    max-height: 100%;
}
.header__navigation__contacts__text {
    font-size: 25px;
    font-weight: 700;
}
.header__navigation__menus {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.header__navigation__menus__primary,
.header__navigation__menus__secondary {
    display: flex;
    flex-flow: column;
    margin-top: 120px;
    margin-bottom: 100px;
}
.header__navigation__menus__primary a,
.header__navigation__menus__secondary a {
    display: flex;
    align-items: center;
    min-height: 100px;
    color: #fff;
    background-color: transparent;
    text-transform: uppercase;
}
.header__navigation__menus__primary a:first-child {
    border-top: 1px solid #fff;
}
.header__navigation__menus__primary a {
    width: 400px;
    font-size: 60px;
    font-family: var(--font-heading-condensed);
    border-bottom: 1px solid #fff;
}
.header__navigation__menus__secondary a {
    width: 260px;
    font-size: 25px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header__navigation__menus__secondary a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.header__navigation__menus__primary a:hover,
.header__navigation__menus__secondary a:hover {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.05);
}
.header__navigation__socials {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
    z-index: 1;
}
.header__navigation__socials::before,
.header__navigation__socials::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.header__navigation__socials::before {
    top: 0;
}
.header__navigation__socials::after {
    bottom: 0;
}
.header__navigation__socials .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}
.header__navigation__socials .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: var(--color-red);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    transition: all .2s ease;
}
.header__navigation__socials .socials a:hover {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
}
.header__navigation .mailing-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 30px;
    padding: 30px 0;
}
.header__navigation .mailing-list__text {
    font-size: 25px;
    font-weight: 700;
    flex-grow: 1;
    text-align: center;
}



/****************************************************************************************************
        PAGEBUILDER       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.page-section {
    position: relative;
    margin: 50px 0;
    z-index: 1;
}
.page-section.vivibility--hidden {
    display: none !important;
}

/* HERO ********************************************************************************/
.hero:not(.hero--carousel) {
    position: relative;
    display: flex;
    align-items: flex-end;
    background-color: #000;
    overflow: hidden;
    z-index: 1;
}
.hero.hero--extended {
    min-height: calc(100vh - 120px);
}
.hero.hero--compact {
    min-height: 600px;
}
/* .hero.hero--carousel .cover {
    bottom: 150px;
    min-height: calc(100% - 150px);
} */
.hero__item {
    position: relative;
    overflow: hidden;
    background-color: var(--color-red);
    z-index: 1;
}
.hero__item .inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 120px);
    padding-bottom: 150px;
    z-index: 1;
}
.hero__item .btns {
    position: absolute;
    bottom: 40px;
    left: 0;
    margin: 0;
}
.hero__iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    max-width: unset;
    max-height: unset;
    min-width: calc(100% + 10px);
    min-height: calc(100% + 10px);
    z-index: 1;
}
.hero__content {
    color: #fff;
    text-shadow: var(--text-shadow);
    padding: 50px 0;
}
.hero__title {
    font-family: var(--font-heading);
}
h1.hero__title {
    font-size: 180px;
    line-height: 1;
}
h2.hero__title {
    font-size: 90px;
    line-height: 1.2;
}
.hero__title:not(:last-child) {
    margin-bottom: 20px;
}
.hero__subtitle {
    font-size: 35px;
    font-weight: 700;
}
.hero .date:not(:first-child) {
    margin-top: 30px;
}
.hero.hero--carousel .slick-arrow {
    position: absolute;
    top: auto;
    bottom: 25px;
    right: calc((100vw - 1100px) / 2);
    width: 100px;
    height: 100px;
    left: auto;
    transform: translate(0, 0);
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    transition: all .2s ease;
    cursor: pointer;
    z-index: 1;
}
.hero.hero--carousel .slick-arrow:before {
    position: absolute;
    content: "V";
    top: 50%;
    left: 50%;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    z-index: 1;
}
.hero.hero--carousel .slick-prev {
    margin-right: 140px;
}
.hero.hero--carousel .slick-prev:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.hero.hero--carousel .slick-next:before {
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* TEXT ********************************************************************************/
.text {
    padding: 100px 0;
}
.text--plain .inner,
.text--multiple .inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.text .text__body {
    width: 820px;
}
.text--introduction .text__body {
    width: 960px;
}
.text--multiple .text__body:not(:last-child) {
    position: relative;
    padding-bottom: 80px;
    margin-bottom: 80px;
    z-index: 1;
}
.text--multiple .text__body:not(:last-child):before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 1100px;
    max-width: 1100px;
    height: 2px;
    background-color: var(--color-grey);
    z-index: 0;
}
.text--introduction .text__body {
    font-size: 50px;
    line-height: 1.2    ;
    font-family: var(--font-secondary);
}
.text--plain .text__body__title:before {
    position: absolute;
    content: "";
    top: 20px;
    left: -150px;
    transform: translateX(-100%);
    width: 100vw;
    height: 2px;
    background-color: #fff;
    z-index: -1;
}
.text--multiple .text__body__title:before,
.text--plain .text__body.color--dark .text__body__title:before {
    background-color: var(--color-red);
}

/* TEXT AND IMAGE ********************************************************************************/
.text-image__content {
    width: 540px;
    padding: 50px 0;
}
.text-image__title {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    z-index: 1;
}
.text-image__title::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: -120px;
    width: 100%;
    height: 2px;
    background-color: var(--color-red);
    z-index: 1;
}
.text-image.image-align--right .text-image__title::before {
    left: auto;
    right: -120px;
}
.text-image__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* TYPE STRETCHED */
.text-image.type--stretched {
    position: relative;
    color: #fff;
    background-color: #000;
    min-height: 650px;
    z-index: 1;
}
.text-image.type--stretched .inner {
    display: flex;
    justify-content: flex-end;
}
.text-image.image-align--right.type--stretched .inner {
    justify-content: flex-start;
}
.text-image.type--stretched .text-image__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 650px;
    height: 650px;
    z-index: 1;
}
.text-image.image-align--right.type--stretched .text-image__image {
    right: 0;
    left: auto;
}
.text-image.type--stretched .text-image__title::before {
    left: -120px;
    right: auto;
}
.text-image.image-align--right.type--stretched .text-image__title::before {
    left: auto;
    right: -120px;
}

/* TYPE CARD */
.text-image.type--card {
    color: #fff;
    background-color: #000;
    padding: 100px 0;
}
.text-image.type--card .inner {
    display: flex;
    gap: 20px;
}
.text-image.image-align--right.type--card .inner {
    flex-direction: row-reverse;
}
.text-image.type--card .text-image__image {
    width: 590px;
    height: 590px;
}
.text-image.type--card .text-image__content {
    width: 590px;
    padding: 0;
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
}
.text-image.type--card .text-image__title {
    padding: 30px 50px;
    border-bottom: 2px solid var(--color-red);
}
.text-image.type--card .text-image__title::before {
    display: none;
}
.text-image.type--card .text__body {
    padding: 0 50px;
    padding-bottom: 20px;
}

/* TYPE PLAIN */
.text-image.type--plain .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.text-image.type--plain:not(:last-child) .inner {
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
}
.text-image.type--plain.image-align--right .inner {
    flex-direction: row-reverse;
}
.text-image.type--plain .text-image__image {
    width: 450px;
    height: 450px;
    flex-shrink: 0; 
}
.text-image.type--plain .text-image__content,
.text-image.type--plain .text-image__content .text__body {
    color: var(--color-grey);
}
.text-image.type--plain.image-align--right .text-image__title::before {
    left: auto;
    right: -120px;
}

/* GALLERY ********************************************************************************/
.gallery {
    color: #fff;
    background-color: #000;
    padding: 40px 0 67px;
}
.gallery__title {
    font-family: var(--font-secondary);
    font-size: 50px;
    line-height: 1.1;
    text-align: center;
    background-color: var(--color-blue);
    padding: 50px 15px;
}

.gallery__caption {
	font-family: var(--font-basic);
    font-size: 20px;
    line-height: 1.1;
    text-align: center;
    padding: 40px 15px 0 15px;
	position: absolute;
    width: 100%;
    bottom: -40px;
}


.gallery__items:not(:first-child) {
    margin-top: 40px;
}
.gallery__items .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.gallery__items .slick-dots li {
    display: block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    cursor: pointer;
}
.gallery__items .slick-dots li * {
    display: none;
}
.gallery__items .slick-dots li.slick-active {
    background-color: #dc1e30;
}
.gallery__items .slick-list {
	overflow: visible!important;
}
.gallery__item {
    position: relative;
    height: 670px;
    z-index: 1;
}
.gallery__item__placeholder {
    cursor: pointer;
}
.gallery__item__iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.gallery__item__iframe iframe {
    width: 100%;
    height: 670px;
}

/* CTA ********************************************************************************/
.cta .grid {
    gap: 0 20px;
}
.page-section--cta:not(.disable-margin--top):not(.disable-margin--top-and-bottom) {
    padding-top: 50px;
    border-top: 2px solid var(--color-red);
}
.page-section--cta:not(.disable-margin--bottom):not(.disable-margin--top-and-bottom) {
    padding-bottom: 50px;
    border-bottom: 2px solid var(--color-red);
}
.cta__item {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 50px;
    padding-bottom: 140px;
    text-shadow: var(--text-shadow);
    z-index: 1;
}
.grid--2 .cta__item {
    min-height: 340px;
}
.cta__item.cta__item--history {
    display: block;
    padding: 100px 0;
}
.cta__item.cta__item--inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
}
.cta__item.cta__item--banner {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    align-content: center;
    justify-content: center;
    min-height: 700px;
    padding: 100px 0;
}
.grid--1 .cta__item.cta__item--card {
    padding: 100px 50px;
    padding-bottom: 160px;
}
.cta__item__image.has-overlay:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.grid--1 .cta__item.cta__item--card .cta__item__content {
    width: 950px;
}
.cta__item__title {
    position: relative;
    font-size: 80px;
    line-height: 1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
    z-index: 1;
}
.cta__item__title:not(:last-child) {
    margin-bottom: 30px;
}
.cta__item__title.serif {
    font-family: var(--font-heading);
    text-transform: capitalize;
}
.cta__item--inline .cta__item__title  {
    font-size: 60px;
}
.cta__item--history .cta__item__title:not(:last-child) {
    display: inline-block;
    padding-right: 100px;
    margin-bottom: 80px;
}
.cta__item.cta__item--banner .cta__item__title {
    padding-bottom: 40px;
    margin-bottom: 30px;
}
.cta__item.cta__item--banner .cta__item__title::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background-color: #fff;
    z-index: 1;
}
.cta__item.cta__item--history .cta__item__title::before,
.grid--1 .cta__item.cta__item--card .cta__item__title::before {
    position: absolute;
    content: "";
    top: 38px;
    right: 0;
    transform: translateX(100%);
    width: 100vw;
    height: 2px;
    background-color: #fff;
    z-index: -1;
}
.cta__item__title span {
    display: block;
    font-weight: 400;
    font-size: 60px;
}
.cta__item__subtitle {
    font-size: 40px;
    font-weight: 700;
}
.cta__item--inline .cta__item__title span {
    font-size: 40px;
    margin-top: 20px;
}
.cta__item .btn {
    flex-shrink: 0;
}
.cta__item:not(.cta__item--inline):not(.cta__item--banner):not(.cta__item--history) .btn {
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: calc(100% - 100px);
}
.cta__item.cta__item--history .btn:not(:first-child),
.cta__item.cta__item--banner .btn:not(:first-child) {
    margin-top: 50px;
}
.grid--1 .cta__item:not(.cta__item--inline) .btn {
    bottom: 100px;
}
.cta__item .text__body {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    z-index: 1;
}
.cta__item.cta__item--history .text__body {
    width: 680px;
    min-height: 224px;
}
.cta__item__badge {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-flow: column;
    position: absolute;
    top: 50%;
    transform: translate(-100%, -50%);
    left: 1200px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid #000;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.6);
}
.cta__item__badge span {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}
.cta__item__badge strong {
    position: relative;
    font-family: var(--font-heading-condensed);
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    z-index: 1;
}
.cta__item__badge strong:not(:first-child) {
    margin-top: 30px;
}
.cta__item__badge strong:not(:first-child):before {
    position: absolute;
    content: "...";
    top: -46px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 40px;
    z-index: 1;
}

/* CLASSES ********************************************************************************/
.classes {
    background-color: #000;
}
.classes__item {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 20px;
    z-index: 1;
}
.classes__item:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
}
.classes__item__image {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.classes__item__content {
    flex-grow: 1;
    max-width: 550px;
}
.classes__item__title {
    font-weight: 700;
    font-size: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-orange);
    margin-bottom: 25px;
}
.classes__item__title,
.classes__item .text__body {
    padding-left: 130px;
}
.classes__item__details {
    font-size: 20px;
    margin-bottom: 30px;
}

/* PROGRAMS ********************************************************************************/
.programs {
    background-color: #000;
}
.programs__item {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 20px;
    z-index: 1;
}
.programs__item:not(:last-child) {
    margin-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 50px;
}
.programs__item__image {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.programs__item__content {
    flex-grow: 1;
    max-width: 550px;
}
.programs__item__title {
    font-weight: 700;
    font-size: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-orange);
    margin-bottom: 25px ;
}
.programs__item__title,
.programs__item .text__body {
    padding-left: 130px;
}
.programs__item__details {
    font-size: 20px;
    margin-bottom: 30px;
}

/* SHOWS GRID ********************************************************************************/
.shows__title {
    color: #fff;
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    background-color: var(--color-blue);
    text-transform: uppercase;
    padding: 40px 0;
}
.shows__title:not(:last-child) {
    margin-bottom: 70px;
}
.shows__title .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.shows-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 50px;
    font-weight: 700;
    background-color: transparent;
    cursor: pointer;
    display: none !important;
}
.shows__item {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
.shows__item__title {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    min-height: 500px;
    width: 100%;
    font-family: var(--font-heading);
    line-height: 1;
    font-weight: 900;
    font-size: 90px;
    padding: 25px;
    color: #fff;
    text-shadow: var(--text-shadow);
}
.shows__item__title span {
    pointer-events: none;
}
.shows__item__footer {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px;
    background-color: #000;
}
.shows__item__footer .date {
    width: 50%;
    padding: 0;
}
.shows__item__footer .btn {
    width: 50%;
}
.shows__footer {
    color: #fff;
    text-align: center;
    background-color: var(--color-blue);
    padding: 40px 0;
}
.shows__footer:not(:first-child) {
    margin-top: 70px;
}

/* TEAM ********************************************************************************/
.team {
    color: #fff;
    background-color: #000;
}
.team__department__title {
    position: relative;
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
    padding: 38px 0;
    z-index: 1;
}
.team__department__title:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: 100vw;
    width: 100vw;
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    z-index: -1;
}
.team__department__member {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 25px;
    gap: 30px;
    padding: 30px 0;
    z-index: 1;
}
.team__department__member:not(:last-child)::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: calc(100% + 50px);
    max-width: calc(100% + 50px);
    background-color: var(--color-grey);
    z-index: -1;
}
.team__department__member__position {
    width: 700px;
    flex-shrink: 0;
}

/* CAST GRID ********************************************************************************/
.cast-grid {
    color: #fff;
    background-color: #000;
}
.cast-grid .inner {
    padding: 40px 0;
}
.cast-grid__title {
    font-family: var(--font-secondary);
    font-size: 50px;
    line-height: 1.1;
    text-align: center;
    background-color: var(--color-blue);
    padding: 50px 15px;
}
.cast-grid__title:not(:last-child) {
    margin-bottom: 40px;
}
.cast__item {
    text-align: center;
}
.cast__item .background {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cast__item .background:not(:last-child) {
    margin-bottom: 20px;
}
.cast__item__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* HISTORY TIMELINE ********************************************************************************/
.history-timeline {
    color: #fff;
    background-color: #000;
}
.history-timeline__periods {
    width: 970px;
    padding: 80px 0;
}
.history-timeline__period {
    padding-left: 140px;
    border-right: 2px solid var(--color-red);
}
.history-timeline__period:not(:last-child) {
    padding-bottom: 60px;
}
.history-timeline__period__title {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    padding: 30px 0;
    z-index: 1;
}
.history-timeline__period__title:before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 830px;
    height: 2px;
    background-color: var(--color-red);
}
.history-timeline__period__year {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    font-family: var(--font-heading-condensed);
    font-size: 60px;
    color: var(--color-red);
    border: 2px solid #fff;
    background-color: #000;
    z-index: 1;
}
.history-timeline__period__block__year {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    padding: 30px 0;
    border-bottom: 2px solid var(--color-red);
    z-index: 1;
}
.history-timeline__period__block:first-child .history-timeline__period__block__year {
    padding-top: 120px;
}
.history-timeline__period__block__year:before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    transform: translate(50%, 50%);
    background-color: #000;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}
.history-timeline__period__block .text__body {
    width: 540px;
    padding-top: 40px;
}
.history-timeline__period__block:not(:last-child) .text__body {
    padding-bottom: 40px;
}

/* STATS ********************************************************************************/
.stats {
    color: #fff;
    text-align: center;
    background-color: var(--color-green);
    padding: 100px 0;
}
.stats__title {
    position: relative;
    font-size: 50px;
    font-family: var(--font-heading);
    padding-bottom: 40px;
    margin-bottom: 40px;
    z-index: 1;
}
.stats__title::before {
    position: absolute;
    content: "...";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
    font-family: var(--font-heading-condensed);
    line-height: 1;
    letter-spacing: 10px;
    z-index: 1;
}
.stats__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px 90px;
    border-top: 2px solid #fff;
    padding-top: 70px;
}
.stats__item {
    display: flex;
    flex-flow: column;
}
.stats__item strong {
    font-size: 90px;
    font-family: var(--font-heading);
    font-weight: 900;
    text-shadow: var(--text-shadow);
}
.stats__item span {
    position: relative;
    display: inline-flex;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 40px;
    z-index: 1;
}
.stats__item span::before {
    position: absolute;
    content: "...";
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 5px;
    z-index: 1;
}

/* HEADING ********************************************************************************/
.heading {
    padding: 50px 0;
}
.heading__title {
    color: #fff;
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-heading-condensed);
    text-shadow: var(--text-shadow);
}
h1.heading__title {
    font-size: 80px;
}
h2.heading__title {
    font-size: 60px;
}

/* SPONSORS ********************************************************************************/
.sponsors__title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}
.sponsors__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 20px;
    padding: 70px 0;
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    margin: 50px 0;
}
.sponsors__item {
    width: 260px;
    text-align: center;
}
.sponsors__item__logo {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sponsors__item__logo:not(:last-child) {
    margin-bottom: 20px;
}
.sponsors__item span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

/* GOFT CAEDS ********************************************************************************/
.gift-cards__item {
    position: relative;
    display: flex;
    gap: 50px 20px;
    padding: 100px 0;
    z-index: 1;
}
.gift-cards__item .cover.full-width {
    background-color: #fff;
}
.gift-cards__item:nth-child(2n+1) .cover.full-width {
    background-color: #000;
}
.gift-cards__item__image {
    align-self: flex-start;
    text-align: center;
    width: 520px;
    flex-shrink: 0;
    background-color: var(--color-dark-grey);
    padding: 70px;
}
.gift-cards__item__image .btns:not(:first-child) {
    margin-top: 50px;
}
.gift-cards__item__content {
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 60px;
}
.gift-cards__item__title {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    padding: 50px 30px;
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    margin-bottom: 50px;
}
.gift-cards__item .text__body {
    padding: 0 30px;
}
.gift-cards__item:nth-child(1n+2) .gift-cards__item__title,
.gift-cards__item:nth-child(1n+2) .text__body,
.gift-cards__item:nth-child(1n+2) .text__body a:not(.btn) {
    color: var(--color-dark-grey);
}
.gift-cards__item:nth-child(1n+2) .text__body ul li:before {
    background-color: var(--color-dark-grey);
}

/* FAQS ********************************************************************************/
.faqs {
    color: #fff;
    background-color: #000;
}
.faqs__item {
    position: relative;
    padding: 20px 0;
    z-index: 1;
}
.faqs__item::before,
.faqs__item::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    height: 2px;
    background-color: var(--color-red);
    opacity: 0;
    z-index: -1;
}
.faqs__item:first-child:before {
    top: 0;
    opacity: 1;
}
.faqs__item::after {
    bottom: 0;
    opacity: 1;
}
.faqs__item__title {
    position: relative;
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
    cursor: pointer;
    padding-right: 50px;
    z-index: 1;
}
.faqs__item__title:before {
    position: absolute;
    content: "+";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 60px;
    z-index: 1; 
}
.faqs__item.is-active .faqs__item__title:before {
    content: "-";
}
.faqs__item__text {
    position: relative;
    padding: 90px 0;
    padding-left: 280px;
    z-index: 1;
}
.faqs__item__text:not(:last-child):before {
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 1200px;
    height: 2px;
    background-color: var(--color-grey);
    z-index: 1;
}
.faqs__item__text__title {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    z-index: 1;
}
.faqs__item__text__title:before {
    position: absolute;
    content: "";
    left: -150px;
    top: 50%;
    transform: translate(-100%, -50%);
    height: 2px;
    width: 100vw;
    max-width: 100vw;
    background-color: var(--color-red);
    z-index: -1;
}

/* CONTACTS ********************************************************************************/
.contacts {
    position: relative;
    color: #fff;
    background-color: #000;
    min-height: 650px;
    z-index: 1;
}
.contacts__content {
    width: 540px;
    padding: 50px 0;
}
.contacts__title {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    z-index: 1;
}
.contacts__title::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: auto;
    right: -120px;
    width: 100%;
    height: 2px;
    background-color: var(--color-red);
    z-index: 1;
}
.contacts__map {
    position: absolute;
    right: 0;
    top: 0;
    width: 650px;
    height: 650px;
    z-index: 1;
}
.contacts__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* SOCIALS ********************************************************************************/
.socials__outer {
    background-color: var(--color-red);
}
.socials {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 50px 0;
}
.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
}

/* PRODUCERS CIRCLE ********************************************************************************/
.producers-circle {
    color: #fff;
    background-color: #000;
}
.producers-circle__title {
    font-size: 60px;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
    padding: 35px 0;
}
.producers-circle__top {
    background-color: var(--color-grey);
    padding: 80px 0;
}
.producers-circle__top p {
    display: block;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}
.producers-circle__top__title {
    display: inline-block;
    position: relative;
    font-size: 80px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
    z-index: 1;
}
.producers-circle__top__title::before {
    position: absolute;
    content: "";
    right: -60px;
    top: 44px;
    transform: translateX(100%);
    width: 100vw;
    height: 2px;
    background-color: #fff;
    z-index: -1;
}
.producers-circle__top__subtitle {
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
}
.producers-circle__list {
    padding: 80px 0;
}
.producers-circle__item {
    display: flex;
    align-items: flex-start;
    gap: 60px 30px;
}
.producers-circle__item:not(:last-child) {
    padding-bottom: 80px;
    border-bottom: 2px solid var(--color-grey);
    margin-bottom: 80px;
}
.producers-circle__item__category {
    font-size: 80px;
    font-family: var(--font-heading-condensed);
}
.producers-circle__item__head {
    width: 500px;
    flex-shrink: 0;
    overflow: hidden;
}
.producers-circle__item__head span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    font-weight: 700;
    z-index: 1;
}
.producers-circle__item__head span::before {
    position: absolute;
    content: "";
    top: 24px;
    right: -30px;
    transform: translateX(100%);
    width: 500px;
    max-width: 500px;
    height: 2px;
    background-color: var(--color-red);
    z-index: 1;
}
.producers-circle__item__price {
    font-size: 50px;
    font-family: var(--font-heading);
}

/* ARTISTS CIRCLE / INDIVIDUAL GIFTS ********************************************************************************/
.artists-circle,
.individual-gifts {
    color: #fff;
    background-color: #000;
}
.artists-circle__title,
.individual-gifts__title {
    font-size: 60px;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
    padding: 35px 0;
    border-top: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
}
.artists-circle__list .inner,
.individual-gifts__list .inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 80px 0;
    gap: 60px 0;
}
.artists-circle__item,
.individual-gifts__item {
    border-left: 2px solid var(--color-grey);
    padding-left: 16px;
}
.artists-circle__item__head,
.individual-gifts__item__head {
    margin-bottom: 20px;
} 
.artists-circle__item__category {
    font-size: 80px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
}
.individual-gifts__item__category {
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--font-heading-condensed);
    text-transform: uppercase;
}
.artists-circle__item__head span {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}
.artists-circle__item__price,
.individual-gifts__item__price {
    font-size: 25px;
    font-weight: 700;
}



/****************************************************************************************************
        SHOW       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show-tickets {
    min-height: 150px;
    padding: 40px 0;
    background-color: var(--color-light-blue);
}
.show-tickets .inner {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    background-color: #000;
    gap: 30px;
}   
.show-tickets .date {
    height: auto;
}
.show-tickets .date:not(:last-child) {
    position: relative;
    z-index: 1;
}
.show-tickets .date:not(:last-child):before {
    position: absolute;
    content: "";
    top: 0;
    right: -6px;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.show-content .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.show-content .text__body {
    color: var(--color-grey);
    flex-grow: 1;
    padding: 60px 0;
}
.show-content .text__body ul li::before {
    background-color: #000;
}
.show-content .text__body h1, 
.show-content .text__body h2, 
.show-content .text__body h3, 
.show-content .text__body h4,
.show-content .text__body h5,
.show-content .text__body h6 {
    font-family: var(--font-basic);
    font-weight: 700;
    color: var(--color-light-blue);
}
.show-content__summary {
    font-size: 50px;
    line-height: 1.2;
    font-family: var(--font-heading);
    color: var(--color-light-blue);
}
.show-content__summary:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 2px solid var(--color-light-blue);
    margin-bottom: 60px;
}
.show-content__sidebar {
    width: 450px;
    flex-shrink: 0;
}
.show-content__thumbnail {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin-top: -150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.show-content__credits {
    color: var(--color-grey);
}
.show-content__credits:not(:first-child) {
    margin-top: 60px;
}
.show-content__credit:not(:last-child) {
    margin-bottom: 5px;
}
.show-content__credits span {
    display: block;
}
.show-content__credits strong {
    font-weight: 700;
    text-transform: uppercase;
}



/****************************************************************************************************
        SHOW       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.cast-content .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.cast-content .text__body {
    color: var(--color-grey);
    flex-grow: 1;
    padding: 60px 0;
}
.cast-content .text__body ul li::before {
    background-color: #000;
}
.cast-content .text__body h1, 
.cast-content .text__body h2, 
.cast-content .text__body h3, 
.cast-content .text__body h4 {
    font-family: var(--font-basic);
    font-weight: 700;
    color: var(--color-light-blue);
}
.cast-content__summary {
    font-size: 50px;
    line-height: 1.2;
    font-family: var(--font-heading);
    color: var(--color-light-blue);
}
.cast-content__summary:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 2px solid var(--color-light-blue);
    margin-bottom: 60px;
}
.cast-content__thumbnail {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/****************************************************************************************************
        CLASS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.class-register {
    min-height: 150px;
    padding: 40px 0;
    background-color: var(--color-orange);
}
.class-content .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.class-content .text__body {
    color: var(--color-grey);
    flex-grow: 1;
    padding: 60px 0;
}
.class-content .text__body ul li::before {
    background-color: #000;
}
.class-content__details {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-orange);
}
.class-content__details:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 2px solid var(--color-orange);
    margin-bottom: 60px;
}
.class-content__thumbnail {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    margin-top: -150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/****************************************************************************************************
        PROGRAM       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.program-register {
    min-height: 150px;
    padding: 40px 0;
    background-color: var(--color-orange);
}
.program-content .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.program-content .text__body {
    color: var(--color-grey);
    flex-grow: 1;
    padding: 60px 0;
}
.program-content .text__body ul li::before {
    background-color: #000;
}
.program-content__details {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-orange);
}
.program-content__details:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 2px solid var(--color-orange);
    margin-bottom: 60px;
}
.program-content__thumbnail {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    margin-top: -150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    color: #fff;
    background-color: var(--color-red);
}
.footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 100px;
}
.footer__contacts {
    width: 320px;
    margin-bottom: 100px;
}
.footer__logo {
    display: block;
    width: 295px;
    height: 295px;
    margin-top: 4px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
}
.footer__logo:not(:last-child) {
    margin-bottom: 30px;
}
.footer__logo img {
    max-width: 100%;
    max-height: 100%;
}
.footer__contacts__text {
    font-size: 25px;
    font-weight: 700;
}
.footer__menus {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.footer__menus__primary,
.footer__menus__secondary {
    display: flex;
    flex-flow: column;
    margin-top: 120px;
    margin-bottom: 100px;
}
.footer__menus__primary a,
.footer__menus__secondary a {
    display: flex;
    align-items: center;
    min-height: 100px;
    color: #fff;
    background-color: transparent;
    text-transform: uppercase;
}
.footer__menus__primary a:first-child {
    border-top: 1px solid #fff;
}
.footer__menus__primary a {
    width: 400px;
    font-size: 60px;
    font-family: var(--font-heading-condensed);
    border-bottom: 1px solid #fff;
}
.footer__menus__secondary a {
    width: 260px;
    font-size: 25px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.footer__menus__secondary a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer__menus__primary a:hover,
.footer__menus__secondary a:hover {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.05);
}
.footer__socials {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
    z-index: 1;
}
.footer__socials::before,
.footer__socials::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.footer__socials::before {
    top: 0;
}
.footer__socials::after {
    bottom: 0;
}
.footer__socials .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}
.footer__socials .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: transparent;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    transition: all .2s ease;
}
.footer__socials .socials a:hover {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
}
.mailing-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 30px;
    padding: 30px 0;
}
.mailing-list__text {
    font-size: 25px;
    font-weight: 700;
    flex-grow: 1;
    text-align: center;
}
.footer__copyright {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px 0;
}
.footer__links a {
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
    color: #fff;
    z-index: 1;
}
.footer__links a::before {
    position: absolute;
    content: "";
    top: 8px;
    left: -4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 1;
}
.footer__links a:hover {
    text-decoration: underline;
}



/****************************************************************************************************
        RESPONSIVE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs,
.visibility--mobile-only {
    display: none;
}
@media only screen and (max-width: 1559px) {
    .text-image.type--stretched .text-image__image,
    .contacts__map {
        width: 550px;
        height: 550px;
    }
    .contacts {
        min-height: 550px;
    }
}
@media only screen and (max-width: 1359px) {
    .text-image.type--stretched .text-image__image,
    .contacts__map {
        width: 450px;
        height: 450px;
    }
    .contacts {
        min-height: 450px;
    }
}
@media only screen and (max-width: 1299px) {
    .hide--lg {
        display: none !important;
    }
    .show--lg {
        display: block;
    }
    .wrapper--lg {
        width: 1100px;
    }
    .header__navigation__menus__primary a,
    .footer__menus__primary a {
        width: 390px;
    }
    .text-image__title::before {
        left: -40px;
    }
    .contacts__title::before,
    .text-image.type--stretched.image-align--right .text-image__title::before {
        right: -40px;
    }
    .text-image.type--stretched.image-align--left .text-image__title::before {
        left: -40px;
    }
    .cta__item__badge {
        left: 1100px;
    }
}
@media only screen and (max-width: 1199px) {
    .hide--lg {
        display: none !important;
    }
    .show--lg {
        display: block;
    }
    .wrapper,
    .wrapper--lg {
        width: 930px;
    }
    .hero.hero--carousel .slick-arrow {
        right: calc((100vw - 930px) / 2);
    }
    h1.hero__title {
        font-size: 140px;
    }
    h2.hero__title {
        font-size: 80px;
    }
    .shows__title {
        font-size: 50px;
    }
    .shows__item__title {
        min-height: 455px;
        font-size: 70px;
    }
    .date {
        font-size: 22px;
    }
    .cta__item__title span {
        font-size: 50px;
    }
    .header__navigation .inner,
    .footer .inner {
        gap: 0 60px;
    }
    .header__navigation__contacts,
    .footer__contacts {
        width: 265px;
    }
    .header__navigation__logo,
    .footer__logo {
        width: 265px;
        height: 265px;
    }
    .header__navigation__menus__primary a,
    .header__navigation__menus__secondary a,
    .footer__menus__primary a, 
    .footer__menus__secondary a {
        min-height: 90px;
    }
    .header__navigation__menus__primary a, 
    .footer__menus__primary a {
        width: 320px;
        font-size: 50px;
    }
    .header__navigation__menus__secondary a,
    .footer__menus__secondary a {
        width: 240px;
    }
    .mailing-list__text {
        font-size: 22px;
    }
    .text-image__content {
        width: 460px;
    }
    .text-image__title::before {
        left: -20px;
    }

    .contacts__title::before,
    .text-image.type--stretched.image-align--right .text-image__title::before,
    .text-image.image-align--right .text-image__title::before {
        right: -20px;
    }
    .text-image.type--stretched.image-align--left .text-image__title::before {
        left: -20px;
    }
    .text-image__title {
        font-size: 30px;
    }
    .cta__item.cta__item--history .text__body {
        width: 580px;
    }
    .cta__item__badge {
        left: 930px;
    }
    .grid--1 .cta__item.cta__item--card .cta__item__content {
        width: 750px;
    }
    .cta__item__title {
        font-size: 64px;
    }
    .contacts__content {
        width: 440px;
    }
    .text--plain .text__body__title::before {
        left: -120px;
    }
    .producers-circle__top__title::before {
        display: none;
    }
    .text.text--plain .text__body,
    .text .text__body.text--plain,
    .text--multiple .text__body:not(:last-child) {
        width: 620px;
    }
    .gift-cards__item__image {
        width: 420px;
        padding: 50px;
    }
    .gift-cards__item__title {
        font-size: 30px;
    }
    .show-content__sidebar,
    .class-content__thumbnail,
    .program-content__thumbnail,
    .cast-content__thumbnail {
        width: 400px;
    }
    .class-content__thumbnail,
    .program-content__thumbnail,
    .cast-content__thumbnail {
        height: 400px;
    }
    .text-image.type--plain .text-image__image {
        width: 420px;
        height: 420px;
    }
    .stats__items {
        gap: 60px 50px;
    }
    .stats__item strong {
        font-size: 60px;
    }
    .stats__item span {
        font-size: 22px;
    }
    .history-timeline__period {
        padding-left: 0;
        margin-right: 100px;
    }
    .history-timeline__period__title::before {
        width: 100%;
    }
}
@media only screen and (max-width: 991px) {
    body {
        font-size: 18px;
    }
    .hide--md {
        display: none !important;
    }
    .show--md {
        display: block;
    }
    .wrapper,
    .wrapper--lg {
        width: 100%;
    }
    .wrapper {
        padding: 0 60px;
    }
    .hero.hero--carousel .slick-arrow {
        right: 60px;
    }
    .header__logo {
        width: 165px;
        height: 165px;
    }
    h1.hero__title {
        font-size: 100px;
    }
    h2.hero__title {
        font-size: 60px;
    }
    .hero__subtitle {
        font-size: 25px;
    }
    .btn {
        font-size: 22px;
        height: 60px;
    }
    .btn--sm {
        font-size: 18px;
        padding: 10px 20px;
    }
    .shows__title {
        font-size: 44px;
    }
    .shows__title,
    .shows__footer {
        padding: 30px 0;
    }
    .shows__item__title {
        font-size: 50px;
        min-height: 314px;
    }
    .shows__item__footer {
        flex-wrap: wrap;
    }
    .shows__item__footer .date {
        width: 100%;
        height: auto;
    }
    .shows__item__footer .btn {
        width: 100%;
    }
    .page-section--cta .grid--2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cta__item__title {
        font-size: 80px;
    }
    .grid--2 .cta__item {
        min-height: unset;
    }
    .cta__item.cta__item--banner {
        min-height: 600px;
    }
    .cta__item__title {
        font-size: 60px;
    }
    .cta__item__subtitle {
        font-size: 34px;
    }
    .cta__item .text__body {
        font-size: 25px;
    }
    .cta__item.cta__item--history .btn:not(:first-child), 
    .cta__item.cta__item--banner .btn:not(:first-child) {
        margin-top: 30px;
    }
    .sponsors__title {
        font-size: 25px;
    }
    .sponsors__list {
        padding: 40px 0;
    }
    .sponsors__item {
        width: 200px;
    }
    .sponsors__item span {
        font-size: 16px;
    }
    .sponsors__item__logo {
        height: 130px;
    }
    .sponsors__item__logo:not(:last-child) {
        margin-bottom: 10px;
    }
    .header__navigation__contacts {
        width: 100%;
        margin-bottom: 40px;
    }
    .header__navigation__contacts__text:not(:first-child) {
        margin-top: 40px;
    }
    .header__navigation__contacts__text br {
        display: none;
    }
    .footer__contacts {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0 30px;
        margin-bottom: 40px;
    }
    .header__navigation__logo {
        width: 165px;
        height: 165px;
    }
    .header__navigation__logo:not(:last-child), 
    .footer__logo:not(:last-child) {
        margin: 0;
        margin-top: 4px;
    }
    .header__navigation__menus__primary, 
    .footer__menus__primary, 
    .header__navigation__menus__secondary,
    .footer__menus__secondary {
        margin: 0;
    }
    .header__navigation__menus,
    .footer__menus {
        width: 100%;
        padding-bottom: 40px;
    }
    .header__navigation__menus__primary,
    .footer__menus__primary {
        width: 100%;
        flex-grow: 1;
    }
    .header__navigation__menus__primary a, 
    .footer__menus__primary a {
        width: 100%;
    }
    .mailing-list {
        gap: 20px;
    }
    .mailing-list__text {
        font-size: 18px;
    }
    .hero.hero--compact {
        min-height: 400px;
    }
    .text--introduction .text__body {
        font-size: 40px;
    }
    .text-image.type--stretched .text-image__image,
    .contacts__map {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        height: 420px;
    }
    .text-image__content {
        width: 100%;
    }
    .cta__item.cta__item--history .text__body {
        min-height: unset;
    }
    .cta__item__badge.show--md {
        display: flex;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: translate(0, 0);
        margin: 0 auto;
        margin-top: 40px    ;
    }
    .grid--1 .cta__item.cta__item--card {
        padding: 100px 0;
        padding-bottom: 160px;
    }
    .grid--1 .cta__item:not(.cta__item--inline):not(.cta__item--banner):not(.cta__item--history) .btn {
        left: 0;
    }
    .classes__item {
        flex-wrap: wrap;
    }
    .programs__item {
        flex-wrap: wrap;
    }
    .classes__item__image {
        width: 100%;
        height: calc(56.5vw - 30px);
    }
    .programs__item__image {
        width: 100%;
        height: calc(56.5vw - 30px);
    }
    .classes__item__image:not(:last-child) {
        margin-bottom: 40px;
    }
    .programs__item__image:not(:last-child) {
        margin-bottom: 40px;
    }
    .classes__item__content {
        max-width: 100%;
    }
    .programs__item__content {
        max-width: 100%;
    }
    .contacts__content {
        width: 100%;
    }
    .text.text--plain .text__body {
        width: 100%;
    }
    .text--plain .text__body__title::before {
        top: auto;
        left: 0;
        right: 0;
        bottom: -20px;
        transform: translate(0, 0);
        max-width: 100%;
    }
    .text__body__title {
        font-size: 30px;
    }
    .cta__item.cta__item--history .cta__item__title::before, 
    .grid--1 .cta__item.cta__item--card .cta__item__title::before {
        display: none;
    }
    .producers-circle__item__head {
        width: 360px;
    }
    .producers-circle__item__price {
        font-size: 30px;
    }
    .producers-circle__item__category {
        font-size: 60px;
    }
    .artists-circle__item__category {
        font-size: 50px;
    }
    .artists-circle__item__price, .individual-gifts__item__price {
        font-size: 20px;
    }
    .artists-circle__item__price, .individual-gifts__item__price {
        font-size: 18px;
    }
    .artists-circle__item__head span {
        font-size: 25px;
    }
    .individual-gifts__item__category {
        font-size: 34px;
    }
    .text .text__body.text--plain, 
    .text--multiple .text__body:not(:last-child) {
        width: 100%;
    }
    .faqs__item__text {
        padding: 60px 0;
        padding-left: 180px;
    }
    .faqs__item__text__title::before {
        left: -40px;
    }
    .faqs__item__title {
        font-size: 50px;
    }
    .gift-cards__item {
        flex-wrap: wrap;
    }
    .gift-cards__item__image {
        width: 100%;
    }
    .team__department__member__position {
        width: 400px;
    }
    .team__department__title {
        font-size: 50px;
    }
    .show-content .inner,
    .class-content .inner,
    .program-content .inner,
    .cast-content .inner {
        flex-wrap: wrap;
    }
    .class-content__thumbnail,
    .program-content__thumbnail,
    .show-content__sidebar,
    .cast-content__thumbnail {
        width: 100%;
        order: 1;
        margin-top: 0;
    }
    .class-content .text__body,
    .program-content .text__body,
    .show-content .text__body,
    .cast-content .text__body {
        order: 2;
        width: 100%;
        padding-top: 0;
    }
    .show-content__thumbnail {
        margin-top: 0;
    }
    .program-register,
    .show-tickets {
        text-align: center;
        min-height: unset;
    }
    .program-register .btn.btn--md,
    .show-tickets .btn.btn--md {
        margin: 0 auto;
    }
    .text-image.type--card .inner {
        flex-wrap: wrap;
    }
    .text-image.type--card .text-image__image {
        width: 100%;
    }
    .text-image.type--card .text-image__content {
        width: 100%;
    }
    .gallery__item {
        height: 470px;
    }
    .text-image.type--plain .inner {
        flex-wrap: wrap;
    }
    .text-image.type--plain .text-image__image {
        order: 1;
        width: 100%;
    }
    .text-image.type--plain .text-image__content {
        order: 2;
    }
    .text-image .text-image__title::before {
        left: 0 !important;
        right: 0 !important;
    }
    .cta__item.cta__item--history .text__body {
        width: 100%;
    }
    .history-timeline__period {
        margin-right: 0;
    }   
    .history-timeline__period__year {
        width: 140px;
        height: 140px;
        font-size: 50px;
        right: auto;
        left: 50%;
        transform: translate(-50%, 50%);
    }
    .history-timeline__period__title {
        text-align: center;
        padding: 0;
        padding-right: 30px;
        padding-bottom: 90px;
    }
    .history-timeline__period__blocks {
        padding-top: 90px;
    }
    .history-timeline__period__block .text__body {
        width: 100%;
        padding-right: 30px;
    }
    .history-timeline__period__block:first-child .history-timeline__period__block__year {
        padding-top: 0;
    }
    .history-timeline__period__title::before {
        width: calc(100% + 60px);
    }
    .history-timeline__period__block__year {
        position: relative;
        z-index: 1;
    }
    .history-timeline__period__block__year::after {
        position: absolute;
        content: "";
        bottom: -2px;
        right: 10px;
        width: calc(100% + 60px);
        height: 2px;
        background-color: var(--color-red);
        z-index: 1;
    }
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
    h1.heading__title {
        font-size: 60px;
    }
    h2.heading__title {
        font-size: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .hide--sm,
    .visibility--desktop-only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile-only {
        display: block;
    }
    .show--sm.shows__item__footer {
        display: flex;
    }
    .show-tickets .shows__item__footer .date,
    .show-tickets .shows__item__footer .btn {
        width: auto;
        flex-grow: 1;
        flex-basis: 1;
    }
    .show-tickets {
        padding: 60px 0 120px 0;
    }
    .show-content__thumbnail {
        margin-top: -80px;
    }
    .wrapper {
        padding: 0 30px;
    }
    .hero.hero--carousel .slick-arrow {
        right: 30px;
    }
    .hamburger,
    .header__navigation .close {
        width: 90px;
        height: 90px;
    }
    .hamburger::before {
        width: 44px;
        height: 30px;
    }
    .hamburger::after {
        width: 44px;
    }
    .header__logo {
        width: 135px;
        height: 135px;
    }
    .btn {
        font-size: 20px;
        height: 50px;
        padding: 10px 30px;
    }
    .btn.btn--md,
    .btn.btn--sm {
        height: 45px;
        font-size: 20px;
        padding: 10px 20px;
    }
    .grid--2 {
        grid-template-columns: 1fr;
    }
    .text__body h1 {
        font-size: 60px;
    }
    .text__body h2 {
        font-size: 50px;
    }
    .text__body h3 {
        font-size: 40px;
    }
    .text__body h4 {
        font-size: 30px;
    }
    .text__body h5 {
        font-size: 25px;
    }
    .text__body h6 {
        font-size: 20px;
    }
    .shows__item__title {
        min-height: calc(100vw - 60px);
    }
    .shows__item__footer {
        flex-wrap: nowrap;
    }
    .footer__contacts {
        flex-wrap: wrap;
    }
    .footer__contacts__text {
        width: 100%;
    }
    .footer__contacts__text:not(:first-child) {
        margin-top: 40px;
    }
    .footer__contacts__text br {
        display: none;
    }
    .header__navigation__menus__secondary a, 
    .footer__menus__secondary a {
        font-size: 22px;
        width: 200px;
    }
    .header__navigation__socials,
    .footer__socials {
        flex-wrap: wrap;
        gap: 0;
    }
    .mailing-list {
        width: 100%;
    }
    .header__navigation__socials .socials,
    .footer__socials .socials {
        position: relative;
        width: 100%;
        justify-content: center;
        border: none;
        z-index: 1;
    }
    .header__navigation__socials .socials:not(:last-child)::before,
    .footer__socials .socials:not(:last-child)::before {
        position: absolute;
        content: "";
        bottom: 0;
        left: 50%;
        width: 100vw;
        max-width: 100vw;
        transform: translateX(-50%);
        height: 2px;
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 1; 
    }
    .mailing-list__text {
        font-size: 22px;
    }
    .footer__copyright {
        flex-wrap: wrap;
    }
    .footer__links a:first-child {
        padding: 0;
        margin: 0;
    }
    .footer__links a:first-child:before {
        display: none;
    }
    .grid--1 .cta__item.cta__item--card .cta__item__content {
        width: 100%;
    }
    .cta__item.cta__item--history .cta__item__title,
    .grid--1 .cta__item.cta__item--card .cta__item__title {
        padding-right: 0;
    }
    .cta__item.cta__item--history .cta__item__title::before, 
    .grid--1 .cta__item.cta__item--card .cta__item__title::before {
        display: none;
    }
    .cta__item:not(.cta__item--inline):not(.cta__item--banner):not(.cta__item--history) .btn {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .cta__item:not(.cta__item--inline):not(.cta__item--banner):not(.cta__item--history) .btn {
        max-width: 100%;
    }
    .cta__item:not(.cta__item--inline):not(.cta__item--banner):not(.cta__item--history) .btn:not(:first-child) {
        margin-top: 30px;
    }
    .grid--1 .cta__item.cta__item--card {
        display: block;
        padding: 100px 0;
    }
    .grid--2 .cta__item.cta__item--card {
        display: block;
        padding: 50px 30px;
    }
    .classes__item__title, .classes__item .text__body {
        padding-left: 60px;
    }
    .programs__item__title, .programs__item .text__body {
        padding-left: 60px;
    }
    .socials {
        justify-content: center;
    }
    .socials a {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .artists-circle__title, .individual-gifts__title {
        font-size: 40px;
    }
    .producers-circle__top__title {
        font-size: 60px;
    }
    .producers-circle__top__subtitle {
        font-size: 50px;
    }
    .producers-circle__top p {
        font-size: 25px;
    }
    .producers-circle__item {
        flex-wrap: wrap;
        gap: 30px;
    }
    .producers-circle__item__head {
        width: 100%;
    }
    .artists-circle__list .inner, .individual-gifts__list .inner {
        grid-template-columns: 1fr;
    }
    .hero.hero--compact {
        min-height: 70vw;
    }
    .producers-circle__top__title {
        font-size: 50px;
    }
    .producers-circle__top__subtitle {
        font-size: 40px;
    }
    .producers-circle__item:not(:last-child),
    .text--multiple .text__body:not(:last-child) {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .faqs__item__title {
        font-size: 40px;
    }
    .team__department__member {
        display: block;
    }
    .team__department__member span {
        display: block;
        width: 100%;
    }
    .cta__item.cta__item--inline {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .hero__content {
        padding: 50px 0 30px 0;
    }
    .gallery__item {
        height: calc(56.25vw - 60px);
    }
    .text-image.type--card .text-image__image {
        height: calc(120vw - 60px);
    }
    .cast-content__thumbnail,
    .text-image.type--plain .text-image__image {
        height: calc(100vw - 60px);
    }
    .class-content__thumbnail,
    .program-content__thumbnail {
        height: calc(100vw - 60px);
    }
    .cast-content__summary:not(:last-child),
    .class-content__details:not(:last-child),
    .show-content__summary:not(:last-child),
    .program-content__details:not(:last-child) {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    .team__department__member:not(:last-child)::before {
        width: 100%;
        max-width: 100%;
    }
    .cast-grid__title,
    .gallery__title {
        font-size: 40px;
    }
	
    .hero.hero--carousel .slick-arrow {
        width: 80px;
        height: 80px;
        bottom: 20px;
    }
    .hero__item .btns {
        bottom: 35px;
    }
    .hero.hero--carousel .slick-arrow::before {
        font-size: 40px;
    }
    .hero.hero--carousel .slick-prev {
        margin-right: 100px;
    }
    .hero__item .inner {
        padding-bottom: 120px;
    }
    /* .hero.hero--carousel .cover {
        bottom: 120px;
        min-height: calc(100% - 120px);
    } */
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    .wrapper {
        padding: 0 15px;
    }
    .hero.hero--carousel .slick-arrow {
        right: 15px;
    }
    .text__body h1 {
        font-size: 50px;
    }
    .text__body h2 {
        font-size: 40px;
    }
    .text__body h3 {
        font-size: 30px;
    }
    .text__body h4 {
        font-size: 25px;
    }
    .text__body h5 {
        font-size: 20px;
    }
    .text__body h6 {
        font-size: 18px;
    }
    .header__controls .btn {
        display: none;
    }
    h1.hero__title {
        font-size: 60px;
    }
    h2.hero__title {
        font-size: 40px;
    }
    .hero__subtitle {
        font-size: 20px;
    }
    .shows__title:not(:last-child) {
        margin-bottom: 40px;
    }
    .shows__item__title {
        padding: 15px;
        font-size: 40px;
        min-height: calc(100vw - 30px);
    }
    .shows__item__footer {
        flex-wrap: wrap;
    }
    .shows__footer:not(:first-child) {
        margin-top: 40px;
    }
    .cta__item.cta__item--banner .cta__item__title::before {
        width: 100px;
    }
    .cta__item .text__body {
        font-size: 20px;
    }
    .cta__item.cta__item--banner {
        padding: 60px 0;
        min-height: 0;
    }
    .cta__item {
        padding: 30px 15px 100px 15px;
    }
    .cta__item__title {
        font-size: 50px;
    }
    .cta__item__title span {
        font-size: 40px;
    }
    .sponsors__list {
        margin: 30px 0;
    }
    .sponsors__item {
        width: 100%;
    }
    .sponsors__item__logo {
        height: calc(56.25vw - 30px);
    }
    .header__navigation__logo, .footer__logo {
        width: 165px;
        height: 165px;
    }
    .footer__contacts__text {
        font-size: 20px;
    }
    .header__navigation__contacts__text {
        font-size: 20px;
    }
    .footer__menus,
    .header__navigation__menus {
        flex-wrap: wrap;
    }
    .header__navigation__menus__primary a, 
    .footer__menus__primary a {
        font-size: 30px;
    }
    .header__navigation__menus__primary a, 
    .header__navigation__menus__secondary a, 
    .footer__menus__primary a, 
    .footer__menus__secondary a {
        min-height: 50px;
    }
    .footer__menus__secondary,
    .header__navigation__menus__secondary {
        width: 100%;
    }
    .header__navigation__menus__secondary a, 
    .footer__menus__secondary a {
        width: 100%;
        font-size: 20px;
    }
    .mailing-list,
    .header__navigation .mailing-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .text--introduction .text__body {
        font-size: 30px;
    }
    .text,
    .grid--1 .cta__item.cta__item--card,
    .cta__item.cta__item--history,
    .producers-circle__list,
    .producers-circle__top,
    .gift-cards__item,
    .text-image.type--card,
    .stats {
        padding: 60px 0;
    }
    .cta__item--history .cta__item__title:not(:last-child) {
        margin-bottom: 40px;
    }
    .grid--2 .cta__item.cta__item--card {
        padding: 50px 15px;
    }
    .classes__item__title, .classes__item .text__body {
        padding-left: 0;
    }
    .classes__item__image {
        height: calc(100vw - 30px);
    }
    .classes__item__image:not(:last-child) {
        margin-bottom: 30px;
    }
    .programs__item__title, .programs__item .text__body {
        padding-left: 0;
    }
    .programs__item__image {
        height: calc(100vw - 30px);
    }
    .programs__item__image:not(:last-child) {
        margin-bottom: 30px;
    }
    .text__body__title {
        font-size: 26px;
    }
    .faqs__item__title {
        font-size: 30px;
    }
    .faqs__item__text {
        padding-left: 0;
    }
    .faqs__item__text__title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .gift-cards__item__title {
        font-size: 25px;
        padding: 30px 15px;
    }
    .gift-cards__item .text__body {
        padding: 0 15px;
    }
    .team__department__title {
        font-size: 40px;
    }
    .cta__item--inline .cta__item__title {
        font-size: 40px;
    }
    .show-content__summary,
    .class-content__details,
    .program-content__details,
    .cast-content__summary {
        font-size: 30px;
    }
    .hero .date:not(:first-child) {
        margin-top: 0;
    }
    .show-tickets {
        padding: 50px 0 110px 0;
    }
    .show-content__thumbnail {
        margin-top: -80px;
    }
    .date {
        font-size: 18px;
    }
    .gallery__item {
        height: calc(56.25vw - 30px);
    }
    .text-image.type--card .text-image__image {
        height: calc(120vw - 30px);
    }
    .text-image.type--card .text-image__title {
        padding: 30px 0;
    }
    .text-image.type--card .text__body {
        padding: 0;
        padding-bottom: 20px;
    }
    .text-image.type--plain .text-image__image {
        height: calc(100vw - 30px);
    }
    .text-image__title {
        font-size: 26px;
    }
    .stats__title {
        font-size: 36px;
    }
    .stats__item strong {
        font-size: 50px;
    }
    .stats__items {
        gap: 40px 30px;
        padding-top: 40px;
    }
    .stats__item span {
        font-size: 18px;
        padding-top: 20px;
    }
    .cast-content__thumbnail,
    .class-content__thumbnail,
    .program-content__thumbnail {
        height: calc(100vw - 30px);
    }
    .history-timeline__period__title,
    .history-timeline__period__block .text__body {
        padding-right: 15px;
    }
    .shows__title .inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    .shows-anchor {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin: 0 auto;
    }
    .cast-grid__title,
    .gallery__title {
        font-size: 34px;
        padding: 30px 15px;
    }
    h1.heading__title {
        font-size: 50px;
    }
    h2.heading__title {
        font-size: 40px;
    }
    .faqs__item__text__title {
        margin-bottom: 40px;
    }
    .faqs__item__text__title::before {
        top: auto;
        left: 0;
        right: 0;
        bottom: -20px;
        width: 100%;
        max-width: 100%;
        transform: translate(0, 0);
    }
    .hero__item .btns {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
    }
    .hero__item .btns:not(:first-child) {
        margin-top: 20px;
    }
    .hero.hero--carousel .slick-arrow {
        left: 50%;
        right: auto;
    }
    .hero.hero--carousel .slick-prev {
        margin-right: 0;
        transform: translateX(-100px);
    }
    .hero.hero--carousel .slick-next {
        left: auto;
        right: 50%; 
        transform: translateX(100px);
    }
    .show-tickets .date {
        font-size: 14px;
        padding: 10px;
    }
    .show-tickets .inner {
        gap: 10px;
    }
    .show-tickets .date:not(:last-child)::before {
        right: 0;
    }
    .show-tickets .btn.btn--md {
        font-size: 16px;
    }
}
@media only screen and (max-width: 379px) {
    .cta__item__badge.show--md {
        width: 290px;
        height: 290px;
    }
}