main button {
    margin: 0;
}
h2 {
    text-align: center;
}
.photo-text,
.information,
.points,
.vr {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: justify;
}
.photo-text p {
    text-align: justify;
    margin-bottom: 80px;
}
.pictures,
.video,
.three-d {
    background: var(--background-section);
    padding-bottom: 80px;
    padding-top: 80px;
}
.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.items .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(25% - 2px);
    height: 116px;
    overflow: hidden;
    position: relative;
    margin-bottom: 3px;
    cursor: pointer;
}
.items .slide.hidden {
    display: none;
}
.items .slide img {
    max-width: 100%;
    transition: .3s linear;
}
.items .slide .hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.items .slide .url {
    display: none;
}
.items .slide.hidden.fullwidth {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    width: 100%;
    height: 100%;
}
.items .slide.hidden.fullwidth .image {
    background: var(--background-fullwidth);
}
.items .slide.hidden.fullwidth .image img {
    max-width: 90vw;
    max-height: 80vh;
}
.items .slide.hidden.fullwidth .image .count {
    padding: 10px;
    text-align: center;
    color: var(--main-color-white);
}
.items .slide.hidden.fullwidth .cross {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: -20px;
    top: 0;
    color: var(--main-color-white);
    z-index: 2;
}
.items .slide.hidden.fullwidth .cross span {
    width: 30px;
    height: 3px;
    background: var(--main-color-white);
    position: relative;
    transition: 1s;
}
.items .slide.hidden.fullwidth .cross span:first-child {
    transform: rotate(45deg);
}
.items .slide.hidden.fullwidth .cross span:last-child {
    transform: rotate(-45deg);
    right: 30px;
}
.items .slide.hidden.fullwidth .arrow-l,
.items .slide.hidden.fullwidth .arrow-r {
    position: absolute;
    cursor: pointer;
    transition: 0.2s;
    width: 50px;
    height: 100%;
}
.items .slide.hidden.fullwidth .arrow-l {
    left: 20px;
}
.items .slide.hidden.fullwidth .arrow-r {
    right: 20px;
}
.items .slide.hidden.fullwidth .arrow-l::before,
.items .slide.hidden.fullwidth .arrow-r::before {
    content: '';
    color: var(--main-color-white);
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid var(--main-color-white);
    border-left: 3px solid var(--main-color-white);
    transform: rotate(-45deg);
    position: relative;
    top: calc(50% - 25px/2);
}
.items .slide.hidden.fullwidth .arrow-r::before {
    transform: rotate(135deg);
    position: relative;
    right: -30px;
}
.video-slider iframe,
.video-slider .items .slide.hidden.fullwidth img {
    display: none;
}
.video-slider .items .slide.hidden.fullwidth iframe {
    display: block;
    width: 70%;
    height: 70%;
    border: none;
}
.pictures button,
.video button,
.three-d button {
    margin: 80px 0 0;
}
.information h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.information h2::after {
    content: url(/resource/images/2023/04/video.svg);
    margin-top: 60px;
    margin-bottom: 25px;
    width: 150px;
    height: 150px;
}
.information button {
    margin: 0 auto 60px;
}
.information .content {
    display: block;
    text-align: justify;
}
.information .content ul,
.vr .link-pdf {
    margin-bottom: 60px;
}
.points p,
.vr > p {
    margin-bottom: 80px;
}
@media screen and (max-width:870px) {
    .items .slide {
        width: calc(50% - 2px);
    }
}
@media screen and (max-width:578px) {
    .items .slide {
        width: 100%;
    }
    .video-slider .items .slide.hidden.fullwidth iframe {
        width: 90%;
        height: 35%;
    }
}
@media screen and (hover: hover) {
    .items .slide:hover img {
        transform: scale(1.2);
    }
    .items .slide.hidden.fullwidth:hover img {
        transform: scale(1);
    }
}