html *,
html :after,
html :before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
	--primary: #2D87E4;
	--secondary: #DC0000;
	--dark: #333333;
	--light: #FFFFFF;
	--primary-red: rgba(225, 20, 26, 1);
    --secondary-red: rgba(174, 15, 20, 1);
    --accent-red: rgba(225, 20, 26, 1);
    --headline-white: rgba(255, 255, 255, 1);
    --body-grey: rgba(173, 183, 190, 1);
    --dark-neutral: rgba(46, 46, 46, 1);
    --light-neutral: rgba(249, 249, 249, 1);
    --white: rgba(255, 255, 255, 1);
    --h1-font-family: "Bebas Neue", sans-serif;
    --h1-font-weight: 400;
    --h1-font-size: 100px;
    --h1-letter-spacing: -2px;
    --h1-line-height: normal;
    --h1-font-style: normal;
    --h2-font-family: "Bebas Neue", sans-serif;
    --h2-font-weight: 400;
    --h2-font-size: 80px;
    --h2-letter-spacing: -1.6px;
    --h2-line-height: normal;
    --h2-font-style: normal;
    --h3-font-family: "Bebas Neue", sans-serif;
    --h3-font-weight: 400;
    --h3-font-size: 26px;
    --h3-letter-spacing: -0.52px;
    --h3-line-height: normal;
    --h3-font-style: normal;
    --h4-font-family: "Figtree", sans-serif;
    --h4-font-weight: 400;
    --h4-font-size: 21px;
    --h4-letter-spacing: 1.47px;
    --h4-line-height: normal;
    --h4-font-style: normal;
    --h5-font-family: "Figtree", sans-serif;
    --h5-font-weight: 700;
    --h5-font-size: 16px;
    --h5-letter-spacing: -0.32px;
    --h5-line-height: normal;
    --h5-font-style: normal;
    --h6-font-family: "Figtree", sans-serif;
    --h6-font-weight: 700;
    --h6-font-size: 14px;
    --h6-letter-spacing: -0.28px;
    --h6-line-height: normal;
    --h6-font-style: normal;
    --menu-font-family: "Figtree", sans-serif;
    --menu-font-weight: 700;
    --menu-font-size: 16px;
    --menu-letter-spacing: 2.24px;
    --menu-line-height: normal;
    --menu-font-style: normal;
    --body-font-family: "Figtree", sans-serif;
    --body-font-weight: 400;
    --body-font-size: 18px;
    --body-letter-spacing: 0px;
    --body-line-height: 25px;
    --body-font-style: normal;
    --button-text-font-family: "Figtree", sans-serif;
    --button-text-font-weight: 700;
    --button-text-font-size: 16px;
    --button-text-letter-spacing: 3.2px;
    --button-text-line-height: normal;
    --button-text-font-style: normal;
    --style-sheet-body-font-family: "Figtree", sans-serif;
    --style-sheet-body-font-weight: 400;
    --style-sheet-body-font-size: 28px;
    --style-sheet-body-letter-spacing: 0px;
    --style-sheet-body-line-height: 46.5px;
    --style-sheet-body-font-style: normal;
    --stylesheet-header-font-family: "Bebas Neue", sans-serif;
    --stylesheet-header-font-weight: 400;
    --stylesheet-header-font-size: 64px;
    --stylesheet-header-letter-spacing: 0px;
    --stylesheet-header-line-height: 87px;
    --stylesheet-header-font-style: normal;
}
body {
	font-family: 'Roboto', Arial, sans-serif;
	color: var(--light);
	line-height: 1.5;
	font-size: 1.2em;
	background: #000000;
}
a {
	text-decoration: underline;
	text-underline-offset: 0.2rem;
	color: var(--light);
}
a:hover,
.item-list a:hover,
.layout-content a {
	text-decoration: underline;
	text-underline-offset: 0.2rem;
}
ul {
	list-style: none;
}
li, 
.item-list li {
	margin: 0;
}
h1 {
	font-size: 1.5em;
	line-height: 1.1;
	margin: 0 0 0.2em;
}
h2 {
	line-height: 1;
}
p {
	margin: 1em 0;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
figure {
	margin: 0;
}
.bold {
	font-weight: bold;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
td {
    font-size: 0.8em;
    padding: 0.4em;
    border-bottom: 1px solid #DDDDDD;
}
tr:hover {
	background: #333333;
}
th {
    background: #333333;
    color: #FFFFFF;
    font-size: 0.7em;
    text-transform: uppercase;
    padding: 0.4em 0.6em;
}
th a {
	color: #FFFFFF;
}
td.is-active {
    background-color: inherit;
}
ol {
    margin-left: 1em;
}
ol li {
    margin-bottom: 1em;
}
/*** START LAYOUT ***/
.region-header {
    display: flex;
    margin: 10px auto;
}
.contentWrapper {
	margin: 0 auto;
}
div#block-sitebranding {
    width: 250px;
    margin-right: 10px;
}
.gridmain2 {
    display: grid;
    grid-template-columns: minmax(100px, 1fr);
	grid-gap: 10px;
}
.gridmain3 {
	display: grid;
	grid-template-columns: minmax(100px, 1fr);
	gap: 10px;
}
.layout-content {
	overflow: hidden;
}
.clearfix:after {
	display: table;
	clear: both;
	content: "";
}
.breadcrumb a {
	font-size: 0.7em;
	color: #666666;
	margin-left: 1.5em;
}

.layout--twocol-section.layout--twocol-section--50-50 {
    display: grid;
	grid-template-columns: minmax(100px, 1fr);
	flex-wrap: nowrap;
}
.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first {
	flex: none;
}
.layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second {
	flex: none;
}
.layout--threecol-section.layout--threecol-section--33-34-33 {
	display: grid;
	grid-template-columns: minmax(100px, 1fr);
	flex-wrap: nowrap;
	flex: none;
	margin-bottom: 10px;
}
.layout--threecol-section.layout--threecol-section--33-34-33 > .layout__region--first {
	flex: none;
}
.layout--threecol-section.layout--threecol-section--33-34-33 > .layout__region--second {
	flex: none;
}
.layout--threecol-section.layout--threecol-section--33-34-33 > .layout__region--third {
	flex: none;
}
.path-taxonomy h1.page-title {
	border-bottom: 2px solid #333;
    padding-bottom: 0.3em;
}
/*** END LAYOUT ***/

/*** START DATA ***/

.data-box {
    text-align: center;
    line-height: 1;
    display: inline-block;
    padding: 1em;
    background: #DC0000;
    border-radius: 50%;
    color: #FFFFFF;
	width: 150px;
    margin-right: 10px;
	margin-top: 1em;
}
.data-box a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}
.data-title {
    font-weight: bold;
}
.data-total {
    font-size: 3em;
    padding: 0;
    margin: 0;
}
.data-case {
    text-transform: uppercase;
}
div#block-total2022 {
    text-align: center;
}
.cases-block {
    vertical-align: middle;
    font-size: 1.5em;
    padding: 3em 1em;
    background: #DC0000;
    color: #FFF;
    margin: 1em 0;
}
span.cases-num {
    line-height: 1;
    background: #FFFFFF;
    color: #DC0000;
    padding: 0.2em 0.5em;
}
.block-views-blockcummulative-block-3 {
    margin-top: 1em;
}
.center-all {
	text-align: center;
}
/*** END DATA ***/
/*** START VICTIMS ***/
.victim-image {
    max-width: 190px;
    border-radius: 50%;
    border: 3px solid #ffdd01;
    margin: 0 auto;
    background: #ffdd01;
}
.victim-image img {
    width: 150px;
    margin: 0 auto;
}
.victim-field-wrapper {
    display: flex;
}
.victim-field-label {
    font-weight: bold;
    margin-right: 0.3em;
    background: #333;
    color: #ffdd01;
    padding: 0.2em 0.6em;
    width: 175px;
    text-align: right;
    margin-bottom: 2px;
    font-size: 0.6em;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 2;
}
.victim-field {
    font-size: 0.8em;
    line-height: 1.8;
    vertical-align: middle;
}
.victim-sex {
    font-style: italic;
    background: #ffdd01;
    display: inline-block;
    padding: 0.1em 0.8em;
}
.victim-description {
    margin-top: 10px;
    border-top: 10px solid #ffdd01;
    padding-top: 10px;
	font-size: 0.9em;
}
/*** END VICTIMS ***/
/*** START NEWS ***/
.blog-top-article li {
    margin-bottom: 1.5em;
    padding: 0 15px;
    border-bottom: 1px solid #777;
}
  
