@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    background: linear-gradient(hsl(273, 75%, 66%),hsl(240, 73%, 65%));
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: grid;
    justify-content: center;
    align-content: center;
}

.container {
    background: #ffffff;
    background-image: url(images/bg-pattern-desktop.svg);
    background-repeat: no-repeat;
    background-position: 1260% 68%;
    border-radius: 25px;
    height: 509px;
    width: 920px;
    display:flex;
}

.content {
    width: 50%;
}

.imageContainer {
    position: relative;
}

.innerImageContainer {
    height: 100%;
    position: relative;
} 

.womanDesktop {
    right: 88px;
    bottom: -81px; 
    position: relative; 
}

.womanMobile {
    display: none;
}

.box {
	position: absolute;
	top: 42%;
	left: -20.5%;
}

.faqContainer {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    margin-left: 18px;
}

.titleFaq {
    font-weight: 700;
    margin-top: 0;
}

.faqQuestion {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.questionTitle {
    font-weight: 400;
    color: hsl(237, 12%, 33%);
    margin: 20px 0;
}

.arrow {
    margin-right: 16px;
}

.question {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 350px;
}

.questionTitle:hover {
    color: hsl(14, 88%, 65%);
}

.question:nth-child(1) {
    margin-top:30px;
}

.question img {
    align-self: center;
}

.answer {
    display: none;
}

.attribution {
    color: #ffffff;
    text-align: center;
    margin: 10px;
}

.attribution a {
    text-decoration: none;
    color: white;
}

.answer {
    display: none;
    margin-top: 15px;
    margin-right: 15px;
    color:hsl(240, 6%, 50%);
}

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

    .container {
        background-image: url(images/bg-pattern-mobile.svg);
        background-position: center top;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 148px 24px;
        width: 327px;
    }

    .content {
        width: 100%;
    }

    .innerImageContainer {
        padding-left: 17px;
        margin-bottom: 50px;
        position: relative;
    } 
    .womanDesktop {
        display: none;
    }

    .womanMobile {
        position: relative;
        display: block;
    }

    .box {
        display: none;
    }

    .faqContainer {
        margin: 0;
        margin-bottom: 128px;
    }

    .question:nth-child(1) {
        margin-top: 15px;
    }

    .titleFaq {
        margin: 0 auto;
    }

    .question {
        width: 280px;
        font-size: 10px;
        margin: 0 auto;
    }

    .arrow {
        margin-right: 0;
    }

    .answer {
        display: none;
        width: 280px;
        margin: 15px auto;
        color:hsl(240, 6%, 50%);
    }
}

@media screen and (min-width: 769px) and (max-width:1120px){
    .container {
        background-image: url(images/bg-pattern-mobile.svg);
        background-position: center top;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 148px 24px;
        width: 327px;
    }

    .content {
        width: 100%;
    }

    .innerImageContainer {
        padding-left: 17px;
        margin-bottom: 50px;
        position: relative;
    } 
    .womanDesktop {
        display: none;
    }

    .womanMobile {
        position: relative;
        display: block;
    }

    .box {
        display: none;
    }

    .faqContainer {
        margin: 0;
        margin-bottom: 128px;
    }

    .question:nth-child(1) {
        margin-top: 15px;
    }

    .titleFaq {
        margin: 0 auto;
    }

    .question {
        width: 280px;
        font-size: 10px;
        margin: 0 auto;
    }

    .arrow {
        margin-right: 0;
    }

    .answer {
        display: none;
        width: 280px;
        margin: 15px auto;
        color:hsl(240, 6%, 50%);
    }
}