.accordion{
    max-width: 67rem;
    width: 100%;
    background: #FFF;
    margin:0 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.accordion .accordion-content{
    margin:10px 0;
    border-radius: 5px;
    background-color: #eeeeee;
    border-color: #bbffaa;
    overflow: hidden;
}

.accordion-content.is-open{
    padding-bottom: 10px;
}
.accordion-content header{
    display:flex;
    min-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition:all 0.2s linear;
}
.accordion-content.is-open header{
    min-height: 31px;
}
.accordion-content-title{
    font-size: 1rem;
    font-weight: 600;
    color:#000000;
}
.accordion-content-description{
    height:0;
    font-size: 13px;
    color:#000000;
    font-weight: 400;
    padding: 0 15px;
}
.gallery {
    width: 900px;
    display: flex;
    overflow-x: scroll;
}

.gallery div {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    grid-gap: 20px;
    padding: 10px;
    flex: none;
}

.gallery div img {
    width: 100%;
    filter: grayscale(100%);
    transition: transform 0.5s;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	border-radius: 8px;
}

.gallery::-webkit-scrollbar {
    display: none;
}

.gallery-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% auto;
}

#backbtn,
#nextbtn {
    cursor: pointer;
    width: 50px;
    margin: 40px;
}

.gallery div img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
    cursor: pointer;
}





.accordion2{
    max-width: 67rem;
    width: 100%;
    background: #FFF;
    margin:0 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.accordion2 .accordion2-content{
    margin:10px 0;
    border-radius: 5px;
    background-color: #eeeeee;
    border-color: #bbffaa;
    overflow: hidden;
}

.accordion2-content.is-open{
    padding-bottom: 10px;
}
.accordion2-content header{
    display:flex;
    min-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition:all 0.2s linear;
}
.accordion2-content.is-open header{
    min-height: 31px;
}
.accordion2-content-title{
    font-size: 1rem;
    font-weight: 600;
    color:#000000;
}
.accordion2-content-description{
    height:0;
    font-size: 13px;
    color:#000000;
    font-weight: 400;
    padding: 0 15px;
}
.gallery2 {
    width: 900px;
    display: flex;
    overflow-x: scroll;
}

.gallery2 div {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    grid-gap: 10px;
    padding: 10px;
    flex: none;
}

.gallery2 div img {
    width: 100%;
    filter: grayscale(100%);
    transition: transform 0.5s;
	
}

.gallery2::-webkit-scrollbar {
    display: none;
}

.gallery2-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% auto;
}

#backbtn2,
#nextbtn2 {
    cursor: pointer;
    width: 50px;
    margin: 40px;
}

.gallery2 div img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
    cursor: pointer;
}