.accordian-section {
 width: 100%;
 /* height: 100vh; */
 background-color: #E1E7F3;
 padding: 4rem 6rem;
}
.inside-accordian-section{
 display: flex;
 justify-content: center;
 align-items: stretch;
}
.accord-left {
 width: 45%;
 display: flex;
 padding: 1rem;
 align-items: stretch;
 justify-content: flex-start;
 border-radius: 5px;

}
.image-div{
width: 100%;
border-radius: 5px;

}
.image-div img{
 width: 100%;
 height: auto;
 border-radius: 5px;
 box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
 transition: transform 0.3s ease;
}
.image-div:hover img{
 transform: translateY(-8px);
}
.accord-right {
 width: 50%;
 display: flex
;
 flex-direction: column;
 padding: 1rem;
}
.faq-heading {
 /* padding: 1rem; */
 font-family: montserrat;
}
.faq-heading h3 {
 /* font-size: 18px; */
 color: #a4cf00;
}
.faq-heading h2 {
 font-size: 60px;
 margin: 1rem 0;
}
.accordian{
 width: 100%;
}
.accordian-btn {
 padding: 1rem 2rem;
 background-color: #fff;
 margin-bottom: 10px;
 width: 100%;
 /* font-weight: 600; */
 font-family: "poppins", Sans-serif;
 line-height: 25px;
 border-radius: 4px;
 position: relative;
 padding-left: 90px;
 transition: color 0.3s ease;
 cursor: pointer;
}

.accordian-btn.active{
 color: #a4cf00;
}
.accordian-btn::before{
 /* content: url(../images/icons/layers.svg); */
 content: "\f1d8";
 background-size: cover;
 font-family: "Font Awesome 6 Free";
 font-size: 20px;
 top: 0;
 left: 0;
 position: absolute;
 height: 100%;
 width: 60px;
 background-color: #00567b;
 object-fit: cover;
 border-radius: 4px 0 0 4px;
 color: white;
 display: flex;
 justify-content: center;
 align-items: center;
}

.accordian-btn::after{
 content: '+';
 position: absolute;
 right: 20px;
 font-size: 35px;
 color: black;
}
.accordian-btn.active::after{
 content: '-';
 font-size: 40px;
}
.accordian-content {
 max-height: 0;
 transition: max-height 0.3s ease, padding 0.3s ease;
 background: #fff;
 overflow: hidden;
 border-radius: 4px;
 line-height: 30px;
 color: #666666;
 margin: 10px 0;
 font-family: "poppins";
}
/* .accordian-content.open{
 transition: max-height 0.3s ease;
} */
.accordian-content.active{
 max-height:max-content;
 padding: 1.5rem;
}

@media (max-width: 1326px) {
 .faq-heading h2 {
  font-size: 45px;
  margin: 1rem 0;
}
.accordian-section {
 padding: 4rem 4rem;
}
}

@media (max-width: 1100px){
 .accord-left {
  width: 50%;
}
.accordian-btn {
 font-size: 15px;
}
}

@media (max-width: 1024px){
 .accord-right {
  width: 100%;
}
.accord-left {
 width: 70%;
}
.inside-accordian-section {
 flex-direction: column;
}
}

@media (max-width: 900px){
  .faq-heading h2 {
    font-size: 30px;
    margin: 1rem 0;
}

}

@media (max-width: 765px){
  .accordian-section {
    padding: 4rem 2rem;
}

}

@media (max-width: 500px){
  .accordian-content {
    line-height: 24px;
    font-size: 13px;
}
.accordian-btn {
  font-size: 13px;
}
}

@media  (max-width: 465px) {
  .accordian-section {
    padding: 4rem 0rem;
}
  
}