.step {
    display: none;
}

.step.active {
    display: block;
}

.main__form p {
    margin: 0;
}

.step label {
    font-family: Source Sans Pro;
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: -0.3px;
    color: #141414;
    margin-bottom: 24px;
    width: 100%;
}

#step__7.step label {
    text-align: center;
}

.place__outer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.place__inner {
    width: calc(20% - 6.4px);
    padding: 16px;
    border: 1px solid #EFEFEF;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.place__inner:hover {
    background: #E8F4E1;
    border-color: #CAE3BC;
}

.place__inner:has(input[type="radio"]:checked) {
    background: #E8F4E1;
    border-color: #CAE3BC;
}


img.place__img {
    aspect-ratio: 93/70;
    object-fit: cover;
}

.place__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.place__title {
    display: flex;
    gap: 8px;
    align-items: center;
}

.place__title p:has(svg) {
    display: flex;
}

.place__inner h6 {
    margin: 0;
    font-family: Source Sans Pro;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.4px;
    color: #141414;
}

p.place__content {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: -0.4px;
    max-width: 160px;
}

.step input {
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    min-height: 45px;
    width: 100%;
    padding: 6px 20px;
}

.step input[type="radio"] {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 11;
    cursor: pointer;
    left: 0;
    top: 0;
}

.product__outer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product__outer .product__inner {
    width: calc(33.33% - 13.33px);
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.product__outer .product__image {
    background: #F2F2F2;
    border-radius: 12px;
    text-align: center;
    padding: 48px;
}

.product__outer .product__image img {
    aspect-ratio: 1/0.93;
    object-fit: contain;
    max-width: 270px;
    width: 100%;
}

.product__outer .product__title {
    margin: 20px;
}

.product__outer h6 {
    margin: 0px;
    font-family: Source Sans Pro;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.4px;
    color: #000000;
}

.product__outer .product__btn {
    margin: 20px;
    display: flex;
    width: calc(100% - 40px);
    font-family: Source Sans Pro;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    padding: 8px;
    background: #6CB644;
    border: 1px solid #6CB644;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.5s;
}

.product__outer .product__btn:hover {
    background: none;
    color: #6CB644;
}

.step .advice__btn {
    font-family: Source Sans Pro;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    margin: 34px auto 0;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 711px;
    width: 100%;
    border: 1px solid #6CB644;
    padding: 8px;
    border-radius: 50px;
    color: #6CB644;
    transition: all 0.5s;
    cursor: pointer;
}

.step .advice__btn:hover {
    background: #6CB644;
    color: #fff;
}

/*-------------------*/
.step .progress__bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto 36px;
}

.step .progress__title:after {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid #656565;
    background: #fff;
    border-radius: 50%;
    display: block;
    margin: 5px auto 0;
}

.step .progress__title.active:after {
    background: #6CB644;
    border-color: #6CB644;
}

.step .progress__title h6 {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.4px;
    color: #000000;
    margin-bottom: 0;
}

.step .progress__bar:before {
    content: "";
    width: calc(100% - 40px);
    height: 6px;
    background: #EFEFEF;
    position: absolute;
    bottom: 4px;
    left: 20px;
    z-index: -1;
}

.step .progress__bar:after {
    content: "";
    width: calc(100% - 40px);
    height: 6px;
    background: #6CB644;
    position: absolute;
    bottom: 4px;
    left: 20px;
    z-index: -1;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

#step__1.step .progress__bar:after {
    width: calc(7% - 20px);
}

#step__2.step .progress__bar:after {
    width: calc(14% - 20px);
}

#step__3.step .progress__bar:after {
    width: calc(21% - 20px);
}

#step__4.step .progress__bar:after {
    width: calc(28% - 20px);
}

#step__5.step .progress__bar:after {
    width: calc(35% - 20px);
}

#step__6.step .progress__bar:after {
    width: calc(42% - 20px);
}

#step__7.step .progress__bar:after {
    width: calc(50% - 20px);
}

#step__8.step .progress__bar:after {
    width: calc(100% - 40px);
}

.step__bg {
    padding: 64px;
    background: #F4FBF2;
    border-radius: 24px;
}

.step__bg .step__main {
    padding: 32px;
    background: #fff;
    border-radius: 12px;
}

#step__7 {
    margin-top: 48px;
}


