body {
    display: block;
    margin: 0px;
}
.super-container {
    text-align: center;
}
.container{
    overflow: hidden;
    max-width: 1600px;
    width: 100%;
    display: inline-block;
    text-align: left;
}
.bg-container{
    width: 100%;
    position: relative;
}
img.logo {
    left: 3.4%;
    position: absolute;
    width: 20%;
    top: 14%;
}
.bg-container .bg-faq,
.bg-container .bg-faq-mobile{
    width: 100%;
}
.bg-faq-mobile{
    display: none;
}
.bg-container .title {
    top: 12%;
    right: 3.9%;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-size: 450%;
    color: #18B0B3;
}
.content-container {
    margin-bottom: 30px;
}
.faq-content {
    padding: 10px 55px;
}
.list-group {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}
.list-group:first-child{
    float: left;
}
.list-group:last-child{
    float: right;
}
.faq-header {
    padding: 10px 45px;
    border: 1px solid #707070;
    border-radius: 20px;
    align-items: center;
    position: relative;
    min-height: 80px;
    display: flex;
    cursor: pointer;
}
.faq-header span.title {
    font-family: 'Open Sans', sans-serif;
    font-size: 180%;
    color: #686767;
}
.faq-body {
    padding: 25px 45px;
    border: 1px solid #707070;
    border-radius: 20px;
    margin-top: 6px;
    display: none;
}

.faq-body span.description {
    font-size: 180%;
    font-family: 'Open Sans', sans-serif;
    color: #686767;
}
.faq-body li {
    font-size: 180%;
    font-family: 'Open Sans', sans-serif;
    color: #686767;
    margin-bottom: 4px;
}
.faq-item {
    margin-bottom: 50px;
}
.faq-list:after{
    content: '';
    display: block;
    float: none;
    clear: both;
}
.faq-header:before {
    content: '';
    position: absolute;
    left: 11px;
    width: 0px;
    height: 0;
    top: 46%;
    border-right: 0px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #686767;
}
.faq-item.active .faq-header:before {
    top: 50%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #686767;
    border-bottom:0px;
}
.faq-item.active .faq-body{
    display: block;
}

@media only screen and (max-width: 730px)  {
    .bg-container .bg-faq{
        display: none;
    }
    .bg-container .bg-faq-mobile{
        display: block;
    }
    .bg-container .title {
        top: 7%;
        font-size: 130%;
    }
    .content-container{
        margin-top: 20px;
    }
    .faq-content {
        padding: 10px 25px;
    }
    .list-group {
        width: 100%;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    .faq-header {
        padding: 10px 25px;
        border-radius: 10px;
        min-height: 30px;
    }
    .faq-header:before {
        left: 9px;
        width: 0px;
        top: 44%;
        border-right: 0px;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        border-left: 4px solid #686767;
    }
    .faq-item.active .faq-header:before {
        top: 47%;
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 4px solid #686767;
        border-bottom: 0px;
    }
    .faq-header span.title {
        font-size: 75%;
    }
    .faq-body {
        padding: 10px 20px;
        border-radius: 10px;
    }
    .faq-body span.description {
        font-size: 75%;
    }
    .faq-body ul{
        padding-left: 15px;
    }
    .faq-body li {
        margin-bottom: 6px;
        font-size: 75%;
    }
}