.main-container {
    
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    padding: 0;
    background-color: #f5f5f9;
    border-radius: 20px;
    box-shadow: 0 35px 30px -30px rgb(85 83 83);
    background-image: url(images/bg-pattern-desktop.svg);
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: -457px -250px;
}
h1 {
    color: #494cb2;
}

.faq ,.woman-img{
    flex: 1;
}

.woman-img{
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.box{
    display: block;
    position: absolute;
    transform: translateX(-50%) translateY(85%);
    z-index: 1;
}

.desk-img{
    transform: translateX(-17%);
}

.mob-img{
    display: none;
}

.faq{
    padding: 30px 30px;
}

.faq h1{
    text-transform: uppercase;
    font-size: 30px;
    padding-bottom: 35px;

}


.items{
    font-size: 15px;
    padding-right: 0px;

}


.item{
    border-bottom:var(--Light-grayish-blue) 1px solid;
    padding:10px 10px 10px 0;    
}

.item-link{
    text-decoration: none;
    color: black;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    transition: 0.2s;

    background-color: #f5f5f9;
    padding-left: 5px;
    padding-right: 5px;
}
/*
.item-link:hover{
    color: var(--Soft-red);
}
*/

.answer{
    /*max-height: 0;*/
    overflow: hidden;
    position: relative;
    /*transition: max-height 1s;*/
    /*display: none;*/
    color: var(--Dark-grayish-blue);
    font-size: 12px;
    line-height: 20px;

    background-color:#f5f5f9;

    padding: 20px 10px 10px;

}

a{
    text-decoration: none;
}
/*
.item:target .answer{
    max-height: 300px;
    padding: 5px 0;
}
*/
/*
.item:target .item-link{
    font-weight: 700;
} 
*/
.item:target .arrow img{
    transform: rotate(180deg);
    transition: transform 0.6s ease-in-out;
}


@media (max-width: 1155px){
    .desk-img{
        display: none;
    }

    .main-container{
        max-width: 90%;
    }


    .box{
        display: none;
    }

    .mob-img{
        display: block;
        position: relative;
        left: -10px;
        top: -40px;
        margin: 0 auto;
    }

    .woman-img{
        overflow: visible;
        height: 0;

    }

    .main-container{
        background-image: none;
        display: block;
        margin-top: 180px;
    }

    .items {
        padding-right: 0;
    }

    .answer p{
        padding-right: 50px;
    }

    .faq h1{
        text-align: center;
    }

    .faq {
        padding-top: 90px;
    }

}