/*Accordion*/
.acc {
    margin: 0 auto;
    max-width: 800px;
}
.acc__card {
    margin: 2em;
    position: relative;

    box-shadow: 0px 4px 18px rgba(0, 67, 53, 0.09);
}
.acc__title .title {
    text-transform: capitalize;
    margin: 0 0 5px;
}
.acc__title .time {
    font-size: 16px;
    margin: 0;
    color: #4bb035;
}
.acc__title {
    background: #fff;
    /*box-shadow: 0px 4px 18px rgba(0, 67, 53, 0.09);*/
    color: #000;
    cursor: pointer;
    /*display: block;*/
    /*padding: 1em 1.5em;*/
    position: relative;
    text-align: left;
    padding: 25px 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.acc__title::after {
    width: 8px;
    height: 8px;
    border-right: 1px solid #4a6e78;
    border-bottom: 1px solid #4a6e78;
    position: absolute;
    right: 33px;
    content: " ";
    top: 44px;
    transform: rotate(-45deg);
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.acc__title.active::after {
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
.acc__panel {
    background: #fff;
    color: #212121;
    display: none;
    margin: 0;
    /*padding: 2em;*/
    text-align: left;
    padding: 5px 30px 40px;
}

.acc__title.active .know-more {
    /*display: none;*/
    opacity: 0;
}

/*btn*/
.apply-btn {
    text-align: right;
    margin-top: 50px;
}
.xl-apply-btn {
    background: #4bb035;
    padding: 13px 23px;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff !important;
    border: 2px solid #4bb035;
    border-radius: 4px;
    font-weight: 600;
    transition: all .3s ease;

}
.xl-apply-btn:hover {
    background: transparent;
    color: #4bb035 !important;
}
.xl-apply-btn {}
.xl-apply-btn {}

/*Know more*/

.know-more {
    padding: 12px 20px;
    border: 2px solid #4bb035;
    border-radius: 4px;
    font-size: 16px;
    transition: all .3s ease;
}




