/* ================================================ */


.article_box_new_all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 9px;
}

.article_box_new_date {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: var(--main-color);
}

.blog__section {
    display: flex;
    gap: 13px;
}
.blog-card.one {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px !important;
    height: 446px;
}
.blog-card .blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    transition: all .5s ease-out;
}



.blog-card .blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  transition: all .5s ease-out
}

.blog-card .blog-card-img-wrap .card-img {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 5px 5px 0 0;
  transition: all .5s ease-out;
}

.blog-card .blog-card-img-wrap .card-img img {
  border-radius: 5px;
  transition: all .5s ease-out;
  min-width: 100%;
  height: 196px;
  object-fit: cover;
}

.blog-card .blog-card-img-wrap .card-img::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1
}

.blog-card .blog-card-img-wrap .date {
  position: absolute;
  top: 13px;
  left: 13px;
  text-align: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(16, 12, 8, .4);
  -webkit-backdrop-filter: blur(1.7px);
  backdrop-filter: blur(1.7px);
  transition: .5s;
  z-index: 9
}

.blog-card .blog-card-img-wrap .date span {
  color: var(--white-color);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .22px;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .5s
}

.blog-card .blog-card-img-wrap .date span strong {
  font-size: 17px;
  font-weight: 600
}

.blog-card .blog-card-content {
  /* padding: 0px 12px; */
}

.blog-card .blog-card-content .blog-card-content-top>ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px
}

.blog-card .blog-card-content .blog-card-content-top>ul li {
  position: relative;
  color: rgba(16, 12, 8, .5);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .26px;
  text-transform: capitalize
}

.blog-card .blog-card-content .blog-card-content-top>ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  background-color: var(--second-color);
  width: 5px;
  height: 5px;
  border-radius: 50%
}

.blog-card .blog-card-content .blog-card-content-top>ul li:first-child::before {
  display: none
}

.blog-card .blog-card-content .blog-card-content-top>ul li a {
  color: rgba(16, 12, 8, .5);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .26px;
  text-transform: capitalize;
  text-decoration: underline;
  transition: .5s
}

.blog-card .blog-card-content .blog-card-content-top>ul li a:hover {
  color: var(--second-color)
}

.blog-card .blog-card-content .blog-card-content-top>ul li:nth-child(2) a {
  text-decoration: none
}

.blog-card .blog-card-content h3 a {
    /* color: var(--second-color); */
    /* font-size: 20px; */
    /* font-weight: 400; */
    /* line-height: 1; */
    /* letter-spacing: 0.23px; */
    /* transition: .5s; */
    /* margin-bottom: 9px; */
}
.blog__card-text {
    font-weight: 400;
    margin-bottom: 9px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 20px;
}






/* -----------------------------؟ */




hr {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #212529;
    height: 4px !important;
}


.blog-date {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 5px 7px;
    background: var(--main-color);
    border-radius:10px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    justify-content: flex-start;
}

.blog-date i {
    color: #fff;
    font-size: 21px;
    margin-right: 0px;
    flex-shrink: 0;
}



html {
    scroll-padding-top: 110px;
}

.blog-card.style-5 .blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.blog-card .blog-card-content .blog-card-content-top>ul {
    justify-content: center;
}

.blog-card .blog-card-content .bottom-area {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: row-reverse;
}

/*==========Blog List Page CSS Start==========*/

.categories,
.recent-post,
.blog-search-from,
.blog-post-detail,
.tag.side-bar,
.related-blog {
    background-color: var(--white-color);
    box-shadow: 0px 10px 60px 0px rgb(211, 211, 211);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px !important;
}

.blog-details-wrapper .blog-box {
    margin-bottom: 30px;
}

.h3-title {
    font-size: 25px;
    line-height: 35px;
    color: var( --deep-blue);
    font-weight: 400;
    margin-bottom: 15px;
}

.blog-img.back-img img {
    position: relative;
    height: 500px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
    min-width: 100%;
}