.blog-top-article li div:first-child {
    grid-column: 1 / 1;
    grid-row: 1 / 4;
}
.view-blog {
    max-width: 1000px;
    margin: 0 auto;
}
.view-blog .view-footer {
    margin-bottom: 2em;
}
.view-blog p {
    font-size: 0.85em;
}
h2.blog-title {
    line-height: 1.3;
    font-size: 1.3em;
}
.field--name-body p,
.page-title,
.field--type-created {
    padding-right: 15px;
    padding-left: 15px; 
}
.blog-date {
    text-transform: uppercase;
    font-size: 0.7em;
}
.news-top-story li.news-top-story-list {
    display: grid;
    grid-template-columns: 458px 1fr;
	grid-gap: 10px;
}
.news-top-story ul {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DDDDDD;
}
.news-top-story .news-teaser a {
    font-size: 0.9em;
    text-decoration: none;
}
.news-top-story a {
	display: block;
}
.news-top-story a:hover {
	text-decoration: none;
}
.news-top-story .media.media--type-image {
    display: block;
}
.news-top-story .media.media--type-image img {
	border: none;
	padding: 0;
}
.news-top-story .news-title a {
	line-height: 1.1;
	font-size: 0.9em;
}
.news-top-stories ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.news-top-stories li.news-top-story-list:first-of-type {
    border-right: 1px solid #DDDDDD;
    padding-right: 10px;
}
.news-top-stories li.news-top-story-list {
    display: block;
}
.news-top-stories .news-title {
	margin: 0;
}
.news-top-stories .news-title a {
    font-size: 0.7em;
	margin-bottom: 0.2em;
}
.news-title a {
	font-size: 1.1em;
	font-weight: bold;
	text-decoration: none;
}
.news-date {
	font-weight: bold;
	font-size: 0.95em;
}
li.news-item {
    padding: 0.7em 0;
    border-bottom: 1px solid #DDDDDD;
}
.item-list .news-title a:hover .news-author {
	text-decoration: none;
}
.news-body {
	font-size: 1.1em;
	line-height: 1.7em;
}
.block ul.news-wrapper {
	margin-bottom: 0;
}
li.no-padding {
	padding: 0;
}
.page-video .item-list ul li.inner-menu {
	border-bottom: 0;
}
.media.media--type-image {
    margin-bottom: 10px;
}
.field--type-image {
	grid-column: 1/-1;
}
.field--name-field-media-image.field--type-image img {
	margin: 0 auto;
	display: block;
	border: 1px solid #ccc;
    padding: 0;
  }
