.main-section__filter-title {
    font-size: var(--font-size-1);
    font-weight: 500;
    color: #000000;
    margin-left: 8px;
}

.radio-label {
    margin: 0 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

    .radio-label.active {
        border-radius: 13px;
        color: #fff;
        padding: 3px 4px;
        text-align: center;
    }

input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    display: none;
}

/* ------------------------- sidebar -------------------------- */
.side-category__title {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--primary-color);
    display: table;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    min-width: 190px;
}

.side-category__list-item a {
    font-size: 14px;
    color: #9fa2a3;
    line-height: 35px;
}

    .side-category__list-item a::before {
        content: " ";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: var(--primary-color);
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

.side-category__list-item:hover a {
    color: var(--primary-color);
}

.side-category {
    padding: 16px 16px 50px;
    position: sticky;
    top: 135px;
    border-radius: 20px;
    background: #ffffff;
    -webkit-box-shadow: 0 5px 20px 0 #d8d8d8;
    box-shadow: 0 5px 20px 0 #d8d8d8;
}

.tags-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.tags-list__item a {
    font-weight: 400;
    font-size: 13px;
    color: #9fa2a3;
    text-decoration: underline;
}

    .tags-list__item a:hover {
        color: var(--primary-color);
    }

.side-category__img-wrapper {
    text-align: center;
}

    .side-category__img-wrapper img {
        border-radius: 17px;
    }

/* ----------------------- blogs ------------------- */
.single-blog__text h3 {
    color: var(--primary-color);
    font-weight: bold;
    margin: 2rem 0 0.2rem;
}

@media (max-width: 576px) {
    .single-blog__text h3 {
        font-size: 18px;
    }
}

.single-blog__text p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 30px;
    color: var(--color-text);
    text-align: justify;
}

.single-blog__text ul,
.single-blog__text li {
    font-size: unset;
    color: var(--primary-color);
}

.single-blog__text ul {
    margin: 10px;
}

.single-blog__text li {
    /* list-style-position: inside; */
    list-style-type: disc;
    margin-bottom: 8px;
}

.single-blog__text img {
    max-width: 100%;
}

.single-blog__text * {
    font-size: 19px;
    font-weight: 300;
}

.single-blog__img img {
    max-width: 100%;
    border-radius: 27px;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}

.more {
    background-color: var(--primary-color);
    padding: 10px 30px;
    color: #fff;
    border-radius: 50px;
    margin: auto;
    display: table;
    font-size: 23px;
    min-width: 230px;
    font-weight: 600;
    transition: all 0.3s;
}

    .more:hover {
        box-shadow: 0 10px 20px var(--color-three);
    }

.single-blog__sidebar {
    position: sticky;
    top: 135px;
}

.single-blog__sidebar-top {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 2px dashed #9fa2a3;
}

.single-blog__top-image img {
    border-radius: 27px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
}

/* ---------------------------------------- comment-section ----------------------- */
.comments__section {
    position: relative;
    height: 100%;
    padding: 1rem;
    border-radius: 30px;
    /* border: 0.5px solid var(--secondary-color); */
    background: #ffffff;
    -webkit-box-shadow: 0 5px 20px 0 #d8d8d8;
    box-shadow: 0 5px 20px 0 #d8d8d8;
}

.comments__section-title {
    color: var(--color-text);
    text-align: center;
}

.comment-item {
    max-width: 450px;
    margin: 0 auto;
}

.comment-item__img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.comment-item__author {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 20px;
    text-align: center;
}

.comment-item__text {
    color: #616364;
    font-size: var(--font-size-1);
    line-height: 20px;
    text-align: justify;
    text-align-last: center;
}

.comments__section .owl-stage {
    display: flex;
}

.comments__section .owl-stage-outer {
    overflow: hidden;
}

.owl-item.bg-white .comment-item {
    background-color: #fff;
    border-bottom: 6px solid;
}

.comments__section .owl-nav {
    display: flex;
    justify-content: center;
}

    .comments__section .owl-nav button {
        width: 53px;
        height: 53px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
    }

/* .comments__section .owl-nav button.disabled{
    background-color: #fff;
} */
/* .owl-item.active:nth-child(2){
    background-color: #fff;
} */
/* ---------------------------------------- comment-section ----------------------- */

/* ------------------------------------------- comment-send ------------------------- */
.comment-send__wrapper .comments__section-title {
    margin-bottom: 25px;
}

.comment-send__wrapper {
    position: relative;
    padding: 16px 16px 16px;
    border-radius: 20px;
    /* border: 0.5px solid var(--secondary-color); */
    background: #ffffff;
    -webkit-box-shadow: 0 5px 20px 0 #d8d8d8;
    box-shadow: 0 5px 20px 0 #d8d8d8;
}

.form__textarea {
    min-height: 180px;
    resize: none;
}

.form__send-btn {
    border: 0;
    min-width: 150px;
    display: table;
    margin: auto;
    font-size: 18px;
    cursor: pointer;
    height: 48px;
}

.form__star {
    color: var(--primary-color);
    font-size: 20px;
}

/* ------------------------------------------- comment-send ------------------------- */
.side-category__img-wrapper .owl-stage {
    display: flex;
}

.side-category__img-wrapper .owl-stage-outer {
    overflow: hidden;
}

.side-category__img-wrapper .owl-nav {
    display: none;
}

.side-category__img-wrapper .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    margin: 0 2px;
}

/* ----------------------------------------- writer section */

.writer__logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 0 20px rgba(15, 115, 132, 0.8);
    margin-left: 30px;
    flex-shrink: 0;
}

@media only screen and (max-width: 1200px) {
    .blog__image-wrapper {
        height: auto;
    }

    .more {
        margin: 40px auto;
    }
}

@media only screen and (max-width: 992px) {
    .side-category {
        top: 70px;
    }

    .writer__logo {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .single-blog__top-image img {
        display: block;
    }

    .single-blog__sidebar-top {
        display: none;
    }

    .writer__logo {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .main-section__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5px;
    }

    .main-section__filter-title {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .more {
        width: 80%;
        min-width: auto;
        font-size: 20px;
    }

    .comment-send__wrapper {
        padding: 10px;
    }

    .download-box__wrapper svg {
        width: 36px;
        height: 36px;
    }

    .download-box__wrapper .main-btn {
        min-width: auto;
        font-size: 14px;
    }

    .link__wrapper {
        justify-content: center;
    }

    .comment-item {
        padding: 20px 16px;
        border: none;
    }

    .comments__section {
        padding: 16px;
    }
}

.blogs-blog .blog-content {
    width: auto;
}

.blogs-blog .blog-image {
    flex-shrink: 0;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23EC1F27' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23EC1F27' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next {
    margin-left: -30px;
}

.carousel-control-prev {
    margin-right: -30px;
}

/*--------------------swiper--------------------*/
.swiper {
    width: 100%;
    height: 85%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.articles .article-card-parent {
    margin-bottom: 1rem;
}

.article-card-parent p {
    font-size: 0.7rem;
}

.user-text h1 {
    font-size: 2.5rem;
}

.user-text h2 {
    font-size: 2rem;
}

.user-text h3 {
    font-size: 1.75rem;
}

.user-text h4 {
    font-size: 1.5rem;
}

.user-text h5 {
    font-size: 1.25rem;
}

.user-text a {
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    color: var(--primary-color);
}

.user-text ol li {
    list-style-type: decimal;
}

.user-text ul li {
    list-style-type: disc;
}
