/***** DESCRIPTION **************************************************************************************/
.how-it-works-description {
    font-size: 20px;
    color: var(--white);
    text-align: center;
}

/* On screens that are 1200px or less */
@media screen and (max-width: 1200px) {
    .how-it-works-description {
        font-size: 16px;
    }
}

/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
    .how-it-works-description {
        font-size: 14px;
    }
}

/**************************************************************************************************/

/***** TITLE **************************************************************************************/
.how-it-works-title {
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 70px;
    font-weight: bold;
    text-shadow: 0px 0px 20px #1d4b5777;
}

/* On screens that are 1200px or less */
@media screen and (max-width: 1200px) {
    .how-it-works-title {
        font-size: 40px;
    }
}

/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
    .how-it-works-title {
        font-size: 30px;
    }
}

/*************************************************************************************************/


/***** CARD TEXT LEFT ****************************************************************************/
.how-it-works-left-card {
    box-shadow: var(--shadow-small);
    border-radius: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: transform .3s, box-shadow .3s;
    background: linear-gradient(135deg, var(--purple-opacity), var(--purple-opacity) 64.9%, var(--white-opacity) 65%, var(--white-opacity));
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-left-card:hover {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    box-shadow: var(--shadow-big);
}

/* On screens that are 1200px or less */
@media screen and (max-width: 1200px) {
    .how-it-works-left-card {
        background: linear-gradient(135deg, var(--purple-opacity), var(--purple-opacity) 69.9%, var(--white-opacity) 70%, var(--white-opacity));
    }
}

/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
    .how-it-works-left-card {
        background: linear-gradient(135deg, var(--purple-opacity), var(--purple-opacity) 74.9%, var(--white-opacity) 75%, var(--white-opacity));
    }
}

/**************************************************************************************************/


/***** CARD TEXT RIGHT ****************************************************************************/
.how-it-works-right-card {
    box-shadow: var(--shadow-small);
    border-radius: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: transform .3s, box-shadow .3s;
    background: linear-gradient(-43deg, var(--purple-opacity), var(--purple-opacity) 64.9%, var(--white-opacity) 65%, var(--white-opacity));
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-right-card:hover {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    box-shadow: var(--shadow-big);
}

/* On screens that are 1200px or less */
@media screen and (max-width: 1200px) {
    .how-it-works-right-card {
        background: linear-gradient(-43deg, var(--purple-opacity), var(--purple-opacity) 69.9%, var(--white-opacity) 70%, var(--white-opacity));
    }
}

/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
    .how-it-works-right-card {
        background: linear-gradient(-43deg, var(--purple-opacity), var(--purple-opacity) 74.9%, var(--white-opacity) 75%, var(--white-opacity));
    }
}

/****************************************************************************************************/

/***** LOTTIE PLAYER ********************************************************************************/
.how-it-works-lottie {
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    max-width: 500px;
}

/****************************************************************************************************/