

/* Layout */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

section article {
    width: 960px;
    height: 500px;
}

.heading {
    text-align: center;
}

.heading span {
    color: crimson;
    font-size: 24px;
}

.heading h1 {
    font-size: 36px;
    margin-top: 10px;
}



.content {}

.content>div {
     width: 100%;
    float: left;
    margin: 27px 0px 20px 0px;
    height: auto;
    box-sizing: border-box;
}

.accordion {}

.title {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    padding-left: 15px;
    /* position: relative; */
    transition: 0.3s;
    margin-bottom: 10px;
}

.title:after {
    content: '\f105';
    font-family: fontawesome;
    /* position: absolute;
    right: 10px;
    top: 7px; */
    float: right;
    margin-right: 5px;
    margin-top: 3px;
    transition: 0.3s;
}

.title.active:after {
    transform: rotate(90deg);
    color: orange;
}

.title:hover,
.title.active {
    background-color: #000000;
    color: #fff;
    font-size: 18px;
}

.desc {
    padding: 15px;
    display: none;
}

.desc.active {
       display: block;
    font-size: 16px;
    background: #fff;
    font-family: 'Muli', sans-serif;
}

.image {
    text-align: right
}

.image img {
    height: 370px;
}
