.cost__wrapper {
    padding-top: 170px;
}

.cost__content {
    padding: 50px;
    margin-top: 60px;
    background-color: #2699D6;
    border-radius: 20px;
    background-image: url('../images/png/cost-background-1.png');
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}

.cost__row {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.cost__wrapper .cost__row:nth-child(3){
    position: relative;
    margin-bottom: 80px;
}
.cost__wrapper .cost__row:nth-child(3):after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    width: calc(100% - 130px);
    height: 1px;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
}

.cost__row span {
    font-family: 'Balsamiq Sans', cursive;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 45px;
    color: #FFFFFF;
}

.cost__separator {
    margin: 40px auto;
    width: calc(100% - 130px);
    height: 1px;
    background-color: #fff;
    box-sizing: border-box;
}

/* == == */
.actions__wrapper {
    margin-top: 120px;
}

.actions__content {
    position: relative;
    padding: 50px;
    margin-top: 60px;
    background-color: #AA81ED;
    border-radius: 20px;
    background-image: url('../images/png/cost-background-1.png');
    background-position: left;
    background-size: 60%;
    background-repeat: no-repeat;
}

.actions__rows {
    width: 50%;
}

.actions__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.actions__row:not(:last-child) {
    margin-bottom: 20px;
}

.actions__row-title span {
    display: block;
    font-family: 'Balsamiq Sans', cursive;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.actions__row-sale {
    margin-left: auto;
    margin-right: 40px;
    font-family: 'Balsamiq Sans', cursive;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
}

.actions__row-full-cost {
    width: 105px;
    position: relative;
    font-family: 'Balsamiq Sans', cursive;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 36px;
    color: #FFFFFF;
}

.actions__row-full-cost:before {
    content: '';
    background-image: url('../images/svg/sale-cost.svg');
    background-repeat: no-repeat;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 7px;
    left: -10px;
}

.actions__raccoon {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.additional-services__wrapper {
    margin-top: 120px;
}

/* == == */
.additional-services__wrapper {
    padding-bottom: 120px;
}

.cost__content.additional-services {
    background-color: #F088B6;
}

.additional-services__subtitle {
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Balsamiq Sans', cursive;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 45px;
    color: #FFFFFF;;
}

@media screen and (max-width: 1200px) {
    .cost__content {
        padding: 20px;
    }

    .cost__row {
        flex-wrap: wrap;
    }

    .cost__row span {
        display: block;
        font-size: 16px;
        line-height: 20px;
    }

    .cost__row span:nth-child(1) {
        width: calc(100% - 100px);
    }

    .cost__row span:nth-child(2) {
        width: 100px;
        text-align: end;
    }

    /* == == */
    .actions__content {
        padding: 20px;
    }

    .actions__rows {
        width: 100%;
    }

    .actions__row {
        position: relative;
        align-items: flex-start;
    }

    .actions__row-sale {
        margin-right: 0;
        font-size: 26px;
        line-height: 30px;
        width: 50%;
    }

    .actions__row-full-cost {
        position: absolute;
        right: 0;
        bottom: -15px;
    }

    .actions__raccoon {
        display: none;
    }
}