.field--name-field-image-caption {
	font-size: 0.8em;
	color: #999999;
	font-style: italic;
	text-align: center;
	grid-row: 2/6;
	padding-right: 4px;
	line-height: 1.2;
}
.field--name-field-credit-media-house,
.field--name-field-credit-other  {
	font-size: 0.4em;
	color: #999999;
	text-transform: uppercase;
	line-height: 1.2;
	margin-top: 5px;
}
.field--name-field-credit-media-house {
	grid-row: 3/4;
	text-align: right;
	padding-right: 4px;
}
.field--name-field-credit-other {
	grid-column: 3/4;
	grid-row: 3/4;
	border-left: 1px solid #666;
	padding-left: 2px;
}
.news-wrapper .news-article-block {
    display: grid;
    grid-template-columns: 300px 1fr;
}
.news-wrapper li.news-article-list {
	padding-bottom: 1em;
    border-bottom: 1px solid #DDDDDD;
    padding-top: 1.4em;
}
.news-wrapper .news-top-media {
    position: relative;
	grid-row: 1 / span 4;
	margin-right: 10px;
}
.news-wrapper .news-blurb {
    position: absolute;
	top: 0.8em;
    left: 0.8em;
    font-size: 0.6em;
    color: #fff;
    display: block;
    padding: 0 1em;
    line-height: 1.5em;
	background: #dc0000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid red;
	display: none;
}
.news-wrapper .field--name-field-media-image.field--type-image img {
	margin: 0;
	padding: 0;
}
h2.news-title {
    line-height: 0.8;
    margin: 0 0 0.2em;
}
.news-wrapper h2.news-title a {
	color: #333333;
    font-size: .7em;
	text-decoration: none;
}
.news-wrapper h2.news-title a:hover {
	text-decoration: underline;
}
.news-wrapper .news-teaser {
    font-size: .85em;
}
.news-wrapper .news-byline {
    line-height: 1.2em;
    vertical-align: top;
    color: #fff;
    text-transform: uppercase;
	font-size: 0.6em;
	display: flex;
}
.news-wrapper span.news-date {
    margin-bottom: 0;
    border: 1px solid #999;
    line-height: 1.2em;
    background: #999;
    color: #fff;
    padding: 0 0.6em;
    font-weight: normal;
}
.news-wrapper span.news-author {
    text-transform: uppercase;
    color: #999;
    border: 1px solid #999;
    display: inline-block;
    padding: 0 0.6em;
    line-height: 1.2em;
}
.news-article-author {
    font-size: .8em;
    color: #777;
    margin-bottom: 0.5em;
    text-align: left;
}
.page-node-type-news .field--name-body p:first-of-type {
	font-weight: bold;
}
.news-article-author span.news-author a {
    text-transform: uppercase;
    font-weight: bold;
}
.news-article-author span.article-date {
    font-style: italic;
}
li.news-popular-list a {
    display: grid;
    grid-template-columns: 40px 1fr;
	padding: 0.5em 0;
    border-bottom: 1px solid #DDDDDD;
	background: #EEEEEE;
	text-decoration: none;
}
li.news-popular-list:hover a,
li.news-popular-list:hover a:hover,
li.news-popular-list:hover a:hover span.news-title,
li.news-popular-list:hover a:hover span.news-counter  {
    color: #FFFFFF;
	background: #333333;
	text-decoration: none;
}
li.news-popular-list span.news-counter {
    font-size: 1.5em;
    vertical-align: top;
    line-height: 1;
    color: #333333;
	font-weight: bold;
	padding-left: 10px;
}
li.news-popular-list span.news-title {
    color: #333333;
    font-weight: bold;
	font-size: 0.8em;
	line-height: 1.1;
}
.sidebar-header {
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 5px solid #333333;
}
.sidebar-header a {
	color: #333333;
	text-decoration: none;
}
.news-updates {
    background: #fff;
    padding: 0;
    font-size: .85em;
}
.news-updates h3 {
    margin: 0;
    padding: 0 0.4em;
    text-align: center;
	background: #EEEEEE;
}
.news-updates ul {
	margin: 0;
}
.sidebar-footer a {
	color: #333333;
	display: block;
	padding: 0.2em 0.6em;
	background: #EEEEEE;
	font-weight: bold;
	text-align: center;
}
.item-list ul li.update-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    padding: 0.5em 0;
    border-bottom: 1px solid #ccc;
}
span.updates-time {
    text-align: right;
    margin-right: 8px;
    font-weight: 700;
}
.media--type-embed {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.media--type-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*** END NEWS ***/
/*** START VIEWS ***/
.item-list ul,
.social-sharing-buttons {
	margin: 0;
}
.field--name-body p:first-of-type {
	margin-top: 0;
}
.social-sharing-buttons__button.share-copy svg {
	width: 30px;
}
.twitter-tweet.twitter-tweet-rendered {
    margin: 0 auto;
}
.path-news h1.page-title{
    border-bottom: 5px solid #333;
    padding-bottom: 0.3em;
	text-transform: uppercase;
	margin-bottom: 0;
}
.items-title {
	font-weight: bold;
}
.items-date {
	font-size: 0.9em;
}
.breaking {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 0.8em;
}
.breaking a {
	background: #FFCC00;
	color: #333333;
	line-height: 1.2em;
	display: block;
	padding: 0.2em;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
}
.breaking a:hover {
	text-decoration: underline;
}
.tracker a {
	background: #666666;
}
.breaking-header {
	padding: 0 10px;
	background: #DC0000;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-right: 10px;
	text-shadow: none;
	font-size: 0.8em;
	margin-left: 4px;
	display: inline-block;
} 
span.breaking-pulse {
    background: #DC0000;
    font-size: 0.4em;
    color: #FFF;
    padding: 0.4em 0.6em;
    vertical-align: middle;
    text-transform: uppercase;
    position: relative;
	margin-left: 16px;
	display: inline-block;
}
.pulse{
    height: 8px;
    width: 8px;
    background: #DC0000;
    position: absolute;
    margin: auto;
    left: -15px;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 50px;
    color: #ffffff;
	z-index: 1;
}
.pulse:before,
.pulse:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #DC0000;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}
.pulse:before{
    animation: pulse 2s ease-out infinite;
}
.pulse:after{
    animation: pulse 2s 1s ease-out infinite;
}
@keyframes pulse{
    100%{
        transform: scale(3.5);
        opacity: 0;
    }
}
.news-article-author span.breaking-pulse {
    font-size: 0.8em;
    margin: 0px 0 0 1.6em;
    font-weight: bold;
    vertical-align: top;
	padding: 0.4em 1em;
}
.news-article-author .pulse {
	left: -0.3em;
}
.breaking span.breaking-pulse.breaking-header {
    font-size: 0.8em;
    padding: 0.1em 0.6em;
}
.hide-color {
    font-size: 0.1em;
    color: #FFFFFF;
    line-height: 1;
    display: inline-block;
}
.banned-words-label {
    background: #EEE;
	color: #999;
    padding: 0.2em 0.6em;
	font-size: 0.8em;
}
.ad-banned-word {
    background: #FC0;
    padding: 0.2em 0.6em;
	font-size: 0.8em;
}
.ads-good-words {
    background: #99d472;
    padding: 0.2em 0.6em;
	font-size: 0.8em;
}
/*** END VIEWS ***/
/*** START ADS ***/
.admenutop {
	margin: 10px 0;
}
.ad-topmain {
	background: #EEEEEE;
    width: 970px;
    height: 90px;
    text-align: center;
    margin: 0.5em auto;
}
.ad-300 {
	max-width: 300px;
	width: 100%;
	height: 250px;
	background-color: #EEEEEE;
	margin: 0 auto;
	position: sticky;
	top: 0;
}
.km-ad-mpu,
.km-ad-op {
	margin: 10px auto;
	text-align: center;
}
.margin-bottom {
	margin-bottom: 10px;
}
.margin-top {
	margin-top: 10px;
}
.margin10 {
	margin-top:10px;
	margin-bottom: 10px;
}
/*** END ADS ***/

nav.pager {
    font-size: 1em;
    margin: 0.6em 0;
}
.pager__item.is-active {
    background: #333333;
}
.footer-wrapper {
    background: #000000;
    color: #999999;
	border-top: 2px solid #000000;
}
select {
	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	appearance:none;
	outline:0;
	box-shadow:none;
	border:0!important;
	background: #5c6664;
	background-image: none;
	flex: 1;
	padding: 0 .5em;
	color:#fff;
	cursor:pointer;
	font-size: 1em;
	font-family: 'Open Sans', sans-serif;
 }
 select::-ms-expand {
	display: none;
 }
 .form-select {
	position: relative;
	display: flex;
	height: 2em;
	line-height: 2;
	background: #5c6664;
	overflow: hidden;
	border-radius: .25em;
	padding: 0 1em;
 }
 .form-select::after {
	content: '\25BC';
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 1em;
	background: #2b2e2e;
	cursor:pointer;
	pointer-events:none;
	transition:.25s all ease;
 }
 .form-select:hover::after {
	color: #2D87E4;
 }
 /*** SEARCH ***/
 .form--inline {
    display: grid;
    align-content: center;
    justify-content: center;
}
.form--inline :last-child {
    grid-column-start: 2;
    grid-row-start: 1;
}
.form-item-search input {
    padding: 0.4em;
    border: 1px solid #DC0000;
    margin-top: 1.5em;
	background-color: white;
	background-image: url('images/searchicon.png');
	background-position: 5px 6px;
	background-repeat: no-repeat;
	padding-left: 32px;
  }
.form--inline .form-submit {
    margin-top: 1.5em;
    padding: 0.4em 0.6em;
    border: 1px solid #DC0000;
    background: #DC0000;
    color: #FFFFFF;
}
.form--inline label {
    font-size: 0.8em;
    text-transform: uppercase;
	margin-left: 1em;
}
.layout-sidebar-second .form--inline .form-type-select,
.layout__region--third .form--inline .form-type-select {
	display: none;
}
.layout-sidebar-second .form--inline,
.layout__region--third .form--inline {
    display: flex;
    justify-content: flex-end;
}
.layout-sidebar-second .form-wrapper,
.layout__region--third .form-wrapper {
	margin-right: auto;
	width: 230px;
	margin: 0 0 0.4em;
}
.layout-sidebar-second .form-item-search,
.layout__region--third .form-item-search,
.layout-sidebar-second .form--inline .form-submit,
.layout__region--third .form--inline .form-submit {
	margin: 0 0 0.4em;
}
.layout-sidebar-second .form-item-search input,
.path-frontpage .layout__region--third .form-item-search input {
	max-width: 234px;
	margin: 0;
	padding: 0.4em 0 0.4em 32px;
} 
.path-frontpage .layout__region--third .form-item-search input,
.path-frontpage .layout__region--third .form--inline .form-submit{
	font-size: 1em;
}
.search-header {
    text-align: center;
    margin-bottom: 1em;
}
 /*** END SEARCH ***/
 .region-content .form-item-search {
    display: grid;
    width: 100%;
}
.most-viewed {
	position: relative;
}
span.new-promo {
    background: #DC0000;
    color: #FFFFFF;
    text-shadow: 0 0 black;
    padding: 0.2em 0.6em;
    font-size: 0.6em;
    position: absolute;
    top: -2px;
    right: 24px;
	letter-spacing: 0.5px;
}
.eu-cookie-compliance-content {
	display: flex;
	line-height: 1;
	justify-content: center;
}
.eu-cookie-compliance-buttons {
    margin: 0 0 0 10px;
}
.eu-cookie-compliance-content .eu-cookie-compliance-secondary-button {
    background: #333;
    color: #FFFFFF;
    font-size: 0.6em;
    padding: 0.2em 0.6em;
    border: 0;
	margin: 0 0 0 10px;
}
.eu-cookie-compliance-content .button--primary {
	font-weight: normal;
	background: none;
	color: #333333;
	text-shadow: none;
	box-shadow: none;
	border-radius: 0;
    font-size: 0.6em;
    border: 0;
	margin: 0 0 0 10px;
}
.eu-cookie-compliance-message {
	line-height: 1;
	margin: 0;
}

/*** START NEW CSS ***/

.path-frontpage .layoutWrapper.layout-container {
    background-image: url(/themes/mv/images/01-Missing_Voices_black_fists_raised_in_the_air_with_a_red_rim_light-Hero-Image.png);
    background-position: 146%;
    background-repeat: no-repeat;
	background-position-y: 34px;
}
.path-frontpage main {
    background-image: url(/themes/mv/images/Red-Radial-Gradient.svg);
    background-position-x: -94%;
    background-repeat: no-repeat;
}
.header {
    display: flex;
    max-width: 1512px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0px;
    position: relative;
    background-color: #000000;
	margin: 0 auto;
	flex-flow: wrap;
}
.node__content,
.page-title {
    margin: 0 auto;
}

/*first child element */
.header .region-header,
.header .region-primary-menu,
.top-button{
    display: flex;
    max-width: 1216px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/*missing voices logo image */
.header .region-header {
    position: relative;
    width: 264px;
    height: 52px;
    object-fit: cover;
}

/*body element of the  body housing each navigation-item */
.header .menu {
    align-items: flex-start;
    gap: 25px;
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
	flex-flow: wrap;
	padding: 0 0.2em;
	justify-content: center;
}

/*body element of each navigation-item */
.header .menu-item {
    align-items: center;
    justify-content: center;
    gap: 10px;
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
}

/*for the text inside the menu-items */
.menu-item a {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: var(--white);
    font-size: var(--h4-font-size);
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    white-space: nowrap;
    font-style: var(--h4-font-style);
	font-size: 0.85em;
    text-transform: uppercase;
    text-decoration: none;
}
ul.menu a.is-active {
    color: var(--light);
	text-decoration: underline;
}
/* for the red call-to-action button*/
.header .top-button .cta-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--primary-red);
    border-radius: 2px;
    border: 2px solid;
    border-color: var(--primary-red);
    font-family: var(--button-text-font-family);
    font-weight: var(--button-text-font-weight);
    color: var(--white);
    font-size: var(--button-text-font-size);
    letter-spacing: var(--button-text-letter-spacing);
    line-height: var(--button-text-line-height);
    white-space: nowrap;
    font-style: var(--button-text-font-style);
	text-transform: uppercase;
	text-decoration: none;
}
.hero-section .cta-text:hover {
	background: #FFFFFF;
	color: #333333;
}
.header .top-button .cta-button a:hover,
.hero-section .main-button:hover {
	background: #810004;
	color: #FFFFFF;
}
/* hero section*/
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em 0.2em 0px;
    position: relative;
}
.read-more {
    padding: 0;
}