.blog-details-wrapper .blog-text .h3-title a {
    color: var( --deep-blue);
    text-decoration: unset !important;
    transition: 0.3s;
}

.blog-details-wrapper .blog-text .h3-title a:hover {
    color: var(--second-color);
}

.blog-post-footer {
    border-top: 1px dashed #777777;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-post-social a {
    width: 41px;
    height: 41px;
    background: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--second-color);
    border-radius: 50%;
    margin-left: 14px;
    position: relative;
    transition: 0.3s;
}

.blog-post-social a i {
    position: relative;
}

.blog-post-social a:first-child {
    margin-left: 0;
}

.blog-post-social a:last-child {
    margin-right: 0;
}

.blog-post-social a:hover {
    color: #ffffff;
}

.blog-post-social a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    border-radius: 50%;
    opacity: 0.3;
    transition: 0.3s;
}

.blog-post-social a:hover:before {
    opacity: 1;
}

.post-comment-box {
    padding: 33px 40px 32px 40px;
    position: relative;
    background: var(--white-color);
    box-shadow: 2px 2px 60px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 22px 0;
}

.post-comment-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--second-color);
}

.post-comment-box .h3-title {
    font-style: italic;
    margin-bottom: 0;
}

.post-comment-box img {
    width: 42px;
    height: 38px;
    float: right;
    margin-top: -20px;
    margin-right: -20px;
    margin-bottom: -38px;
}

.blog-post-text-list {
    list-style: none;
    margin-bottom: 23px;
}

.blog-post-img {
    display: flex;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 23px;
    margin-bottom: 23px;
}

.post-img-box {
    width: 50%;
    padding: 0 15px;
}

.post-img-box img {
    min-width: 100%;
    height: 370px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    object-fit: cover;
}

.blog-post-text-list li {
    min-height: 35px;
    position: relative;
    padding-left: 50px;
    color: var(--main-color);
    margin-bottom: 17px;
}

.blog-post-text-list li:before {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(to right, #f00, #000);
    border-radius: 50%;
    font-size: 15px;
    color: var(--white-color);
    font-family: 'FontAwesome';
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-text.no-img {
    margin-top: 0;
    width: 100%;
    padding-top: 30px;
}

.blog-text .blog-date {
    padding: 0;
    margin-bottom: 22px;
    position: relative;
}

.blog-text .blog-date a {
    color: var(--white-color);
    text-decoration: unset !important;
    font-weight: normal;
}

.blog-text .blog-date a i {
    font-size: 15px;
    vertical-align: text-top;
    margin-left: 0;
}

.blog-img .blog-date {
    position: absolute;
    z-index: 1;
    bottom: 5px;
    left: 0;
    right: 0;
    display: flex;
    padding: 1rem;
    background: rgba(0, 0, 0, .1);
    border-radius: 0;
    backdrop-filter: blur(5px);
    justify-content: space-between;
    color: #000;
    border-radius: 22px 22px 0px 0;
}

.blog-img .blog-date a {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: 0.3s;
}

.blog-img .blog-date a i {
    margin-right: 7px;
}

.blog-details-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-details-video .playBut .triangle {
    stroke: var(--main-color);
}

.blog-post-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 0;
}

.blog-img-slide,
.blog-post-slider .slick-list,
.blog-post-slider .slick-track,
.blog-post-slider .slick-slide {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.blog-pagination {
    display: block;
    text-align: center;
    margin-top: 40px;
}

.pagination-arrow {
    color: var(--second-color);
    font-size: 35px;
    display: inline-block;
    margin: 0 18px;
    vertical-align: middle;
    transition: 0.3s;
}

.pagination-arrow:hover {
    color: var(--second-color);
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.blog-pagination ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid #777777;
    border-radius: 10px;
    color: #777777;
    font-size: 20px;
    margin: 0 7px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-pagination ul li:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: var(--white-color);
}

.blog-pagination ul li.active,
.blog-pagination ul li.active:hover {
    background: #d7d7d7;
    border-color: #d7d7d7;
    color: #777777;
    cursor: default;
}

.blog-sidebar {
    position: relative;
}

.blog-search-from {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 29px;
    line-height: 35px;
    color: var( --deep-blue);
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 4px;
}

.sidebar-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    transform: skew(327deg, 0deg);
}

.blog-search-from input {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.1);
    color: #777777;
    font-size: 16px;
    padding: 10px 60px 10px 30px;
}

