section {
    padding: 50px 0;
}

.top-hd {
    font-size: 45px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.topbar {
    background: var(--secondary);
    padding: 10px 0;
}

.top-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left ul,
.top-right ul {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.top-right ul {
    column-gap: 15px;
}

.top-left ul li a,
.top-right ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.top-left ul li:last-child a:after,
.top-mdl ul li:last-child a:after {
    display: none;
}

.top-left ul li a:after,
.top-mdl ul li a:after {
    position: absolute;
    top: 0;
    right: -12px;
    width: 2px;
    height: 100%;
    content: '';
    background: #fff;
    transform: translateX(50%);
}

.top-mdl {
    background: #ee6a5829;
    padding: 10px 0;
}

.top-mdl ul {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.top-mdl ul li a {
    position: relative;
    color: #e95e5e;
    font-weight: 600;
}

.top-mdl ul li a:after {
    background: #e95e5e;
}


/**mobile menu**/

.menubtn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    padding: 8px;
    z-index: 124;
    margin-left: 10px;
    border-radius: 5px;
    position: relative;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.menubtn span {
    display: inline-block;
    background: var(--white);
    width: 100%;
    height: 3px;
}

.mobilemenu {
    position: fixed;
    right: -100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
    z-index: 124;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.mobilemenu.active {
    right: 0;
}


/* .cross {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 0;
    background: var(--white);
    color: var(--black);
    padding: 5px;
    right: 40px;
    top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
} */

.mobilemenu ul {
    padding: 10px;
    background: var(--secondary);
    width: 320px;
    list-style: none;
    margin: 0;
    height: 100%;
    padding-top: 50px;
    overflow-x: hidden;
}

.mobilemenu ul::-webkit-scrollbar {
    width: 5px;
}

.mobilemenu ul::-webkit-scrollbar-track {
    background: var(--secondary);
}

.mobilemenu ul::-webkit-scrollbar-thumb {
    background: var(--secondary);
}

.mobilemenu ul li:before {
    display: none;
}

.mobilemenu ul li a {
    display: block;
    margin: 5px 20px;
    color: var(--white);
    border-radius: 25px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}

.mobilemenu li a:after {
    display: none;
}

.mobilemenu ul.submenu {
    display: none;
}

.mobilemenu ul li.haschild>a {
    position: relative;
}

.mobilemenu ul li.haschild>a:before {
    position: absolute;
    content: "";
    right: 0;
    top: 10px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: var(--white);
    padding: 3px;
    transform: rotate(135deg);
}

.mobilemenu ul li {
    margin: 0 0 10px;
}


/* header */

.header-bottom {
    padding: 30px 0;
    transition: 0.5s;
    background: var(--white);
}

.sticky .site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.sticky .site-header .header-bottom {
    padding: 20px;
    box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
}

.headerBottomHold {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerBottomRight {
    align-items: center;
}

.menulist {
    /* padding: 0 30px; */
    border-right: 1px solid var(--white);
}

.menulist li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
}

.menulist li:last-child {
    margin-right: 0;
}

.menulist li a {
    display: block;
    font-weight: 500;
    color: var(--black);
    padding: 3px 0;
    position: relative;
    font-size: 15px;
}

.menulist li.haschild>a:after {
    position: relative;
    display: inline-block;
    font-family: bootstrap-icons!important;
    content: "\F282";
    vertical-align: middle;
    font-size: 14px;
    opacity: 1;
    font-weight: bold;
    margin-left: 5px;
}

.menulist li a:hover:before,
.menulist li.active a:before {
    width: 40px;
}

.menulist li a:hover {
    color: var(--primary);
}

.headerAccountList {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.site-header {
    background: var(--white);
}

.lg-help {
    background: var(--primary);
}

section.lg-help .row {
    --bs-gutter-x: 4.5rem;
    align-items: center;
}

section.lg-help h2 {
    margin-bottom: 40px;
    text-align: center;
}

.lg-right h3 {
    font-size: 30px;
    margin-bottom: 16px;
}

.lg-right ul li {
    list-style-type: disc;
    margin-left: 21px;
}

.lg-right ul li a {
    color: var(--white);
    padding-bottom: 6px;
    display: block;
    font-size: 17px;
    font-weight: 600;
}

.lg-right p {
    color: var(--white);
}

section.appoint {
    background: #ee6a5830;
}

.app-box {
    text-align: center;
}

.app-box i {
    font-size: 53px;
    color: var(--primary);
}

.app-box h3 {
    color: var(--primary);
    padding: 14px 0;
    font-size: 33px;
}

.app-box p,
.app-box note {
    color: #000;
}

.app-box p b {
    color: var(--primary);
}

.app-box note {
    font-size: 14px;
}

.app-box span {
    display: block;
    color: var(--secondary);
}

.app-box span a {
    color: var(--primary);
    text-decoration: underline;
}

section.testimonial {
    background: var(--primary);
}

.testimonial .test-item {
    text-align: center;
}

.testimonial .test-item h3 {
    font-size: 20px;
}

.testimonial .test-item p {
    font-style: italic;
    font-size: 18px;
    color: var(--white);
    width: 50%;
    margin: 0 auto;
    padding-bottom: 25px;
}

.testimonial .owl-dots {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 25px;
}

.testimonial .owl-dots button.owl-dot,
.testimonial .owl-dots button.owl-dot.active {
    background: #ffa4a4;
    width: 10px;
    height: 10px;
    border-radius: 100px;
}

.testimonial .owl-dots button.owl-dot.active {
    background: #fff;
}

section.vdone-client {
    background: #ee6a5830;
}

.vdone-client .top-hd {
    color: var(--primary);
    font-size: 35px;
}

section.faq>div>div p {
    text-align: center;
    color: #000;
}

section.faq>div>div h2 {
    color: var(--primary);
    margin-bottom: 12px;
}

.accordion-item h2 {
    margin-bottom: 0 !important;
    color: var(--primary);
}

.accordion-item h2 button.accordion-button.collapsed,
.accordion-button:not(.collapsed) {
    color: var(--primary);
}

span.faq-cont {
    text-align: center;
    display: block;
    margin-top: 44px;
    color: #000;
}

span.faq-cont a {
    color: var(--primary);
}

section.aid {
    background: #ee6a5830;
}

section.aid .row {
    --bs-gutter-x: 4.5rem;
    align-items: center;
}

.aid-cnt h3 {
    font-size: 30px;
    color: var(--primary);
}

.aid-cnt p {
    color: #000;
}

.aid-cnt ul {
    display: flex;
    align-items: center;
    column-gap: 44px;
    flex-wrap: wrap;
    width: 57%;
}

.aid-cnt ul li a {
    color: var(--primary);
    font-size: 20px;
    display: block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.aid-cnt ul li a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    background: #db6a6a8f;
    height: 6px;
}

.history-wrapper {
    position: relative;
}

.history-wrapper:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px solid var(--primary);
}

.history-wrapper li:not(:last-child) {
    margin-bottom: 60px;
}

.history-wrapper li {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.history-wrapper li img {
    width: 100%;
}

.history-wrapper li>div {
    width: 45%;
}

.history-wrapper .content {
    padding: 0 30px;
    border: 1px solid var(--light-border);
    position: relative;
}

.history-wrapper .content:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    border: 1px solid var(--light-border);
    background: var(--white);
    border-right: none;
    border-bottom: none;
    top: 40px;
    left: -10px;
    display: none;
}

.history-wrapper li:nth-child(even) .content:before {
    left: auto;
    right: -10px;
    border-left: none;
    border-top: none;
    border-right: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.history-wrapper li {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.history-wrapper li:nth-child(even) {
    flex-direction: row-reverse;
}

.history-wrapper li:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    /*box-shadow: 0px 5px 20px rgba(249, 76, 48, 0.5);*/
    left: 50%;
    transform: translate(-50%, 0);
    top: 45px;
}

.history-wrapper .content .top {
    margin-bottom: 8px;
}

.history-wrapper .content .top {
    display: flex;
    column-gap: 15px;
    align-items: flex-start;
}

.history-wrapper li:nth-child(odd) .content {
    text-align: right;
}

.history-wrapper li:nth-child(odd) .content .top {
    display: block;
}

.date-card {
    width: 60px;
    padding: 7px;
    background: var(--secondary);
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

.history-wrapper .content .top .desg {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 0;
}

.history-wrapper .content .top .cmpny {
    display: block;
    text-transform: uppercase;
    color: var(--secondary);
}

.history-wrapper .content p {
    color: #000;
}

section.ap-listing h2.top-hd {
    color: var(--primary);
}



    .debtForm{
    width: 400px;
    margin: 30px auto;
}
.debtFormPart p{
    background: #ffe4e4;
    color: #000;
    padding: 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 2px 2px 0 2px var(--primary);
}
.debtForm select,.debtForm input{
  
    width: 100%;
    padding:15px 20px;
    border-radius: 7px;
    border: 2px solid #000;
    margin-bottom: 20px;
}
input::placeholder {
  color: #333; 
}
button[type="submit"],
input[type="submit"]{
    line-height: 24px;
    background: var(--secondary);
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    justify-content: center;
    border-radius: 5px;
    font-size: 16px;
    gap:6px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    border: none;
    width: 100%;
} 
button[type="submit"]:hover,
input[type="submit"]:hover{color: var(--white);
    background: var(--primary);
}
.rt{
    display: flex;
        justify-content: center;
        gap:20px;
}
.cmnmodal .modal-header{}
.cmnmodal .modal-header h1{
    color: #000;
}
.cmnmodal .modal-footer{
    display: none;
}

@media (max-width: 1199px) {
  
}

@media (max-width:991px) {
    .menulist {
        display: none;
    }
    .headerBottomRight {
        display: flex;
    }
      .menubtn {
        display: flex;
    }
}

@media (max-width:767px) {
    .headerAccountList {
        display: none;
    }
    h2.title {
        font-size: 35px;
        line-height: 45px;
    }
    .history-wrapper:before{
        left: 0;
        transform: translate(0,0);
    }
    .history-wrapper li:nth-child(even){
        flex-direction: row;
    }
    .history-wrapper li:nth-child(odd) .content{
        text-align: left;
    }
    .history-wrapper li>div{
        width: 100%;
    }
    .history-wrapper li:after{
        left: 0;
        transform: translate(0,0);
    }

    .top-details{
        flex-wrap: wrap;
    }
    .aid img{
        margin:  0 0 20px;
    }
    .testimonial .test-item p{
        width: 100%;
    }
    .app-box h3{
        font-size: 22px;
    }
    .top-hd{
        font-size: 30px;
        margin-bottom: 20px;
    }
}

@media (max-width:574px) {
    .topbbar {
        display: none;
    }
}

@media (max-width:479px) {
    .top-left ul, .top-right ul{
        flex-wrap: wrap;
    }
    .top-mdl ul{
        flex-wrap: wrap;
    }
}

@media (max-width:424px) {}

@media (max-width:320px) {}