body,
.jumbotron {
  padding: 30px;
}

html {
    overflow-y: scroll;
}

body {
  background: #EFEFEF;
}

ul {
    margin-bottom: 0;
}

.accordion {
    background: #FFF;
    border-radius: 5px;
    padding: 30px;
}

.question {
    border-top: 1px solid #EFEFEF;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.question h2 {
    font-size: 20px;
    margin: 0;
    color: #C00C00;
}

.icon {
    display: flex !important;
    align-items: center !important;
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    color: #C00C00;
    transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

.answer p {
    padding: 20px;
}

.accordion li.open .answer {
    max-height: 150px;
}

.accordion li.open .question .icon {
    transform: rotate(180deg);
}