@import url(https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;700&display=swap);

/*
    font-family: Inter, sans-serif;
*/

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-color: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    height: 100%;
}

.step-button {
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 58px;
    width: 100%;
    padding: 5px 10px;
    background-color: #EC5252;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-subtitle {
    color: #fff;
    margin-bottom: 15px;
}

.step-buttons--wrap {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.layout {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.picture-block {
    border-radius: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
}

.picture-block::before {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(slide-2.jpg) url(slide-3.jpg) url(slide-4.jpg) url(slide-5.jpg);
}

.picture-block .picture {
    -webkit-animation: kenburns-top 5s ease-out both;
    animation: kenburns-top 5s ease-out both;
    background: no-repeat top center;
    background-size: cover;
    border-radius: 20px;
    display: none;
    height: 100%;
    width: 100%;
}

.picture-block .picture.active {
    display: block;
}

.picture-block .picture-1 {
    background-image: url(slide-1.jpg);
}

.picture-block .picture-2 {
    background-image: url(slide-2.jpg);
}

.picture-block .picture-3 {
    background-image: url(slide-3.jpg);
}

.picture-block .picture-4 {
    background-image: url(slide-4.jpg);
}

.picture-block .picture-5 {
    background-image: url(slide-5.jpg);
}

.main-block {
    max-width: 450px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.steps-list {
    background-color: #000;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
    color: #fff;
    text-align: center;
    flex: 1 0 auto;
    margin: 10px 10px 0;
    padding: 20px 10px 28px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.step-item {
    position: relative;
    z-index: 9;
    display: none;
    width: 100%;
    -webkit-animation: fade-in 0.4s linear both;
    animation: fade-in 0.4s linear both;
}

.step-item.active {
    display: block;
}

.steps-list--union {
    width: 100%;
}

.thumb-slider-wrap {
    overflow: hidden;
    flex-shrink: 0;
}

.thumb-slider {
    width: 110%;
}

.thumb-slider:not(.slick-slider) {
    display: flex;
    width: 123%;
}

.thumb-slider .item {
    padding: 28px 5px 28px 8px;
}

.thumb-slider:not(.slick-slider) .item {
    min-width: 30%;
    flex-shrink: 0;
    width: 130px;
}

.thumb-slider .item img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes kenburns-top {
    0% {
        opacity: 0;
        transform: scale(1);
        transform-origin: 50% 16%;
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
        transform-origin: top;
    }
}

@keyframes kenburns-top {
    0% {
        opacity: 0;
        transform: scale(1);
        transform-origin: 50% 16%;
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
        transform-origin: top;
    }
}