.form-box {
    display: block;
    position: relative;
    font-size: 0;
    line-height: 1;
    margin-bottom: 20px;
}

.blog-search-from .sec-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 10px;
}

.sec-btn span {
    position: relative;
    z-index: 1;
}

.blog-search-from .sec-btn:before {
    border-radius: 10px;
}

.blog-search-from .sec-btn span i {
    margin: 0;
    font-size: 16px;
}

.recent-post {
    margin-bottom: 63px;
    position: sticky;
    top: 86px;
    z-index: 44;
}

.recent-post-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.recent-post-link {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}


.recent-post-img.back-img:hover .recent-post-link {
    transition: 0.3s all ease-in-out;
    transform: scale(1);
}

.recent-post-img {
    display: inline-block;
    position: relative;
}

.recent-post-img img {
    width: 106px;
    height: 106px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-text {
    width: calc(100% - 110px);
    display: inline-block;
    padding-left: 20px;
}

.recent-post-text h6 {
    font-size: 18px;
    line-height: 24px;
    color: var(--main-color);
    font-weight: 400;
    margin-bottom: 8px;
}

.recent-post-text h6 a {
    display: inline-block;
    color: var(--main-color);
    transition: 0.3s;
}

.recent-post-text h6 a:hover {
    color: var(--second-color);
}

.recent-post-text p {
    color: #142843;
    margin-bottom: 0;
}

.recent-post-text p i {
    margin-right: 5px;
}

.related-tours-info {
    background-color: #eee;
    padding: 0.5rem;
    border-radius: 10px;
}

.related-tours-info i {
    color: var(--second-color);
}

.related-tours-info span {
    font-size: 14px;
    font-weight: 400;
}

.categories {
    margin-bottom: 70px;
}

.categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.categories ul li {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.categories ul li a {
    display: flex;
    align-items: center;
    position: relative;
    height: 45px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #000;
    padding: 5px 45px 5px 25px;
    transition: 0.3s;
    font-size: 17px;
}

.categories ul li a:hover {
    color: var(--second-color);
    background: #ffffff;
    box-shadow: 2px 5px 20px rgb(0 0 0 / 40%);
    transform: translateX(11px);
}

.categories ul li a .categories-text {
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.categories ul li a .categories-text:before {
    content: "\f105";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-family: 'FontAwesome';
    font-size: 15px;
    line-height: 8px;
}

.categories ul li a span:last-child {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 10px;
    color: #777777;
    transition: 0.3s;
    font-size: 20px;
}

.categories ul li a:hover span:last-child {
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    color: var(--white-color);
}

.advertising {
    margin-bottom: 26px;
}

.advertising-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advertising-box img {
    width: 416px;
    height: 277px;
    border-radius: 10px;
}

.advertising-text {
    width: 100%;
    height: 276px;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    align-items: flex-end;
    overflow: hidden;
}

.advertising-text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0e3d8624, #e4821624);
    border-radius: 10px;
    opacity: 0.8;
    z-index: 0;
}

.advertising-text .sidebar-title a {
    color: var(--white-color);
    /* padding-bottom: 0; */
    /* margin-bottom: 0; */
    position: relative;
    z-index: 1;
    bottom: 0;
    left: 11px;
    font-size: 23px;
}

.advertising-text .sidebar-title:before {
    display: none;
}

.blog-page-content .tag {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.tag p {
    color: var(--main-color);
}

.tag ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

.tag ul li {
    display: inline-block;
}

.tag ul li a {
    display: inline-block;
    padding: 5px 25px;
    background: transparent;
    border: 1px solid #777777;
    border-radius: 10px;
    font-size: 15px;
    line-height: 20px;
    color: #777777;
    text-align: center;
    margin-bottom: 15px;
    margin-right: 15px;
    transition: 0.3s;
}

.tag ul li a:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: var(--white-color);
}

.gallery-boxes {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.gallery-img-box {
    width: 33.3333%;
    padding: 0 10px;
}

.gallery-img {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tour_top {
    width: 100%;
    height: 370px;
    display: flex;
    position: absolute;
    align-items: flex-start;
    justify-content: flex-end;
}

.items-count {
    color: var(--white-color);
    position: relative;
    z-index: 1;
    top: 63px;
    right: 28px;
    font-size: 23px;
    background-color: #015cb5a6;
    padding: 7px;
    border-radius: 10px;
}

.text_blog {
    font-size: 27px;
    line-height: 35px;
    color:var( --main-color);
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
}


.text_blog p {
    font-size: 29px;
    line-height: 35px;
    color: var(--bs-color);
    font-weight: 400;
    margin-bottom: 15px;
    display: inline-block;
}

blockquote {
    /* background: #f9f9f9; */
    /* padding: 5px; */
    /* border-radius: 10px 10px 10px 10px; */
    /* border: 1px solid #eee; */
    /* position: relative; */
    border-right: 4px solid var(--main-color);
    /* border-bottom: 4px solid var(--main-color); */
}

/* blockquote::before {
    font: var(--fa-font-solid);
    content: "\f10d";
    position: absolute;
    font-size: 50px;
    color: white;
    text-align: center;
    top: 0;
    right: 0px;
    height: 80px;
    width: 80px;
    border-radius: 0 10px 0 95%;
    background-color: var(--main-color);
} */

blockquote p {
    line-height: 1.5;
    font-style: italic;
}

blockquote cite {
    display: inline-block;
    font-size: 20px;
    position: relative;
    padding-left: 45px;
    line-height: 1;
    font-weight: 400;
    margin-top: 22px;
    font-style: normal;
    color: var(--title-color);
}

blockquote cite::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 30px;
    height: 2px;
    border-top: 2px solid var(--main-color);
}

.blockquote_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 396px;
    overflow-y: auto;
    padding-right: 5px;
}

.blockquote_list .title {
    font-size: 20px;
}

/*==========Blog List Page CSS End==========*/

.social-media a {
    width: 36px !important;
    height: 36px !important;
}

@media (max-width: 767.98px) {

    .categories,
    .recent-post,
    .blog-search-from,
    .blog-post-detail,
    .tag.side-bar,
    .related-blog {
        padding: 13px;
    }

    .h3-title {
        font-size: 22px;
    }

    .blog-img.back-img img {
        height: 361px;
    }


}


.title a {
    color: var(--bs-color);
}


.social-media ul li a {
    padding: 5px 4px !important;
}

.tags {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 0px !important;
    margin-top: 16px;
}

.blog__card-content {
    height: 274px;
}

.blog-card-three .blog__card-title {
    height: 60px;
}



.article-footer {
    background: white;
    border-radius:10px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(197, 149, 91, 0.15);
    background-color: var(--white-color);
    box-shadow: var(--boxShadow);
}

.article-tags-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tag-item {
    background: rgba(197, 149, 91, 0.1);
    color: var(--primary-navy);
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 149, 91, 0.2);
}

.tag-item:hover {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(197, 149, 91, 0.3);
    color: var(--primary-navy);
}

.Share {
    color: #011f43;
    font-weight: 400;
    margin-right: 10px;
    font-size: 20px;
}


.blog-card-three.blog-list-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: -7px 1px 19px 0 rgba(221, 229, 236, .42);
}

