#content {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 50px;
}

.questionContainer {
    width: 60%;
    position: relative;
    left: 20%;
    margin-bottom: 30px;
    overflow: hidden;
    background: #EEEEEE;
    max-height: 60px;
    cursor: pointer;
    transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    -webkit-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
}

.questionTitle {
    height: 60px;
    font-weight: 900;
    font-size: 22px;
    line-height: 60px;
    color: #FF96A2;
    padding-left: 30px;
}

.question {
    font-size: 18px;
    font-weight: 800;
    line-height: 34px;
    color: #A5A5A5;
}

.answer {
    font-size: 15px;
    line-height: 34px;
    color: #A5A5A5;
    margin-bottom: 20px;
}

.answersAndQuestions {
    background: #F8F8F8;
    padding: 32px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.pinkArrow {
    position: relative;
    top: -34px;
    right: 30px;
    float: right;
}

.helpTitle {
    font-weight: 900;
    color: #F26780;
    margin: auto;
    letter-spacing: 0.5px;
    font-size: 21px;
    border-bottom: none;
    margin-bottom: 50px;
    text-align: center;
    width: 48%;
    line-height: 26px;
}

#mapZone {
    width: 95%;
}

@media screen and (max-width: 768px) {
    .questionContainer {
        left: 5%;
        width: 90%;
    }

    .questionTitle,
    .question {
        font-size: 13px;
        overflow: visible;
        width: 74%;
        line-height: 20px;
        display: flex;
        align-items: center;
    }

    .answer {
        font-size: 12px;
    }

    .pinkArrow {
        right: 19px;
        width: 20px;
    }
}