.header__main {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    text-align: left;
}

.diapo {
    width: 100vw;
    height: 100vh;
}

.diapo {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100vh;
    position: absolute;
    width: 100%;
}

.diapo:target .diapo__bg {
    opacity: 1;
}

.diapo:target .diapo__image {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-filter: blur(0) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.35));
    filter: blur(0) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.35));
}

.diapo__bg {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
    -webkit-filter: blur(30px);
    filter: blur(30px);
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    will-change: opacity;
}

.diapo__images {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 365px;
    margin: 0 20px;
}

.diapo__image {
    position: absolute;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    -webkit-filter: blur(10px) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.35));
    filter: blur(10px) drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.35));
    will-change: transform, opacity, filter;
}

.diapo__image svg {
    display: block;
    margin-top: -250px;
}

.diapo__image--left {
    -webkit-transform: translate(0.75%, -10px);
    transform: translate(0.75%, -10px);
}

.diapo__image--right {
    top: 5vmin;
    -webkit-transform: translate(-0.75%, 10px);
    transform: translate(-0.75%, 10px);
}

.diapo__pagination {
    position: absolute;
    bottom: -27vh;
    width: 100%;
    text-align: center;
}

.button {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    /* border: 2px solid rgb(198, 198, 198); */
    line-height: 1;
    font: 600 12px 'Montserrat', sans-serif;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(252, 153, 0);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 150px;
    border-radius: 50px;
}

.button:hover {
    /* color: #333; */
    transition: 2s;
    background-color: #ffffff57;
    border-radius: 50px;
}

a:hover {
    color: #b6b6b6;
}