
.about_hero{
    display: flex;
    align-items: center;

}
.about_hero_wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(79.05deg, #F9F9F9 29.2%, rgba(249, 249, 249, 0) 99.41%);
}
.about_hero_content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.about_hero_gallery{
    display: flex;
    gap: 1rem;
    width: 45%;
}

.about_hero_gallery img{
    width: 100%;

}
.abt_gal_col1 img{
    margin-bottom: 1rem;
}
.abt_gal_col2 img{
    margin-bottom: 1rem;
}
.abt_gal_col2{
    margin-top: -1.25rem;
}

/*=============Strength Section=========*/

.our_strength{
    overflow: hidden;
}
.strength_image{
    padding: 1rem;
}
.strength_content{
    width: 70%;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    justify-content: center;
}
.strength_content p{ 
    font-size: var(--smaller-font-size);
    color: var(-);
}

.strength_title{
    text-align: center;
    margin-bottom: 3rem;
}

.strength-pagination{
    text-align: end;
}

.strength_swiper .swiper-pagination-bullet{
    height: .2rem;
    padding: 0 .4rem;
    border-radius: 5px;
    
}
.strength_swiper .swiper-pagination-bullet-active{
    height: .25rem;
    padding: 0 1rem;
    border-radius: 5px;
    background-color: #4B56B0;
}

/*=============Choose Us Section=========*/
.choose_us{
    background-color: #F9F9F9;
}
.choose_content{
    width: 50%;
    padding: 2rem;
    flex-direction: column;
    justify-content: space-between;
}

.choose_sec h1{
    text-align: center;
    margin-bottom: 3rem;
}

.choose_review_wrapper{
    flex-direction: column;
    gap: 1rem;
}
.choose_review{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

/*=============Help Us Section=========*/
.we_help{
    justify-content: center;
    align-items: center;
}

.we_help_content{
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.faq_wrapper{
    width: 56%;
}

.accordion-content {
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
  }
  .accordion-item {
    display: flex;
    flex-direction: column;
    padding: .5rem 1rem;
    border-radius: 8px; 
    cursor: pointer;
    background: #F9F9F9;
    margin-top: 1rem;
  }

  .accordion-item:hover{
    background-color: #5663C1;
    color: #F9F9F9;
  }



  .item-header {
    display: flex;
    justify-content: space-between;
    column-gap: 0.2em;
    align-items: center;
    padding: .5rem;
  }

.active-item{
    background-color: #5663C1;
    color: #F9F9F9;
}
  
  .item-icon {
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    height: 25px;
    width: 25px;
    border-radius: 4px;
    cursor: pointer;
  }
  .item-icon i {
    transition: all 0.25s cubic-bezier(0.5, 0, 0.1, 1);
  }

  .item-question {
    font-size: .9rem;
    font-weight: 500;
    line-height: .5;
  }
  
  .active .item-icon i {
    transform: rotate(180deg);
  }
  
  .active .item-question {
    font-size: .98rem;
  }


  
  .item-content {
    max-height: 0;
    width: 80%;
    overflow: hidden;
    transition: all 300ms ease;
  }
  
  .item-answer {
    padding: .5rem;
    font-size: var(--smaller-font-size);
    color: rgba(255, 255, 255, 0.847);
  }
  
  @media only screen and (max-width: 750px) {
    .about_hero_wrapper{
        padding-top: .5rem;
        display: flex;
    }
    .about_hero{
        flex-direction: column-reverse;
        justify-content: space-evenly;
        gap: 1rem;
        min-height: calc(100vh - var(--header-height));
    }
    .about_hero_content{
        margin-top: 1rem ;
        width: 100% !important;
    }
    .about_hero_gallery{
        width: 80%;

    }
    .strength_card{
        align-items: center;
        flex-direction: column;
    }
    .strength_image{
        width: 90%;
    }
    .strength_card .strength_content{
        width: 100%;
    }
    .choose_main{
        flex-direction: column-reverse;
        align-items: center;
    }
    .choose_content{
        width: 100%;
        gap: 1.5rem;
    }
    .choose_img{
        width: 90%;
    }
    .we_help{
        flex-direction: column;
        align-items: center;
    }
    .faq_wrapper,.we_help_content{
        width: 100%;
    }

}

@media only screen and (min-width: 360px) and (max-width: 750px)
{
    .about_hero_wrapper{
        padding-top: 6rem;
    }
}

.item-question{
    line-height: 1.2rem;
}
.about_hero_content{
    width: 50%;
}
.abt_gal{
    width: 100%;
    margin-top: -4rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem
}
.abt_gal img:nth-child(odd){
    margin-top: 2rem;
    margin-bottom: -2rem;
}
.abt_gal img{
    width: 320px;
    border-radius: 18px;
}