/* first child element for the hero section*/
.hero-section .div {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    display: inline-flex;
    position: relative;
    flex-wrap: wrap;
}
.hero-section .line {
	background: #2e2e2e;
}

/* className for the text: UNCOVERING THE TRUTH*/
.hero-section .uncovering-the-truth {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: #ffffff;
    font-size: var(--h4-font-size);
    text-align: center;
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    white-space: nowrap;
    font-style: var(--h4-font-style);
}

/* className for the body containing the "Shining Light on Extrajudicial Killings" text */
.hero-section .shining-light-on {
    position: relative;
    max-width: 722px;
    font-family: var(--h1-font-family);
    font-weight: var(--h1-font-weight);
    color: transparent;
    font-size: var(--h1-font-size);
    text-align: center;
    letter-spacing: var(--h1-letter-spacing);
    line-height: var(--h1-line-height);
    font-style: var(--h1-font-style);
}

/* className for the text "Shining Light on Extrajudicial Killings" */
.hero-section .text-wrapper {
    color: #ffffff;
    font-family: var(--h1-font-family);
    font-style: var(--h1-font-style);
    font-weight: var(--h1-font-weight);
    letter-spacing: var(--h1-letter-spacing);
    line-height: var(--h1-line-height);
    font-size: var(--h1-font-size);
}

/* className for the text "Since 2007" */
.hero-section .span {
    color: #6e6e6e;
    font-family: var(--h1-font-family);
    font-style: var(--h1-font-style);
    font-weight: var(--h1-font-weight);
    letter-spacing: var(--h1-letter-spacing);
    line-height: var(--h1-line-height);
    font-size: var(--h1-font-size);
}

/* className for the parent element for the two call-to-action buttons*/
.hero-section .div-cta{
    align-items: flex-start;
    gap: 24px;
    display: inline-flex;
    position: relative;
    flex-wrap: wrap;
}

/* className for the main ("get involved") call-to-action button*/
.hero-section .main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--primary-red);
    border-radius: 2px;
    border: 2px solid;
    border-color: var(--primary-red);
}

/* className for the second ("about us") call-to-action button*/
.hero-section .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 2px;
    border: 2px solid;
    border-color: #ffffff;
	text-decoration: none;
}

/* className for the text inside the call-to-action buttons */
.hero-section .cta-text {
    position: relative;
    width: fit-content;
    margin-top: -2px;
    font-family: var(--button-text-font-family);
    font-weight: var(--button-text-font-weight);
    color: var(--white);
    font-size: var(--button-text-font-size);
    letter-spacing: var(--button-text-letter-spacing);
    line-height: var(--button-text-line-height);
    white-space: nowrap;
    font-style: var(--button-text-font-style);
}

/* the section containing 3 cards showing total data */
.total-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 146px;
    position: relative;
}

/* blurred circle on the right */
.total-section .blurred-circle-right {
    top: 437px;
    left: 1273px;
    position: absolute;
    width: 308px;
    height: 308px;
    background-color: #e1141acc;
    filter: blur(400px);
}

/* blurred circle on the left */
.total-section .blurred-circle-left {
    top: 1374px;
    left: -7px;
    position: absolute;
    width: 308px;
    height: 308px;
    background-color: #e1141acc;
    filter: blur(400px);
}

/* parent element housing the different 3 cards */
.total-section .div {
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
    justify-content: center;
    position: relative;
	flex-flow: wrap;
}

/* className for each of the 3 cards */
.total-section .total-data {
    display: inline-flex;
    align-items: center;
    gap: 10.16px;
    padding: 20.32px;
    position: relative;
    flex: 0 0 auto;
    margin-top: -1px;
    margin-bottom: -1px;
    margin-left: -1px;
    background-color: #191919;
    border-radius: 10.16px;
    border: 2px solid;
    border-color: #2e2e2e;
}

