.container {
    width: 100%;
    /* max-width: 1140px; */
    margin: auto;
    padding: 0;
}
.heading_sec{
    margin-bottom: 20px;
    text-align: center;
}
.heading_sec h2{
    color: var(--heading-color);
    font-size: var(--f50);
    line-height: 1;
    margin-bottom: 25px;
}
.divider {
    background-image: linear-gradient(84deg, #2488e5 30%, #c4c4c4 41%);
    height: 4px;
    width: 185px;
    display: flex;
    margin: auto;
}
.heading_sec h5{
    font-size: 22.4px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 22px;
}
/*Banner css*/
section.banner-section {
    height: 650px;
    background: url(../images/faq-banner.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px;
    position:relative;
}
section.banner-section .banner-overlay {
    background-color: rgba(3, 10, 27, .61);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 50%), rgb(255 255 255 / 50%));
}
section.banner-section h1{
	margin-bottom: 0;
}
section.banner-section .container{
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/*Faq css*/
.accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
      transform: scale(.7) !important;
    }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    }
    section.faq-sec {
    padding: 110px 0 100px;
}
section.faq-sec .heading_sec h2{
    margin-bottom: 40px;
}
section.faq-sec .heading_sec .divider {
    margin-bottom: 45px;
}
section.faq-sec .faq-detail {
    padding: 10px;
    padding-top: 5px;
}
section.faq-sec .accordion-button{
    padding: 15px 20px;
    font-family: var(--primary-font);
   font-weight: bold;
   color: var(--primary-color);
}

/*Cta form css*/
section.cta-form {
    background: var(--secondary-color);
    padding-left: 0px;
    padding-right: 0px;
}
section.cta-form h3{
    color: #fff;
    font-size: 1.9em;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 30px;
}
section.cta-form input{
    width: 100%;
    background: transparent;
    border: 1px solid #bbb;
    padding: 5px 14px;
    font-size: 16px;
    color: #bbb;
    min-height: 40px;
    border-radius: 10px;
    line-height: 35px;
}
section.cta-form input::placeholder{
    color: #bbb;
}
section.cta-form form{
    display: flex;
    gap: 0 60px;
}
section.cta-form .form-field, section.cta-form .form-btn{
    min-width: 30%;
}
section.cta-form .form-btn button{
    background: #fff;
    border: 0px solid;
    padding: 13px 15px;
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    color: var(--secondary-color);
}