/* #region Hero */
.home__subtitle-text {
    color: var(--white);

    @media (min-width: 1280px) {
        max-width: 1000px;
    }
}

.home__hero-text {
    font-size: 1em;

    @media (min-width: 768px) {
        font-size: 1.1em;
    }

    @media (min-width: 1280px) {
        font-size: 1.4em;
    }
}

.home__hero__main-container {
    display: grid;
    gap: 16px;
}

.home__hero__title-background-img {
    margin-top: 10px;
    background-image: url(/static/images/kitty.png);
    min-width: 80px;
    min-height: 80px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;

    @media (min-width: 768px) {
        margin: -20px 0;
    }
}

.home__hero__button {
    white-space: nowrap;
    padding: 1.2em 0;

    @media (min-width: 768px) {
        padding: 1.2em;
    }
}

.home__hero__secondary-button {
    border: 1px solid var(--white);
    background: none !important;
    color: var(--white) !important;
}

.home__hero__secondary-button:hover {
    border: 1px solid var(--main-orange-hover-color);
    color: var(--main-orange-hover-color) !important;
}

.home__hero__secondary-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 16px;

    @media (min-width: 768px) {
        padding: 40px 0 32px;
        align-items: center;
        flex-direction: row;
        gap: 1em;
    }

    @media (min-width: 1280px) {
        padding: 64px 0 40px;
        gap: 2.5em;
        max-width: 960px;
    }
}

.home__hero__subtitle-background {
    background-image: url(/static/images/spinning-coin-web-optimized.gif);
    min-width: 50px;
    min-height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -10px;

    @media (min-width: 768px) {
        margin-top: 5px;
    }

    @media (min-width: 1280px) {
        margin-top: -2px;
    }
}

/* #endregion Hero */

/* #region Product Showcase */
/* #region Typography */
.home__product-showcase__index-number {
    color: var(--main-orange);
    font-size: 1.1em;
    font-weight: 600;

    @media (min-width: 768px) {
        font-size: 1.5em;
    }
}

.home__product-showcase__product-subtext {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0.5em;


    @media (min-width: 768px) {
        font-size: 1.5em;
    }
}

.home__product-showcase__product-link {
    font-size: 1em;
    font-weight: 500;
    color: var(--main-orange);
    vertical-align: middle;

    @media (min-width: 768px) {
        font-size: 1.5em;
    }
}

/* #endregion Typography */

/* #region Layout */
.home__product-showcase__main-container {
    display: grid;
    gap: 25px;

    @media (min-width: 768px) {
        gap: 70px;
    }
}

.home__product-showcase__products-grid {
    display: grid;
    gap: 50px;

    @media (min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
        gap: 100px;
    }
}

.home__product-showcase__single-product-container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.home__product-showcase__single-product-last-container {
    @media (min-width: 768px) {
        grid-column: span 2;
        max-width: 800px;
    }
}

.home__product-showcase__single-product-img-container {
    max-width: 100%;
}

.home__product-showcase__single-product-img {
    width: 100%;
}

.home__product-showcase__single-product-text-container {
    display: grid;
    align-items: baseline;
    grid-template-columns: 24px auto;
    gap: 0.5em;

    @media (min-width: 768px) {
        grid-template-columns: 24px auto;
    }
}

.home__product-showcase__button {
    padding: 10px;
    max-width: fit-content;

    @media (min-width: 768px) {
        font-size: 1.5em;
    }
}

/* #endregion Layout */

/* #endregion Product Showcase */

/* #region Data Showcase */
/* #region Typography */
.home__data-showcase__title-text {
    color: var(--white);

    @media (min-width: 768px) {
        max-width: 580px;
    }

    @media (min-width: 1280px) {
        max-width: 500px;
    }
}

.home__data-showcase__subtitle-text {
    color: var(--white-op6);
    font-weight: 500;
    max-width: 500px;

    @media (min-width: 768px) {
        margin-left: auto;
    }
}