/* for the body housing the titles: "police killings" */
.total-section .text-wrapper {
    align-items: center;
    gap: 10.16px;
    padding: 0px 5.59px 0px 0px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

/*little text: 
police */
.total-section .title-text {
    position: relative;
    width: fit-content;
    margin-top: -0.51px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 11.7px;
    text-align: center;
    letter-spacing: 4.69px;
    line-height: 11.7px;
    white-space: nowrap;
}

/*large text: killings */
.total-section .subtitle-text {
    position: relative;
    width: fit-content;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 42.5px;
    text-align: center;
    letter-spacing: -0.85px;
    line-height: normal;
}

/* line separator */
.total-section .line {
    position: relative;
    width: 2px;
    height: 64.5px;
	background: #2e2e2e;
}

/* large text with numbers: 350 */
.total-section .number {
    position: relative;
    width: fit-content;
    margin-top: -0.75px;
    font-family: "Bebas Neue-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 92px;
    text-align: center;
    letter-spacing: -1.84px;
    line-height: normal;
    white-space: nowrap;
}

/* section showing the data over the years section */
.years-section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 67px;
    padding: 1em;
    position: relative;
    margin: 0 auto;
	width: 100%;
	flex-wrap: wrap;
}
.front-multimedia {
    gap: 0.8em;
}

/* for the element housing the title and subtitle for this section */
.years-section .div-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative;
    flex-wrap: wrap;
}

/*text: "Statistics over the years" */
.years-section .title {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: #ffffff;
    font-size: var(--h4-font-size);
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    font-style: var(--h4-font-style);
}

/* text: "A DECADE IN REVIEW" */
.years-section .subtitle {
    position: relative;
    max-width: 536px;
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    color: #ffffff;
    font-size: var(--h2-font-size);
    text-align: center;
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-style: var(--h2-font-style);
}

/* for the tabs with years */
.years-section .years-tabs-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    position: relative;
    flex-wrap: wrap;
}

/* for the parent element of this tabs section */
.years-section .div-tabs {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    position: relative;
    flex-wrap: wrap;
}

/*the (direct) parent element for the different tabs */
.years-section .tabbar {
    display: inline-flex;
    align-items: flex-start;
    gap: 100px;
    padding: 0px 0px 0px 80px;
    position: relative;
    flex-wrap: wrap;
}

/*the text for the years : 2020, 2021 */
.years-section .text-year {
    position: relative;
    width: 84px;
    margin-top: -1px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 52px;
    text-align: center;
    letter-spacing: -1.04px;
    line-height: normal;
}

/* the horizontal line separator */
.years-section .horizontal-line {
    width: 1216px;
    margin-bottom: -1px;
    position: relative;
    height: 1px;
}

/* the line at the bottom, showing which of the years is the active tab */
.years-section .active-tab {
    position: absolute;
    width: 84px;
    height: 9px;
    top: 73px;
    left: 264px;
    background-color: #909090;
}

/* parent element of the statistics card */
.years-section .div-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    position: relative;
    flex-wrap: wrap;
    background-color: #191919;
    border-radius: 17.61px;
    border: 3px solid;
    border-color: #2e2e2e;
	padding: 1em;
}

/* parent element of the top part inside the card element it contains the year plus the "view more" button */
.years-section .div-1 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

/*parent element of the text containing the year "2022" na the gray title "Total statistics" */
.years-section .div-2 {
    display: inline-flex;
    align-items: center;
    gap: 1em;
    position: relative;
    flex-wrap: wrap;
}

/*text element containing the text containing "2022" */
.years-section .text-year {
    position: relative;
    max-width: 135.22px;
    margin-top: -0.88px;
    font-size: 83.7px;
    letter-spacing: -1.67px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: normal;
}

/*parent element for the element containing the text containing "Total Statistics" */
.years-section .total-statistics-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8.8px;
    padding: 8.8px 22.01px;
    position: relative;
    flex-wrap: wrap;
    background-color: #2e2e2e;
    border-radius: 8.8px;
}

/* element for the element containing the text containing "Total Statistics" */
.years-section .total-statistics {
    position: relative;
    width: fit-content;
    margin-top: -0.88px;
    font-family: "Figtree-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 3.6px;
    line-height: 25.3px;
}

/*button element "View More" */
.years-section .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8.8px;
	padding: 0.5em 0.7em;
    position: relative;
    flex-wrap: wrap;
    border-radius: 1.76px;
    border: 1.76px solid;
    border-color: #ffffff;
}

/*Text inside the "View More" button */
.years-section .cta-text {
    position: relative;
    width: fit-content;
    margin-top: -1.76px;
    font-family: var(--button-text-font-family);
    font-weight: var(--button-text-font-weight);
    color: var(--white);
    font-size: var(--button-text-font-size);
    text-align: center;
    letter-spacing: var(--button-text-letter-spacing);
    line-height: var(--button-text-line-height);
    white-space: nowrap;
    font-style: var(--button-text-font-style);
}

/*horizontal separator line */
.years-section .line {
    align-self: stretch;
    width: 100%;
    position: relative;
    height: 1px;
	background-color: #2e2e2e;
}

/*parent element of everything below the vertical line separator */
.years-section .div-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30.82px;
    position: relative;
    flex-wrap: wrap;
    border-radius: 17.61px;
}

/* parent element for the text with total number of cases */
.years-section .div-4 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

/*large text showing the total number "100"*/
.years-section .total-number {
    position: relative;
    width: fit-content;
    margin-top: -0.88px;
    font-size: 196.6px;
    letter-spacing: -3.93px;
    white-space: nowrap;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: normal;
}

/*"CASES"*/
.years-section .text-cases {
    position: relative;
    width: fit-content;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 30.8px;
    text-align: center;
    letter-spacing: 12.33px;
    line-height: normal;
}

/*vertical line separator */
.years-section .vertical-line {
    position: relative;
    width: 1px;
    height: 241.25px;
}

/* parent element of the  middle of the card */
.years-section .div-5 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 54.59px;
    position: relative;
    flex-wrap: wrap;
}

/* this one is for the each of the parent elements separated by a horizontal line */
.years-section .div-6 {
    display: flex;
    max-width: 250.94px;
    align-items: center;
    gap: 13.21px;
    position: relative;
    flex-wrap: wrap;
}
/*total number of police killings */
.years-section .div-6 .total-number {    
    position: relative;
    max-width: 78.36px;
    margin-top: -0.88px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 79.2px;
    text-align: center;
    letter-spacing: -1.58px;
    line-height: normal;
}

/*sub title text "police killings" */
.years-section .div-6 .sub-title {
    position: relative;
    width: fit-content;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2.7px;
    line-height: 25.3px;
}

/*separator line splitting the two */
.years-section .vertical-line-2 {
    position: relative;
    width: 404.15px;
    height: 1px;
}

/*pie chart parent element*/
.years-section .div-7 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 25.53px;
    position: relative;
    flex-wrap: wrap;
}

/*group housing the pie chat*/
.years-section .group {
    position: relative;
    max-width: 210.68px;
    height: 208.68px;
}
/* the ellipsis/pie chat itself */
.years-section .ellipse {
    position: absolute;
    max-width: 202px;
    height: 202px;
    top: 4px;
    left: 4px;
}

/*text representing the value of the pie chart */
.years-section .group .text-wrapper-8 {
    position: absolute;
    width: 92px;
    top: 62px;
    left: 56px;
    font-size: 79.2px;
    letter-spacing: -1.58px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: normal;
}

