/* CTA SECTION */

.cta {
    width: 100%;
}

.cta__container {
    position: relative;

    width: 100%;
    height: 464px;
    gap: 32px;
    
    border-radius: 24px;

    background-image: url("../../images/Mobile/cta.png");
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
}

.cta__content {
    padding: 16px;
    gap: 16px;
}

.cta-title,
.cta-description {
    width: 310px;
    color: white;
    text-align: center;
}

.cta-title {
    font-weight: 600;
    font-size: 24px;
}

.cta-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

.cta__download-app-button {
    width: 141px;
    height: auto;
}

.card-tag {
    position: absolute;
    height: 33px;
    padding: 6px 10px;
    padding-left: 24px;
    border-radius: 12px;
    
    color: white;
    background: #FFFFFF59;
}


.cta__content > .card-tag:nth-of-type(1) {
    top: 16px;
    right: 40px;
}

.cta__content > .card-tag:nth-of-type(2) {
    display: none;
}

.card-tag::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 8px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #8C98D5;
}

/* desktop: tablet */
@media (min-width: 744px) {
    .cta__content > .card-tag:nth-of-type(1) {
        width: max-content;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .cta__container {
        background-image: url("../../images/Tablet/cta.png");
    }
}
    
/* desktop: fullscreen 1024 */
@media (min-width: 1024px) {
    .cta__container {
        height: 600px;
        background-image: url("../../images/Desktop/cta.png");
    }
}

/* desktop: fullscreen 1440 */
@media (min-width: 1440px) {
    .cta__content {
        padding: 0;
    }
    
    .cta-title {
        width: 750px;
        font-size: 48px;
    }
    
    .cta-description {
        width: 530px;
        font-size: 16px;
        line-height: 130%;
        line-height: 150%;
        letter-spacing: 0.5px;
    }
    
    .cta__content > .card-tag:nth-of-type(1) {
        top: 95px;
        right: 110px;
        left: 915px;
        margin: 0;
    }
    
    .cta__content > .card-tag:nth-of-type(2) {
        display: block;
        bottom: 100px;
        left: 100px;
    }
}
