* {
    margin: 0;
    padding: 0;
}

/* accordion css  */
.mainAccord {
    background-color: #000;
    padding: 50px 0 70px;
}

.custmFlex {
    display: flex;
    flex-wrap: wrap;
}

.accordHead {
    font-size: 46px;
    color: #fff;
    font-family: sans-serif;
    font-weight: 500;
}

.searchField .searchIcon {
    background-color: #393939;
    border-color: #393939;
}

.searchField .searchIcon svg {
    fill: #fff;
}

.searchField input {
    background-color: #393939;
    border-color: #393939;
    min-height: 45px;
    color: #fff;
}

.searchField input:focus {
    background-color: #393939;
    color: #fff;
    border-color: #393939;
    box-shadow: unset;
}

.accordCard {
    margin-top: 20px;
    background-color: #121212;
    padding: 50px 40px 40px;
    border-radius: 4px;
}

.accordionMainContain .custmAccord-item {
    background-color: transparent;
    border: 0;
}

.accordionMainContain .custmAccord-item button {
    background-color: transparent;
    color: #fff;
    box-shadow: unset;
    font-size: 22px;
    align-items: baseline;
    padding-bottom: 20px;
    font-weight: 600;
    line-height: 30px;
    padding-left: 0;
    padding-right: 40px;
}

.accordionMainContain .custmAccord-item button::after {
    display: none;
}

.accordionMainContain .custmAccord-item button:focus {
    box-shadow: unset;
}

.CustmAccord-Content {
    border: 0;
}

.CustmAccord-Content .accordion-body {
    color: #fff;
    font-size: 18px;
    padding-left: 0;
    padding-right: 0;
}

.IconBox {
    position: absolute;
    right: 10px;
    top: 10px;
}

.IconBox span svg {
    height: 34px;
    width: 34px;
    color: #0bb09e;
}

.minusAccIcon {
    display: none;
}

.accordionMainContain .custmAccord-item button[aria-expanded="true"] .minusAccIcon {
    display: block;
}

.accordionMainContain .custmAccord-item button[aria-expanded="true"] .plusAccIcon {
    display: none;
}

.accordionMainContain .custm-botmLine:nth-child(even) {
    padding-left: 50px;
}

.accordionMainContain .custm-botmLine:nth-child(odd) {
    padding-right: 50px;
}

.accordRow .custm-botmLine .custmAccord-item {
    border-bottom: 1px solid #323232;
    margin-bottom: 10px;
    border-radius: 0;
}

.accordRow .custm-botmLine:nth-last-child(-n+2) .custmAccord-item {
    border-bottom: 0;
    margin-bottom: 0px;
}

.custmPageNum {
    gap: 10px;
}

.custmPageNum .page-numbers {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #c1c1c1;
    border: 1px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custmPageNum .page-numbers:hover {
    color: #fff;
}

.custmPageNum .page-numbers.current {
    background-color: #00ba9d;
}
.page-numbers svg{
    fill: #c1c1c1;
}
.page-numbers:hover svg{
fill:#fff;
}
.input-group.searchField{
    border-radius: 4px;
    overflow: hidden;
}
@media(max-width: 992px){
    .accordionMainContain .custm-botmLine:nth-child(even) {
        padding: 0;
    }
    
    .accordionMainContain .custm-botmLine:nth-child(odd) {
        padding: 0;
    }
    .accordRow .custm-botmLine:nth-last-child(2) .custmAccord-item{
        border-bottom: 1px solid #323232;
    margin-bottom: 10px;
    }
    .accordRow .custm-botmLine:nth-last-child(-n+1) .custmAccord-item {
        border-bottom: 0;
        margin-bottom: 0px;
    }
    .input-group.searchField{
        width:100% !important;
    }
}

@media screen and (min-width:420px) and (max-width:576px) {
    .accordHead {
        font-size: 24px;
    }

    .accordionMainContain .custmAccord-item button {
        font-size: 18px;
    }

    .CustmAccord-Content .accordion-body p {
        font-size: 18px;
    }
}

@media screen and (max-width:420px) {
    .accordHead {
        font-size: 19px;
    }

    .accordionMainContain .custmAccord-item button {
        font-size: 16px;
        padding-right: 30px;
    }
    

    .accordCard {        
        padding: 20px 30px 40px;
    }

    .IconBox {
        right: 0;
    }
    
    .CustmAccord-Content .accordion-body p {
        font-size: 16px;
    }
}