.modern {
    border-radius: 40px;
    background: #F7F7F9;
    padding: 25px;
}
.modern__inner {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    border-radius: 24px;
    padding-top: 38px;
    padding-right: 78px;
    padding-bottom: 55px;
    position: relative;
    overflow: hidden;
}
.modern--image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modern--image, .modern--image img {
    width: 100%;
    height: 100%;
}
.modern--image img {
    object-fit: cover;
    object-position: center bottom;
    display: block;
}
.modern__content {
    width: 610px;
    position: relative;
}
.modern--title {
    color: #383838;
    font-family: Montserrat, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
}
.modern--title span {
    color: #004E86;
}
.modern__text {
    margin-top: 17px;
}
.modern__text ul {
    display: grid;
    row-gap: 3px;
}
.modern__text ul li {
    padding-left: 28px;
    min-height: 16px;
    position: relative;
    color: #383838;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}
.modern__text ul li:before {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90e";
    color: #2c63ac;
    position: absolute;
    font-size: 16px;
    left: 0;
    top: 4px;
    display: block;
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 1200px) {
    .modern {
        border-radius: 56px;
        border: 2px solid rgba(255, 255, 255, 1);
        background: linear-gradient(110deg, rgba(255, 255, 255, 0.24) 0%, rgba(254, 254, 254, 0.24) 99.25%);
        box-shadow: -14px 56px 51px -29px rgba(183, 187, 191, 0.57);
        backdrop-filter: blur(10px);
        padding: 20px;
    }
    .modern__inner {
        height: 550px;
        border-radius: 40px;
        background: #D9D9D9;
        padding: 45px 30px 50px 47px;
        display: block;
    }
    .modern__content {
        width: 100%;
    }
    .modern--title {
        font-size: 30px;
        line-height: 40px;
    }
}

@media screen and (max-width: 700px) {
    .modern {
        padding: 10px;
        border-radius: 26px;
    }
    .modern__inner {
        padding: 22px 15px 25px 19px;
        border-radius: 20px;
        height: 370px;
    }
    .modern--title {
        font-size: 16px;
        line-height: 21px;
    }
    .modern__text {
        margin-top: 10px;
    }
    .modern__text ul {
        row-gap: 4px;
    }
    .modern__text ul li {
        padding-left: 20px;
        font-size: 15px;
        line-height: 18px;
    }
    .modern__text ul li:before {
        font-size: 12px;
    }
}