@charset "UTF-8";
/* CSS Document */

.accordion {
    margin: 0 auto;
width: 100%;
background-color: #c3b3a3;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
    width:92%;
    margin: 0 auto;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
padding: 0em 1em;
display: block;
color: #000;
font-weight: bold;
font-family: 'Cormorant Infant', serif;
 font-weight: 300;
letter-spacing: 1.5px;
    text-align: right;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.5%;
top: 0.4em;
width: 0.05em;
height: 0.75em;
background-color: #000;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
    text-align: center;
overflow: hidden;
    margin: 0 auto;
    font-family: 'Cormorant Infant', serif;
 font-weight: 300;
    letter-spacing: 0;
    margin-top: 0.5em;
}
.content p {
margin:0;
padding: 0.5em 1em 1em;
font-size: 0.9em;
line-height: 0.5em;
    color: #000;
}
.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}