.nodata {
    text-align: center;
    padding: 12px;
}

.nodata p {
    overflow: hidden;
    color: #333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 125% */
    /* 125% */
}

.nodata img {
    max-width: 200px;
    width: 100%;
    margin-bottom: 10px;
}

.sear .heading,
.keylist .heading {
    margin-bottom: 24px;
}

.sear a {
    display: block;
    width: 100%;
    padding: 12px 12px 24px;
    border-bottom: 1px solid #F9E0C2;
    margin-bottom: 24px;
}

.sear a .info {
    display: flex;
    gap: 24px;
    margin: 12px 0;
}

.sear a .info p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.sear a .text {
    color: #5C6481;
}

.keylist .flex {
    column-gap: 24px;
    margin-bottom: 24px;
}

.keylist a{
    display: block;
    padding: 12px;
    color: #131F49;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    position: relative;
    padding-left: 48px;
    text-transform: capitalize;
}
.keylist a p{
    color: #131F49;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
}

.keylist a::after {
    position: absolute;
    content: '';
    left: 24px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FC881D;
}

.search-box {
    background: #131F49;
    padding: 24px 0;
}

.search {
    width: 70%;
    margin: auto;
    position: relative;
    display: flex;
    gap: 24px;
}

.search input {
    width: 100%;
    outline: none;
    color: #666;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 4px;
    background: #FFF;
}

.search input::placeholder {
    color: #666;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}

.search .search_btn {
    border-radius: 4px;
    display: block;
    background: #FC881D;
    padding: 0 30px;
}

.search .search_btn i {
    color: #fff;
    font-size: 22px;
    line-height: 45px;
}

@media (max-width:768px) {
    .search {
        width: 100%;
        padding: 0 24px;
        gap: 16px;
    }

    .search input {
        padding: 6px 24px;
    }

    .search .search_btn {
        padding: 0 24px;
    }

    .search .search_btn i {
        color: #fff;
        font-size: 18px;
        line-height: 36px;
    }

    .search-box {
        padding: 10px 0;
    }

    .search {
        width: 100%;
        padding: 0 10px;
        gap: 12px;
    }

    .sear .heading,
    .keylist .heading {
        margin-bottom: 5px;
    }

    .container {
        padding: 0 5px;
    }

    .sear a {
        padding: 6px 5px 12px;
        margin-bottom: 12px;
    }

    .sear a .info {
        display: flex;
        gap: 24px;
        margin: 4px 0;
    }

    .sear a .info p {
        font-size: 12px;
        line-height: 18px;
    }

    .keylist .flex {
        column-gap: 12px;
        margin-bottom: 0px;
    }

    .keylist a {
        padding-left: 30px;
        line-height: 18px;
        font-size: 14px;
    }

    .keylist a::after {
        left: 10px;
        top: 16px;
    }


}