* {
    box-sizing: border-box;
  }
.aidsContainer {
    position: relative;
    width: 100%;
    max-width: 1366px;
    transform: translate(-50%);
    left: 50%;
    margin: 20px;
    padding: 20px;
    height: auto;
    background-color: transparent;
    color: #fff;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.aidsContainer-title {
    font-size: 48px;
    line-height: 41.28px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 40px;
    padding: 5px;
    text-align: center;
}
.aidsButton {
    width: 100%;
    height: auto;
    /*background-color: #3B3B54;*/
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    border:0 ;
}
.aidsButton-title {
    background-color: #292935;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}
.aidsButton-title p {
    font-size: 24px;
    font-weight: 600;
    color: #F9F9F9;
    text-align: left;
    font-family: 'bebas-neue-pro';
    text-transform: uppercase;
}
.aidsButton-info {
    display: none;
}
.aidsButton-info.active {
    display: block;
    width: 100%;
    border-radius: 0 0 8px 8px;
    padding: 12px 24px;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #EBEBF4;
    background-color: #3B3B54;
    text-align: left;
    transition: max-height 0.3s ease-out;
}
.aidsButton-info.active a {
    color: #F73535;
}
.aidsButton-title.active img {
    transform: rotate(180deg);
}

/*** RESPONSIVE DESIGN ***/

/* Mobiles */
@media only screen and (max-width: 320px) {
    .aidsContainer {
        margin: 0;
    }
    .aidsContainer-title {
        font-size: 35px;
    }
}
@media only screen and (min-width: 321px) and (max-width: 767px) {
    .aidsContainer {
        margin: 0;
    }
    .aidsContainer-title {
        font-size: 40px;
    }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {  
    .aidsContainer {
        width: 100vw;
    }
    .aidsContainer-title {
        font-size: 40px;
    }
}

/* Laptop */
@media only screen and (min-width: 992px) and (max-width: 1365px) {}
@media only screen and (min-width: 1366px) {}