@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&display=swap');

.container-fluid{
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0% !important;
  
}
.container-fluid h2{
   color: red;
   position: relative;
   width: 100%;
   text-align: center;
}
.container-fluid h2::after{
 content: "";
 position: absolute;
 bottom: 0;
 right:380px;
 width: 70px;
 height: 2px;
 background-color: red;
 }
 .acordion{
     width: 100%;
     padding: 0 0px;
     border: 2px solid #6db5ff;
     cursor: pointer;
     border-radius: 50px;
     display: flex;
     margin: 10px 0;
     align-items: center;
 }
 .acordion .icon{
     margin:0 0 0 0 ;
     width:50px;
     height: 50px;
     background: url("../images/toogle-bg.png") no-repeat 0px 0px #6db5ff;
     border-radius:50%;
     float: left;
     transition: all .5s ease-in;

 }
 .acordion h5{
     font-size: 22px;
     margin: 0;
     padding: 3px 0 0 0;
     font-weight: normal;
     color: #1f5c9a !important;

 }
 .active .icon{
    background: url("../images/toogle.png") no-repeat 0px 0px #fff;
 }

 .active{
     background-color: #6db5ff;
 }

 .panel{
     padding: 0 15px;
     border-left: 1px solid #6db5ff;
     margin-left: 25px;
     font-size: 14px;
     text-align: justify;
     overflow: hidden;
     max-height: 0;
     transition: all .5s ease-in;
     color: black;
 }
