#price {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

#price .main-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

#price .plansSlot {
    position: sticky;
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    gap: 30px;
    will-change: transform;
    transition: transform .8s ease;
}

#price .plansSlot > div {
    min-width: 50%;
}

#price .empty-item {
    display: none;
}

#price .text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 45%;
}

#price .text-container > h2 {
    font-size: 7.5vw;
    line-height: 7.5vw;
    font-weight: 100;
    text-transform: uppercase;
    color: white;
}

#price .text-container > h3 {
    font-size: 2vw;
    line-height: 2.5vw;
    font-weight: 100;
    color: white;
}

#price .button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    height: min-content;
    padding: 0px;
    border: 1px solid white;
    border-radius: 18px;
}

#price .button-container > div {
    transition: background .7s ease, color .7s ease;
    font-size: 1vw;
    line-height: 1vw;
    font-weight: 200;
    padding: 10px 15px;
    border-radius: 16px;
    text-transform: uppercase;
}

#price .button-container > div[select="false"] {
    color: white;
    background: rgba(255, 255, 255, 0);
}

#price .button-container > div[select="true"] {
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 1);
    font-weight: 300;
}

#price .price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    transition: opacity 1s ease;
}

#price .price-card[selected] {
    opacity: 1;
}

#price .price-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#price .title {
    font-size: 2vw;
    font-weight: 100;
    line-height: 2vw;
    color: white;
    text-transform: uppercase;
}

#price .price-text {
    font-size: 6vw;
    font-weight: 100;
    line-height: 6vw;
    color: white;
    text-transform: uppercase;
}

#price .billing {
    font-size: 1.5vw;
    font-weight: 100;
    line-height: 1.5vw;
    color: white;
}

#price .price-card > .trace {
    width: 35%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
}

#price .benefits-text {
    font-size: 1.8vw;
    font-weight: 100;
    line-height: 2.5vw;
    color: white;

}

#price .button {
    width: fit-content;
    height: min-content;
    background: rgba(255, 255, 255, 1);
    padding: 5px 15px;
    border-radius: 14px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
}

#price .mobile {
    display: none;
}

#price .desktop {
    display: flex;
}

@media (max-width: 1024px) {
    #price .mobile {
        display: flex;
    }
    
    #price .desktop {
        display: none;
    }

    #price {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 60px .5fr 1.75fr .35fr;
        place-items: center;
        padding: 0 20px;
    }
    
    #price .empty-item {
        display: block;
    }

    #price .main-container {
        display: flex;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #price .plansSlot > div {
        min-width: 100%;
    }

    #price .price-card {
        gap: 15px;
    }

    #price .text-container {
        align-items: center;
        gap: 5px;
        height: fit-content;
    }

    #price .text-container .title {
        font-size: 8vw;
        line-height: 8vw;
        text-align: center;
    }

    #price .text-container .description {
        font-size: 1.2rem;
        line-height: 1.3rem;
        text-align: center;
        width: 70%;
    }

    #price .price-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 3px;
    }
    #price .title {
        font-size: 6vw;
        line-height: 6vw;
    }

    #price .price-text {
        font-size: 18vw;
        line-height: 18vw;
    }

    #price .billing {
        font-size: 1.2rem;
        font-weight: 100;
        line-height: 1.3rem;
        color: white;
    }

    #price .price-card > .trace {
        width: 45%;
        min-height: 1px;
        background: rgba(255, 255, 255, 1);
    }

    #price .benefits-text {
        font-size: 6vw;
        font-weight: 100;
        line-height: 8vw;
        color: white;

    }

    #price .button {
        width: fit-content;
        height: min-content;
        background: rgba(255, 255, 255, 1);
        padding: 5px 15px;
        border-radius: 14px;
        font-weight: 300;
        text-transform: uppercase;
        text-decoration: none;
        color: inherit;
    }

    #price .button-container > div {
        font-size: 4vw;
        line-height: 4vw;
        padding: 12px 20px;
    }
}