.section_2{
    margin-top: 7rem;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 40%;
    justify-content: space-between;
    padding: 0 12rem;
}
.section_2 .left span .large{
    font-size: 2rem;
    margin-bottom: .5rem;
    font-weight: 500;
}
.section_2 .left p{
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: .9;
}
.section_2 .left .buttons{
    display: flex;
    justify-content: space-between;
}
.section_2 .left .buttons .button:hover{
    opacity: .8;
}
.section_2 .left .buttons .add-bot,
.section_2 .left .buttons .support{
    width: 48%;
    height: 3.3rem;
    font-size: 1.1rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms opacity;
    cursor: pointer;
}
.section_2 .left .buttons .add-bot{
    background: #24e6fb;
}
.section_2 .left .buttons .support{
    background: #313244;
    border: .1rem solid #f65a5a20;
}
.section_2 .right img{
    width: 100%;
    border-radius: .75rem;
    transition: 300ms box-shadow;
    cursor: pointer;
}
.section_2 .right img:hover{
    box-shadow: 0 0 1rem .1rem #68a0e0aa;
}