
.image-container {
    width: max-content;
    margin: 0px auto;
    position: relative;
    z-index: 2;
}

.woman-desktop {
    display: none;
}

.box {
    display: none;
}

.woman-mobile {
    width: 250px;
    height: 250px;
    background: url('bg-pattern-mobile.svg');
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.content-container {
    width: 90%;
    margin: 0px auto;
    border-radius: 20px;
    position: relative;
    top: -110px;
}

.content {
    width: 90%;
    margin: 0px auto;
    padding-top: 120px;
    text-align: left;
    padding-bottom: 40px;
}

.content-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--veryDarkSaturatedBlue);
}

.division {
    font-size: 14px;
    border-bottom: 1px solid var(--lightGreyishBlue);
}

.question {
    padding:15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question img {
    width: 10px;
    height: 7px;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.answer {
    font-size: 14px;
    margin: 10px 0px;
    color: var(--darkGreyishBlue);
    display: none;
}

.content-container .hover {
    color: var(--softRed);
    cursor: pointer;
}

@media screen and (min-width: 641px) {

    .flex-container {
        display: flex;
        width: 900px;    
        height: 510px;
        margin: 0px auto;
    }

    .content-container {
        position: initial;
        border-radius: 0px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        width: 57%;
    }

    .content {
        padding-left: 70px;
        padding-right: 30px;
        padding-top: 40px;
    }

    .content-container h1 {
        text-align: left;
    }

    .overflow{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .woman-mobile {
        display: none;
    }

    .woman-desktop {
        display: block;
        position: relative;
        right: 85px;
        top: 60px;
    }

    .box {
        z-index: 3;
        display: block;
        position: relative;
    }

    .image-container {
        width: 43%;
        background-color: white;
        background-image: url('bg-pattern-desktop.svg');
        background-repeat: no-repeat;
        background-size: auto 190% contain;
        background-position: right;
        background-position-y: 69%;
        border-top-left-radius:  20px;
        border-bottom-left-radius: 20px;
    }
} 

.attribution { 
    font-size: 11px; 
    text-align: center; 
    color: white;
}

.attribution a {
    color: lightblue; 
}