@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-color: #3A5898;
    border-radius: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 0;
}

.btn::before {
    background: url(/landings/290391/1723021054/images/shadow.png) no-repeat center top;
    background-size: contain;
    display: block;
    content: '';
    top: 20px;
    left: -5px;
    right: -5px;
    bottom: -30px;
    position: absolute;
    z-index: -2;
}

.btn::after {
    background-color: #3A5898;
    border-radius: 30px;
    display: block;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

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

.main {
    background-image: url(/landings/290391/1723021054/images/bg-top.png), url(/landings/290391/1723021054/images/bg-bottom.png);
    background-repeat: no-repeat;
    background-size: 145px auto;
    background-position: left top, left bottom;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    height: 55px;
}

.pagination {
    display: flex;
    gap: 10px;
    padding: 0 36px;
    position: relative;
    font-size: 18px;
    line-height: 1;
}

.pagination::before,
.pagination::after {
    display: block;
    content: '';
    border-top: 1px solid #000;
    height: 1px;
    width: 26px;
    top: 8px;
    left: 0;
    position: absolute;
}

.pagination::after {
    left: auto;
    right: 0;
}

.pagination .item:not(.active) {
    color: #C1C1C1;
}

.forward {
    cursor: default;
    border: 1px solid #C1C1C1;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 14px;
    height: 22px;
    width: 22px;
    text-indent: -1000px;
    overflow: hidden;
}

.forward::before,
.forward::after {
    display: block;
    content: '';
    border: solid #C1C1C1;
    border-width: 1px 1px 0 0;
    height: 6px;
    width: 6px;
    transform: rotateZ(45deg);
    top: 6px;
    left: 8px;
    position: absolute;
}

.forward::after {
    left: 3px;
}

.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: 55px 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;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step p {
    font-size: 20px;
    margin-bottom: 15px;
}

.picture {
    margin: 0 auto 30px;
    max-width: 288px;
}

.picture img {
    border-radius: 50%;
}

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

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

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

@media (max-height: 680px) {
    .main {
        background-size: 120px auto;
    }

    .picture {
        max-width: 240px;
    }
}