.home__data-showcase__col-title-text {
    font-size: 1.2em;
    line-height: 1.3em;
    font-weight: 600;

    @media (min-width: 768px) {
        font-size: 1.5em;
    }
}

.home__data-showcase__table-cell-heading {
    font-size: 0.82em;
    color: var(--white);
    padding: 0.75em;
    padding-left: 12px;
    text-align: left;
}

.home__data-showcase__table-cell-heading:first-child {
    text-align: center;
}

.home__data-showcase__table-cell-text {
    font-weight: 550;
}

.home__data-showcase__number {
    font-size: 4em;
    font-weight: 600;
    color: var(--main-orange);
}

.home__data-showcase__percentage {
    font-size: 3em;
    font-weight: 700;
    color: var(--main-orange);
    align-self: end;
}

.home__data-showcase__text {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.2em;
}

/* #endregion Typography */

/* #region Layout */
.home__data-showcase__main-container {
    display: grid;
    gap: 2.5em;

    @media (min-width: 768px) {
        gap: 5em;
    }

    @media (min-width: 1280px) {
        gap: 4em;
    }
}

.home__data-showcase__title-subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    height: 100%;

    @media (min-width: 768px) {
        gap: 1.5em;
    }

    @media (min-width: 1280px) {
        flex-direction: row;
        gap: 2em;
    }
}

.home__data-showcase__secondary-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5em;

    @media (min-width: 768px) {
        width: 100%;
        max-width: 720px;
        flex-direction: row;
        gap: 2em;
    }

    @media (min-width: 1280px) {
        gap: 7em;
        margin: 0 auto;
        max-width: 1200px;
    }
}

.home__data-showcase__col {
    display: flex;
    flex-direction: column;
    gap: 2em;
    max-width: 367px;

    @media (min-width: 1280px) {
        font-size: 1.2em;
        max-width: 500px;
    }
}

.home__data-showcase__table-row {
    border-top: 1px var(--white-op3) solid;
}

.home__data-showcase__table-row:first-child,
.home__data-showcase__table-row:nth-child(2) {
    border-top: none;
}

.home__data-showcase__table-row-highlighted {
    background: var(--main-orange);
    border-radius: 10px;
}

.home__data-showcase__table-cell {
    white-space: normal;
    vertical-align: middle;
    padding: 20px 10px;
}

.home__data-showcase__table-cell:first-child {
    text-align: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.home__data-showcase__table-cell:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.home__data-showcase__data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5em;
}

.home__data-showcase__data-grid-individual {
    display: flex;
    flex-direction: column;
    gap: 0.35em;
}

/* #endregion Layout */

/* #endregion Data Showcase */

/* #region Community & Support */
/* #region Typography */
.home__community-support__title-text {
    color: var(--white);
    font-weight: 600;

    @media (min-width: 768px) {
        font-size: 3.5em;
    }

    @media (min-width: 1280px) {
        font-size: 4.5em;
    }
}

.home__community-support__text {
    color: var(--white);
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.2em;

    @media (min-width: 768px) {
        font-size: 1.5em;
        line-height: 1.3em;
    }

    @media (min-width: 1280px) {
        font-size: 1.7em;
    }
}

/* #endregion Typography */

/* #region Layout */
.home__community-support__main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5em;
    padding-bottom: 2.5em;

    @media (min-width: 768px) {
        gap: 2.5em;
    }

    @media (min-width: 1280px) {
        flex-direction: row;
        gap: 4em;
    }
}

.home__community-support__secondary-container {
    display: flex;
    flex-direction: column;
    gap: 3em;
    max-width: 480px;

    @media (min-width: 768px) {
        margin-left: auto;
        gap: 4em;
    }

    @media (min-width: 768px) {
        margin-left: 0;
    }
}

