/* products section */

section.products{
    /* background: #EFF5EE; */
}
section.products .col-3{
    padding: 0;
    border: 1px solid #f2f2f224;
}

section.products .product-card {
    padding: 20px;
    background: #fff;
}
section.products .product-card .img{
    position: relative;
    overflow: hidden;
}
section.products .product-card .img img{
    border-radius: 10px;
}

section.products .product-card .cont h3{
    color: var(--heading-color);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}
section.products .product-card .cart {
    position: absolute;
    top: 10px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: .5s ease-in-out;
}
section.products .product-card:hover .cart{
    right: 10px;
}
section.products .product-card .cart a{
    background: var(--white-color);
    color: var(--btn-color);
    padding: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.products .product-card .product-modal{
    background: var(--white-color);
    color: var(--btn-color);
    padding: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
.btns{
    justify-content: space-between;
    margin-top: var(--m20);
    margin-bottom: var(--m20);
}
.btns .c-w-btn{
    padding: 12px 30px;
    /* background-image: var(--main-bg); */
    color: var(--white-color);
    width: 48%;
    text-align: center;
    box-shadow: 0 0 2px #fff;
    font-family: math;
    display: inline-block;
}
.modal-dialog{
    max-width: 1100px;
}
section.products  .modal-dialog img{
    position: sticky;
    top: 10px;
}
.btns .c-w-btn:nth-child(1){
    background: #2c9500;
}
.btns .c-w-btn:nth-child(2){
    background: #FF5200;
}
.head {
    text-align: center;
    margin-bottom: 30px;
}
.price{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price a{
    background: var(--btn-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 20px;
}


/* faq section */
section.faqs{
    background: #E4E4E4;
}

section.faqs .accordion-flush .accordion-item{
    background: transparent;
    color: var(--heading-color);
    border: 1px solid var(--heading-color);
    margin-bottom: var(--m15);
    /* background-image: var(--main-bg); */
    border-radius: 15px;
    padding-left: 20px;
}
section.faqs .accordion-header{
    background: transparent;
}
section.faqs button.accordion-button{
    background: transparent;
    color: var(--heading-color);
    box-shadow: none;
    font-size: var(--f18);
    padding-left: var(--p5);
}
section.faqs .accordion-button:focus{
    box-shadow: none;
}
section.faqs .accordion-button:not(.collapsed){
    background: transparent;
    color: var(--heading-color);
    box-shadow: none;
}
section.faqs .accordion-flush .accordion-item:last-child{
    /* border-bottom: 1.5px solid #fff; */
}
/* section.faqs .accordion-button:not(.collapsed)::after{
    background: url(../images/faqdown-chevron.png);
}
section.faqs .accordion-button::after{
    background: url(../images/faqdown-chevron.png);
    width: 24px;
    height: 24px;
} */
section.faqs .accordion-body{
    font-family: var(--primary-font);
    opacity: .7;
}
section.faqs .head{
    text-align: center;
}
section.faqs .head p{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 2px;
}
section.faqs .head h2{
    margin-bottom: 15px;
    position: relative;
    /* color: #F2B181; */
    font-size: var(--f42);
}
section.faqs .head h2::before{
    content: '';
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background: var(--btn-color);
    position: absolute;
    bottom: -20px;
    display: none;
}
section.faqs .img-sec{
    display: flex;
    justify-content: center;
    align-items: center;
}
section.faqs .img-sec img{
    width: 88%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.accordion-button::after {
    /* background: transparent !important; */
    background: url(../images/plus.png);
    background: url(../images/add.png);
    background-size: cover;
    width: 32px;
    height: 32px;
}
.accordion-button:not(.collapsed)::after {
    background: url(../images/minus-sign.png);
    background: url(../images/minus.png);
    background-size: cover;
}