/* parent element for the wrapping the key to show what color represents what */
.years-section .div-12 {
    display: inline-flex;
    align-items: flex-start;
    gap: 2em;
    position: relative;
    flex-wrap: wrap;
}

/* parent element for each of the two keys (representing what the colors mean)*/
.years-section .div-13 {
    display: flex;
    width: 111.82px;
    align-items: center;
    gap: 22.89px;
    position: relative;
}

/* key element for the "police killings" (representing what the colors mean)*/
.years-section .key-1 {
    position: relative;
    width: 12.33px;
    height: 12.33px;
    background-color: #e1141a;
    border-radius: 2.64px;
}

/*text subtitle "Police Killings" */
.years-section .police-killings {
    position: relative;
    width: 121.51px;
    margin-top: -0.88px;
    margin-right: -44.91px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 14.1px;
    letter-spacing: 1.97px;
    line-height: normal;
}

.years-section .div-14 {
    display: inline-flex;
    align-items: center;
    gap: 22.89px;
    position: relative;
    flex: 0 0 auto;
}

/*key element for the "police killings" (representing what the colors mean)*/
.years-section .key-2 {
    position: relative;
    width: 12.33px;
    height: 12.33px;
    background-color: #810004;
    border-radius: 2.64px;
}

/*text representing "Enforced disappearances" */
.years-section .enforced-disappearances {
    position: relative;
    width: 151.44px;
    margin-top: -0.88px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 14.1px;
    letter-spacing: 1.97px;
    line-height: normal;
}

/*VIEW STATISTICS button */
.years-section .menu-button-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 2px;
    border: 2px solid;
    border-color: #ffffff;
}

/*  text inside the VIEW STATISTICS button */
.years-section .cta-text-2 {
    position: relative;
    width: fit-content;
    margin-top: -2px;
    font-family: var(--button-text-font-family);
    font-weight: var(--button-text-font-weight);
    color: var(--white);
    font-size: var(--button-text-font-size);
    letter-spacing: var(--button-text-letter-spacing);
    line-height: var(--button-text-line-height);
    white-space: nowrap;
    font-style: var(--button-text-font-style);
}

 /*the footer section containing the navigation and missing voices logo*/
 .region-footer {
    display: flex;
	max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    gap: 167px;
    padding: 30px 10px;
    position: relative;
    background-color: #00000080;
    border-top-width: 3px;
    border-top-style: solid;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-color: #2e2e2e;
  }
  
  /*child element of the footer section */
  .region-footer .div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  /*missing voices logo image */
  .region-footer #block-sitebranding {
    position: relative;
    width: 264px;
    height: 52px;
    object-fit: cover;
  }

  /*navigation menu */
  .region-footer .navigation {
    display: inline-flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    flex: 0 0 auto;
  }
  
  /*text inside the navigation menu*/
  .region-footer .navigation a {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: #AAAAAA;
    font-size: var(--h4-font-size);
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    white-space: nowrap;
    font-style: var(--h4-font-style);
    color: var(--white);
    white-space: nowrap;
	    padding: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    margin: 0 0.4em;
  }

  .region-footer-socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
	padding: 30px 10px;
	color: #AAAAAA;
}
.social-icons {
    display: flex;
    gap: 20px;
	flex-wrap: wrap;
}
.social-icons div {
    width: 22px;
}
.social-icons div.yt {
    width: 26px;
    margin-top: -2px;
}
.site-info {
	font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    font-style: var(--h4-font-style);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7em;
}
  
  /*contains all the socials and copyright information*/
.socials-section {
    display: flex;
    width: 1512px;
    align-items: center;
    justify-content: center;
    gap: 167px;
    padding: 30px 0px;
    position: relative;
    background-color: #00000080;
    border: 0px none;
  }
  
  /*(direct) child element of the section*/
  .socials-section .div {
    display: flex;
    width: 1216px;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  /*parent element for the text showing copyright information*/
  .socials-section .copyright-wrapper {
    display: inline-flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    flex: 0 0 auto;
  }
  
  /*MISSING VOICES © 2020. ALL RIGHTS RESERVED.*/
  .socials-section .text-copyright {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    color: var(--body-grey);
    font-size: 16px;
    letter-spacing: 2.24px;
    line-height: normal;
    white-space: nowrap;
  }
  
  /*each of the social icons*/
  .socials-section .social-icons {
    position: relative;
    width: 113.56px;
    height: 19.68px;
  }

  /*the section with the 3 call to action cards*/
.main-cta-section {
    display: flex;
    flex-direction: column;
	margin: 0 auto;
    align-items: center;
    gap: 50px;
    padding: 1em;
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(94, 8, 11) 100%);
	flex-wrap: wrap;
  }
  
  /*parent element containing the titles*/
  .main-cta-section .title-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    display: inline-flex;
    position: relative;
    flex-wrap: wrap;
  }
  
  /*YOUR INVOLVEMENT MATTERS*/
  .main-cta-section .title-wrapper .title-text {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: #ffffff;
    font-size: var(--h4-font-size);
    text-align: center;
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    white-space: nowrap;
    font-style: var(--h4-font-style);
  }
  
  /*subtitle text:Join Us in the Fight for Justice*/
  .main-cta-section .subtitle-text {
    position: relative;
    max-width: 501px;
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    color: #ffffff;
    font-size: var(--h2-font-size);
    text-align: center;
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-style: var(--h2-font-style);
  }
  
  /*parent element containing the 3 different cta cards*/
  .main-cta-section .div {
    align-items: flex-start;
    gap: 20px;
    display: inline-flex;
    position: relative;
    flex-wrap: wrap;
  }
  
  /*the card parent element*/
  .main-cta-section .card {
    display: flex;
    flex-direction: column;
    max-width: 340px;
    align-items: center;
    gap: 40px;
    padding: 60px 0px;
    position: relative;
    background-color: #191919;
    border-radius: 20px;
    border: 3px solid;
    border-color: #2e2e2e;
	flex-wrap: wrap;
    margin: 0 auto;
  }
  
  /*parent element for the titles of each of the cards*/
  .main-cta-section .card .title-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: inline-flex;
    position: relative;
    flex-wrap: wrap;
  }
  
  /*title text: ONE*/
  .main-cta-section .card .title-text {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 8px;
    line-height: 28.1px;
    white-space: nowrap;
  }
  
  /*REPORT AN ACCIDENT*/
  .main-cta-section .card .subtitle-text {
    position: relative;
    width: fit-content;
    font-family: "Bebas Neue", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 50px;
    text-align: center;
    letter-spacing: -1px;
    line-height: normal;
  }
  
  /*line separator within each card*/
  .main-cta-section .line {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    display: inline-flex;
    position: relative;
    position: relative;
    max-width: 392px;
    height: 1px;
	flex-wrap: wrap;
  }
  
  /*main-cta-button*/
  a .main-button,
  a .menu-button,
  a .menu-button-2 {
	text-decoration: none;
  }
  .main-cta-section .main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    position: relative;
    flex-wrap: wrap;
    background-color: var(--primary-red);
    border-radius: 2px;
    border: 2px solid;
    border-color: var(--primary-red);
	text-decoration: none;
  }
  
  /*main-cta-button text*/
  .main-cta-section .cta-text {
    position: relative;
    width: fit-content;
    margin-top: -2px;
    font-family: var(--button-text-font-family);
    font-weight: var(--button-text-font-weight);
    color: var(--white);
    font-size: var(--button-text-font-size);
    letter-spacing: var(--button-text-letter-spacing);
    line-height: var(--button-text-line-height);
    white-space: nowrap;
    font-style: var(--button-text-font-style);
  }

  /*generic hero section for pages with a hero section with text alone: ABOUT US, THE VOICES, OUR PUBLICATIONS, TRIAL TRACKER, SIGN PETITION etc etc*/
