.acordeon-wraper{
    border:2px solid #c2aa2d;
}

.acordeon-title{
    background-color: #FFD000;
    color: #000;
    cursor:pointer;
}

.acordeon-title h2{
    margin: 0px;
    padding: 5px;
}

.acordeon-cont{
    display: none;
    padding: 10px;
}

.acordeon-title .Chevron {
    border-right: 4px solid black;
    border-bottom: 4px solid black;
    width: 20px;
    height: 20px;
    transform: rotate(315deg);
    float: right;
    margin-top: -30px;
    margin-right: 16px;
}

.acordeon-title.open .Chevron {
    transform: rotate(45deg);
    margin-top: -34px;
}


/*==========  Non-Mobile First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}