.selection__wrap {
    max-width: 1080px;
    min-height: 480px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 0px 0px 40px;
    display: flex;
    /* align-items: flex-end; */
    justify-content: space-between;
    overflow: hidden;
}

.selection__img {
    align-self: flex-end;
	width: 100%;
	max-width: 475px;
}

.selection__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 155%;
    color: #636B83;
}

.selection__btn {
    margin-top: 90px;
    padding: 15px 50px;
}

.selection__options {
    display: flex;
    margin-top: 40px;
}

.selection__option {
    text-align: center;
    margin-right: 40px;
    cursor: pointer;
}

.selection__option:last-child {
    margin-right: 0;
}

.selection__option-img {
    width: 90px;
    height: 90px;
    background-color: #43495A;
    border-radius: 50%;
    margin-bottom: 8px;
}

.selection__option-value {
    font-size: 16px;
    line-height: 110%;
    color: #00305C;
}


@media (max-width: 991px) {
    .selection__wrap {
        flex-direction: column;
    }

    .selection__content {
        width: 90%;
        margin-bottom: 25px;
    }

    .selection__btn {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .selection__wrap {
        max-width: none;
        min-height: auto;
        padding: 20px 0px 0px 15px;
        margin: 0 -5.5% 0px -5.5%;
    }

    .selection__content {
        width: 100%;
        padding-right: 15px;
    }

    .selection__title {
        font-size: 22px;
    }

    .selection__text {
        margin-top: 15px;
        font-size: 14px;
    }

    .selection__btn {
        width: 290px;
    }

    .selection__img {
        width: 80%;
    }

    .selection__options {
        justify-content: center;
    }

    .selection__option-img {
        width: 70px;
        height: 70px;
    }
}