/* ---------- HOW IT WORK ---------- */

/* ---------- Page -> HOW IT WORK --- section -> MAIN --- start ---------- */

.main-FAQ{
    display: flex;
    margin: 4px 72px 104px 72px;
}

.wrapper-FAQ{
    margin-right: 48px;
    width: 73.6%;
}

.wrapper-FAQ article h1{
    margin: 72px 0 32px 0;
    font-size: 32px;
}

h1{
    margin-bottom: 30px;
}

h2{
    margin: 50px 0 30px;
}

/* ---------- Page -> HOW IT WORK --- section -> MAIN --- end ---------- */

/* ---------- Page -> HOW IT WORK --- section -> ACCORDION --- start ---------- */


.wrapper-accordion{
    background-color: #eee;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.accordion {
    cursor: pointer;
    padding: 24px;
    border: none;
    border-radius: 5px;
    outline: none;
    margin: 16px 0 0 0;
    display: flex;
    width: 100%;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-family: 'Montserrat';
    transition: 0.3s;
}
  
.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel a{
    margin: 0 0 30px 0px;
    display: block;
    width: 150px;
}

.accordion:after {
    content: url('../images/assets/chevron-down/chevron-down.png');
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
  
.active:after {
    content: url('../images/assets/xmark/xmark.png');
}

ol li{
    margin-left: 50px;
}

.main-privacy-policy a{
    text-decoration: none;
    color: var(--color-accent-1);
}

/* ---------- Page -> HOW IT WORK --- section -> ACCORDION --- end ---------- */

/* ---------- Page -> HOW IT WORK --- section -> ASIDE --- start ---------- */

.FAQ-aside{
    width: 35.2%;
    margin-top: 143px;
}

.FAQ-aside div{
    width: 100%;
    padding: 46px 0;
}

.FAQ-aside h3{
    font-size: 18px;
    margin-bottom: 16px;
}

.FAQ-aside article{
    margin-bottom: 48px;
}

.FAQ-aside-contacts a{
    color: var(--color-accent-1);
}

.FAQ-aside-contacts p{
    padding-top: 8px;
}

.FAQ-aside-image{
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: 200%;
    text-align: center;
    color: #FFFFFF;
}

.FAQ-aside-image img{
    margin: 46px 0 40px;
}

.FAQ-aside-image img:nth-child(1){
    z-index: 1;
    width: 7em;
}

.FAQ-aside-image div{
    padding: 0;
    border-radius: 5px;
    padding: 0 10px 40px 10px;
}

.FAQ-aside-image div h1{
    padding-bottom: 16px;
}

.FAQ-aside-image div p{
    padding-bottom: 0;
}

.FAQ-aside-image a{
    padding: 12px 16px;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #000000;
}

.FAQ-aside-gradient{
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-accent-1) 100%);
}

/* ---------- Page -> HOW IT WORK --- section -> ASIDE --- end ---------- */

/* ---------- Page -> HOW IT WORK --- Media Query --- start ---------- */

@media only screen and (max-width: 960px) {
    .main-FAQ{
        display: block;
        margin: 0 2em;
    }

    .wrapper-FAQ {
        width: 100%;
    }

    .FAQ-aside {
        width: 100%;
        margin-top: 80px;
    }
}

/* ---------- Page -> HOW IT WORK --- Media Query --- end ---------- */


/* ---------- HOW IT WORK ---------- */

