#solution .content .box{
    display: grid;
    padding: 0 16px;
}

#solution .content .selection{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#solution .content .selection .select{
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    text-align: start;
    background-color: #C8E0EC;;
    color: #121C45;
    font-weight: 700;
    font-size: 23px;
    line-height: 38px;
    border: 0;
}

#solution .content .selection .select-active{
    background-color:  #FF5E14 !important;
    color: white !important;
}
#solution .content .desc img{
    width: 100%;
    height: 50%;
    min-height: 275px;
    border-radius: 16px;
}

#solution .content .desc{
    display: flex !important;
    flex-direction: column;
    gap: 16px;
}

#strength-contact{
    background-color: #121C45;

}

#strength-contact .description{
    padding: 64px 32px ;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
#strength-contact .title{
    margin: 0;
}

#strength-contact h1,#strength-contact p{
    color: white
}

#strength-contact .image{
    padding: 0;
    min-height: 300px;

    background-image: url("/assets/img/strengths/contact.png") ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 0;

}
#strength-contact .image img{
    padding: 0;
    height: 100%;
    width: 100%;
}



#location .content{
    /* padding: 0 64px; */
    display: flex;
    flex-direction: column;
}

#location .content .place{
    display: flex;
    flex-wrap: wrap;
}

#location .content h1{
    font-weight: 700;
    font-size: 20px;
}

#location .content .box{
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* background-color: #121C45; */
}

#location .content .box img{
    width: 100%;
    height: 320px;
    border-radius: 16px;
}

#location .content .box p{
    font-weight: 700;
    font-size: 17px;
    color: #5E6666;
}

#location .content .box i{
    color: #FF5E14;
}

#why .box{
    padding: 8px;
    display: grid;
}

#why .box .content{
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 32px;
}
#why .box .content img{
    width: 64px;
}

#why .container .title{
    margin: 0;
}

#why .content .title{
    gap: 0;
}

#why .container{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.collapse {
    height: 0;
    overflow: hidden;
    transition: none;
    overflow-y: auto;
  }

  .collapse.show {
    animation: expandCollapse 0.1s ease-in-out forwards;
  }

  .collapse.hide {
    animation: collapseExpand 0.1s ease-in-out forwards;
  }

  @keyframes expandCollapse {
    0% {
      height: 0;
    }
    100% {
      height: 550px;
    }
  }

  @keyframes collapseExpand {
    0% {
      height: 550px;
    }
    100% {
      height: 0;
    }
  }

  #solution .content-mobile{
    gap: 16px;
  }
#solution .content-mobile .card{
    border: 0px solid ;
    width: 100%;
    padding: 16px;
    background-color: #DFEDF4;
    gap: 16px;

}
#solution .content-mobile .card .card-header{
    border: 0px solid ;
    background-color: unset;
    padding: 0;
    text-align: start;
    color: #121C45;
    font-weight: 700;
    font-size: 23px;
    line-height: 38px;
}

#solution .content-mobile .card .card-body{
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#solution .content-mobile .card .card-body img{
    height: 360px;
    border-radius: 8px;
}

#solution .content-mobile .collapsed.active{
    color: white !important;
    background: #FF5E14;
}
#solution .content-mobile .collapsed.active button,
#solution .content-mobile .collapsed.active p{
    color: white !important;
}
@media(max-width:991px){
    #solution .content-mobile .card .card-header{
        font-size: 20px;
    }
    #solution .content-mobile .card .card-body p{
        font-size: 15px;
    }
}

@media(max-width:551px){
    #solution .content-mobile .card .card-body img{
        height: 200px;
    }
}

