.head{
       color: #000000;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, .3);
}
.accordion{
   height: 64px;
    width: 100%;
    margin-top: 20px;
    background-color: #fcb800a8;
    color: #050505;
    border-radius:10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 14px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);

}

.title{
    font-size: large;
}
.show{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: large;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}
.info{
    height: 0;
    width: 100%;
    background-color: transparent;
    color: #000;
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
    overflow: hidden;
    border: 0;
    transition: height .4s;
}
.info.reveal{
    min-height: 150px;
    border: 1px solid #0093dd;
    border-radius: 0 0 10px 10px;
    transition: height .4s;
}
.accordion.radius{
border-radius:10px 10px  0 0 ;
}

@media screen and (max-width: 767px){
    .accordion .title{
        width: 82%;
    }
	.accordion {
    height: 100px;
	}
	.info.reveal {
    min-height: 259px;
	}
}

@media screen and (max-width: 500px){
    .accordion, .info{
        width: 400px;
    }
}
@media screen and (max-width: 400px){
    .accordion, .info{
        width: 350px;
    }
}
@media screen and (max-width: 350px){
    .accordion, .info{
        width: 300px;
    }
}