.home__community-support__icon {
    width: 100%;
    max-width: 20px;
    height: auto;
    margin-bottom: -3px;

    @media (min-width: 768px) {
        max-width: 30px;
    }
}

/* #endregion Layout */

/* #region Community & Support Image Ribbon */
.home__image-ribbon__fineprint {
    color: var(--white-op6);

    @media (min-width: 768px) {
        font-size: 1.1em;
        line-height: 1.3;
    }
}

.home__image-ribbon__main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    height: 150px;

    @media (min-width: 768px) {
        height: 200px;
    }

    @media (min-width: 1280px) {
        height: 350px;
    }
}

.home__image-ribbon__image-container {
    flex: 1 1 auto;
}

.home__image-ribbon__image-container img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    display: block;
    position: relative;
    overflow: clip;

    @media (min-width: 768px) {
        width: 150px;
        height: 150px;
    }

    @media (min-width: 1280px) {
        width: 290px;
        height: 290px;
    }
}

.home__image-ribbon__img-1 {
    transform: rotateZ(-4deg);
    top: 0px;
    left: 15px;
}

.home__image-ribbon__img-2 {
    transform: rotateZ(6deg);
    top: 25px;
    left: 5px;
}

.home__image-ribbon__img-3 {
    transform: rotateZ(-2deg);
    top: 10px;
    left: 5px;
}

.home__image-ribbon__img-4 {
    transform: rotateZ(5deg);
    top: 27px;
    left: -10px;
}

.home__image-ribbon__img-5 {
    transform: rotateZ(-6deg);
    top: -5px;
    left: -15px;
}

.home__image-ribbon__img-6 {
    transform: rotateZ(7deg);
    top: 20px;
    left: -30px;
}

.home__image-ribbon__img-7 {
    transform: rotateZ(-2deg);
    top: 0px;
    left: -37px;
}

/* #endregion Community & Support Image Ribbon */

/* #endregion Community & Support */

/* #region Pricing */
/* #region Typography */
.home__pricing__title-text {
    color: var(--main-orange);
    font-weight: 600;
    max-width: 540px;

    @media (min-width: 1280px) {
        max-width: 800px;
    }
}

.home__pricing__subtitle-text {
    color: var(--white-op6);

    @media (min-width: 1280px) {
        max-width: 650px;
    }
}

.home__pricing__text {
    color: var(--white-op6);
    font-size: 1em;

    @media (min-width: 768px) {
        line-height: 1.3em;
    }

    @media (min-width: 1280px) {
        max-width: 150px;
    }
}

.home__pricing__pay-text {
    color: var(--white-op6);
    font-size: 20px;
    cursor: pointer;
    width: fit-content;
    margin-left: 1em;

    @media (min-width: 768px) {
        font-size: 32px;
        margin: 0;
    }
}

/* #endregion Typography */

/* #region Layout */
.home__pricing__main-container {
    display: flex;
    flex-direction: column;
    gap: 2em;

    @media (min-width: 768px) {
        gap: 4em;
    }
}

.home__pricing__title-subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 3em;
    padding: 0 1em;

    @media (min-width: 768px) {
        flex-direction: row;
        padding: 0;
    }

    @media (min-width: 1280px) {
        gap: 2em;
        justify-content: space-between;
    }
}

.home__pricing__subtitle-container {
    display: flex;
    gap: 1em;
    margin-top: auto;
}

.home__pricing__subtitle-background-img {
    background-image: url(/static/images/spinning-coin-web-optimized.gif);
    min-width: 40px;
    min-height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -5px;


    @media (min-width: 768px) {
        margin: 0;
        min-width: 50px;
        min-height: 50px;
    }
}

.home__pt-container {
    display: grid;
    gap: 24px;

    @media (min-width: 768px) {
        justify-content: center;
    }
}

/* #endregion Layout */

/* #region Pricing Table */
/* #region Typography */
.home__pt-header-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.home__pt-header-accent-text {
    color: var(--black-op55);
    font-size: 24px;
    line-height: 1.1;
}