.hero-section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 80px 10px;
    position: relative;
  }
  
  /* first parent element*/
  .hero-section-text .div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative;
    flex: 0 0 auto;
  }
  
  /*title text: About Us*/
  .hero-section-text .title-text {
    position: relative;
    max-width: 679px;
    margin-top: -1px;
    font-family: var(--h1-font-family);
    font-weight: var(--h1-font-weight);
    color: #ffffff;
    font-size: var(--h1-font-size);
    text-align: center;
    letter-spacing: var(--h1-letter-spacing);
    line-height: var(--h1-line-height);
    font-style: var(--h1-font-style);
  }
  
  /*grey caption text*/
  .hero-section-text .p {
    position: relative;
    width: 601px;
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    color: var(--body-grey);
    font-size: var(--body-font-size);
    text-align: center;
    letter-spacing: var(--body-letter-spacing);
    line-height: var(--body-line-height);
    font-style: var(--body-font-style);
  }

  /* why we exist section in About US page*/
.why-we-exist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 10px;
    position: relative;
    border-top-width: 3.5px;
    border-top-style: solid;
    border-color: #2e2e2e;
	flex-wrap: wrap;
  }
  
  /* direct single child element */
  .why-we-exist-section .parent-wrapper {
    display: flex;
    max-width: 983px;
    align-items: flex-start;
    gap: 1em;
    position: relative;
    flex-wrap: wrap;
  }
  
  /*parent element of the "why we exist" part*/
  .why-we-exist-section .div {
    display: flex;
    flex-direction: column;
    max-width: 983px;
    align-items: flex-start;
    gap: 1em;
    position: relative;
	font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: var(--white);
    font-size: var(--h4-font-size);
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    white-space: nowrap;
    font-style: var(--h4-font-style);
	text-transform: uppercase;
    font-size: 0.8em;
	flex-wrap: wrap;
  }
  
  /*parent element of the "why we exist" text*/
  .why-we-exist-section .title-wrapper {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    color: var(--light);
    font-size: var(--h2-font-size);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-style: var(--h2-font-style);
  }
  
  /*WHY*/
  .why-we-exist-section .why-text {
    color: #6e6e6e;
    font-family: var(--h2-font-family);
    font-style: var(--h2-font-style);
    font-weight: var(--h2-font-weight);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-size: var(--h2-font-size);
  }
  
  /*WE EXIST*/
  .why-we-exist-section .span {
    color: #ffffff;
    font-family: var(--h2-font-family);
    font-style: var(--h2-font-style);
    font-weight: var(--h2-font-weight);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-size: var(--h2-font-size);
  }
  /*Our purpose*/
  .why-we-exist-section .subtitle-text {
    position: relative;
    align-self: stretch;
    height: 26px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 30px;
  }
  
  /*grey captions text "When confronted..." */
  .why-we-exist-section .captions-text {
    position: relative;
    align-self: stretch;
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    color: var(--body-grey);
    font-size: var(--body-font-size);
    letter-spacing: var(--body-letter-spacing);
    line-height: var(--body-line-height);
    font-style: var(--body-font-style);
  }
  
  /* parent element for the "our vision" | "our mission" cards */
  .why-we-exist-section .div-2 {
    display: flex;
    max-width: 1012px;
    align-items: center;
    gap: 48px;
    padding: 40px;
    position: relative;
    background-color: #191919;
    border-radius: 20px;
	flex-wrap: wrap;
  }
  
  /*parent element for the icon*/
  .why-we-exist-section .div-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex-wrap: wrap;
  }
  
  /*the inner ring element around the icon*/
  .why-we-exist-section .ellipse {
    position: relative;
    width: 71px;
    height: 71px;
    background-color: #d9d9d91a;
    border-radius: 35.5px;
  }
  
  /*the outer ring element around the icon*/
  .why-we-exist-section .ellipse-2 {
    position: absolute;
    width: 53px;
    height: 53px;
    top: 9px;
    left: 9px;
    background-color: #d9d9d938;
    border-radius: 26.5px;
  }
  
  /*the icon element itself*/
  .why-we-exist-section .img {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 14px;
    left: 14px;
  }
  
  /*parent element for the second part containing text*/
  .why-we-exist-section .div-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }
  
  /*OUR VISION*/
  .why-we-exist-section .text-wrapper-3 {
    position: relative;
    align-self: stretch;
    height: 26px;
    margin-top: -1px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
  }
  
  /*grey caption*/
  .why-we-exist-section .p {
    position: relative;
    align-self: stretch;
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    color: var(--body-grey);
    font-size: 22px;
    letter-spacing: 0;
    line-height: 30px;
  }
  
    /*"our patners" section in the about us page*/
.our-partners-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 80px 10px;
    position: relative;
    border-top-width: 3.5px;
    border-top-style: solid;
    border-color: #040101;
  }
  
  /*first and only child element of the "our partners" section*/
  .our-partners-section .our-partners-section-wrapper {
    display: flex;
    max-width: 983px;
    align-items: flex-start;
    gap: 81px;
    position: relative;
    flex-wrap: wrap;
  }
  
  /*parent element of the title "our partners"*/
  .our-partners-section .title-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 983px;
    align-items: flex-start;
    gap: 32px;
    position: relative;
	flex-wrap: wrap;
  }
  /*Our patners*/
  .our-partners-section .text {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    color: transparent;
    font-size: var(--h2-font-size);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-style: var(--h2-font-style);
  }
  
  /*"OUR "*/
  .our-partners-section .text-our {
    color: #6e6e6e;
    font-family: var(--h2-font-family);
    font-style: var(--h2-font-style);
    font-weight: var(--h2-font-weight);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-size: var(--h2-font-size);
  }
  
  /*PATNERS*/
  .our-partners-section .text-partners {
    color: #ffffff;
    font-family: var(--h2-font-family);
    font-style: var(--h2-font-style);
    font-weight: var(--h2-font-weight);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-size: var(--h2-font-size);
  }
  /*for each logo*/
  .our-partners-section .partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #FFF;
    padding: 10px;
    justify-content: space-evenly;
}

  .our-partners-section .img {
    position: relative;
    width: 250px;
    border: 1px solid #CCCCCC;
}
.multimedia .div {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
}
.multimedia .div-2 .text {
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: var(--white);
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
    white-space: nowrap;
    font-style: var(--h4-font-style);
    font-size: 0.85em;
    text-transform: uppercase;
    text-decoration: none;
	text-align: center;
    letter-spacing: 1px;
}
.multimedia .div-2 .subtext {
    position: relative;
    align-self: stretch;
    margin-top: -11px;
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    color: var(--light);
    font-size: var(--h2-font-size);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-style: var(--h2-font-style);
}
.multimedia .line {
    width: 2px;
    background: #333;
    margin-bottom: 1em;
}

.multimedia-main {
    display: inline-flex;
    padding-top: 120px;
    flex-direction: column;
    align-items: center;
}

.multimedia-hero-section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 1em;
    position: relative;
}

