@import url(global.css);
@import url(header.css);
html{
    overflow-x: initial;
}
.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: 53px;
    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;
}

/* ----------------------- blog ------------------- */


.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 li {
    list-style-position: inside;
    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: 51px
}

.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;
    max-width: 100%;
}


/* ---------------------------------------- comment-section ----------------------- */
.comments__section {

    position: relative;
    height: 100%;
    padding: 16px 16px 50px;
    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 {
    padding: 30px 40px;
    border-radius: 10px;
}

.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(--color-text);
    font-size: 20px;
    text-align: center;
}

.comment-item__text {
    color: #616364;
    font-size: var(--font-size-1);
    line-height: 20px;
    text-align: justify;
}

.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: 5px
    }

    .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;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: none !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: none !important;
}

.swiper-button-prev, .swiper-button-next {
    transform: scale(1.5);
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    transition: 0.3s;
    width: 20px;
    border-radius: 20px;
}

.show-blogs {

    display: flex;
    justify-content: space-between;
  }
  
  .show-blogs .box-show-data-blog {
    width: 100%;
  height: 100%;
  }
  
  
  .show-blogs .box-show-data-blog img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
  }
  
  .show-blogs .box-show-data-blog {
    position: relative;
  }
  
  .show-blogs .box-show-data-blog .data-blog {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 90%;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 10px !important;
    transform: translate(-50%, -80%);
    -webkit-transform: translate(-50%, -80%);
    -moz-transform: translate(-50%, -80%);
    -ms-transform: translate(-50%, -80%);
    -o-transform: translate(-50%, -80%);
    padding: 15px 20px !important;
  }
  
  .show-blogs .box-show-data-blog .data-blog .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'iran-sans';
    color: #aaa8a8;
    font-size: 10px;
    margin: 5px 0;
  }
  .show-blogs .title-small-box svg{
    margin-left: 4px;
  }
  .show-blogs .box-show-data-blog .data-blog .title h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
    width: 100%;
    text-align: right;
    height: 24px;
    margin: 5px 0;
  }
  
  .show-blogs .box-show-data-blog .data-blog .des {
    margin: 10px 0;
    line-height: 20px;
  }
  .position-relative{
    position: relative;
  }
  .show-blogs .box-show-data-blog .data-blog .des p {
    font-size: 10px;
    font-weight: 700;
    margin: 5px 0;
    text-align: justify;
    color: #6C6C6C;
  }
  
  .show-blogs .box-show-data-blog .data-blog .link {
    width: 100%;
  
    display: flex;
    align-items: end;
    justify-content: end;
    margin: 5px 0;
  }
  
  .show-blogs .box-show-data-blog .data-blog .link a {
    font-size: 10px;
    color: #812990;
    /* width: 100%; */
    text-align: start;
    font-weight: 700;
  }
  
  .box-show-data-blog-small {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
.pagination {
    justify-content: center;
    padding-right: 0;
}
.single-blog__text ul,
.single-blog__text ul li {
    list-style-type: disc !important;
}

.single-blog__text ol,
.single-blog__text ol li {
    list-style-type: lower-roman !important;
}