.slideshow-container {
    position: absolute;
    width: 100%;
    height: 400px;
    +.inner {
        position: relative;
        z-index: 1;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.slide.active {
    opacity: 1;
}

.cr10-mv__contents {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 400px;
    padding: 78px 0 68px;
    @media (width <=768px) {
        padding: 36px 0;
        margin-bottom: 100px;
    }
    .cr10-mv__tittle {
        @media (width <=768px) {
            width: 70%;
            margin-bottom: 0;
        }
    }
    p {
        color: #fff;
        font-size: 18px;
        margin-top: 20px;
        @media (width <=768px) {
            font-size: 20px;
            margin-top: 10px;
        }
    }
    .cr10__button {
        max-width: 400px;
        height: 56px;
        margin-top: auto;
        @media (width <=768px) {
            position: absolute;
            top: calc(100% + 28px);
            left: 50%;
            transform: translateX(-50%);
        }
    }
}

@media (width <= 768px) {}

.cr10-intro {
    padding: 60px 0;
    text-align: center;
    h2 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 40px;
    }
    p {
        max-width: 720px;
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: .08em;
        margin-inline:  auto;
        @media (width <= 768px) {
            text-align: left;
            margin: 0;
        }
    }
}

.cr10-amenity {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    background: #F9F4EC;
    @media (width <=768px) {
        flex-direction: column-reverse;
        height: auto;
        padding-bottom: 40px;
    }
    .inner {
        width: 100%;
    }
}
.cr10-amenity__main {
    h2 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 60px;
        @media (width <=768px) {
            text-align: center;
            margin: 36px 0 20px;
        }
    }
    p {
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: .08em;
    }
}
.cr10-amenity__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    @media (width <=768px) {
        position: relative;
        right: 0;
        width: 100%;
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.cr10-catalog {
    display: grid;
    gap: 40px;
    grid-template-columns: 250px 1fr;
    width: min(100%,870px);
    padding: 60px 0;
    margin-inline:  auto;
    @media (width <=768px) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        width: 100%;
        padding: 40px 0;
    }
    p {
        max-width: 560px;
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: .08em;
    }
}
.cr10-catalog__image {
    @media (width <=768px) {
        width: 66%;
        margin-inline: auto;
    }
}
.cr10-catalog__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    .cr10__button.--blue {
        margin-top: auto;
        @media (width <=768px) {
            margin-inline:  auto;
        }
    }
    .cr10__button:not(.--blue) {
        margin: 36px 0;
        @media (width <=768px) {
            margin: 20px auto;
        }
    }
}

.cr10-bottom__link {
    text-align: center;
    padding: 100px 0;
    @media (width <=768px) {
        padding: 60px 0;
    }
}

.cr10__button {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: min(100%, 550px);
    height: 72px;
    background-color: #222;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    transition: opacity .3s;
    &.--blue {
        background-color: #042E84;
    }
    &:hover,
    &:focus,
    &:active {
        color: #fff;
        opacity: .8;
        i {
            transform: translate(4px,-50%);
        }
    }
    i {
        position: absolute;
        top: 50%;
        right: 20px;
        display: grid;
        place-items: center;
        transform: translateY(-50%);
        transition: transform .3s;
    }
}

.js-fluid-bg .inner {
    @media (width <=768px) {
        width: 94%;
        margin-inline: auto;
    }
}

.d-none-md  {
    @media (width <= 768px) {
        display: none;
    }
}
.d-none-sm {
    @media (width <= 480px) {
        display: none;
    }
}
.d-none-lg {
    @media (width <= 1024px) {
        display: none;
    }
}
.d-block-md {
    display: none;
    @media (width <= 768px) {
        display: block;
    }
}
.d-block-sm {
    display: none;
    @media (width <= 480px) {
        display: block;
    }
}
.d-block-lg {
    display: none;
    @media (width <= 1024px) {
        display: block;
    }
}