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

/*
font-family: Inter, sans-serif;
*/
* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

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

.btn {
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60px;
    max-width: 264px;
    width: 100%;
    padding: 5px 10px;
    background: linear-gradient(to bottom, #FF615E, #FF2D78);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header {
    background: linear-gradient(to bottom, #FF2A79, #FF625D);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 64px;
    width: 100%;
}

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

.steps {
    width: 100%;
    height: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.step {
    position: relative;
    z-index: 9;
    display: none;
    width: 100%;
    -webkit-animation: fade-in 0.4s linear both;
    animation: fade-in 0.4s linear both;
    text-align: center;
    padding: 20px 14px;
}

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 1;
    }
}

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

.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step p {
    font-size: 22px;
    margin-bottom: 10px;
}

.pictures {
    display: flex;
    gap: 11px;
    width: 100%;
    padding-top: 20px;
    position: relative;
}

.pictures::before {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(/landings/294735/1747128631/images/map.svg) url(/landings/294735/1747128631/images/pin.svg) url(/landings/294735/1747128631/images/fin.jpg);
}

.pictures img {
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.step-map {
    flex: 1 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.step-map::before {
    -webkit-animation: kenburns-top-2 3s ease both;
    animation: kenburns-top-2 3s ease both;
    background: url(/landings/294735/1747128631/images/map.svg) no-repeat center;
    background-size: cover;
    content: '';
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

.step-map::after {
    background: url(/landings/294735/1747128631/images/pin.svg) no-repeat center;
    background-size: contain;
    content: '';
    display: block;
    top: 5%;
    left: 35%;
    position: absolute;
    height: 63px;
    width: 48px;
}

.circle {
    border-radius: 50%;
    box-shadow: 0 0 10px #000;
    height: 196px;
    width: 196px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -60%);
    overflow: hidden;
}

.circle::before {
    -webkit-animation: kenburns-top 5s ease both;
    animation: kenburns-top 5s ease both;
    background: url(/landings/294735/1747128631/images/map.svg) no-repeat left 45% top 45%;
    background-size: 350px auto;
    content: '';
    display: block;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    position: absolute;
}

.circle img {
    position: absolute;
    top: 20%;
    left: 64%;
}

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

    100% {
        transform: scale(1.25);
        transform-origin: top;
    }
}

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

    100% {
        transform: scale(1.25);
        transform-origin: top;
    }
}

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

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

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

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

.step-fin {
    background: url(/landings/294735/1747128631/images/fin.jpg) no-repeat center top #000;
    background-size: cover;
    flex: 1 0 auto;
    color: #fff;
}

.step-fin .title {
    font-size: 28px;
    margin-top: 20px;
}

.step ul {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
}

.step li {
    margin-bottom: 10px;
}

@media (max-height: 680px) {
    .step-fin .title {
        font-size: 26px;
    }

    .step ul {
        font-size: 18px;
    }
}