.blog__card-content {
    padding: 20px 30px;
    margin-top: -24px;
    position: relative;
    z-index: 33;
    background-color: #ffffff;
    border-radius:10px;
    height: 269px;
}

@media (max-width: 375px) {
    .blog-card-three .blog__card-date {
        padding-top: 7px;
        padding-bottom: 36px;
    }
}

.blog-card-three .blog__card-date-number {
    font-size: 26px;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 1px;
}

@media (max-width: 575px) {
    .blog-card-three .blog__card-date-number {
        font-size: 26px;
    }
}

@media (max-width: 425px) {
    .blog-card-three .blog__card-date-number {
        font-size: 23px;
    }
}

@media (max-width: 375px) {
    .blog-card-three .blog__card-date-number {
        font-size: 22px;
    }
}

.blog-card-three .blog__card-date-month {
    color: var(--white-color);
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}

.blog-card-three .blog__card-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.blog-card-three .blog__card-meta li {
    display: flex;
    align-items: center;
}

.blog-card-three .blog__card-meta li:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 14px;
    margin-left: 12px;
    margin-right: 12px;
    font-weight: 400;
    background-color: rgba(var(--trevlo-white3-rgb, 235, 230, 222), 0.5);
}

.blog-card-three .blog__card-meta-icon {
    position: relative;
    top: -1px;
    display: inline-block;
    font-size: 14px;
    color: var(--second-color);
    margin-right: 5px;
}

