
.title-ENM {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    font-family: 'Muli', Arial, sans-serif;
    text-align: center;
    width: 165px;
    color: #242424;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    z-index: 2;
}

.cta-ENM {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    background-color: #7DBC8E;
    border-radius: 17px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #fff;
    padding: 10px 33px 10px 20px;
    font-family: 'Muli', Arial, sans-serif;
    text-align: center;
    max-width: 65%;
    margin: 0 auto;
    z-index: 2;
}

.cta-ENM::after {
    content: "";
    background: url("arrow.svg") no-repeat center center transparent;
    height: 10px;
    background-size: contain;
    width: 5px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 600px) {
    .title-ENM {
        font-size: 16px;
        width: 150px;
    }
    
    .cta-ENM {
        font-size: 12px;
        padding: 8px 25px 8px 15px;
        max-width: 50%;
    }
    
    .cta-ENM::after {
        right: 15px;
    }
}