#ready {
    padding-bottom: 70px;
    margin-top: 60px;
}

#ready h3 {
   
}

#ready .container {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    justify-content: center;
    align-items: center;
}

#ready .context {
    background: #F8F8FF;
    border-radius: 16px;
    padding: 70px;
    height: 100%;
    align-self: center;
}

#ready .buttons-group {
    margin-top: 30px;
}

#ready img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

#ready .image-placeholder {
    border-radius: 16px;  
    display: block;
}

#ready .image {
    position: relative;
    height: 330px;
}

#ready .image-wrap {
    position: relative;
    height: 330px;
    overflow: hidden;
    border-radius: 16px;
}

#ready .image-mask {
    z-index: 1;
    border-radius: 16px;    
}


#ready .ready-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 .ready-growth span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #C1E8CF;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ready .ready-growth svg {
    height: 16px;
}

#ready .ready-growth svg * {
    fill: #3E9052;
}

@media only screen and (min-width: 980px) { 

}

@media only screen and (max-width: 980px) { 
    #ready .container {
        grid-template-columns: 1fr;
        gap: 20px;       
    }  
}