.multimedia-hero-section .rectangle {
    position: absolute;
    width: 308px;
    height: 308px;
    top: 1374px;
    left: -7px;
    background-color: #e1141acc;
    filter: blur(400px);
}

.multimedia-hero-section .div {
    justify-content: center;
    gap: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.multimedia-hero-section .div-2 {
    flex-direction: column;
    gap: 22px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.multimedia-hero-section .explore-our {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: #ffffff;
    font-size: var(--h4-font-size);
    text-align: center;
    letter-spacing: var(--h4-letter-spacing);
    line-height: var(--h4-line-height);
    font-style: var(--h4-font-style);
}

.multimedia-hero-section .text-wrapper {
    position: relative;
    align-self: stretch;
    font-family: var(--h1-font-family);
    font-weight: var(--h1-font-weight);
    color: #ffffff;
    font-size: var(--h1-font-size);
    text-align: center;
    letter-spacing: var(--h1-letter-spacing);
    line-height: var(--h1-line-height);
    font-style: var(--h1-font-style);
}

.multimedia-hero-section .line {
    position: relative;
    width: 1px;
    height: 169.25px;
}

.multimedia-hero-section .welcome-to-our-media {
    position: relative;
    width: 509px;
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    color: var(--body-grey);
    font-size: var(--body-font-size);
    letter-spacing: var(--body-letter-spacing);
    line-height: var(--body-line-height);
    font-style: var(--body-font-style);
}
#cboxLoadedContent {
	background: #000000;
	padding: 2em;
}
table.views-table.views-view-table.cols-8.responsive-enabled.sticky-enabled.sticky-table {
    margin: 0 auto;
}
.involve-wrapper {
    display: block;
    grid-template-columns: 47% auto;
    gap: 20px;
	margin-bottom: 3em;
	padding: 1em;
}
.involve .div-2 {
    margin-bottom: 3em;
}
.involve .div-2 .text {
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    color: var(--white);
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
    font-style: var(--h4-font-style);
    font-size: 0.85em;
    text-transform: uppercase;
    text-decoration: none;
	text-align: center;
    letter-spacing: 1px;
}
.involve .div-2 .subtext {
    position: relative;
    align-self: stretch;
    margin-top: 0;
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    color: var(--light);
    font-size: var(--h2-font-size);
    letter-spacing: var(--h2-letter-spacing);
    line-height: var(--h2-line-height);
    font-style: var(--h2-font-style);
	text-align: center;
}
.main-involve .subtitle-text {
    position: relative;
    align-self: stretch;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 30px;
	margin-bottom: 0.7em;
	padding: 1em;
	text-align: center;
  }
.main-involve .captions-text {
    position: relative;
    align-self: stretch;
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    color: var(--body-grey);
    font-size: var(--body-font-size);
    letter-spacing: var(--body-letter-spacing);
    line-height: var(--body-line-height);
    font-style: var(--body-font-style);
  }
.take-action {
	display: block;
	margin-top: 2em;
}
.take-action .div-2 {
    display: block;
    padding: 1.5em;
    position: relative;
    background-color: #191919;
    border-radius: 20px;
	border: 3px solid;
    border-color: #2e2e2e;
}
.take-action .text-wrapper-3 {
    height: 26px;
    margin-top: -1px;
    font-family: "Figtree",sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 1em;
}
.take-action .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    border-radius: 2px;
    border: 2px solid;
    border-color: #ffffff;
}
.take-action .cta-text {
    width: 100%;
    margin-top: -2px;
    font-family: var(--button-text-font-family);
    font-weight: var(--button-text-font-weight);
    color: var(--white);
    font-size: var(--button-text-font-size);
    letter-spacing: var(--button-text-letter-spacing);
    line-height: var(--button-text-line-height);
    white-space: nowrap;
    font-style: var(--button-text-font-style);
}
.take-action .hero-section {
    display: block;
	padding: 0;
}


/*** END MOBILE ***/

/*** START DESKTOP ***/
@media only screen and (min-width: 768px) {

	body {
		font-size: 1.3em;
	}
	/*** START LAYOUT ***/
	.header {
		gap: 167px;
	}
	.headerRight {
		margin-right: 0.2em;
	}
	.region-header {
		justify-content: space-between;
		max-width: 1120px;
	}
	.path-node .contentWrapper {
		max-width: 1120px;
	}
	h1 {
		font-size: 1.7em;
	}
	div#block-kenyamoja-branding img {
		width: auto;
		max-width: 100%;
		margin: 0;
	}
	.block-menu .menu {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-flow: row wrap;
	}
	.block-menu .menu li {
		display: block;
	}
	.km-ad-topmain {
		max-width: 970px;
		height: 90px;
		background-color: #EEEEEE;
		margin: 0 auto;
	}
	.km-ad-top {
		max-width: 728px;
		height: 90px;
		background-color: #EEEEEE;
		margin: 0 auto;
	}
	#block-ketest728 {
		background: #EEEEEE;
		width: 728px;
		height: 90px;
		text-align: center;
	}
	.km-ad-op {
		max-width: 970px;
		margin: 10px auto;
		text-align: center;
	}
	.km-ad-mpu {
		width: auto;
		height: auto;
	}
	.gridmain2 {
		grid-template-columns: minmax(100px, 1fr) 311px;
	}
	.gridmain3 {
		grid-template-columns: minmax(100px, 1fr) minmax(100px, 3fr) 311px;
		gap: 10px;
	}
	.layout-sidebar-second {
		padding: 0 0 0 10px;
		border-left: 1px solid #DDDDDD;
	}
	.layout--twocol-section.layout--twocol-section--50-50 {
		grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
		gap: 15px;
	}
	.layout--threecol-section.layout--threecol-section--33-34-33 {
		grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) 300px;
		gap: 10px;
		margin-bottom: 0;
	}
	.region.region-secondary-menu {
		max-width: 1122px;
		margin: 0 auto;
	}
	.involve-wrapper {
		display: grid;
	}
	.multimedia-hero-section .div {
		gap: 50px;
	}
    .blog-top-article li {
        display: grid;
        grid-template-columns: minmax(min-content,390px) auto;
        grid-column-gap: 10px;
        margin-bottom: 1.5em;
        padding-bottom: 1em;
    }
    .media.media--type-image {
        margin-bottom: 0;
    }
	/*** END LAYOUT ***/
}
/*** END DESKTOP ***/

/*** START SMALL ADJUSTMENTS ***/
@media only screen and (min-width:768px) and (max-width: 950px)  {

	.gridmain2 {
		display: grid;
		grid-template-columns: minmax(100px, 1fr);
	}
	.gridmain3 {
		display: grid;
		grid-template-columns: minmax(100px, 1fr);
	}	
	.layout--twocol-section.layout--twocol-section--50-50 {
		display: grid;
		grid-template-columns: minmax(100px, 1fr);
		flex-wrap: nowrap;
	}
	.layout--threecol-section.layout--threecol-section--33-34-33 {
		display: grid;
		grid-template-columns: minmax(100px, 1fr);
		flex-wrap: nowrap;
		flex: none;
		margin-bottom: 10px;
	}
	.km-ad-topmain {
		max-width: 728px;
	}
	#block-km320x100menuhomepage .margin10 {
		margin: 0;
	}
	.block-menu .menu {
		display: block;
	}
	.block-menu .menu li {
		display: inline-block;
	}
}
/*** END SMALL ADJUSTMENTS ***/