/* Purple container (whole) */
.purple_informational_background{
    background-color: var(--purple1);
    width: 43%;
    height: 100%;
}

.informational_background_info{
    padding: 70px 80px;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

/* Site logo (white) */
.informational_background_info img{
    width: 125px;
    height: 40px;
    margin-bottom: 100px;
}

/* Title */
.informational_background_info .h1{
    color: var(--white1);
    margin-bottom: 30px;
}

/* Highlighted text */
.informational_background_info  .purple_background_highlight{
    color: var(--yellow1);
}

/* "How it works" text */
.explanation_steps .caption2{
    color: var(--white1);
}

/* Explanation step text */
.explanation_steps .body2{
    color: var(--white1);
}

/* Yellow circle */
.yellow_circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--yellow1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 16px;
    font-weight: 500;
}

/* Dashed line */
.purple_background_step img{
    width: 30px;
    height: 20px;
}

/* Specific step container */
.purple_background_step{
    display: flex;
    gap: 20px;
    height: 50px;
}

/* "How it works" + explanation step divs */
.explanation_steps{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (max-width:1100px) {

    .informational_background_info{
        padding: 70px 40px;
    }
}

@media screen and (max-width:767px) {

    /* Purple container (whole) */
    .purple_informational_background{
        width: 100%;
    }

    .informational_background_info{
        padding: 50px 20px;
        max-width: unset;
    }

    /* Logo */
    .informational_background_info > a{
        display: none;
    }

    /* Title */
    .informational_background_info .h1 {
        margin-bottom: 35px;
        font-size: 22px;
        line-height: 29px;
    }

    /* "How it works" text */
    .explanation_steps .caption2{
        font-size: 12px;
    }

    /* Yellow circle */
    .yellow_circle{
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    /* Dashed line */
    .purple_background_step img{
        width: 24px;
        height: 20px;
    }

    /* Specific step container */
    .purple_background_step{
        height: 40px;
    }

    /* Explanation step text */
    .explanation_steps .body2{
        font-size: 14px;
    }
    
    /* Whole container */
    .purple_informational_background{
        order: 2;
    }
}