.exhibition {
    font-family: "Gotham Pro";
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
}

.exhibition__info {
    background: url('./images/expo2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 1480px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 195px;
}

.exhibition__title {
    text-align: center;
    font-family: "Gotham Pro";
    font-weight: 700;
    font-size: 52px;
    line-height: 50px;
}

.exhibition__description {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.exhibition__info-items {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.exhibition__date-title, .exhibition__location-title, .exhibition__get-ticket-title {
    font-size: 12px;
    font-family: "Gotham Pro";
    font-weight: bold;
    margin-bottom: 10px;
}

.exhibition__date, .exhibition__location, .exhibition__get-ticket {
    width: 290px;
    text-align: center;
}

.exhibition__date-value, .exhibition__location-city {
    font-family: "Gotham Pro";
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    color: #E20932;
    padding-bottom: 10px;
}

.exhibition__get-ticket-button {
    padding: 15px 30px;
    color: #fff;
    font-family: "Gotham Pro";
    font-weight: bold;
    font-size: 14px;
    background: #E20932;
    display: inline-block;
    transition: 300ms linear all;
    border: 1px solid transparent;
}

.exhibition__get-ticket-button:hover {
    background: none;
    color: #E20932;
    border-color: #E20932;
}

.exhibition__banner {
    max-width: 1530px;
    margin: 120px auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.exhibition__banner-text {
    width: 900px;
    background: url('./images/item-bg.png') no-repeat;
    background-position: left center;
    padding: 40px 0 40px 350px;
    position: absolute;
    left: -50px;
}

.exhibition__banner-text-title {
    font-family: "Gotham Pro";
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    padding-bottom: 25px;
}

.exhibition__banner-text-description {
    max-width: 420px;
}

.exhibition__banner-image--lg {
    position: relative;
    left: 670px;
}

.exhibition__properties {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.exhibition__property {
    width: 215px;
    text-align: center;
}

.exhibition__property-title {
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 40px;
    line-height: 42px;
    color: #E20932;
    position: relative;
}

.exhibition__property-description {
    font-size: 12px;
    font-weight: bold;
}

.exhibition__video-report-content {
    position: relative;
}

.exhibition__video-report-content-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('./images/video-bg.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    transition: 300ms ease all;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exhibition__video-report-content-overlay--hidden {
    display: none;
}

.exhibition__video-report-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    padding-bottom: 25px;
}

.exhibition__video-report-iframe {
    width: 100%;
    height: 530px;
}

.exhibition__video-report-content-control {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    font-family: "Gotham Pro";
    font-weight: bold;
    font-size: 14px;
    background: #E20932;
    display: inline-block;
    transition: 300ms linear all;
    border: 1px solid transparent;
}

.exhibition__video-report-content-control::after {
    content: url(./images/play.png);
    margin-left: 10px;
    position: relative;
    display: inline-block;
    transition: 200ms ease;
    top: 5px;
}

.exhibition__video-report-content-control:hover {
    background: none;
    border-color: #E20932;
}

.exhibition__video-report-content-control:hover::after {
    transform: scale(1.2);
}

.exhibition__photo-report {
    padding-top: 100px;
}

.exhibition__photo-report-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    padding-bottom: 25px;
}

.exhibition__photo-report-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.exhibition__photo-report-image-link {
    width: 310px;
    height: 205px;
    display: none;
    margin: 0 3px 6px;
}

.exhibition__photo-report-image-link--visible {
    display: block;
}

.exhibition__photo-report-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exhibition__photo-report-show-all {
    width: 310px;
    height: 205px;
    margin: 0 0 6px 6px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: relative;
}

.exhibition__photo-report-show-all::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #E20932;
    top: 0;
    left: 0;
    transition: 200ms ease all;
}

.exhibition__photo-report-show-all:hover::after {
    background: rgb(155, 5, 32);
}

.exhibition__photo-report-show-all-title {
    position: relative;
    z-index: 2;
}

.exhibition__invitation {
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
}

.exhibition__invitation-title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 25px;
}

.exhibition__invitation-description {
    line-height: 18px;
    padding-bottom: 25px;
}

.exhibition__invitation-info {
    width: 535px;
}

.exhibition__invitation-button {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    font-family: "Gotham Pro";
    font-weight: bold;
    font-size: 14px;
    background: #E20932;
    display: inline-block;
    transition: 300ms linear all;
    border: 1px solid transparent;
}

.exhibition__invitation-button:hover {
    background: none;
    border-color: #E20932;
    color: #E20932;
}

@media screen and (max-width: 1529px) {
    .exhibition__info {
        max-width: 100%;
    }
    .exhibition__banner {
        max-width: 100%;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .exhibition__banner-text {
        position: relative;
        margin: 0 auto;
        left: 0;
        padding: 40px 0 40px 270px;
    }
    .exhibition__banner-image {
        display: none;
    }
}

@media screen and (max-width: 1099px) {
    .exhibition__properties {
        flex-wrap: wrap;
    }
    .exhibition__property {
        width: 45%;
        text-align: center;
        margin-bottom: 25px;
    }
    .exhibition__property-title {
        display: inline-block;
    }
}

@media screen and (max-width: 992px) {
    .exhibition__title {
        font-size: 40px;
    }
    .exhibition__info-items {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .exhibition__date, .exhibition__location, .exhibition__get-ticket {
        margin-bottom: 25px;
    }
    .exhibition__info {
        padding-bottom: 60px;
    }
    .exhibition__banner-text {
        width: 100%;
    }
    .exhibition__banner-text {
        width: 100%;
        text-align: center;
        background-size: cover;
        padding: 40px 0;
        background: #f2f2f2;
    }
    .exhibition__banner-text-description {
        margin: 0 auto;
    }
    .exhibition__photo-report-content {
        margin: 0 auto;
        justify-content: space-between;
    }
    .exhibition__photo-report-image-link, .exhibition__photo-report-show-all {
        width: 49%;
        margin: 0 0 6px;
    }
    .exhibition__invitation {
        margin-top: 80px;
        align-items: center;
        flex-direction: column;
    }
    .exhibition__invitation-info {
        padding-bottom: 30px;
        width: 100%;
    }
    .exhibition__invitation-image {
        width: 100%;
        max-width: 405px;
        margin: 0 auto;
        max-height: 207px;
    }
}

@media screen and (max-width: 580px) {
    .exhibition__info {
        padding-top: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .exhibition__title {
        font-size: 30px;
    }
    .exhibition__banner {
        margin-top: 0;
    }
    .exhibition__banner-text {
        padding-left: 15px;
        padding-right: 15px;
    }
    .exhibition__property {
        width: 100%;
    }
    .exhibition__properties {
        margin-bottom: 30px;
    }
    .exhibition__video-report-iframe {
        height: 400px;
    }
    .exhibition__photo-report-image-link, .exhibition__photo-report-show-all {
        height: 150px;
    }
}

@media screen and (max-width: 479px) {
    .exhibition__video-report-iframe {
        height: 250px;
    }
    .exhibition__photo-report-image-link, .exhibition__photo-report-show-all {
        height: 100px;
    }
    .exhibition__photo-report-show-all {
        text-align: center;
    }
    .exhibition__title {
        font-size: 22px;
        line-height: 1.4;
    }
}
