.appeal-items {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.appeal-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    background: rgb(241, 241, 241);
    /* padding-top: 20px; */
    border-style: double;
    align-items: center;
    justify-content: center;
}

.appeal-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Century Gothic, sans-serif;
    font-size: 20px;
    min-height: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    height: 170px;
}

.appeal-list {
    display: flex;
    position: relative;
    background-color: lightskyblue;
    padding: 70px 5px 5px;
    height: 100%;
    width: 100%;
    font-size: 24px;
    justify-content: center;
    margin-top: 60px;
    line-height: 1.2;

}


.appeal-list:before {
    content: "";
    width: 110px;
    height: 110px;
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    background-size: cover;
    background-color: #fff;
}

.appeal-item:nth-child(1) .appeal-list:before {
    background-image: url("../img/appeal/img1.png");
}

.appeal-item:nth-child(2) .appeal-list:before {
    background-image: url("../img/appeal/img2.png");
}

.appeal-item:nth-child(3) .appeal-list:before {
    background-image: url("../img/appeal/img3.png");
}

.appeal-item:nth-child(4) .appeal-list:before {
    background-image: url("../img/appeal/img4.png");
}



.appeal-list ul li {
    text-align: center;
    list-style: none;
}

.appeal-list li {
    margin-bottom: 20px;
}