.container{
    max-width: 1185px;
    padding: 0 15px;
    margin: 0 auto;
}

.box ul{
    padding: 0;
}

.box{
    min-height: 100%;
    padding: 31px 40px 31px 20px;
    margin: 8px 0;
    border-radius: 15px;
    color: #F7F7F7;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
}

.box_orange{
    border: 1px solid #FF7647;
}

.box_purple{
    border: 1px solid #9747FF;
}

.box__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box__text{
    font-size: 30px;
    font-weight: 700;
    display: block;
    width: 693px;
    transition: .3s;
}

.box__img{
    width: 83px;
    height: 83px
}

.box__img img{
    width: 100%;
    transition: transform 0.3s ease;
}

.box__content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.box__title{
    margin: 16px 0 0 0;
    font-size: 20px;
    font-weight: 700;
}

.box__subtitle{
    font-size: 16px;
    font-weight: 400;
}

.box__col_wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.box__content_col{
    width: 48%;
}

.orange_text{
    color: #FF7647;
}

.strong_text{
    font-weight: 700;
}

.purple_text{
    color: #9747FF;
}

.box.open .box__content {
    max-height: 500px; 
}

.box.open .box__img img {
    transform: rotate(180deg);
}

@media(min-width: 1200px){
    .box.open .box__text{
        width: 100%;
        text-align: center;
    }
}

@media(max-width: 960px){
    .box__text{
        font-size: 25px;
    }
    
    .box__title{
        font-size: 20px;
    }
}

@media(max-width: 640px){
    .box__text{
        font-size: 20px;
    }
    
    .box__title{
        font-size: 18px;
    }
    
}

@media(max-width: 480px){
    .box__img{
        height: 42px;
    }
    
    
    .box{
        padding: 20px 10px 20px 10px;
    }
    
}
