#ags-main-cont {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 30rem;
    padding: 6rem 2rem;
    color: white;
    background-color: transparent;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
#ags-main-cont p:first-child {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 2.75rem;
}
#ags-main-cont p:nth-child(2) {
    font-size: 1.5rem;
}
#ags-main-cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vw;
    background-color: var(--distro-drk-green);
    background-image: url("../images/3_ways_to_sell/blend-4.png");
    transform: rotate(90deg);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -105rem;
}
#ags-btn {
    background-color: var(--distro-live-yellow);
    color: var(--distro-drk-green);
    padding-inline: 1rem;
    width: 10rem;
    height: 2.5rem;
    display: flex;
    text-align: center;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

@media screen and (max-width: 500px) {
    #ags-main-cont {
        height: 110vw;
        width: 110vw;
        padding: 4rem 2rem;
        padding-right: calc(10vw + 2rem);
    }
    #ags-main-cont::before {
        background-size: 200%;
        background-position: -39rem;
        height: 110vw;
    }
    #ags-main-cont p:nth-child(2) {
        width: 66vw;
    }
}