/*----------------*/
#step__8 {
    padding: 64px;
    background: #F4FBF2;
    border-radius: 24px;
}

#step__8 .form__item {
    padding: 64px 44px;
    background: #fff;
}

#step__8 label {
    text-align: center;
    margin-bottom: 8px;
    font-size: 36px;
    line-height: 45px;
}

.step .label__description {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 24px;
    line-height: 126%;
    letter-spacing: -0.2px;
    text-align: center;
    color: #141414;
    margin-bottom: 32px;
}

.step .form__fields__main {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.step .form__fields__main .form__field.form__field__33 {
    width: calc(33.33% - 16px);
}


.step .submit__btn {
    margin: 32px 0 0;
    display: flex;
    width: 100%;
    font-family: Source Sans Pro;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    padding: 8px !important;
    background: #6CB644;
    border: 1px solid #6CB644;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.5s;
    box-shadow: none !important;
}

.step .submit__btn:hover {
    background: none;
    color: #6CB644;
    top: 0;
}



@media only screen and (max-width: 1024px) {
    .step__bg {
        padding: 40px;
    }

    .place__inner {
        width: calc(33.33% - 5.4px);
    }

    #step__8 {
        padding: 40px;
        background: #F4FBF2;
        border-radius: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .step__bg {
        padding: 24px 20px;
        border-radius: 0;
    }

    .step__bg .step__main {
        padding: 16px;
    }

    .step .progress__title:after {
        margin: 20px 0 0;
    }

    .step .progress__title:nth-last-child(1):after {
        margin-right: 0;
        margin-left: auto;
    }

    .step .progress__bar:before {
        width: calc(100% - 0px);
        left: 0px;
    }

    .step .progress__bar:after {
        left: 0;
    }

    #step__1.step .progress__bar:after {
        width: calc(7% - 0px);
    }

    #step__2.step .progress__bar:after {
        width: calc(14% - 0px);
    }

    #step__3.step .progress__bar:after {
        width: calc(21% - 0px);
    }

    #step__4.step .progress__bar:after {
        width: calc(28% - 0px);
    }

    #step__5.step .progress__bar:after {
        width: calc(35% - 0px);
    }

    #step__6.step .progress__bar:after {
        width: calc(42% - 0px);
    }

    #step__7.step .progress__bar:after {
        width: calc(50% - 15px);
    }

    #step__8.step .progress__bar:after {
        width: calc(100% - 0px);
        border-radius: 20px;
    }

    #step__8 label {
        margin-bottom: 16px;
        font-size: 32px;
        line-height: 42px;
    }

    .place__inner {
        width: calc(50% - 4px);
    }

    .place__inner h6 {
        font-size: 16px;
        line-height: 18px;
    }

    .step label {
        font-size: 20px;
        line-height: 26px;
    }

    .step .progress__title h6 {
        font-size: 12px;
        line-height: 16px;
    }

    .step .progress__bar {
        margin: 0 auto 32px;
    }

    .product__outer .product__inner {
        width: 100%;
    }

    .product__outer h6 {
        font-size: 20px;
        line-height: 25px;
    }

    .product__outer .product__title {
        margin: 16px;
    }

    .product__outer .product__btn {
        margin: 16px;
        width: calc(100% - 32px);
        font-size: 18px;
        line-height: 23px;
    }

    .product__outer .product__image {
        background: #F2F2F2;
        border-radius: 12px;
        text-align: center;
        padding: 6px;
    }

    .step .advice__btn {
        font-size: 16px;
        line-height: 21px;
        margin: 34px auto 0;
        padding: 11px;
    }

    #step__8 {
        padding: 40px 16px;
        width: calc(100% - 40px);
        margin-left: 20px;
    }

    #step__8 .form__item {
        padding: 40px 16px;
        background: #fff;
    }

    .step .label__description {
        font-size: 14px;
        line-height: 20px;
    }

    .step .form__fields__main {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .step .form__fields__main .form__field.form__field__33 {
        width: 100%;
    }

    .step input {
        min-height: 32px;
        width: 100%;
        padding: 8px 20px;
    }

    .step .submit__btn {
        margin: 32px 0 0;
        font-size: 16px;
        line-height: 21px;
        padding: 11px;
        width: 100%;
    }

    #step__7 {
        padding: 0 20px;
    }
}