.blog-card-three .blog__card-meta-author {
    font-size: var(--trevlo-size-xl, 14px);
    color: var(--trevlo-secondary, #736D75);
    line-height: 1.714;
    font-weight: 400;
    text-transform: capitalize;
}

.blog-card-three .blog__card-title {
    font-size: 19px;
    color: #000;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 10px 0;
    border-top: 2px dashed;
    padding-top: 15px;
    height: 54px;
}

.blog-list-card .blog__card-title a {
    color: #036;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-list-card .blog__card-title a:hover {
    background-size: 100% 1px;
}

.blog-card-three p {
    font-weight: 400;
    margin-bottom: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.blog__card {
    width: 100%;
}

.blog-card-three .blog__card-img img {
    display: block;
    min-width: 100%;
    border-radius: 10px 10px 0 0;
    height: 300px;
    object-fit: cover;
}
.xb-blog .xb-item--title a {
  color: currentColor
}

.xb-item--link {
  color: #036;
  display: inline-block;
  z-index: 2;
  position: relative;
  font-size: 19px;
}

.xb-item--link:hover {
  color: #f7921f;
  letter-spacing: 2px;
}


.xb-item--link:hover span {
  transform: translateX(7px)
}

.xb-item--link span {
  display: inline-block;
  margin-left: 2px;
  transition: .3s
}


.blog-card.one {
    display: flex
;
    align-items: center;
    flex-direction: column;
}

.blog--card {
    width: 100%;
    /* height: 341px; */
}

.blockquote_list .title a {
  color: var(--second-color);
  text-decoration: none;
  transition: color 0.3s;
}

.blockquote_list .title:hover a {
      color: var(--main-color) !important;
}

.blockquote_list .title a.active {
  color: #198754;
  font-weight: bold;
}

@media (max-width: 767px) {

.blog__details{
flex-direction: column-reverse;
}
}

::-webkit-scrollbar {
  background: transparent;
  width: 4px;
  height: 10px;
}


.blog-card .blog-card-content h3 {
  margin-bottom: 0;
  height: 38px;
  font-size: 15px;
  font-weight: 600;
}

.blog-card .blog-card-content h3 a {
  color: #1f3e66;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  transition: .5s;
  width: 100%;
}

@media(min-width: 1200px) and (max-width:1399px) {
  .blog-card .blog-card-content h3 a {
    font-size: 20px
  }
}

@media(max-width: 1199px) {
  .blog-card .blog-card-content h3 a {
    font-size: 18px
  }
}

@media(min-width: 992px) and (max-width:1199px) {
  .blog-card .blog-card-content h3 {
    margin-bottom: 20px
  }
}

.blog-card .blog-card-content h3:hover a {
  color: var(--main-color);
}



@media (max-width: 767px) {
.blog__section {
    display: flex;
    gap: 13px;
    flex-direction: column;
}
}
