.resource_listing_section {
    margin-top: 80px;
}

.resource_heading {
    text-align: center;
}

.resource_heading h2 {
    text-transform: capitalize;
}

.resource_search_bar .thaps-search-box {
    max-width: 845px;
}

.resource_search_bar #thaps-search-button {
    background: transparent;
    width: auto;
    border-radius: 0;
    margin: 0;
}

.resource_search_bar .th-icon-vector-search:before {
    content: "";
    background-image: url(../images/search-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 26px;
    height: 26px;
}

.resource_search_bar .thaps-from-wrap {
    background: #F9F9F9;
    border: none;
    border-radius: 0;
    padding: 11px 20px;
}

.resource_search_bar .thaps-from-wrap input {
    background: #F9F9F9;
    padding: 0;
    min-height: auto;
    border-radius: 0;
    padding-right: 45px;
}

.resource_search_bar .thaps-from-wrap input:focus-visible {
    outline: none;
}

.resource_search_bar .thaps-from-wrap input::placeholder {
    font-family: "Dosis", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #323232;
    letter-spacing: 0.02em;
}

.resource_search_bar .thaps-preloader {
    width: 24px;
    height: 24px;
    top: 17px;
    padding: 0;
    margin-right: 30px;
}













.resource_listing_part {
    margin-top: 50px;
}

.resource_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: -30px;
}

.resource_column {
    width: 32.33%;
    margin-bottom: 30px;
}

.resource_image img {
    display: block;
    width: 100%;
}

.resource_box {
    background: #FDFCFF;
    border: 1px solid rgba(109, 48, 141, 0.03);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    height: 100%;
    display: grid;
    transition: all .3s ease;
}

.resource_box:hover {
    border: 1px solid rgba(109, 48, 141, 1);
}

.resource_image {
    position: relative;
    padding-bottom: 94.6%;
}

.resource_image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.resource_image::after {
    content: "";
    background-image: url(../images/new-shape.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.resource_title {
    margin-top: 14px;
}

.resource_title h3 {
    font-size: 18px;
    line-height: 140%;
    color: #000000;
}

.resource_show_more_btn {
    margin-top: 50px;
    text-align: center;
}

.resource_show_more_btn a {
    text-transform: none;
}

@media (max-width: 1199px) {
    .resource_listing_section {
        margin-top: 60px;
    }
    .resource_listing_part {
        margin-top: 40px;
    }
    .resource_row {
        margin-bottom: -20px;
    }
    .resource_column {
        margin-bottom: 20px;
    }
    .resource_title {
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .resource_listing_section {
        margin-top: 40px;
    } 
    .resource_listing_part {
        margin-top: 30px;
    }
    .resource_box {
        padding: 10px;
    }
    .resource_title h3 {
        font-size: 16px;
    }
    .resource_column {
        width: 49%;
    }
}

@media (max-width: 767px) {
    .resource_listing_section {
        margin-top: 30px;
    }
    .resource_listing_part {
        margin-top: 20px;
    }
    .resource_row {
        margin-bottom: 0;
        flex-direction: column;
    }
    .resource_column {
        width: 100%;
        margin-bottom: 30px;
    }
    .resource_column:last-child {
        margin-bottom: 0;
    }
    .resource_show_more_btn {
        margin-top: 30px;
    }
}