.home__pt-currency-symbol {
    margin-top: 12px;
    font-weight: 600;
}

.home__pt-pricing-number {
    font-size: 48px;
    font-weight: 600;
}

.home__pt-info-cell-text {
    color: var(--black-op55);
    font-size: 20px;
    line-height: 24px;
}

.home__pt-compare-plans-text {
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 170px;
}

/* #endregion Typography */

/* #region Layout */
.home__pt-table {
    background: var(--black);
    display: flex;
    overflow: hidden;

    .home__pt-option {
        position: relative;

        @media (max-width: 768px) {
            width: 60%;
        }

        @media (max-width: 1280px) {
            width: 50%;
            flex: 1;
        }

        .home__pt-option-slider {
            .home__pt-swiper-wrapper {
                background: var(--white);
                display: flex;
                align-items: stretch;
                width: fit-content;
                margin: 0 auto;
            }
        }

        .home__pt-option-item {
            max-width: 300px;
            margin-right: 0;

            .home__pt-item {
                .home__pt-item-wrap {
                    display: flex;
                    flex-direction: column;
                    font-size: 1.375em;
                    line-height: 1.4;
                    position: relative;

                }

                .home__pt-row {
                    width: 300px;
                    display: flex;
                    flex-direction: column;
                }
            }
        }

        .home__pt-option-item-last {
            width: 600px;

            @media (min-width: 768px) {
                width: 200px;
            }
        }
    }
}

.home__pt-header-cell {
    display: grid;
    width: 100%;
    gap: 4px;
    padding: 32px 12px 0 16px;

    @media (min-width: 768px) {
        padding: 32px 12px 0 32px;
    }
}

.home__pt-price-cell {
    padding: 0 12px 0 16px;
    display: flex;
    flex-direction: row;

    @media (min-width: 768px) {
        padding: 0 12px 0 32px;
    }
}

.home__pt-button-cell {
    padding: 16px 12px 0 16px;

    @media (min-width: 768px) {
        padding: 16px 12px 0 32px;
    }
}

.home__pt-price-button {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border: none;
    background: var(--main-orange);
    padding: 8px 16px;
}

.home__pt-price-button:hover {
    color: #fff;
    background: var(--main-orange-hover-color);
}

.home__pt-info-cell {
    padding: 16px 12px 0 16px;
    width: 100%;
    height: 110px;
    position: relative;

    @media (min-width: 768px) {
        padding: 20px 12px 0 32px;
        height: 130px;
    }
}

.home__info-box-container {
    display: none;
    background: var(--light-grey);
    box-shadow: var(--black-op1) 0px 8px 16px 0px, var(--black-op15) 0px 2px 6px 0px;
    position: absolute;
    width: 100%;
    max-width: 250px;
    padding: 0.5em 0.75em;
    z-index: 2;
    left: 0;
    bottom: 90%;
}

.home__info-box-img {
    width: 100%;
}

.home__pt-info-cell:hover .home__info-box-container {
    display: block;
}

.home__pt-progress-bar-cell {
    padding: 24px 12px 0 16px;

    @media (min-width: 768px) {
        padding: 24px 12px 0 32px;
    }

}

.home__pt-progress-bar-container {
    display: block;
    background: var(--black-op3);
    position: relative;
    height: 4px;
}

.home__pt-progress-bar {
    position: absolute;
    top: 0px;
    height: 4px;
    background: var(--olive-green);
}

.home__pt-progress-bar-50 {
    width: 50%;
}

.home__pt-progress-bar-75 {
    width: 75%;
}

.home__pt-progress-bar-100 {
    width: 100%;
}

.home__pt-compare-plans-cell {
    padding: 24px 32px 32px 32px;
    background: white;
    width: 1200px;
}

/* #endregion Layout */

/* #endregion Pricing Table */

/* #endregion Pricing */