#news .content-box,
#charities .content-box { display: flex; justify-content: flex-start; flex-direction: row; flex-wrap: wrap; }
#news .content-box .sidebar,
#charities .content-box .sidebar { flex: 23.1%; max-width: 23.1%; padding: 0 20px 0 0; }
#news .content-box .content { flex: 76.9%; max-width: 76.9%; padding: 0; }
#charities .content-box .content { flex: 100%; max-width: 100%; padding: 0; }
/* sidebar */
.news_categories-from,
.charities_categories-from { padding-right: 100px; width: 100%; position: relative; margin-bottom: 19px; }
.news_categories-from input,
.charities_categories-from input { height: 39px; }
.news_categories-from .search-btn,
.charities_categories-from .search-btn { min-width: auto; max-width: 90px; line-height: 39px; padding: 0 16px 0 15px; position: absolute; right: 0; top: 0; }
.news_categories,
.charities_categories { border: 1px solid #dddddd; border-radius: 6px; overflow: hidden; }
.news_categories h3,
.charities_categories h3 { line-height: 40px; height: 100%; font-weight: 500; padding: 0 19px 0 19px; font-size: 16px; color: #fff; background: #ea5f26; margin: 0; font-family: 'Outfit'; }
.news-cat-expand { display: none; }
/* newscard */
.news-card-grid .row,
.charities-card-grid .row { margin: 0 -10px; }
.news-card-grid .row .col-12,
.charities-card-grid .row .col-12 { padding: 0 10px; }
.news-card-grid .news-card-wrapper,
.charities-card-grid .charities-card-wrapper { border-radius: 4px; overflow: hidden; margin-bottom: 20px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.news-card-wrapper .news-img-box, .charities-card-wrapper .news-img-box
{border: 1px solid #dddddd;
    border-bottom: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;}
.news-card-wrapper .news-img,
.charities-card-wrapper .charities-img { display: block; height: 100%; overflow: hidden; position: relative; z-index: 1; padding-bottom: 60.78%; }
.no-touch .news-card-wrapper:hover,
.no-touch .charities-card-wrapper:hover { box-shadow: 0px 2px 14.56px 1.44px rgba(0, 0, 0, 0.1); }
.news-card-wrapper .news-img img,
.charities-card-wrapper .charities-img img { -webkit-transition: all .5s ease; -moz-transition: all .5s ease; transition: all .5s ease; }
.no-touch .news-card-wrapper:hover .news-img img,
.no-touch .charities-card-wrapper:hover .charities-img img { transform: scale(1.1); -webkit-filter: grayscale; /*sepia, hue-rotate, invert....*/ -webkit-filter: brightness(50%); }
.news-card-wrapper .news-img img.news-img-fluid,
.charities-card-wrapper .charities-img img.charities-img-fluid { bottom: 0; display: block !important; height: auto; left: 0; margin: auto; width: 100% !important; position: absolute; right: 0; top: 0; height: 100%; }
.news-card-wrapper .news-content,
.charities-card-wrapper .charities-content { padding: 11px 30px 23px 16px; border: 1px solid #dddddd; border-top: 0; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.news-card-wrapper .news-content span.post-date,
.charities-card-wrapper .charities-content span.post-date { font-size: 13px; font-weight: 300; color: var(--rt-blue); display: inline-block; margin-bottom: 9px; }
.news-card-wrapper .news-content .news-card-title h4,
.charities-card-wrapper .charities-content .charities-card-title h4 { font-size: 17px; font-weight: 500; margin-bottom: 8px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.no-touch .news-card-wrapper .news-content .news-card-title:hover h4,
.no-touch .charities-card-wrapper .charities-content .charities-card-title:hover h4 { color: var(--rt-theme); }
.news-card-wrapper .news-content p,
.charities-card-wrapper .charities-content p { font-size: 16px; font-weight: 300; margin: 0; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;    min-height: 68px; }
.news-card-wrapper .news-content a.card-learn,
.charities-card-wrapper .charities-content a.card-learn { font-size: 13px; font-weight: 700; color: var(--rt-blue); margin-top: 21px; display: inline-block; position: relative; }
.news-card-wrapper .news-content a.card-learn:after,
.charities-card-wrapper .charities-content a.card-learn:after { content: ""; width: 100%; height: 1px; background-color: var(--rt-blue); position: absolute; left: 0; bottom: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; }
.no-touch .news-card-wrapper:hover .news-content a.card-learn:after,
.no-touch .charities-card-wrapper:hover .charities-content a.card-learn:after { -webkit-animation: move2 0.9s infinite linear; animation: move2 0.9s infinite linear; width: 50%; }
.no-touch .news-card-wrapper:hover .news-content a.card-learn:hover:after,
.no-touch .charities-card-wrapper:hover .charities-content a.card-learn:hover:after { -webkit-animation: move 0.3s normal linear; animation: move 0.3s normal linear; width: 100%; }
@-webkit-keyframes move {  0% {
width: 0;
}
100% {
width: 100%;
}
}
@-webkit-keyframes move2 {  0% {
margin-right: 50%;
margin-left: 0;
width: 0;
}
20% {
margin-right: 50%;
margin-left: 0;
width: 50%;
}
80% {
margin-right: 0;
margin-left: 50%;
width: 50%;
}
100% {
margin-right: 0;
margin-left: 100%;
width: 0;
}
}
@keyframes move2 {  0% {
margin-right: 50%;
margin-left: 0;
width: 0;
}
20% {
margin-right: 50%;
margin-left: 0;
width: 50%;
}
80% {
margin-right: 0;
margin-left: 50%;
width: 50%;
}
100% {
margin-right: 0;
margin-left: 100%;
width: 0;
}
}
.pagination { text-align: center; align-items: center; justify-content: center; }
.prev,
.next { position: relative; }
.page-numbers { display: inline-block; list-style: none; font-size: 0; }
ul.pagination-page.page-numbers li { display: inline-block; vertical-align: middle; padding: 0 5px; }
ul.pagination-page.page-numbers > li > a { font-size: 20px; font-weight: 500; color: var(--rt-blue); height: 40px; width: 40px; line-height: 40px; border-radius: 50%; background-color: #ededed; }
.prev:before,
.next:after { position: absolute; content: ''; width: 9px; height: 9px; border: solid var(--rt-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 2px; transition: all 0.6s; top: 50%; left: 50%; }
.prev:before { transform: translate(-50%, -50%) rotate(135deg); -webkit-transform: translate(-50%, -50%) rotate(135deg); }
ul.pagination-page.page-numbers > li > a.current-page,
.no-touch ul.pagination-page.page-numbers > li > a:hover { background-color: var(--rt-theme); color: #fff; padding: 0; border-radius: 50%; width: 40px; height: 40px; line-height: 40px; }
.next:after { transform: translate(-50%, -50%) rotate(-45deg); -webkit-transform: translate(-50%, -50%) rotate(-45deg); }
.no-touch .prev:hover:before,
.no-touch .next:hover:after { border: solid var(--rt-white); border-width: 0 2px 2px 0; }
/* responsive */
@media (max-width: 1199px) {
#news.main-content,
#charities.main-content { margin-bottom: 40px; }
}
@media screen and (max-width: 1080px) {
#news .content-box .sidebar,
#charities .content-box .sidebar { flex: 33.1%; max-width: 33.1%; padding: 0 20px 0 0; }
#news .content-box .content{ flex: 66.9%; max-width: 66.9%; padding: 0; }
}
@media screen and (max-width: 768px) {
#news .content-box .sidebar,
#charities .content-box .sidebar { flex: 100%; max-width: 100%; padding: 0; }
#news .content-box .content{ flex: 100%; max-width: 100%; padding: 0; }
#news.main-content,
#charities.main-content { margin-bottom: 30px; }
.news_categories h3,
.charities_categories h3 { position: relative; }
.news-cat-expand { width: 32px; height: 32px; padding: 5px; border: 1px solid; position: relative; display: block; ms-flex: 0 0 auto; flex: 0 0 auto; position: absolute; right: 0; top: 50%; margin-right: 11px; transform: translateY(-50%); }
.news-cat-expand:after,
.news-cat-expand:before { position: absolute; content: ''; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%) rotate( -90deg); transform: translate(-50%, -50%) rotate( -90deg); background-color: currentColor; transition: transform .35s ease-in-out, opacity .35s ease-in-out, -webkit-transform .35s ease-in-out; }
.news-cat-expand:before { width: 12px; height: 1px; opacity: 1; }
.news-cat-expand:after { width: 1px; height: 12px; }
.cat-active >.news-cat-expand:before,
.cat-active>h3>.news-cat-expand:after { -webkit-transform: translate(-50%, -50%) rotate( 90deg); transform: translate(-50%, -50%) rotate( 90deg); }
.cat-active >.news-cat-expand:before { opacity: 0; }
.news_categories .accordion-menu,
.charities_categories .accordion-menu { display: none; }
}
.news-details-breadcrumb { padding: 11px 0 11px; border-bottom: 1px solid #dddddd; margin-bottom: 40px; }
.news-details-breadcrumb .breadcrumb { justify-content: center; background-color: transparent; margin: 0; padding: 0; color: #000; }
.news-details-breadcrumb .breadcrumb li { font-family: 'Outfit'; font-size: 14px; font-weight: 400; }
.news-details-breadcrumb .breadcrumb a { color: #000; }
.no-touch .news-details-breadcrumb .breadcrumb a:hover { color: var(--rt-theme); }
.news-details-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: #000; }
.news-details-breadcrumb .breadcrumb-item.active { color: #000; }
.article__wrapper .article__image__holder { display: block; height: 100%; overflow: hidden; position: relative; z-index: 1; padding-bottom: 20%; }
.article__wrapper .article__image__holder img { bottom: 0; display: block; left: 0; margin: auto; position: absolute; right: 0; top: 0; width: auto; }
.article__wrapper .article__meta { padding: 13px 0 17px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #dddddd; margin-bottom: 18px; }
.article__meta span.post-date { font-size: 17px; font-weight: 300; color: var(--rt-blue); }
.article__meta .share-op ul { margin: 0; padding: 0; font-size: 0; }
.article__meta .share-op ul li { display: inline-block; padding: 0 20px; font-size: 17px; font-weight: 300; color: var(--rt-blue); }
.article__meta .share-op ul li a svg { height: 20px; width: 20px; display: inline-block; fill: var(--rt-blue); transition: all 0.6s; }
.article__meta .share-op ul li a:hover svg { fill: var(--rt-theme); }
.article__meta .share-op ul li:first-child,
.article__meta .share-op ul li:last-child { margin: 0; padding: 0; }
.entry-wrapper h1.news-details-title { font-size: 35px; margin-bottom: 14px; }
.entry-wrapper h3 { font-size: 17px; text-transform: uppercase; font-weight: 600; font-family: 'Outfit'; color: #666666; }
.entry-wrapper p { line-height: 1.2; }
.entry-wrapper ul { margin: 0; font-size: 0; }
.entry-wrapper ul li { /*padding-left: 11px;*/ position: relative; line-height: 1.2; font-size: 17px; }
/*.entry-wrapper ul li::after { content: ""; position: absolute; display: block; background-color: #666666; width: 6px; height: 1px; left: 0; top: 11px; }*/
.bottom-content-box .cms-content .other-news-grid { text-align: left; }
.other-news-grid .news-card-box-contain { padding: 0 4px; }
@media only screen and (min-width: 1200px) {
.entry-wrapper { max-width: 85%; }
.other-news-grid-slider { font-size: 0; display: block; margin: 0 -4px; }
.other-news-grid .news-card-box-contain { width: 25%; display: inline-block; vertical-align: middle; padding: 0 4px; }
}
 @media only screen and (max-width: 991px) {
.news-details-breadcrumb { margin-bottom: 20px; }
.article__wrapper .article__meta { padding: 8px 0; }
.article__meta span.post-date { font-size: 15px; }
.article__meta .share-op ul li { padding: 0 10px; font-size: 15px; }
.entry-wrapper h1.news-details-title { font-size: 30px; margin-bottom: 10px; }
.entry-wrapper p { margin-bottom: 15px; }
.entry-wrapper h3 { font-size: 15px; margin-bottom: 15px; }
}
@media only screen and (max-width: 768px) {
.entry-wrapper h1.news-details-title { font-size: 28px; }
.entry-wrapper p { font-size: 15px; }
.entry-wrapper ul li { font-size: 15px; }
.article__meta .share-op ul li a svg { height: 15px; width: 15px; }
.article__meta span.post-date { font-size: 13px; }
}
@media only screen and (max-width: 667px) {
.entry-wrapper p { font-size: 13px; margin-bottom: 10px; }
}