#ready-simple {
    padding-bottom: 70px;
}

#ready-simple h3 {
   
}

#ready-simple .container {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    justify-content: center;
    align-items: center;
}

#ready-simple .context {
    background: #F8F8FF;
    border-radius: 16px;
    padding: 70px;
    height: 100%;
    align-self: center;
}

#ready-simple .buttons-group {
    margin-top: 30px;
}

#ready-simple img {
    object-fit: cover;
    display: block;
    height: 100%;
    border-radius: 16px;
}

#ready-simple .image {
    height: 100%;
    position: relative;
}

#ready-simple .ready-simple-growth {
    position: absolute;
    bottom: 20px;
    z-index: 2;
    right: 20px;
    background: #E6F8F0;
    color: #1A442C;
    border-radius: 50px;
    padding: 8px 24px 8px 8px;;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#ready-simple .ready-simple-growth span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #C1E8CF;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ready-simple .ready-simple-growth svg {
    height: 16px;
}

#ready-simple .ready-simple-growth svg * {
    fill: #3E9052;
}

@media only screen and (min-width: 980px) { 

}

@media only screen and (max-width: 980px) { 
    #ready-simple .container {
        grid-template-columns: 1fr;
        gap: 20px;       
    }  
}