/* Variables
----------------------- */
:root {
  --color-primary: #265f91;
  --color-secondary: #163754;
  --color-primary-light: #F2E8DD;
  --bg-body: #fff;
  /* --text-color: #4A4A4A; */
  --text-color: #000;
  --bold-color: #000;
  --light: #FFFBF6;
  --border: #dbdbd3;
  --shadow: 0 0 8px 1px #cccccc;
  --font-text: "Proxima-Nova-Reg",Helvetica, Arial, sans-serif;
  --font-heading: "Proxima-Nova-Bold", Helvetica, Arial, sans-serif;
}

/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML and Body
----------------------- */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  font-size: 112.5%;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased; /* Added for Safari*/
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--text-color);
  font-family: var(--font-text), -apple-system, BlinkMacSystemFont;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Regions
---------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

template,
[hidden] {
  display: none;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/* Typography
----------------------- */
/* Typography -> Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bold-color);
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.1rem;
}

h5, h6 {
  font-size: 16px;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 18px 0;
}

/* Typography -> Links */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  color: var(--color-primary);
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
}

a:active,
a:hover,
a:focus {
  background-color: transparent;
  text-decoration: none;
  border: 0;
  outline: 0;
}

a:hover {
  color: var(--color-secondary);
}

a:active,
li a.active {
  color: var(--color-primary);
}

/* Typography -> Abbreviation */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

abbr {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

/* Typography -> Text styling */
b,
strong {
  font-weight: normal;
  color: var(--bold-color);
  font-family: "Proxima-Nova-Bold";
}

em,
dfn,
cite {
  font-style: italic;
}

mark,
ins {
  padding: 4px 8px;
  background: var(--bold-color);
  color: #ffffff;
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

/* Typography -> Blockquote */
blockquote,
[dir=rtl] blockquote {
  position: relative;
  background-color: #ffffff;
  margin: 0.5rem 0 1rem 0;
  padding: 1rem;
  box-shadow: var(--shadow);
  isolation: isolate;
}

blockquote:before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  color: var(--color-primary-light);
  font-size: 4rem;
  line-height: 1;
  z-index: -1;
}

blockquote > p:last-child {
  margin-bottom: 0;
}

/* Typography -> HTML code tags */
pre {
  overflow: auto;
}

kbd {
  background-color: #ffffff;
  padding: 4px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
}

pre,
samp {
  background-color: #ffffff;
  margin: 1rem 0;
  padding: 4px 1rem;
  font-family: monospace, monospace;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

code {
  padding: 2px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
  background: #ffffff;
}

/* Typography -> Address */
address {
  margin: 0 0 1.75rem;
  font-style: italic;
}

/* Typography -> Description Lists */
dl {
  margin: 0 0 1.75rem;
}

dt {
  font-weight: 400;
  color: var(--bold-color);
}

dd {
  margin: 0 0 1.75rem;
}

/* Typography -> HTML Elements */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  margin: 8px 0;
  background: var(--border);
  border: 0;
  box-sizing: content-box;
}

/* Forms
----------------------- */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

input {
  line-height: normal;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search] {
  padding: 10px;
  background: #ffffff;
  max-width: 100%;
  border-radius: 0;
  border: 2px solid #0468B1;
  transition: border 0.3s linear;
}
input[type=text]:focus, input[type=text]:focus-visible,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=url]:focus,
input[type=url]:focus-visible,
input[type=password]:focus,
input[type=password]:focus-visible,
input[type=search]:focus,
input[type=search]:focus-visible {
  outline: 0;
}

textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: auto;
  transition: border 0.3s linear;
  vertical-align: top;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  border: 1px solid var(--color-primary);
  outline: 0;
}

input[type=submit],
input[type=button],
button,
.button {
  background-color: #FCC30B;
  border: 2px solid #FCC30B;
  color: #000;
  padding: 12px 20px;
  margin-right: 0;
  margin-left: 0;
  font-size: 0.83333rem;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial, sans-serif;
}
input[type=submit]:hover, input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus,
button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: #000;
  color: #fff !important;
  border: 2px solid #000;
}
input[type=submit]:hover strong, input[type=submit]:focus strong,
input[type=button]:hover strong,
input[type=button]:focus strong,
button:hover strong,
button:focus strong,
.button:hover strong,
.button:focus strong {
  color: #fff !important;
}
input[type=submit]:focus, input[type=submit]:focus-visible,
input[type=button]:focus,
input[type=button]:focus-visible,
button:focus,
button:focus-visible,
.button:focus,
.button:focus-visible {
  outline: 0;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 0.35rem 0.5rem 0.5rem 0;
  border: 1px solid var(--border);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  box-sizing: border-box;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
}
select:focus, select:focus-visible {
  outline: 0;
}

/*Added to make the explorer and top drop downs to be non bold as on CP */
form label {
  display: table;
  font-family: "Proxima-Nova-Reg", Helvetica, Arial;
}

label[for] {
  cursor: pointer;
}

.page-content input[type=text],
.page-content input[type=password],
.page-content input[type=search] {
  padding: 9px 6px;
  outline: 0;
}

/* Drupal form elements */
.form-item {
  margin-bottom: 1rem;
}

.form-required:after {
  content: "\f069";
  display: inline-block;
  padding-left: 4px;
  font-family: "FontAwesome";
  font-size: 0.5em;
  color: var(--color-primary);
  vertical-align: super;
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

/* List
----------------------- */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25rem 1rem; /* LTR */
}

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0 1rem 0.25rem 0;
}

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25rem 1rem; /* LTR */
}

[dir=rtl] ol ol,
[dir=rtl] ul ul {
  padding: 0 1rem 0.25rem 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0 1em 0.25em 0;
}

.node-content li {
  padding: 6px 0;
}

/* Table
----------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  background: var(--color-primary);
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  padding: 10px;
  border: 2px solid var(--border);
  text-align: left;
  text-shadow: none;
}

th a {
  color: #ffffff;
}

td {
  padding: 5px 10px;
  border: 2px solid var(--border);
}

/* Media
----------------------- */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0;
}

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--border);
  text-align: center;
}

.align-left,
img.align-left,
figure.align-left {
  float: left;
  margin: 20px 20px 20px 0;
}

.align-right,
img.align-right,
figure.align-right {
  float: right;
  margin: 20px 0 20px 20px;
}

.align-center,
img.align-center,
figure.align-center {
  display: block;
  clear: both;
  margin: 20px auto;
}

figure.align-center {
  display: table;
}

figure.align-center img {
  display: block;
  clear: both;
  margin: 0 auto;
}

.feed-icon {
  display: block;
}

summary {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
}

/* Misc
----------------------- */
::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

/* container and page layout
-------------------------------------------- */
.container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}

/* content warpper including main, sidebar */
.main-wrapper {
  position: relative;
  /*  padding: 20px 0 50px 0; Extra space coming before footer */
  background: #fff;
  z-index: 2;
}

.main-container {
  position: relative;
  display: grid;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
}

/* Main */
.no-sidebar .main-container {
  grid-template-columns: 100%;
}

.sidebar-left .main-container {
  grid-template-columns: 25% 75%;
}

.sidebar-right .main-container {
  grid-template-columns: 75% 25%;
}

.two-sidebar .main-container {
  grid-template-columns: 25% 50% 25%;
}

#sidebar-left {
  order: 1;
}

#front-main {
  order: 2;
}

#main {
  position: relative;
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  order: 2;
  z-index: 2;
}

#sidebar-right {
  order: 3;
}

.layout--twocol-section.layout--twocol-section--50-50 {
  gap: 2%;
}
@media screen and (min-width: 40em) {
  .layout--twocol-section.layout--twocol-section--50-50 .layout__region--first,
  .layout--twocol-section.layout--twocol-section--50-50 .layout__region--second {
    flex: 0 1 49%;
  }
}

.local-action {
  list-style: none;
}

.button-action {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 6px 12px;
}

.button-action:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Header
--------------------------------------*/
/* Header container */
#header,
.header-top,
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 5;
}

/* Breadcrumb
block-cca-breadcrumbs-2 - This is for Thematic area under image
--------------------------*/
#breadcrumb, #block-cca-breadcrumbs-2 {
  position: relative;
  background-color: #F9FAFE !important;
  width: 100%;
  margin: 0;
  padding: 2.77778rem 0;
  z-index: 3;
}

#breadcrumb ol li, #block-cca-breadcrumbs-2 ol li,
#breadcrumb ol li a, #block-cca-breadcrumbs-2 ol li a {
  text-transform: uppercase;
  font-size: 0.66667rem;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  font-weight: 400;
}

#breadcrumb .breadcrumb {
  padding-bottom: 0.5em;
}

.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

ol.breadcrumb-items li {
  padding: 0;
}
ol.breadcrumb-items li a {
  color: #E5243B;
}

.breadcrumb-item-seperator {
  margin: 0 5px;
}

/* Header top */
.header-top {
  background-color: var(--color-primary-light);
}

.header-top-container {
  position: relative;
  display: flex;
  padding: 6px 0;
  justify-content: space-between;
  align-items: center;
}

/* header top left block region */
.header-top-left i {
  background: var(--light);
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

/* Header and footer social icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.footer .social-icons li {
  padding: 0;
  border: 0;
}

.social-icons li a {
  background: var(--light);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: background 0.4s ease;
}

.social-icons a {
  color: var(--color-primary);
}

ul.social-icons a:hover {
  /* background: var(--color-primary);
  color: #ffffff;*/
  opacity: 0.7;
}

/* header for branding and main menu */
.header {
  background-color: #ffffff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 10px 0 20px 0;
}

/* site branding */
.site-branding {
  display: flex;
  align-items: center;
}

.cca-logo img {
  width: 150px;
  position: relative;
  top: 4px;
}

.site-name-slogan {
  display: flex;
  flex-direction: column;
}

.site-name {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--bold-color);
  text-transform: uppercase;
}

.site-name a,
.site-name a:hover {
  color: var(--bold-color);
}

.site-slogan {
  font-size: 0.9rem;
  color: var(--bold-color);
  line-height: 1;
}

.site-branding-region {
  margin-bottom: 10px;
}

/* header right */
.header-right {
  position: relative;
  display: flex;
  align-items: center;
}

/* main menu */
.mobile-menu {
  display: none;
  margin-right: 6px;
}

.mobile-menu i {
  padding: 3px;
  font-size: 2rem;
}

.close-mobile-menu {
  display: none;
  width: 34px;
  height: 34px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  z-index: 200;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}

.primary-menu-wrapper {
  font-family: var(--font-heading);
  font-weight: 400;
}

.primary-menu-wrapper .main-menu li > a {
  font-size: 15px;
  font-weight: 400;
}

.menu-wrap {
  position: relative;
}

ul.main-menu,
.region-primary-menu .menu {
  position: relative;
  font-family: var(--font-heading);
  color: #0468B1;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  z-index: 10;
  list-style: none;
  list-style-type: none;
  text-transform: none;
}

ul.main-menu > li > span,
.region-primary-menu .menu > li > span {
  display: block;
  padding: 16px 14px;
}

ul.main-menu > li a,
.region-primary-menu .menu > li a {
  color: var(--bold-color);
  text-decoration: none;
}

ul.main-menu li,
.region-primary-menu .menu li {
  position: relative;
  display: inline-block;
  padding: 0;
}

ul.main-menu > li,
.region-primary-menu .menu > li {
  display: inline-block;
  line-height: 1;
}

ul.main-menu > li > a,
.region-primary-menu .menu > li > a {
  display: block;
  margin: 0;
  padding: 10px 14px;
  color: #0468B1;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial !important;
}

ul.main-menu > li:last-child a,
.region-primary-menu .menu > li:last-child > a {
  border: 0;
}

/*
ul.main-menu > li > a,
.region-primary-menu .menu > li > a:last-child {
  border-inline-end:none;
  }
*/
ul.main-menu > li > a:hover,
.region-primary-menu .menu > li > a:hover {
  color: #000;
}

ul.main-menu ul.submenu,
.region-primary-menu .menu .submenu {
  position: absolute;
  display: none;
  top: 30px;
  margin: 0;
  padding: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
}
@media (min-width: 60.5em) {
  ul.main-menu ul.submenu,
  .region-primary-menu .menu .submenu {
    width: 150px;
  }
}

ul.main-menu ul.submenu li,
.region-primary-menu .menu .submenu li {
  display: block;
  font-size: 0.9rem;
  background: #fff;
  border-top: 1px solid #494949;
  text-align: left;
}
ul.main-menu ul.submenu li:first-child,
.region-primary-menu .menu .submenu li:first-child {
  border: 0;
}

/*
ul.main-menu ul.submenu li a,
.region-primary-menu .menu .submenu li a {
  display: block;
  padding: 12px 4px 12px 14px;
  color: #ffffff;
} */
ul.main-menu ul.submenu li a, .region-primary-menu .menu .submenu li a {
  display: block;
  padding: 12px 10px;
  color: #0468B1;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
}
ul.main-menu ul.submenu li a:hover, .region-primary-menu .menu .submenu li a:hover {
  color: #000;
}
@media screen and (max-width: 1023px) {
  ul.main-menu ul.submenu li a:hover, .region-primary-menu .menu .submenu li a:hover {
    color: #0468B1;
  }
}

li.expanded:hover ul.submenu,
li.collapsed:hover ul.submenu,
.menu-item-has-children:hover .submenu {
  display: block;
  animation: slideUp 0.5s forwards;
}

.active-menu li.expanded:hover ul.submenu,
.active-menu li.collapsed:hover ul.submenu,
.active-menu .menu-item-has-children:hover .submenu {
  animation: none;
}

ul.main-menu li:hover > a,
.region-primary-menu .menu > li:hover a {
  /*  background: var(--bold-color);*/
  color: #000;
}
@media screen and (max-width: 1023px) {
  ul.main-menu li:hover > a,
  .region-primary-menu .menu > li:hover a {
    color: #0468B1;
  }
}

.menu-item-has-children > a::after {
  content: " +";
}

.video-banner {
  height: 680px;
}
@media (max-width: 767px) {
  .video-banner {
    height: 500px;
  }
}
.video-banner .background-video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  /* Main video*/
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .video-banner .background-video {
    height: 500px;
  }
}
.video-banner .background-video:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25) !important;
}
.video-banner .background-video video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-banner .video-content {
  margin-top: 0;
  padding: 150px 0;
}
@media (max-width: 767px) {
  .video-banner .video-content {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 75px 0;
  }
}
@media (max-width: 68.75em) {
  .video-banner .video-content {
    margin: 0 1.11111rem;
  }
}
.video-banner .video-content h1, .video-banner .video-content h2 {
  color: #fff;
  /* font-size: 36px;
   font-size: 2rem;*/
  font-family: "SoehneBreit";
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  padding-top: 0;
}
@media (min-width: 42.5em) {
  .video-banner .video-content h1, .video-banner .video-content h2 {
    font-size: 60px;
    font-size: 3.33333rem;
    line-height: 3rem;
  }
}
@media screen and (min-width: 60em) {
  .video-banner .video-content h1, .video-banner .video-content h2 {
    line-height: 104%;
    width: 80%;
  }
}
.video-banner .video-content h1:after, .video-banner .video-content h2:after {
  content: "";
  height: 10px;
  width: 200px;
  background-color: #FCC30B;
  position: absolute;
  bottom: -46px;
  left: 0;
}
.video-banner .video-content p {
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .video-banner .video-content p {
    margin-top: 25px;
  }
}
.video-banner .video-content a {
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
}
.video-banner .video-content .body {
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.33333rem;
  line-height: normal;
  color: #fff;
  padding-top: 30px;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
}
@media (min-width: 42.5em) {
  .video-banner .video-content .body {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 1.55556rem;
    width: 75%;
  }
}
.video-banner .video-content .body a {
  margin-top: 2rem;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  /*  font-size: 12px;*/
  font-size: 0.66667rem;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  border: none;
  /*    .see-all { 
        CCA HP Video Learn more arrow*/
  font-weight: 400;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  transition: all 0.3s ease;
  position: relative;
  /* }*/
}
.video-banner .video-content .body a:before {
  content: "";
  width: 0px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}
.video-banner .video-content .body a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.4em;
  position: relative;
  right: 0;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  -webkit-mask-image: url(../images/icon-chevron-right.svg);
  mask-image: url(../images/icon-chevron-right.svg);
  background-color: #fff;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.3s ease;
}
.video-banner .video-content .body a:hover, .video-banner .video-content .body a:focus {
  color: #fff !important;
  background-color: transparent;
}
.video-banner .video-content .body a:hover:before, .video-banner .video-content .body a:focus:before {
  right: -34px;
  width: 35px;
  background-color: #fff;
}
.video-banner .video-content .body a:hover:after, .video-banner .video-content .body a:focus:after {
  background-color: #fff;
  right: -40px !important;
}
@media (min-width: 42.5em) {
  .video-banner .video-content .body a {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}
@media (max-width: 767px) {
  .video-banner .video-content .body a {
    margin-top: 10px;
  }
}

/* NAP GCF hp Video - not it is a banner */
.path-naps-gcf .video-banner,
.path-afcia .video-banner {
  height: auto;
  position: relative;
}
@media (max-width: 767px) {
  .path-naps-gcf .video-banner,
  .path-afcia .video-banner {
    height: 300px;
  }
}
.path-naps-gcf .video-banner .background-video,
.path-afcia .video-banner .background-video {
  position: relative;
}
.path-naps-gcf .video-banner .background-video p,
.path-afcia .video-banner .background-video p {
  margin: 0;
}
.path-naps-gcf .video-banner .background-video img,
.path-afcia .video-banner .background-video img {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .path-naps-gcf .video-banner .background-video img,
  .path-afcia .video-banner .background-video img {
    height: 300px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.path-naps-gcf .video-banner .video-content,
.path-afcia .video-banner .video-content {
  padding: 0;
  position: absolute;
  bottom: 70px;
  width: 100%;
}
@media (max-width: 767px) {
  .path-naps-gcf .video-banner .video-content,
  .path-afcia .video-banner .video-content {
    bottom: 20px;
    margin: 0;
  }
}
.path-naps-gcf .video-banner .video-content h2,
.path-afcia .video-banner .video-content h2 {
  padding-top: 30px;
  width: 100%;
}
.path-naps-gcf .video-banner .video-content h2:after,
.path-afcia .video-banner .video-content h2:after {
  bottom: -69px;
}
.path-naps-gcf .video-banner .video-content .body p,
.path-afcia .video-banner .video-content .body p {
  margin-top: 76px;
}
@media (max-width: 767px) {
  .path-naps-gcf .video-banner .video-content .body p,
  .path-afcia .video-banner .video-content .body p {
    margin-top: 35px;
  }
}

.path-afcia .navbar-default .navbar-nav,
.path-naps-gcf .navbar-default .navbar-nav {
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 1024px) {
  .path-afcia .navbar-default .navbar-nav,
  .path-naps-gcf .navbar-default .navbar-nav {
    flex-wrap: wrap;
  }
}

@media (min-width: 68.75em) {
  .path-naps-gcf .navbar-default .navbar-nav {
    justify-content: center;
    gap: 30px;
  }
}
/* SCALA 2 lines menu for Safari */
.path-scala .navbar-default .navbar-nav {
  display: flex;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
}
.path-scala .navbar-default .navbar-nav li > a {
  /* font-weight: bold; */
  font-size: 15px;
}

/* Sidebar
-------------------------------------------- */
.sidebar {
  position: relative;
  margin: 0;
}

#sidebar-left {
  padding: 0 20px 0 0;
}

#sidebar-right {
  padding: 0 0 0 20px;
}

.region-sidebar-first,
.region-sidebar-second {
  display: flex;
  flex-direction: column;
}

.sidebar .block {
  background-color: #ffffff;
  margin-bottom: 1rem;
  padding: 15px 10px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.sidebar .block-title {
  padding-left: 6px;
  font-size: 1.3rem;
  border-left: 2px solid var(--color-primary);
  line-height: 1.4;
}

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

.sidebar li {
  padding: 6px 0;
  border-bottom: 2px solid var(--border);
}

.sidebar li:last-child {
  border: 0;
}

/* search block in sidebar */
.sidebar .form-search {
  width: 100%;
}

/* Footer
--------------------------------------*/
#last-section {
  position: relative;
  visibility: hidden;
  width: 100%;
  min-height: 1px;
  z-index: 12;
}

#footer {
  padding-top: 40px;
}

.copyright {
  background-color: #F9FAFE;
  color: black;
}

.copyright-text {
  font-size: 16px;
  color: #060101;
  display: flex;
  gap: 20px;
}

.footer,
.footer-top,
.footer-bottom {
  position: relative;
  width: 100%;
  background-color: #F9FAFE;
}

.footer-top,
.footer-bottom {
  padding: 1rem 0;
}

.region-footer-top,
.region-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.region-footer-top p:last-child,
.region-footer-bottom p:last-child {
  margin: 0;
}

.region-footer-top .block:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-blocks {
  position: relative;
  display: flex;
  padding: 1rem 0 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1 0 260px;
}

.footer .block-title {
  position: relative;
  padding-left: 8px;
  border-left: 2px solid var(--color-primary);
}

/* footer list style */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.footer li {
  padding: 4px 0;
  border-bottom: 1px solid #bbb0a1;
}

.footer li:last-child {
  border-bottom: 0;
}

/* Footer -> Footer Bottom Middle */
.footer-bottom-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px double #bbb0a1;
  padding: 1rem 0;
}

/* Footer -> Footer Bottom last*/
#mc_embed_signup_scroll {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #mc_embed_signup_scroll {
    flex-direction: column;
  }
}

/* Header and footer social icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.footer .social-icons li {
  padding: 0;
  border: 0;
}

.social-icons a {
  color: var(--color-primary);
}

.social-icons li a {
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  transition: background 0.4s ease;
}
.social-icons li a i:before {
  font-size: 20px;
}

.social-icons li a :hover {
  opacity: 0.5;
}

/* Node Content
--------------------------------------*/
/* Page title */
.page-title-wrap {
  position: relative;
  margin: 0;
}

.page-title-wrap h1.page-title {
  font-size: 36px;
  font-size: 2rem;
  line-height: 1.77778rem;
  color: #000;
  font-weight: 400;
  font-family: "SoehneBreit";
  text-transform: uppercase;
  margin-bottom: 0;
  /* margin-top: 20px; */
}
@media screen and (min-width: 60em) {
  .page-title-wrap h1.page-title {
    font-size: 40px;
    font-size: 2.2rem;
    line-height: 1.1;
  }
}

/* Admin Tabs */
ul.page-tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 2px solid var(--border);
}

.page-tabs li {
  padding: 0;
}

.page-tabs li a {
  border-right: 2px solid #ffffff;
  padding: 4px 10px;
  background: #e2dfd8;
  color: var(--bold-color);
  transition: all 0.3s ease;
  text-shadow: 1px 1px #ffffff;
}

ul.page-tabs li.active-page-tab a {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

ul.page-tabs li a:hover {
  background: var(--color-secondary);
  color: #ffffff;
  text-shadow: none;
}

/* common for all nodes */
.node,
.node-promoted,
.node-sticky,
.node-unpublished,
.node-view-mode-full {
  position: relative;
}

.node-view-mode-teaser.node-sticky {
  position: relative;
  padding: 0 1rem 1rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* node in teaser view */
.node-view-mode-teaser {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 4px double var(--border);
}

.node-view-mode-full .node-taxonomy-container {
  margin-bottom: 14px;
}

/* node author and submitted details */
.node-header {
  position: relative;
}

.author-picture {
  float: left;
}

.author-picture img {
  width: auto;
  height: 30px;
  margin-right: 6px;
}

.node-submitted-details {
  margin: 0 0 8px 0;
  padding: 4px 0;
  color: #96918b;
  border-bottom: 1px solid var(--border);
}

.node-submitted-details i {
  color: var(--color-primary);
}

.node-submitted-details a {
  color: #96918b;
}

.node-submitted-details i.fa-calendar,
.node-submitted-details i.fa-th-large {
  margin-left: 14px;
}

/* node taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
}

.node-links-container {
  border-bottom: 1px solid var(--border);
}

h3.term-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.term-title i {
  font-size: 1.1rem;
  color: var(--color-primary);
}

ul.taxonomy-terms {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

li.taxonomy-term {
  display: inline-block;
}

.node-links-container ul.links {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}

ul.inline li {
  position: relative;
  display: inline-block;
  padding: 0;
  list-style-type: none;
}

.node-links-container li {
  margin-right: 20px;
  float: left;
}

.node-links-container li.node-readmore {
  margin-left: 0;
  float: right;
}

.node-links-container .comment-comments::before {
  font-family: "FontAwesome";
  content: "\f0e6";
  padding-right: 4px;
}

.node-links-container .comment-add::before {
  font-family: "FontAwesome";
  content: "\f27b";
  padding-right: 4px;
}

.node-readmore {
  float: left;
}

li.node-readmore a {
  padding: 6px 12px;
  background: var(--color-primary);
  color: #ffffff;
  transition: background 0.4s ease;
}

li.node-readmore a:hover {
  background: var(--bold-color);
  color: #ffffff;
}

li.node-readmore a::after {
  content: "\f178";
  padding-left: 10px;
  font-family: "FontAwesome";
}

.node-view-mode-teaser li.comment-add,
.node-view-mode-teaser li.comment-forbidden {
  text-align: right;
}

/* pager */
nav.pager {
  position: relative;
}

.pager ul.pager__items {
  position: relative;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  list-style-type: none;
}

.pager__items {
  clear: both;
  text-align: center;
}

.pager__item {
  display: inline-block;
}

.pager__item a {
  padding: 8px 14px;
}

.pager__item a:hover,
.pager__item.is-active a {
  background-color: var(--color-primary);
  color: #ffffff;
}

.field--name-field-image-credit,
.views-field-field-image-credit {
  color: #8E8E8E;
  font-size: 0.88889rem;
  padding: 5px 0;
}

/* Block Regions
--------------------------*/
.block-title {
  position: relative;
}

/* Breadcrumb
--------------------------
#breadcrumb {
  position: relative;
  background-color: var(--color-primary-light);
  width: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 3;
} 
.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
ol.breadcrumb-items li {
  padding: 0;
}
.breadcrumb-item-seperator {
  margin: 0 10px;
}*/
/* Highlight region */
#highlighted {
  position: relative;
  background: var(--light);
  z-index: 2;
}

#highlighted .block {
  margin: 0 0 6px 0;
  padding: 6px 0;
}

/* content top and content bottom block region */
#content-top,
#content-bottom {
  width: 100%;
}

.region-content-top,
.region-content-bottom {
  display: flex;
  flex-direction: column;
}

.region-content-top {
  margin: 0 150px;
}
@media screen and (max-width: 767px) {
  .region-content-top {
    margin: 0;
  }
}

.region-content-bottom {
  margin-top: 1rem;
}

.region-content-top .block,
.region-content-bottom .block {
  margin: 0 0 1rem 0;
}

/* HP Videos New with responsive */
#block-views-block-homepage-news-block-2 {
  background: transparent;
  box-shadow: none;
  /*
  @media (max-width: 768px) {
    .view-content {
      flex-direction: column;
      align-items: center;
    }
    .views-row {
      width: 50%;
    }
  }

  @media (max-width: 500px) {
    .view-content {
      flex-direction: column;
      align-items: center;
    }
    .views-row {
      width: 100%;
    }
  }*/
}
#block-views-block-homepage-news-block-2 .view-content {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  #block-views-block-homepage-news-block-2 .view-content {
    flex-direction: column;
  }
}
#block-views-block-homepage-news-block-2 .view-content .views-row {
  width: 24%;
}
@media (max-width: 767px) {
  #block-views-block-homepage-news-block-2 .view-content .views-row {
    width: 100%;
  }
}

/* HP Video end*/
.path-naps-gcf .views-field-field-video-source iframe,
.path-scala .views-field-field-video-source iframe {
  height: 250px;
  width: 100%;
}

.path-naps-gcf .views-field-title a {
  color: black;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial !important;
  font-weight: 400;
  font-style: normal;
}
.path-naps-gcf .napgcf-map {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.naps-gcf-videos h4,
.scala-videos h4 {
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 42.5em) {
  .naps-gcf-videos h4,
  .scala-videos h4 {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 1.55556rem;
  }
}

.scala-main-video .views-row {
  display: flex;
  gap: 30px;
  width: 100%;
}

.scala-main-video .views-row .views-field {
  flex: 1;
}

.scala-main-video .views-row h2 {
  margin-top: 0;
}

.scala-main-video .views-row iframe {
  height: 315px;
}

.path-scala .view-scala-videos .views-row iframe {
  width: 95%;
}

.view-scala-blocks .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.path-naps-gcf .view-scala-blocks .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CCA News - AFCIA 

.cca-news-page .view-content, .view-solutions-catalogue .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  clear: both;
}
.cca-news-page .view-content .views-row, .view-solutions-catalogue .views-row {
  width: 49%;
  background-color: #F9FAFE;
  margin-bottom: 30px;
}
.cca-news-page .views-field-nothing span {
  display: flex;
  gap: 20px;
  align-items: center;
}
.view-solutions-catalogue .views-field-nothing span {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cca-news-page .views-field-nothing .country, .view-solutions-catalogue .views-field-nothing .country {
  background: #0265b5;
  padding: 5px 10px;
  color: #fff;
}
.cca-news-page .views-field-nothing,
.cca-news-page .views-field-title,
.cca-news-page .views-field-body
{
  padding: 0 10px;
}
.view-solutions-catalogue .views-field-nothing,
.view-solutions-catalogue .views-field-title,
.view-solutions-catalogue .views-field-body,
.views-field-field-download {
  padding: 0 10px;
}
.cca-news-page .views-field-nothing, .view-solutions-catalogue .views-field-nothing {
  margin-top: 10px;
}
.cca-news-page .views-field-body p, .view-solutions-catalogue .views-field-body p {
  line-height: 1.4;
}
.cca-news-page .views-field-title, .view-solutions-catalogue .views-field-title {
  font-weight: bold;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 24px;
  line-height: 1.3;
  margin: 5px 0;
}
.cca-news-page .form-item select,  .view-solutions-catalogue .form-item select,
.afcia-news-page .form-item select {
  border-radius: 0;
  border: 2px solid #0468B1;
  box-sizing: border-box;
  -webkit-appearance: none;
  background-image: url(../images/icon-chevron-down.svg);
  background-position: calc(100% - 15px);
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 12px;
  width: 100%;
}

.cca-news-page .views-exposed-form .form-item, .view-solutions-catalogue .views-exposed-form .form-item,
.afcia-news-page .views-exposed-form .form-item {
  width: 330px;
  float: left;
  padding: .5em 1em 0 0;
}
.cca-news-page .form-item-field-type-of-solutions-target-id, .view-solutions-catalogue .form-item-field-type-of-solutions-target-id  {
  width: 250px;
}
.cca-news-page .views-exposed-form .form-submit, .view-solutions-catalogue .views-exposed-form .form-submit,
.afcia-news-page .views-exposed-form .form-submit  {
  width: auto;
  padding: 15px 20px;
  margin: 35px 0 20px 0;
}
.cca-news-page .views-exposed-widgets, .view-solutions-catalogue .views-exposed-widgets,
.afcia-news-page  .views-exposed-widgets {
  margin-bottom: 30px;
}
.cca-news-page .view-content img{
height: 360px;
width: 100%;
object-fit: cover;
}
*/
/* CCA Homepage - featured news 

.cca-hp-news-2 .view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-afcia-videos .cca-featured-news .view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.view-afcia-videos .cca-featured-news {
  width: 70%;
}

.view-afcia-videos .cca-featured-news .view-content {
  display: block;
}
.cca-featured-news .card--content.image {
  display: flex;
  flex-direction: row;
}

.cca-featured-news .card--content .content,
.cca-featured-news .card--content .media{
  width: 50%;
}

.cca-featured-news .card--content .content {
padding: .83333rem;
}

.cca-hp-news-2 .view-content {
  display: flex;
  gap: 30px;
}

.cca-hp-news-2 .view-content img{
  height:360px;
  width:100%;
  object-fit: cover;
}

.cca-hp-news-2 .view-content .views-row {
  margin-bottom: 1.66667rem;
    width: 100%;
    background-color: #F9FAFE;
}
*/
/* */
/* Homepage see all arrow for 4 sites and video */
.path-scala .view-afcia-videos .section-header .see-all, .path-scala .view-homepage-news .section-header .see-all, .path-scala .news-view-tile .section-header .see-all, .path-scala .nap-gsp-resources .section-header .see-all, .path-naps-gcf .view-afcia-videos .section-header .see-all, .path-naps-gcf .view-homepage-news .section-header .see-all, .path-naps-gcf .news-view-tile .section-header .see-all, .path-naps-gcf .nap-gsp-resources .section-header .see-all, .frontpage .view-afcia-videos .section-header .see-all, .frontpage .view-homepage-news .section-header .see-all, .frontpage .news-view-tile .section-header .see-all, .frontpage .nap-gsp-resources .section-header .see-all, .path-afcia .view-afcia-videos .section-header .see-all, .path-afcia .view-homepage-news .section-header .see-all, .path-afcia .news-view-tile .section-header .see-all, .path-afcia .nap-gsp-resources .section-header .see-all, .path-taxonomy .view-afcia-videos .section-header .see-all, .path-taxonomy .view-homepage-news .section-header .see-all, .path-taxonomy .news-view-tile .section-header .see-all, .path-taxonomy .nap-gsp-resources .section-header .see-all, .path-nap-gsp .view-afcia-videos .section-header .see-all, .path-nap-gsp .view-homepage-news .section-header .see-all, .path-nap-gsp .news-view-tile .section-header .see-all, .path-nap-gsp .nap-gsp-resources .section-header .see-all, .path-node .view-afcia-videos .section-header .see-all, .path-node .view-homepage-news .section-header .see-all, .path-node .news-view-tile .section-header .see-all, .path-node .nap-gsp-resources .section-header .see-all {
  font-weight: 400;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  transition: all 0.3s ease;
  position: relative;
}
.path-scala .view-afcia-videos .section-header .see-all:before, .path-scala .view-homepage-news .section-header .see-all:before, .path-scala .news-view-tile .section-header .see-all:before, .path-scala .nap-gsp-resources .section-header .see-all:before, .path-naps-gcf .view-afcia-videos .section-header .see-all:before, .path-naps-gcf .view-homepage-news .section-header .see-all:before, .path-naps-gcf .news-view-tile .section-header .see-all:before, .path-naps-gcf .nap-gsp-resources .section-header .see-all:before, .frontpage .view-afcia-videos .section-header .see-all:before, .frontpage .view-homepage-news .section-header .see-all:before, .frontpage .news-view-tile .section-header .see-all:before, .frontpage .nap-gsp-resources .section-header .see-all:before, .path-afcia .view-afcia-videos .section-header .see-all:before, .path-afcia .view-homepage-news .section-header .see-all:before, .path-afcia .news-view-tile .section-header .see-all:before, .path-afcia .nap-gsp-resources .section-header .see-all:before, .path-taxonomy .view-afcia-videos .section-header .see-all:before, .path-taxonomy .view-homepage-news .section-header .see-all:before, .path-taxonomy .news-view-tile .section-header .see-all:before, .path-taxonomy .nap-gsp-resources .section-header .see-all:before, .path-nap-gsp .view-afcia-videos .section-header .see-all:before, .path-nap-gsp .view-homepage-news .section-header .see-all:before, .path-nap-gsp .news-view-tile .section-header .see-all:before, .path-nap-gsp .nap-gsp-resources .section-header .see-all:before, .path-node .view-afcia-videos .section-header .see-all:before, .path-node .view-homepage-news .section-header .see-all:before, .path-node .news-view-tile .section-header .see-all:before, .path-node .nap-gsp-resources .section-header .see-all:before {
  content: "";
  width: 0px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}
.path-scala .view-afcia-videos .section-header .see-all:after, .path-scala .view-homepage-news .section-header .see-all:after, .path-scala .news-view-tile .section-header .see-all:after, .path-scala .nap-gsp-resources .section-header .see-all:after, .path-naps-gcf .view-afcia-videos .section-header .see-all:after, .path-naps-gcf .view-homepage-news .section-header .see-all:after, .path-naps-gcf .news-view-tile .section-header .see-all:after, .path-naps-gcf .nap-gsp-resources .section-header .see-all:after, .frontpage .view-afcia-videos .section-header .see-all:after, .frontpage .view-homepage-news .section-header .see-all:after, .frontpage .news-view-tile .section-header .see-all:after, .frontpage .nap-gsp-resources .section-header .see-all:after, .path-afcia .view-afcia-videos .section-header .see-all:after, .path-afcia .view-homepage-news .section-header .see-all:after, .path-afcia .news-view-tile .section-header .see-all:after, .path-afcia .nap-gsp-resources .section-header .see-all:after, .path-taxonomy .view-afcia-videos .section-header .see-all:after, .path-taxonomy .view-homepage-news .section-header .see-all:after, .path-taxonomy .news-view-tile .section-header .see-all:after, .path-taxonomy .nap-gsp-resources .section-header .see-all:after, .path-nap-gsp .view-afcia-videos .section-header .see-all:after, .path-nap-gsp .view-homepage-news .section-header .see-all:after, .path-nap-gsp .news-view-tile .section-header .see-all:after, .path-nap-gsp .nap-gsp-resources .section-header .see-all:after, .path-node .view-afcia-videos .section-header .see-all:after, .path-node .view-homepage-news .section-header .see-all:after, .path-node .news-view-tile .section-header .see-all:after, .path-node .nap-gsp-resources .section-header .see-all:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.4em;
  position: relative;
  right: 0;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  -webkit-mask-image: url(../images/icon-chevron-right.svg);
  mask-image: url(../images/icon-chevron-right.svg);
  background-color: #000;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.3s ease;
}
.path-scala .view-afcia-videos .section-header .see-all:hover, .path-scala .view-afcia-videos .section-header .see-all:focus, .path-scala .view-homepage-news .section-header .see-all:hover, .path-scala .view-homepage-news .section-header .see-all:focus, .path-scala .news-view-tile .section-header .see-all:hover, .path-scala .news-view-tile .section-header .see-all:focus, .path-scala .nap-gsp-resources .section-header .see-all:hover, .path-scala .nap-gsp-resources .section-header .see-all:focus, .path-naps-gcf .view-afcia-videos .section-header .see-all:hover, .path-naps-gcf .view-afcia-videos .section-header .see-all:focus, .path-naps-gcf .view-homepage-news .section-header .see-all:hover, .path-naps-gcf .view-homepage-news .section-header .see-all:focus, .path-naps-gcf .news-view-tile .section-header .see-all:hover, .path-naps-gcf .news-view-tile .section-header .see-all:focus, .path-naps-gcf .nap-gsp-resources .section-header .see-all:hover, .path-naps-gcf .nap-gsp-resources .section-header .see-all:focus, .frontpage .view-afcia-videos .section-header .see-all:hover, .frontpage .view-afcia-videos .section-header .see-all:focus, .frontpage .view-homepage-news .section-header .see-all:hover, .frontpage .view-homepage-news .section-header .see-all:focus, .frontpage .news-view-tile .section-header .see-all:hover, .frontpage .news-view-tile .section-header .see-all:focus, .frontpage .nap-gsp-resources .section-header .see-all:hover, .frontpage .nap-gsp-resources .section-header .see-all:focus, .path-afcia .view-afcia-videos .section-header .see-all:hover, .path-afcia .view-afcia-videos .section-header .see-all:focus, .path-afcia .view-homepage-news .section-header .see-all:hover, .path-afcia .view-homepage-news .section-header .see-all:focus, .path-afcia .news-view-tile .section-header .see-all:hover, .path-afcia .news-view-tile .section-header .see-all:focus, .path-afcia .nap-gsp-resources .section-header .see-all:hover, .path-afcia .nap-gsp-resources .section-header .see-all:focus, .path-taxonomy .view-afcia-videos .section-header .see-all:hover, .path-taxonomy .view-afcia-videos .section-header .see-all:focus, .path-taxonomy .view-homepage-news .section-header .see-all:hover, .path-taxonomy .view-homepage-news .section-header .see-all:focus, .path-taxonomy .news-view-tile .section-header .see-all:hover, .path-taxonomy .news-view-tile .section-header .see-all:focus, .path-taxonomy .nap-gsp-resources .section-header .see-all:hover, .path-taxonomy .nap-gsp-resources .section-header .see-all:focus, .path-nap-gsp .view-afcia-videos .section-header .see-all:hover, .path-nap-gsp .view-afcia-videos .section-header .see-all:focus, .path-nap-gsp .view-homepage-news .section-header .see-all:hover, .path-nap-gsp .view-homepage-news .section-header .see-all:focus, .path-nap-gsp .news-view-tile .section-header .see-all:hover, .path-nap-gsp .news-view-tile .section-header .see-all:focus, .path-nap-gsp .nap-gsp-resources .section-header .see-all:hover, .path-nap-gsp .nap-gsp-resources .section-header .see-all:focus, .path-node .view-afcia-videos .section-header .see-all:hover, .path-node .view-afcia-videos .section-header .see-all:focus, .path-node .view-homepage-news .section-header .see-all:hover, .path-node .view-homepage-news .section-header .see-all:focus, .path-node .news-view-tile .section-header .see-all:hover, .path-node .news-view-tile .section-header .see-all:focus, .path-node .nap-gsp-resources .section-header .see-all:hover, .path-node .nap-gsp-resources .section-header .see-all:focus {
  color: #0468B1 !important;
  background-color: transparent;
}
.path-scala .view-afcia-videos .section-header .see-all:hover:before, .path-scala .view-afcia-videos .section-header .see-all:focus:before, .path-scala .view-homepage-news .section-header .see-all:hover:before, .path-scala .view-homepage-news .section-header .see-all:focus:before, .path-scala .news-view-tile .section-header .see-all:hover:before, .path-scala .news-view-tile .section-header .see-all:focus:before, .path-scala .nap-gsp-resources .section-header .see-all:hover:before, .path-scala .nap-gsp-resources .section-header .see-all:focus:before, .path-naps-gcf .view-afcia-videos .section-header .see-all:hover:before, .path-naps-gcf .view-afcia-videos .section-header .see-all:focus:before, .path-naps-gcf .view-homepage-news .section-header .see-all:hover:before, .path-naps-gcf .view-homepage-news .section-header .see-all:focus:before, .path-naps-gcf .news-view-tile .section-header .see-all:hover:before, .path-naps-gcf .news-view-tile .section-header .see-all:focus:before, .path-naps-gcf .nap-gsp-resources .section-header .see-all:hover:before, .path-naps-gcf .nap-gsp-resources .section-header .see-all:focus:before, .frontpage .view-afcia-videos .section-header .see-all:hover:before, .frontpage .view-afcia-videos .section-header .see-all:focus:before, .frontpage .view-homepage-news .section-header .see-all:hover:before, .frontpage .view-homepage-news .section-header .see-all:focus:before, .frontpage .news-view-tile .section-header .see-all:hover:before, .frontpage .news-view-tile .section-header .see-all:focus:before, .frontpage .nap-gsp-resources .section-header .see-all:hover:before, .frontpage .nap-gsp-resources .section-header .see-all:focus:before, .path-afcia .view-afcia-videos .section-header .see-all:hover:before, .path-afcia .view-afcia-videos .section-header .see-all:focus:before, .path-afcia .view-homepage-news .section-header .see-all:hover:before, .path-afcia .view-homepage-news .section-header .see-all:focus:before, .path-afcia .news-view-tile .section-header .see-all:hover:before, .path-afcia .news-view-tile .section-header .see-all:focus:before, .path-afcia .nap-gsp-resources .section-header .see-all:hover:before, .path-afcia .nap-gsp-resources .section-header .see-all:focus:before, .path-taxonomy .view-afcia-videos .section-header .see-all:hover:before, .path-taxonomy .view-afcia-videos .section-header .see-all:focus:before, .path-taxonomy .view-homepage-news .section-header .see-all:hover:before, .path-taxonomy .view-homepage-news .section-header .see-all:focus:before, .path-taxonomy .news-view-tile .section-header .see-all:hover:before, .path-taxonomy .news-view-tile .section-header .see-all:focus:before, .path-taxonomy .nap-gsp-resources .section-header .see-all:hover:before, .path-taxonomy .nap-gsp-resources .section-header .see-all:focus:before, .path-nap-gsp .view-afcia-videos .section-header .see-all:hover:before, .path-nap-gsp .view-afcia-videos .section-header .see-all:focus:before, .path-nap-gsp .view-homepage-news .section-header .see-all:hover:before, .path-nap-gsp .view-homepage-news .section-header .see-all:focus:before, .path-nap-gsp .news-view-tile .section-header .see-all:hover:before, .path-nap-gsp .news-view-tile .section-header .see-all:focus:before, .path-nap-gsp .nap-gsp-resources .section-header .see-all:hover:before, .path-nap-gsp .nap-gsp-resources .section-header .see-all:focus:before, .path-node .view-afcia-videos .section-header .see-all:hover:before, .path-node .view-afcia-videos .section-header .see-all:focus:before, .path-node .view-homepage-news .section-header .see-all:hover:before, .path-node .view-homepage-news .section-header .see-all:focus:before, .path-node .news-view-tile .section-header .see-all:hover:before, .path-node .news-view-tile .section-header .see-all:focus:before, .path-node .nap-gsp-resources .section-header .see-all:hover:before, .path-node .nap-gsp-resources .section-header .see-all:focus:before {
  right: -34px;
  width: 35px;
  background-color: #0468B1;
}
.path-scala .view-afcia-videos .section-header .see-all:hover:after, .path-scala .view-afcia-videos .section-header .see-all:focus:after, .path-scala .view-homepage-news .section-header .see-all:hover:after, .path-scala .view-homepage-news .section-header .see-all:focus:after, .path-scala .news-view-tile .section-header .see-all:hover:after, .path-scala .news-view-tile .section-header .see-all:focus:after, .path-scala .nap-gsp-resources .section-header .see-all:hover:after, .path-scala .nap-gsp-resources .section-header .see-all:focus:after, .path-naps-gcf .view-afcia-videos .section-header .see-all:hover:after, .path-naps-gcf .view-afcia-videos .section-header .see-all:focus:after, .path-naps-gcf .view-homepage-news .section-header .see-all:hover:after, .path-naps-gcf .view-homepage-news .section-header .see-all:focus:after, .path-naps-gcf .news-view-tile .section-header .see-all:hover:after, .path-naps-gcf .news-view-tile .section-header .see-all:focus:after, .path-naps-gcf .nap-gsp-resources .section-header .see-all:hover:after, .path-naps-gcf .nap-gsp-resources .section-header .see-all:focus:after, .frontpage .view-afcia-videos .section-header .see-all:hover:after, .frontpage .view-afcia-videos .section-header .see-all:focus:after, .frontpage .view-homepage-news .section-header .see-all:hover:after, .frontpage .view-homepage-news .section-header .see-all:focus:after, .frontpage .news-view-tile .section-header .see-all:hover:after, .frontpage .news-view-tile .section-header .see-all:focus:after, .frontpage .nap-gsp-resources .section-header .see-all:hover:after, .frontpage .nap-gsp-resources .section-header .see-all:focus:after, .path-afcia .view-afcia-videos .section-header .see-all:hover:after, .path-afcia .view-afcia-videos .section-header .see-all:focus:after, .path-afcia .view-homepage-news .section-header .see-all:hover:after, .path-afcia .view-homepage-news .section-header .see-all:focus:after, .path-afcia .news-view-tile .section-header .see-all:hover:after, .path-afcia .news-view-tile .section-header .see-all:focus:after, .path-afcia .nap-gsp-resources .section-header .see-all:hover:after, .path-afcia .nap-gsp-resources .section-header .see-all:focus:after, .path-taxonomy .view-afcia-videos .section-header .see-all:hover:after, .path-taxonomy .view-afcia-videos .section-header .see-all:focus:after, .path-taxonomy .view-homepage-news .section-header .see-all:hover:after, .path-taxonomy .view-homepage-news .section-header .see-all:focus:after, .path-taxonomy .news-view-tile .section-header .see-all:hover:after, .path-taxonomy .news-view-tile .section-header .see-all:focus:after, .path-taxonomy .nap-gsp-resources .section-header .see-all:hover:after, .path-taxonomy .nap-gsp-resources .section-header .see-all:focus:after, .path-nap-gsp .view-afcia-videos .section-header .see-all:hover:after, .path-nap-gsp .view-afcia-videos .section-header .see-all:focus:after, .path-nap-gsp .view-homepage-news .section-header .see-all:hover:after, .path-nap-gsp .view-homepage-news .section-header .see-all:focus:after, .path-nap-gsp .news-view-tile .section-header .see-all:hover:after, .path-nap-gsp .news-view-tile .section-header .see-all:focus:after, .path-nap-gsp .nap-gsp-resources .section-header .see-all:hover:after, .path-nap-gsp .nap-gsp-resources .section-header .see-all:focus:after, .path-node .view-afcia-videos .section-header .see-all:hover:after, .path-node .view-afcia-videos .section-header .see-all:focus:after, .path-node .view-homepage-news .section-header .see-all:hover:after, .path-node .view-homepage-news .section-header .see-all:focus:after, .path-node .news-view-tile .section-header .see-all:hover:after, .path-node .news-view-tile .section-header .see-all:focus:after, .path-node .nap-gsp-resources .section-header .see-all:hover:after, .path-node .nap-gsp-resources .section-header .see-all:focus:after {
  background-color: #0468B1;
  right: -40px !important;
}

#block-cca-napgcfmap {
  display: none;
}

/* Comments
-------------------------------------------- */
#node-comment {
  position: relative;
  margin-top: 30px;
  border-top: 3px double var(--border);
}

#node-comment i {
  color: var(--color-primary);
}

.comment-form-wrap {
  position: relative;
  margin: 10px 0;
  padding: 20px;
  background: var(--light);
  border: 3px solid #ffffff;
  box-shadow: var(--shadow);
}

h2.add-comment-title {
  border-bottom: 2px solid #ffffff;
}

.filter-wrapper {
  font-size: 0.9rem;
  border: 2px solid #ffffff;
}

.filter-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.filter-wrapper ul li {
  padding: 6px 0;
  border-bottom: 1px solid #ffffff;
}

.filter-wrapper ul li:last-child {
  border: 0;
}

/* single comment */
.single-comment {
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.comment-user-picture {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
  width: 100px;
  border-right: 2px solid #ffffff;
}

.comment-user-picture img {
  width: 100px;
  height: auto;
}

h3.single-comment-title {
  margin: 0.1rem 0;
  font-size: 1.2rem;
}

.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9rem;
  color: #909090;
  border-bottom: 1px solid var(--border);
}

.single-comment-meta a {
  color: #909090;
}

.single-comment-content-body {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
}

.single-comment-content-body {
  position: relative;
  display: table-cell;
  vertical-align: top;
}

#node-comment .indented {
  margin-left: 60px;
}

.single-comment-content ul.links.inline {
  display: flex;
  list-style: none;
  gap: 8px;
}

.single-comment-content .links a {
  padding: 5px 10px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  transition: all 0.3s;
}

.single-comment-content .links a:hover {
  background-color: #ffffff;
}

/* Homepage
-------------------------------------------- */
#slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background-color: var(--bg-body);
  background-image: url(../images/slider.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
  z-index: 2;
}

.home-slider {
  position: relative;
  min-height: 100vh;
  z-index: 5;
}

ul.home-slider {
  list-style: none;
  list-style-type: none;
  padding: 0;
}

.home-slider h1,
.home-slider h2,
.home-slider h3 {
  font-size: 3rem;
  color: var(--bold-color);
}

.home-slider p {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.6rem;
  background: #ffffff;
  color: var(--bold-color);
}

.home-slider a.button {
  padding: 10px 20px;
  background: var(--color-primary);
  color: #ffffff;
  transition: background 0.3s ease;
}

.home-slider .owl-item a.button:hover,
.home-slider a.button:hover {
  background: var(--bold-color);
}

.home-slider .owl-dots {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 15;
}

.home-slider .owl-dots button {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin: 0 4px;
  background: var(--bold-color);
}

.owl-dots button.active {
  background: var(--color-primary);
}

.owl-item {
  display: flex;
  align-items: center;
  height: 100vh;
}

.section,
.homepage-content {
  position: relative;
  z-index: 2;
}

/* CCA Homepage Video title */
#block-views-block-homepage-news-block-2 .section-header h3 {
  margin: 20px 0 20px;
  font-size: 2.22rem;
  line-height: 2rem;
  font-family: "SoehneBreit", "Helvetica", "Arial";
  /* Responsive I addded */
}
@media (max-width: 767px) {
  #block-views-block-homepage-news-block-2 .section-header h3 {
    font-size: 30px;
    font-size: 1.66667rem;
    line-height: 1.44444rem;
    margin: 0;
  }
}
#block-views-block-homepage-news-block-2 .section-header a {
  font-size: 15px !important;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  color: black;
}
#block-views-block-homepage-news-block-2 iframe {
  width: 100%;
  height: 200px;
}
@media (min-width: 42.5em) {
  #block-views-block-homepage-news-block-2 iframe {
    width: 260px;
    height: 140px;
  }
}

#block-cca-views-block-homepage-thematic-areas-block-2 h3.block-title {
  text-align: center;
  margin-top: 40px;
}

.region-content-home {
  display: flex;
  flex-direction: column;
}

/* Pages
-------------------------------------------- */
/* maintenance page*/
#maintenance {
  padding-top: 4rem;
  text-align: center;
}

#maintenance i {
  color: var(--color-primary);
  font-size: 4rem;
  margin: 1rem 0;
}

/* Error page */
.error-page {
  text-align: center;
}

.error-page h1,
.error-page h2,
.error-page h3 {
  font-size: 5rem;
}

/* Media query end */
/* Benin -- Country page Publications layout */
.view-country-page-project-display .view-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .view-country-page-project-display .view-content .col-sm-4 {
    width: 48.9999%;
  }
}

.view-country-page-project-display .views-row {
  margin-bottom: 20px;
}

.publications {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .publications {
    flex-direction: column;
  }
}
.publications .view-header {
  width: 40%;
}
@media (max-width: 767px) {
  .publications .view-header {
    width: 100%;
  }
}
.publications .view-content {
  width: 60%;
}
@media (max-width: 767px) {
  .publications .view-content {
    width: 100%;
  }
}
.publications .view-content .views-row {
  width: 100% !important;
}
.publications .view-content .views-row .card--content.image {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .publications .view-content .views-row .card--content.image {
    flex-direction: column;
  }
}
.publications .view-content .views-row .card--content.image .content {
  width: 50%;
}
@media (max-width: 767px) {
  .publications .view-content .views-row .card--content.image .content {
    width: 100%;
    order: 2;
  }
}
.publications .view-content .views-row .card--content.image .media {
  width: 50%;
}
@media (max-width: 767px) {
  .publications .view-content .views-row .card--content.image .media {
    width: 100%;
    order: 1;
  }
}
.publications .view-content .views-row .card--content.image .media img {
  height: auto;
}

/* Country pages */
.path-taxonomy {
  /* Titles on Country detail page */
}
.path-taxonomy h3.block-title {
  text-transform: uppercase;
  font-family: "SoehneBreit", "Helvetica", "Arial";
  font-size: 2.22rem;
  line-height: 2rem;
}
@media (max-width: 767px) {
  .path-taxonomy h3.block-title {
    /* For mobile view of Thematic area page inside titles - Project status checked */
    font-size: 1.66667rem;
    line-height: 1.44444rem;
  }
}
.path-taxonomy.region-country #block-cca-page-title {
  display: none;
}
.path-taxonomy.region-country .views-field-title a {
  font-family: "Proxima-Nova-Reg", "Helvetica", "Arial" !important;
  font-size: 18px;
}
.path-taxonomy.region-country .block-title {
  margin-top: 20px;
}
.path-taxonomy .layout--onecol,
.path-taxonomy .country-views-block .block {
  clear: both;
  margin-bottom: 30px;
  float: left;
  width: 100%;
}
.path-taxonomy .country-flag-section .layout__region--content {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.path-taxonomy .country-flag-section .layout__region--content .block {
  display: flex;
  align-items: center;
}
.path-taxonomy .country-flag-section .layout__region--content .field--name-name {
  font-size: 30px;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  text-transform: uppercase;
}
.path-taxonomy .col-md-4 {
  width: 32%;
  float: left;
  position: relative;
  margin-right: 20px;
  padding: 0;
}
@media (max-width: 767px) {
  .path-taxonomy .col-md-4 {
    width: 100%;
    margin-bottom: 25px;
  }
}
.path-taxonomy .col-md-4:last-child {
  margin-right: 0;
}
.path-taxonomy .country-links {
  float: left;
  margin: 0 150px;
}

.path-scala .scala-hero {
  width: 1145px;
  height: 400px;
}

/* CCA Resource 
.path-resource-finder {
nav.pager{
  position: unset !important;
}
}*/
/* Resources for microsites*/
.microsite-news-list .views-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.microsite-news-list .views-row .views-field-field-image {
  width: 30%;
}
.microsite-news-list .views-row .views-field-nothing {
  width: 70%;
}
.microsite-news-list .views-row .views-field-title a {
  display: block;
  line-height: 1.3;
  font-size: 24px;
  margin-bottom: 5px;
}
.microsite-news-list .views-row .views-field-created {
  margin-bottom: 10px;
}
.microsite-news-list .views-row .views-field-created time {
  font-size: 14px;
}
.microsite-news-list.resources-list .views-row .views-field-field-image {
  width: 20%;
  margin-right: 0;
}
.microsite-news-list.resources-list .views-row .views-field-nothing {
  width: 75%;
}

.path-naps-gcf h1,
.path-nap-gsp h1 {
  font-family: "SoehneBreit", "Helvetica", "Arial";
  line-height: 1.1;
  font-size: 40px;
  margin-bottom: 0;
  color: #000;
}
.path-naps-gcf h3.block-title,
.path-nap-gsp h3.block-title {
  margin: 20px 0 20px;
  /*  border-top: 1px solid #eee; */
}
.path-naps-gcf #block-cca-breadcrumbs-2,
.path-naps-gcf #block-cca-napgsptitle,
.path-nap-gsp #block-cca-breadcrumbs-2,
.path-nap-gsp #block-cca-napgsptitle {
  padding: 2.77778rem 0 0;
}
.path-naps-gcf #block-cca-breadcrumbs-2 .block-content,
.path-naps-gcf #block-cca-napgsptitle .block-content,
.path-nap-gsp #block-cca-breadcrumbs-2 .block-content,
.path-nap-gsp #block-cca-napgsptitle .block-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .path-naps-gcf #block-cca-breadcrumbs-2 .block-content,
  .path-naps-gcf #block-cca-napgsptitle .block-content,
  .path-nap-gsp #block-cca-breadcrumbs-2 .block-content,
  .path-nap-gsp #block-cca-napgsptitle .block-content {
    width: 100%;
    max-width: 767px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .path-naps-gcf #block-cca-breadcrumbs-2,
  .path-naps-gcf #block-cca-napgsptitle,
  .path-nap-gsp #block-cca-breadcrumbs-2,
  .path-nap-gsp #block-cca-napgsptitle {
    padding: 2rem 0 0;
  }
}
.path-naps-gcf #block-cca-napgsptitle,
.path-nap-gsp #block-cca-napgsptitle {
  padding: 10px 0 2.77778rem;
  background-color: #F9FAFE !important;
}
@media screen and (max-width: 1023px) {
  .path-naps-gcf #block-cca-napgsptitle,
  .path-nap-gsp #block-cca-napgsptitle {
    padding: 10px 0 2rem;
  }
}

.path-scala {
  line-height: 1.5;
}
.path-scala h1 {
  font-family: "SoehneBreit", "Helvetica", "Arial";
  line-height: 1.1;
  font-size: 40px;
  margin-bottom: 0;
  color: #000;
}
.path-scala h3.block-title {
  margin: 20px 0 20px;
  /*  border-top: 1px solid #eee; */
}
.path-scala .video-banner {
  height: auto;
}
.path-scala .video-banner .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  z-index: -1;
  overflow: hidden;
}
.path-scala .video-banner .video-content {
  padding: 50px 0 0;
}
@media (max-width: 767px) {
  .path-scala .video-banner .video-content {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.path-scala .video-banner .video-content h1 {
  text-align: start !important;
  /* background: rgba(0, 0, 0, 0.4);
   padding: 20px;*/
}
.path-scala .video-banner .video-content .body {
  padding: 30px 0;
}

.path-scala .video-banner {
  height: 600px;
}
@media (max-width: 767px) {
  .path-scala .video-banner {
    height: 400px;
  }
}

#block-cca-scalavideo .video-banner .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 767px) {
  #block-cca-scalavideo .video-banner .background-video {
    height: 400px;
  }
}

#block-cca-views-block-homepage-thematic-areas-block-2 h3 {
  font-family: "SoehneBreit", "Helvetica", "Arial";
}

.view-events .views-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px #036 solid;
}
.view-events .views-row .views-field {
  margin-bottom: 10px;
}
.view-events .views-row .views-field-field-event-date {
  font-size: 14px;
}

.resources-list .views-field-title a,
.view-events .views-field-title a {
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  font-size: 20px;
  color: black !important;
}

.path-scala .scala-project-wrapper .project-items .views-field-field-image {
  overflow: hidden;
  margin: 5px;
  width: 96%;
}

.path-scala .views-field-field-region {
  background: rgba(124, 124, 124, 0.6);
  padding: 0 15px;
  position: absolute;
  bottom: 0;
  width: 96%;
  height: 30px;
  overflow: hidden;
  transition: height 2s;
  margin: 0 0 5px 5px;
  color: #fff;
}

.path-scala .scala-project-wrapper .project-items .views-field-field-image img {
  transition: transform 1.75s linear;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.path-scala .scala-project-wrapper .views-field-field-image:hover img {
  transform: scale(1.2);
}

/* Resource detailed - Page title */
.page-type-resource .field--name-field-image img {
  width: 320px;
}
.page-type-resource .view-explore-resources .views-field-field-download a {
  color: #fff;
  background-color: #265f91;
  border-color: #21527d;
}
.page-type-resource .views-field-field-external-link a, .page-type-resource .btn-success {
  color: #fff;
  background-color: #abc4bf;
  border-color: #9cb9b4;
}

/* News detailed page SDG 
.page-type-news .taxonomy-terms {
  text-align: center;
}*/
/* CCA Resources Homepage - New layout */
.view-resources .view-filters {
  padding-bottom: 1.66667rem;
}

.view-resources .view-content {
  display: flex;
  flex-wrap: wrap;
}

.view-resources .view-content .card {
  margin-bottom: 1.66667rem;
  width: 100%;
  background-color: #F9FAFE;
}

@media (min-width: 768px) {
  .view-resources .view-content .card {
    width: 49%;
  }
}
.view-resources .view-content .card .views-field,
.view-resources .view-content .card .field-content {
  height: 100%;
}

.view-resources .view-content .card .card--content {
  height: 100%;
}

.view-resources .view-content .card .card--content.image {
  display: flex;
  flex-direction: column;
}

.view-resources .view-content .card .card--content .content {
  order: 1;
  padding: 0.83333rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .view-resources .view-content .card .card--content .content {
    height: 100%;
  }
}
.view-resources .view-content .card .card--content .content .content-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
}

.view-resources .view-content .card .card--content .content h5 {
  margin: 1rem 0;
}

.view-resources .view-content .card .card--content .content h5 a {
  color: #000;
  text-decoration: none;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 42.5em) {
  .view-resources .view-content .card .card--content .content h5 a {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 1.55556rem;
  }
}

.view-resources .view-content .card .card--content .content h5 a:hover,
.view-resources .view-content .card .card--content .content h5 a:focus {
  color: #0468B1;
}

.view-resources .view-content .card .card--content .content .category {
  align-self: self-start;
  font-size: 12px;
  font-size: 0.66667rem;
  text-transform: uppercase;
  background-color: #E0E1E4;
  padding: 5px 10px;
  display: inline;
  margin-right: 0.83333rem;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
}

.view-resources .view-content .card--content .content .content--date {
  font-size: 14px;
  font-weight: 400;
}

@media (min-width: 960px) {
  .view-resources .view-content .card .card--content .content .category {
    font-size: 14px;
    font-size: 0.77778rem;
  }
}
.view-resources .view-content .card .card--content .content .category.Webinar {
  background-color: #FCC30B;
}

.view-resources .view-content .card .card--content .content .category.Info {
  background-color: #B8ECB6;
}

.view-resources .view-content .card .card--content .content .content--link {
  margin-top: auto;
  padding-top: 1rem;
}

.view-resources .view-content .card .card--content .content .content--link a {
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.66667rem;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial, sans-serif;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 42.5em) {
  .view-resources .view-content .card .card--content .content .content--link a {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}

@media (min-width: 768px) {
  .view-resources .view-content .card .card--content .content .content--link a {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}
.view-resources .view-content .card .card--content .content .content--link a:hover,
.view-resources .view-content .card .card--content .content .content--link a:focus {
  color: #0468B1 !important;
  background-color: transparent;
}

.view-resources .view-content .card .card--content .content .content--link a:hover:before,
.view-resources .view-content .card .card--content .content .content--link a:focus:before,
.field--name-field-event-link a:hover::before,
.field--name-field-event-link a:focus::before {
  right: -34px;
  width: 35px;
  background-color: #0468B1;
}

.view-resources .view-content .card .card--content .content .content--link a:hover:after,
.view-resources .view-content .card .card--content .content .content--link a:focus:after,
.field--name-field-event-link a:hover::after,
.field--name-field-event-link a:focus::after {
  background-color: #0468B1;
  right: -40px !important;
}

.view-resources .view-content .card .card--content .content .content--link a:before,
.field--name-field-event-link a::before,
.views-field-field-report-download a::before {
  content: "";
  width: 0px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}

.view-resources .view-content .card .card--content .content .content--link a:after,
.field--name-field-event-link a::after,
.views-field-field-report-download a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5em;
  position: relative;
  right: 0;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.3s ease;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-position: center center;
  background-color: #000;
  -webkit-mask-image: url(../images/icon-chevron-right.svg);
  mask-image: url(../images/icon-chevron-right.svg);
}

.view-resources .view-content .card .card--content .content .content--link a.external_link:before {
  content: "";
  display: inline-block;
  width: 22px !important;
  height: 1.5em;
  position: absolute;
  right: 0 !important;
  top: 5px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  background-color: #000;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.1s ease;
  -webkit-mask-image: url(../images/icon-open-in-new.svg);
  mask-image: url(../images/icon-open-in-new.svg);
}
.view-resources .view-content .card .card--content .content .content--link a.external_link:after {
  -webkit-mask-image: url(../images/icon-open-in-new-arrow.svg);
  mask-image: url(../images/icon-open-in-new-arrow.svg);
  transition: all 0.1s ease;
}
.view-resources .view-content .card .card--content .content .content--link a.external_link:hover:before, .view-resources .view-content .card .card--content .content .content--link a.external_link:focus:before {
  background-color: #0468B1;
}
.view-resources .view-content .card .card--content .content .content--link a.external_link:hover:after, .view-resources .view-content .card .card--content .content .content--link a.external_link:focus:after {
  right: -5px !important;
  top: 0;
  transform: translate(0, -5px);
}

.view-resources .view-content .card .card--content .media {
  order: 0;
}

.view-resources .view-content .card .card--content .media .media--image {
  width: 100%;
}

.view-resources .view-content .card .card--content .media .media--image a {
  display: block;
  font-size: 0.55556rem;
}

.view-resources .view-content .card .card--content .media .media--image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}
@media (max-width: 500px) {
  .view-resources .view-content .card .card--content .media .media--image img {
    height: 100%;
  }
}

.view-resources .view-content .card.research-report {
  background-color: #fff;
}

@media (min-width: 960px) {
  .view-resources .view-content .card.research-report {
    width: 33.333%;
  }
}
.view-resources .view-content .card.research-report .views-field {
  background-color: #F9FAFE;
}

@media (min-width: 60em) {
  .view-resources .view-content .card.research-report .views-field {
    margin: 0 15px;
  }
}
@media (min-width: 768px) {
  .view-resources .view-content .card.research-report .card--content .media .media--image img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0% 0%;
    object-position: 0% 0%;
  }
}
.funding-source .field--name-description {
  width: 100%;
}

/* Search result page */
.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}

.search-advanced .form-details-wrapper {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border);
}

.search-advanced .form-wrapper {
  padding: 0.5rem 1.4rem;
}

ol.search-results {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
  list-style-type: none;
}

ol.search-results li {
  margin: 0 0 16px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Naps Ag code from old */
.path-naps-agriculture .layout--twocol-section {
  clear: both;
}
.path-naps-agriculture .view-scala-blocks .view-content {
  display: block;
}
.path-naps-agriculture .view-scala-related-items .views-row {
  float: left;
  width: 100%;
  clear: both;
  margin-bottom: 30px;
}
.path-naps-agriculture .view-scala-related-items .views-field-field-image {
  float: left;
  width: 28%;
  margin-right: 3%;
}
.path-naps-agriculture .view-scala-related-items .views-field-nothing {
  float: left;
  width: 69%;
}
.path-naps-agriculture .view-scala-related-items .views-field-nothing h2 {
  line-height: 1.2;
  margin-top: -3px;
}
.path-naps-agriculture .view-news a,
.path-naps-agriculture .view-videos .views-field-title a,
.path-naps-agriculture .view-events .views-field-title a,
.path-naps-agriculture .view-scala-related-items .news-title a,
.path-naps-agriculture .view-scala-related-items .views-field-title a,
.path-naps-agriculture .view-news-feed .views-field-title a,
.path-naps-agriculture .resource-title a {
  display: block;
  line-height: 1.3;
  color: #003366;
  font-family: "Proxima-Nova-Semibold";
  font-size: 20px;
  margin-bottom: 10px;
}
.path-naps-agriculture .naps-ag-news .views-field-field-image,
.path-naps-agriculture .naps-ag-resources .views-field-field-image {
  float: left;
  width: 19%;
  margin-right: 3%;
}
.path-naps-agriculture .naps-ag-news .views-field-nothing,
.path-naps-agriculture .naps-ag-resources .views-field-nothing {
  float: left;
  width: 75%;
}

/* Status message
-------------------------------------- */
.message {
  position: relative;
  color: #ffffff;
  text-shadow: none;
  margin: 20px 0;
  padding: 14px 14px 14px 64px;
}

.message em {
  color: #ffffff;
  font-style: italic;
  border-bottom: 1px dotted #ffffff;
}

.message p {
  margin: 0;
}

.message a, .message a:visited {
  color: #ffffff;
  text-decoration: none;
}

.message-status {
  background: #89ad32;
}

.message-status::before {
  content: "\f046";
  background-color: #759625;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: "\f071";
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: "\f06a";
  background-color: #a44707;
}

.message::before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  width: 53px;
  text-align: center;
  height: 100%;
  line-height: 53px;
  font-size: 30px;
}

.nav {
  padding-left: 0;
}

.nav > li > a {
  font-size: 0.75rem;
  padding: 10px;
}

.navbar {
  margin-bottom: 40px;
}

.navbar-default {
  border-color: transparent !important;
  background-color: #f8f8f8;
}

.navbar-default .navbar-nav > li > a {
  color: #000 !important;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  display: block;
}

/* ipad mini and Safari*/
@media (min-width: 425px) and (max-width: 1180px) {
  .navbar-default .navbar-nav > li > a {
    font-size: 14px;
    text-wrap: nowrap;
  }
  .navbar-nav {
    /* display: block !important; */
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
  }
}
/* Taxonomy Header block css */
#block-cca-taxonomyheaderblock {
  background-color: #F9FAFE;
  padding: 2.77778rem 0;
}

.taxonomy-term--header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .taxonomy-term--header {
    flex-direction: column;
    gap: 10px;
  }
}
.taxonomy-term--header .taxonomy-term--header--icon img {
  width: 100px;
  margin-right: 1.66667rem;
}
@media (max-width: 767px) {
  .taxonomy-term--header .taxonomy-term--header--icon img {
    padding: 12px !important;
    border-radius: 12px !important;
    width: 60px !important;
  }
}
.taxonomy-term--header h1 {
  font-family: "SoehneBreit";
  font-size: 40px;
  line-height: 2.44444rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .taxonomy-term--header h1 {
    font-size: 36px;
    line-height: 1.77778rem;
  }
}
.taxonomy-term--header .taxonomy-term--region {
  font-size: 24px;
  font-size: 1.33333rem;
  line-height: normal;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
}
@media (min-width: 42.5em) {
  .taxonomy-term--header .taxonomy-term--region {
    font-size: 28px;
    font-family: Proxima-Nova-Reg, "Helvetica", "Arial";
    font-size: 1.55556rem;
    line-height: 1.77778rem;
  }
}
.taxonomy-term--header #breadcrumb {
  padding: 0;
}

.taxonomy-term--header--content {
  width: 100%;
  /* For Thematic area header */
}
.taxonomy-term--header--content .header--content {
  width: 100%;
}

/* Field Label
-------------------------------------- */
[dir] .field:not(:last-child) {
  margin-bottom: 36px;
}

.field__label {
  font-family: "Proxima-Nova-Bold", Helvetica, Arial;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline .field__items {
  float: left;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline .field__items {
  float: right;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline > .field__item, [dir=ltr] .field--label-inline .field__items {
  padding-right: 0.5em;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline > .field__item, [dir=rtl] .field--label-inline .field__items {
  padding-left: 0.5em;
}

.field--label-inline .field__label::after {
  content: ":";
}

/* Calendar
-------------------------------------- */
.calendar-calendar .full {
  display: table;
}

.calendar-calendar .empty {
  display: table-cell;
}

.view-header {
  margin-bottom: 1rem;
}

.view .pager {
  margin: 1rem 0;
}

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

/* Newsfeed */
.view-news-feed .views-field-title a {
  display: block;
  line-height: 1.3;
  color: #000;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 20px;
  margin-bottom: 10px;
}

.path-resources .views-row {
  border-bottom: solid 1px #eee;
  padding: 20px 0;
}

/* Resouce page */
.page-type-resource li.taxonomy-term a {
  border: none;
}

.node-view-mode-full .node-taxonomy-container h3.term-title {
  font-size: 1rem !important;
}

.view-explore-resources .views-field-field-image,
.view-thematic-area-pages .views-field-field-image {
  float: left;
  margin-right: 20px;
}

.view-explore-resources .views-field-field-image img,
.view-thematic-area-pages .views-field-field-image img {
  width: 250px;
}

.view-explore-resources .views-row,
.view-thematic-area-pages .views-row {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  clear: both;
}

.view-explore-resources .resource-title a {
  display: block;
  line-height: 1.3;
  color: #000;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  margin-bottom: 10px;
  font-size: 24px;
}

.view-thematic-area-pages .resource-title a {
  display: block;
  line-height: 1.3;
  color: #000;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  margin-bottom: 10px;
  font-size: 20px;
}

/* Where we work - Countries */
/* Countries */
.path-all-countries .ui-accordion .ui-accordion-content {
  padding: 1em 1.5em;
}

.path-all-countries .view-all-countries .ui-accordion-content .views-row {
  display: inline-block;
  width: 25%;
  padding: 0 1% 0 0;
  margin-bottom: 10px;
  vertical-align: top;
}
@media (max-width: 767px) {
  .path-all-countries .view-all-countries .ui-accordion-content .views-row {
    width: 32%;
  }
}

.view-all-countries .views-row .views-field-name a {
  font-size: 18px;
  display: block;
  padding-top: 5px;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
}

.view-all-countries #views-exposed-form-all-countries-page-1 .js-form-type-textfield,
.view-all-countries #views-exposed-form-all-countries-page-1 .form-actions {
  display: inline-block;
}

.view-all-countries #views-exposed-form-all-countries-page-1 label, .view-all-countries #views-exposed-form-all-countries-page-1 input {
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid #f6f6f6 !important;
  background: #f6f6f6 !important;
  font-weight: normal;
  color: #000 !important;
}

/* All Projects */
.path-all-projects {
  /* .page-title-wrap h1.page-title {
      margin-bottom: 30px; 
   }*/
}
.path-all-projects .views-view-responsive-grid__item {
  margin-bottom: 40px;
}
.path-all-projects .views-field-title {
  margin-top: 10px;
}
.path-all-projects .views-field-title a {
  color: #000;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 28px;
}

.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) {
  padding-bottom: 1.66667rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 42.5em) {
  .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) {
    flex-direction: row;
    align-items: center;
  }
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item {
  flex: 1;
  width: 100%;
  position: relative;
  margin-right: 0.5em;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item:before {
  content: "";
  position: absolute;
  width: 1.11111rem;
  height: 1.11111rem;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 1.11111rem;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 1.11111rem;
  mask-position: center center;
  background-color: #000;
  cursor: pointer;
  left: 0.55556rem;
  top: 2.33333rem;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-type-textfield::before {
  display: none;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item label {
  font-weight: normal;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-ctype:before, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-field-resource-type-target-id:before, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-type-1:before, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-field-type-of-interventions-target-id:before {
  -webkit-mask-image: url(../images/icon-content-types.svg);
  mask-image: url(../images/icon-content-types.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-field-thematic-area-target-id::before {
  -webkit-mask-image: url(../images/icon-flag.svg);
  mask-image: url(../images/icon-flag.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-field-type-of-solutions-target-id:before {
  -webkit-mask-image: url(../images/icon-target.svg);
  mask-image: url(../images/icon-target.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-donors:before {
  -webkit-mask-image: url(../images/dollar.svg);
  mask-image: url(../images/dollar.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-field-region-target-id:before {
  -webkit-mask-image: url(../images/icon-flag.svg);
  mask-image: url(../images/icon-flag.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-region-target-id:before, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-term-node-tid-depth:before, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-tid:before, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-item-field-country-value:before {
  -webkit-mask-image: url(../images/icon-world.svg);
  mask-image: url(../images/icon-world.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item select {
  width: 100%;
  padding-left: 2.22222rem;
  -webkit-appearance: none;
  background-image: url(../images/icon-chevron-down.svg);
  background-position: calc(100% - 15px);
  background-size: 20px;
  background-repeat: no-repeat;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid #0468B1;
  color: #000;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item select:focus, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item select:focus-visible {
  outline: 0;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-item.form-type-textfield input {
  border: 2px solid #0468B1;
  width: 100%;
  padding: 10px;
  min-width: 250px;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1)#views-exposed-form-all-countries-page-1 .form-item {
  flex: 0;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1)#views-exposed-form-explore-resources-page-1 .form-type-entity-autocomplete input {
  padding-left: 35px;
  width: 325px;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1)#views-exposed-form-explore-resources-page-1 .form-item-field-region-target-id:before {
  -webkit-mask-image: url(../images/icon-world.svg);
  mask-image: url(../images/icon-world.svg);
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-actions {
  margin-top: 7px;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-actions .button {
  background-color: #FCC30B;
  border: 2px solid #FCC30B;
  color: #000;
  padding: 12px 20px;
  margin-right: 0;
  margin-left: 0;
  font-size: 0.83333rem;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Proxima-Nova-Bold", Helvetica, Arial, sans-serif;
}
.views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-actions .button:hover, .views-exposed-form:not(#views-exposed-form-project-explorer-page-1) .form-actions .button:focus {
  background-color: #000;
  border-color: #000;
  color: #fff !important;
}

#views-exposed-form-project-explorer-page-1 .form-item select {
  width: 100%;
  padding-left: 10px;
  -webkit-appearance: none;
  background-image: url(../images/icon-chevron-down.svg);
  background-position: calc(100% - 15px);
  background-size: 20px;
  background-repeat: no-repeat;
  padding-right: 50px;
  padding-top: 7px;
  padding-bottom: 7px;
  border: 2px solid #0468B1;
  color: #000;
}
#views-exposed-form-project-explorer-page-1 .form-item select:focus, #views-exposed-form-project-explorer-page-1 .form-item select:focus-visible {
  outline: 0;
}
#views-exposed-form-project-explorer-page-1 .form-item.form-type-textfield input {
  border: 2px solid #0468B1;
  padding: 7px 0;
}

/* Text align
-------------------------------------------- */
.text_left,
.text-left {
  text-align: left;
}

.text_right,
.text-right {
  text-align: right;
}

.text_center,
.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.center {
  margin: 0 auto;
}

/* Text Size
-------------------------------------------- */
.size-2x {
  font-size: 2rem;
}

.size-3x {
  font-size: 3rem;
}

.size-4x {
  font-size: 4rem;
}

.size-5x {
  font-size: 5rem;
}

.size-6x {
  font-size: 6rem;
}

.size-7x {
  font-size: 7rem;
}

.size-8x {
  font-size: 8rem;
}

/* column
-------------------------------------------- */
.full {
  position: relative;
  display: flex;
  width: 100%;
  gap: 1.4rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.one_half,
.one_three,
.one_four,
.one_four_first,
.one_four_last {
  flex: 1;
}

.full > div {
  flex: 1 0 250px;
}

/* Animation
-------------------------------------------- */
/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*slide Down */
@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* Custom components
-------------------------------------------- */
/* welcome message */
.welcome-message {
  text-align: center;
}

/* services */
.services {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.service {
  flex: 1 0 300px;
  padding: 2rem;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.service i {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  background: var(--light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s linear;
}

.service:hover i {
  background: var(--color-primary);
  color: #ffffff;
}

.service h3 {
  margin: 0.8em 0;
  font-weight: 300;
}

.service a.button,
.service a.button:visited {
  padding: 10px 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 18px;
  transition: background 0.5s linear;
}

.service a.button:hover {
  background: #222;
}

.service a.button::after {
  content: "\f105";
  padding-left: 10px;
  font-family: "FontAwesome";
}

/* Projects */
.projects {
  position: relative;
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.project {
  position: relative;
  flex: 1 0 300px;
}

.project img {
  position: relative;
}

.project-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  opacity: 0;
}

.project:hover .project-content {
  animation: slideUp 0.8s ease;
  opacity: 1;
}

.project-content h1,
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5 {
  font-weight: 300;
  color: #ffffff;
}

.project-content a,
.project-content a:visited,
.project-content a:hover {
  color: #ffffff;
}

/* Scroll To Top
------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background: var(--bold-color);
  color: #ffffff;
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.scrolltop i {
  font-size: 1.6rem;
  line-height: 1;
}

.scrolltop:hover {
  background: var(--color-primary);
}

/* Responsive view
------------------------- */
.view-in-mobile {
  display: block;
}

.view-in-desktop {
  display: none;
}

/* Inline content
------------------------- */
.inline {
  display: inline-block;
}

.inline:not(:last-child) {
  padding-right: 1rem;
}

/* Content direction
------------------------- */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

/* Font Size
------------------------- */
.font-small {
  font-size: 0.75rem;
}

.font-medium {
  font-size: 1.25rem;
}

.font-large {
  font-size: 1.5rem;
}

.font-2x {
  font-size: 2rem;
}

.font-3x {
  font-size: 2.5rem;
}

.font-4x {
  font-size: 3rem;
}

.font-5x {
  font-size: 4rem;
}

.font-6x {
  font-size: 5rem;
}

.font-7x {
  font-size: 6rem;
}

.font-8x {
  font-size: 7rem;
}

/* image icons size
------------------------- */
.icon-s {
  max-height: 1rem;
}

.icon-m {
  max-height: 1.5rem;
}

.icon-l {
  max-height: 2rem;
}

.icon-xl {
  max-height: 3rem;
}

.icon-x2 {
  max-height: 4rem;
}

.icon-x3 {
  max-height: 5rem;
}

.icon-x4 {
  max-height: 6rem;
}

.icon-x5 {
  max-height: 7rem;
}

.icon-x6 {
  max-height: 8rem;
}

.icon-x7 {
  max-height: 9rem;
}

.icon-x8 {
  max-height: 10rem;
}

/* Content width
------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}

/* Empty width and height
------------------------- */
.w20px {
  display: inline-block;
  width: 20px;
}

.w30px {
  display: inline-block;
  width: 30px;
}

.w40px {
  display: inline-block;
  width: 40px;
}

.w50px {
  display: inline-block;
  width: 50px;
}

.w70px {
  display: inline-block;
  width: 70px;
}

.w100px {
  display: inline-block;
  width: 100px;
}

.empty,
.spacer,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.empty,
.spacer {
  padding: 1rem 0;
}

.spacer-x2 {
  padding: 2rem 0;
}

.spacer-x3 {
  padding: 3rem 0;
}

/* Responsive Columns
------------------------- */
.unit {
  position: relative;
  display: block;
  width: 100%;
  padding: 3rem 0;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.item img {
  display: block;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Create Equal width columns with no gap */
.column {
  flex: 1 1 230px;
  margin: 0;
  padding: 0;
}

/* Column Alignment
------------------------- */
.space-between {
  justify-content: space-between;
}

.v-center {
  align-items: center;
}

.h-center {
  justify-content: center;
}

.vh-center {
  justify-content: center;
  align-items: center;
}

/* Box
------------------------- */
.box {
  position: relative;
  background-color: #ffffff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.box p:last-child {
  margin: 0;
}

/* Clearing
-------------------------------------------- */
.clear {
  clear: both;
  width: 100%;
}

#highlighted::before,
#last-section::before {
  content: "";
  display: table;
  clear: both;
}

#highlighted::after,
#last-section::after {
  content: "";
  display: table;
  clear: both;
}

#main-wrapper::before,
#homepage-content-wrapper::before,
#main-wrapper::after,
#homepage-content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.page-title-wrap::before,
.page-title-wrap::after,
.node-content::before,
.node-content::after {
  content: "";
  display: table;
  clear: both;
}

.node-header::before,
.node-header::after,
.node-taxonomy-container::before,
.node-taxonomy-container::after,
.node-links-container::before,
.node-links-container::after,
nav.pager::before,
nav.pager::after {
  content: "";
  display: table;
  clear: both;
}

#node-comment::before,
#node-comment::after {
  content: "";
  display: table;
  clear: both;
}

/* For icons on homepage to spead out as on CP */
#content-top .region-content-top {
  margin: 0;
}

/* Homepage - Area of work */
.view-areas-of-work .view-content {
  display: flex;
  padding-top: 4.16667rem;
  /* grid-template-columns: repeat(4, 1fr);
   gap:40px; */
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.view-areas-of-work .view-content .views-row {
  /*  width: 48%; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 20%;
  text-align: center;
  display: flex;
}
@media (max-width: 767px) {
  .view-areas-of-work .view-content .views-row {
    width: 40%;
  }
}
.view-areas-of-work .view-content .views-row .views-field-field-menu-image {
  background: #dfdada;
  padding: 20px;
  border-radius: 20px;
  /* width: 30%; */
}
@media (max-width: 767px) {
  .view-areas-of-work .view-content .views-row .views-field-field-menu-image {
    width: 50%;
  }
}
.view-areas-of-work .view-content .views-row .views-field-name {
  text-align: center;
}
@media (min-width: 42.5em) {
  .view-areas-of-work .view-content .views-row {
    /*  width: 30%; */
  }
}
@media screen and (min-width: 60em) {
  .view-areas-of-work .view-content .views-row {
    margin-bottom: 2rem;
  }
}
.view-areas-of-work .view-content .views-row a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}
.view-areas-of-work .view-content .views-row img {
  width: 37px;
  height: auto;
  transition: all 0.2s linear;
}
.view-areas-of-work .view-content .views-row img:hover {
  transform: scale(1.1);
}

.newsletter-block h5 {
  font-size: 24px;
  font-size: 1.33333rem;
  line-height: 1.55556rem;
  margin: 40px 0 20px;
}
@media (max-width: 767px) {
  .newsletter-block h5 {
    font-size: 18px;
    font-size: 1rem;
    line-height: 1.33333rem;
    line-height: normal;
    margin: 20px 0;
  }
}

@media (max-width: 500px) {
  .search-box-content input[type=search] {
    padding: 15px;
  }
  .search-box-content input[type=submit] {
    padding: 10px 20px;
  }
  .align-left,
  img.align-left,
  figure.align-left,
  .align-right,
  img.align-right,
  figure.align-right,
  .align-center,
  img.align-center,
  figure.align-center {
    clear: both;
    margin: 0 auto;
    float: none;
  }
  /* Layout -> Sidebar */
  .home-slider h1,
  .home-slider h2,
  .home-slider h3 {
    font-size: 1.6rem;
  }
  /* Homepage -> Slider */
  .home-slider p {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
  }
  /* Layout -> Sidebar */
  .sidebar,
  #sidebar-left,
  #sidebar-right,
  .two-sidebar #sidebar-left {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  /* Video responsive SCALA mobile */
  .views-view-responsive-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  /* Footer */
  .footer-blocks {
    flex-direction: column;
  }
  .footer-block {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 1.6rem;
  }
  .scala-project-wrapper .col-sm-4 {
    width: 100% !important;
  }
  /* SCALA Resource page responsive for mobile + NAP GCF*/
  .microsite-news-list .views-row {
    flex-direction: column;
  }
  .microsite-news-list .views-field-field-image {
    width: 100% !important;
  }
  .microsite-news-list .views-field-nothing {
    width: 100% !important;
  }
  .microsite-news-list .views-field-title a {
    font-size: 18px !important;
  }
  .microsite-news-list .views-field-nothing p {
    font-size: 16px !important;
  }
  .view-explore-resources .views-field-field-image img {
    width: 100%;
  }
  .view-explore-resources .resource-title a {
    font-size: 18px !important;
  }
  .scala-main-video .views-row {
    flex-direction: column;
  }
  .path-scala h1, .path-naps-gcf h1, .path-nap-gsp h1 {
    font-size: 23px !important;
  }
  .center-content {
    margin: 0px !important;
  }
  .nap-gcf-map {
    display: none;
  }
}
@media only screen and (min-width: 501px) and (max-width: 767px) {
  /* Layout -> Column */
  .one_four,
  .one_four_first,
  .one_four_last {
    width: 50%;
    padding: 2%;
  }
  /* Homepage -> Slider */
  .home-slider h1,
  .home-slider h2,
  .home-slider h3 {
    font-size: 2rem;
  }
  .home-slider p {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  /* Sidebar */
  .sidebar,
  #sidebar-left,
  #sidebar-right,
  .two-sidebar #sidebar-left {
    float: left;
    width: 50%;
    height: 100%;
    margin: 0;
  }
  #sidebar-left {
    float: left;
    padding: 0 1% 0 0;
  }
  #sidebar-right {
    float: right;
    padding: 0 0 0 1%;
  }
  /* Footer */
  .footer-block {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    margin-bottom: 1.6em;
  }
  .footer-block:nth-child(even) {
    padding: 0;
  }
  .footer-block {
    padding-right: 1.6em;
  }
  .center-content {
    margin: 0px !important;
  }
  .nap-gcf-map {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  body {
    -webkit-text-size-adjust: none; /* none for no scaling */
  }
  .container {
    width: 100%;
    max-width: 767px;
    padding: 0 20px;
  }
  #mc_embed_signup_scroll {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  #mc_embed_signup_scroll .mc-field-group input {
    width: 100%;
  }
  /* Admin tabs */
  .page-tabs li {
    font-size: 0.9rem;
  }
  .page-tabs li a {
    padding: 2px 4px;
    border-right: 1px solid #ffffff;
  }
  /* Layout -> Header -> Header top*/
  .header-container {
    padding: 6px 0;
    align-items: center;
  }
  .header-top-container {
    flex-direction: column;
  }
  .header-top-left {
    margin-bottom: 6px;
  }
  .header-top-left i,
  ul.social-icons li {
    font-size: 0.8rem;
  }
  .header-top-left i,
  ul.social-icons li a {
    width: 30px;
    height: 30px;
  }
  .search-icon {
    padding: 10px 0 10px 10px;
  }
  .search-box-content {
    width: 90%;
  }
  .main-menu,
  .region-primary-menu .menu {
    display: none;
  }
  .active-menu .main-menu,
  .active-menu .region-primary-menu .menu {
    display: block;
  }
  .mobile-menu {
    display: block;
    float: right;
  }
  .menu-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    transform: translateX(-100%);
    transition: all 0.4s ease;
    padding-top: 30px;
    overflow-y: scroll;
  }
  .active-menu .menu-wrap {
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(0);
  }
  .active-menu .menu-wrap ul.main-menu,
  .active-menu .menu-wrap ul.menu {
    overflow-y: scroll;
  }
  .active-menu .menu-wrap ul.main-menu > li,
  .active-menu .menu-wrap ul.menu > li {
    display: block;
    float: none;
  }
  .active-menu .menu-wrap ul.main-menu a,
  .active-menu .menu-wrap ul.menu a {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
  }
  .active-menu .menu-wrap .dropdown-arrow {
    position: absolute;
    right: 5px;
    top: 0;
    font-size: 30px;
    z-index: 10;
    padding: 10px;
  }
  .active-menu ul.main-menu ul.submenu,
  .active-menu ul.menu ul.submenu {
    position: relative;
    display: block;
    top: 0;
    opacity: 1;
  }
  .active-menu ul.main-menu ul.submenu::before,
  .active-menu ul.main-menu ul.submenu::after,
  .active-menu ul.menu ul.submenu::before,
  .active-menu ul.menu ul.submenu::after {
    content: "";
    display: table;
    clear: both;
  }
  .active-menu ul.main-menu ul.submenu li,
  .active-menu ul.menu ul.submenu li {
    position: relative;
    width: 100%;
    padding: 0 10px;
    background: none;
    text-align: right;
  }
  .active-menu ul.main-menu ul.submenu li a,
  .active-menu ul.menu ul.submenu li a {
    display: block;
    width: 100%;
  }
  .active-menu ul.main-menu li a,
  .active-menu ul.menu li a {
    border-bottom: 1px solid #434343;
  }
  ul.main-menu > li > span,
  .region-primary-menu .menu > li > span {
    color: #ffffff;
  }
  .active-menu .close-mobile-menu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 5px;
  }
  /* Slider */
  .owl-item {
    text-align: center;
  }
  /* Breadcrumb */
  #breadcrumb {
    padding: 2rem 0;
  }
  .breadcrumb {
    font-size: 0.8rem;
  }
  .breadcrumb-item-seperator {
    margin: 0 6px;
  }
  /* Layout -> Page layout */
  .no-sidebar .main-container,
  .sidebar-left .main-container,
  .sidebar-right .main-container,
  .two-sidebar .main-container {
    grid-template-columns: 100%;
  }
  #main {
    order: 1;
  }
  #sidebar-left {
    order: 2;
  }
  #sidebar-right {
    order: 3;
  }
  /* Node Content */
  .page-title-wrap {
    padding: 16px 0;
  }
  #node-comment .indented {
    margin-left: 20px;
  }
  /* Video responsive SCALA tablet*/
  .views-view-responsive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Layout -> Footer */
  #footer {
    position: relative;
    z-index: 2;
  }
  .footer-blocks {
    flex-wrap: nowrap;
  }
  .footer-bottom-middle {
    flex-direction: column;
  }
  .copyright {
    margin-bottom: 12px;
  }
  /* Content -> Form */
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
  /* shortcodes -> content width */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  /* shortcodes -> responsive column */
  .w10 {
    flex-basis: calc(10% - 10px);
  }
  .w20 {
    flex-basis: calc(20% - 10px);
  }
  .w30 {
    flex-basis: calc(30% - 10px);
  }
  .w40 {
    flex-basis: calc(40% - 10px);
  }
  .w50 {
    flex-basis: calc(50% - 10px);
  }
  .w60 {
    flex-basis: calc(60% - 10px);
  }
  .w70 {
    flex-basis: calc(70% - 10px);
  }
  .w80 {
    flex-basis: calc(80% - 10px);
  }
  .w90 {
    flex-basis: calc(90% - 10px);
  }
}
/* Event detailed page */
.page-type-events .page-title-wrap h1.page-title,
.page-type-videos .page-title-wrap h1.page-title,
.page-type-news .page-title-wrap h1.page-title,
.page-type-resource .page-title-wrap h1.page-title,
.page-type-project .page-title-wrap h1.page-title {
  font-family: "Proxima-Nova-Bold", Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-size: 1.66667rem;
  line-height: 1.88889rem;
  margin: 0;
  text-transform: none;
}
@media (min-width: 42.5em) {
  .page-type-events .page-title-wrap h1.page-title,
  .page-type-videos .page-title-wrap h1.page-title,
  .page-type-news .page-title-wrap h1.page-title,
  .page-type-resource .page-title-wrap h1.page-title,
  .page-type-project .page-title-wrap h1.page-title {
    font-size: 32px;
    font-size: 1.77778rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 60em) {
  .page-type-events .page-title-wrap h1.page-title,
  .page-type-videos .page-title-wrap h1.page-title,
  .page-type-news .page-title-wrap h1.page-title,
  .page-type-resource .page-title-wrap h1.page-title,
  .page-type-project .page-title-wrap h1.page-title {
    font-size: 40px;
    line-height: 1.1;
  }
}

/* Video detailed page */
.page-type-videos iframe {
  width: 540px;
  height: 305px;
}

.page-type-videos .layout__region--first .node-taxonomy-container {
  padding-top: 0;
}

.view-date-field {
  font-size: 14px;
  font-size: 0.77778rem;
}
@media (min-width: 60em) {
  .view-date-field {
    font-size: 18px;
    font-size: 1rem;
    margin-top: 1.1rem;
  }
}

/* News detailed - Page title */
.page-type-news .page-title-wrap {
  position: relative;
  margin: 0;
}
.page-type-news .view-news-image-and-credit {
  margin-bottom: 30px;
}
.page-type-news .field--type-image,
.page-type-news .views-field-field-image {
  text-align: center;
  margin-top: 20px;
}
.page-type-news .news-sdg ul {
  text-align: center;
}

.news-content-section,
.field--name-description,
.center-content {
  margin: 0 auto;
  width: 65%;
}
@media (max-width: 767px) {
  .news-content-section,
  .field--name-description,
  .center-content {
    margin: 20px 0;
    width: 100%;
  }
}

.news-footer h3,
.resource-footer h3 {
  /*   font-family: "SoehneBreit";
   font-size: 20px;*/
}
.news-footer li.taxonomy-term,
.resource-footer li.taxonomy-term {
  display: block;
}

.resource-footer {
  margin-top: 30px;
}

.frontpage .news-view-tile {
  margin-top: 20px;
}

/* New */
.news-view-tile {
  /* End of view header */
  /* End of view-content */
}
.news-view-tile .view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .news-view-tile .view-header {
    flex-direction: column;
    align-items: start;
  }
}
.news-view-tile .view-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  clear: both;
}
.news-view-tile .view-content .views-row {
  margin-bottom: 1.66667rem;
  width: 100%;
  background-color: #F9FAFE;
}
@media (min-width: 768px) {
  .news-view-tile .view-content .views-row {
    width: 49%;
  }
}
.news-view-tile .view-content .views-row .views-field-nothing {
  height: 100%;
}
.news-view-tile .view-content img {
  height: 360px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-view-tile .card--content.image {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .news-view-tile .card--content.image {
    justify-content: start;
  }
}
.news-view-tile .card--content {
  height: 100%; /* For scala hp - featured news - read more alignment */
}
.news-view-tile .card--content .content {
  order: 1;
  padding: 0.83333rem;
  display: flex;
  flex-direction: column;
  height: auto;
  /* height: 100%; */
}
@media (min-width: 1024px) {
  .news-view-tile .card--content .content {
    height: 100%;
  }
}
.news-view-tile .card--content .content .content-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
}
.news-view-tile .card--content .content h4 {
  margin: 1rem 0;
}
.news-view-tile .card--content .content h4 a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 18px;
  line-height: normal;
  padding: 0;
  background-color: transparent;
  text-transform: none;
}
@media (min-width: 42.5em) {
  .news-view-tile .card--content .content h4 a {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 1.55556rem;
  }
}
.news-view-tile .card--content .content .category {
  align-self: self-start;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #BCE5F3;
  color: #000;
  padding: 5px 10px;
  display: inline;
  margin-right: 0.83333rem;
  font-family: "Proxima-Nova-Bold";
}
.news-view-tile .card--content .content .content--date {
  font-size: 14px;
  font-weight: 400;
}
.news-view-tile .card--content .content .content--link {
  margin-top: auto;
  padding-top: 1rem;
}
.news-view-tile .card--content .content .content--link a:before {
  content: "";
  width: 0px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}
.news-view-tile .card--content .content .content--link a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.4em;
  position: relative;
  right: 0;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  -webkit-mask-image: url(../images/icon-chevron-right.svg);
  mask-image: url(../images/icon-chevron-right.svg);
  background-color: #000;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.3s ease;
}
.news-view-tile .card--content .content .content--link a:hover, .news-view-tile .card--content .content .content--link a:focus {
  color: #0468B1 !important;
  background-color: transparent;
}
.news-view-tile .card--content .content .content--link a:hover:before, .news-view-tile .card--content .content .content--link a:focus:before {
  right: -34px;
  width: 35px;
  background-color: #0468B1;
}
.news-view-tile .card--content .content .content--link a:hover:after, .news-view-tile .card--content .content .content--link a:focus:after {
  background-color: #0468B1;
  right: -40px !important;
}
.news-view-tile .card--content .content .content--link a.external_link:before {
  content: "";
  display: inline-block;
  width: 22px !important;
  height: 1.5em;
  position: absolute;
  right: 0 !important;
  top: 5px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  background-color: #000;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.1s ease;
  -webkit-mask-image: url(../images/icon-open-in-new.svg);
  mask-image: url(../images/icon-open-in-new.svg);
}
.news-view-tile .card--content .content .content--link a.external_link:after {
  -webkit-mask-image: url(../images/icon-open-in-new-arrow.svg);
  mask-image: url(../images/icon-open-in-new-arrow.svg);
  transition: all 0.1s ease;
}
.news-view-tile .card--content .content .content--link a.external_link:hover:before, .news-view-tile .card--content .content .content--link a.external_link:focus:before {
  background-color: #0468B1;
}
.news-view-tile .card--content .content .content--link a.external_link:hover:after, .news-view-tile .card--content .content .content--link a.external_link:focus:after {
  right: -5px !important;
  top: 0;
  transform: translate(0, -5px);
}
.news-view-tile .card--content .content a {
  font-weight: 400;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.66667rem;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 42.5em) {
  .news-view-tile .card--content .content a {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}
.news-view-tile .card--content .content .text-div a {
  font-weight: 400;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.66667rem;
  font-family: Proxima-Nova-Reg, "Helvetica", "Arial";
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 42.5em) {
  .news-view-tile .card--content .content .text-div a {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}
.news-view-tile .card--content .media {
  order: 2;
}
.news-view-tile .featured-news {
  width: 70%;
}
@media (max-width: 768px) {
  .news-view-tile .featured-news {
    width: 100%;
  }
}
.news-view-tile .featured-news .view-content {
  display: block;
}
.news-view-tile .featured-news .view-content .views-row {
  width: 100%;
}
.news-view-tile .featured-news .card--content.image {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .news-view-tile .featured-news .card--content.image {
    flex-direction: column;
  }
}
.news-view-tile .featured-news .card--content .content {
  padding: 0.83333rem;
  order: 0;
  width: 50%;
}
@media (min-width: 1024px) {
  .news-view-tile .featured-news .card--content .content {
    height: auto;
  }
}
.news-view-tile .featured-news .card--content .media {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .news-view-tile .featured-news .card--content .content,
  .news-view-tile .featured-news .card--content .media {
    width: 100%;
  }
  .news-view-tile .featured-news .card--content .content {
    order: 2;
  }
  .news-view-tile .featured-news .card--content .media {
    order: 1;
  }
}
.news-view-tile.donors-tile .view-content {
  justify-content: normal;
  gap: 20px;
}
@media (min-width: 1024px) {
  .news-view-tile.donors-tile .view-content .views-row {
    width: 32%;
  }
}
.news-view-tile.donors-tile .view-content img {
  height: 270px;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}

/* End of news */
.path-news .news-view-tile .view-header {
  justify-content: end;
}

/*  New page all taxonomy terms were moving in the center, only SDGs should go , so removing this.
.page-type-news ul.taxonomy-terms .image-field{
    text-align: center;
  }
   */
.news-header-links a {
  margin-left: 10px;
  line-height: 1.3;
  color: #003366;
  font-family: "Proxima-Nova-Semibold", "Helvetica", "Arial";
  font-size: 20px;
  margin-bottom: 10px;
}

/* home page - Video title colour change*/
.view-homepage-news .views-field-title a {
  font-size: 20px;
  color: #000;
  font-family: "Proxima-Nova-Reg", "Helvetica", "Arial";
}

.section-header {
  width: 25%;
}
@media (max-width: 768px) {
  .section-header {
    width: 100%;
    margin-bottom: 20px;
  }
}
.section-header h3 {
  font-size: 2.22rem;
  line-height: 2rem;
  font-family: "SoehneBreit", "Helvetica", "Arial";
  color: #000;
  text-transform: uppercase;
  margin: 40px 0 20px;
}
@media (max-width: 767px) {
  .section-header h3 {
    font-size: 30px;
    font-size: 1.66667rem;
    line-height: 1.44444rem;
    margin: 0;
  }
}
.section-header .see-all {
  text-transform: uppercase;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 15px !important;
  color: #000;
}

/* End of section header */
/* Projects of NAP GCF and SCALA - Start*/
/*.path-naps-gcf .view-scala-blocks .views-field-field-image, */
.path-scala .view-scala-blocks .views-field-field-image {
  overflow: hidden;
  margin: 5px;
  width: 96%;
}

/* .path-naps-gcf  .view-scala-blocks .views-field-field-image img,*/
.path-scala .view-scala-blocks .views-field-field-image img {
  transition: transform 1.75s linear;
}

.path-scala .view-scala-blocks .views-field-field-image img:hover {
  transform: scale(1.2);
}

.path-naps-gcf .view-scala-blocks .views-field-field-image img,
.path-scala .view-scala-blocks .views-field-field-image img {
  transition: transform 1.75s linear;
}

.path-naps-gcf .view-scala-blocks .views-field-field-image img,
.path-scala .view-scala-blocks .views-field-field-image img {
  overflow: hidden;
}

.path-naps-gcf .naps-gcf-countries .view-content {
  gap: 10px;
}
@media (max-width: 767px) {
  .path-naps-gcf .naps-gcf-countries .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.path-naps-gcf .naps-gcf-countries .view-content .views-field-field-region a {
  display: block;
}
.path-naps-gcf .naps-gcf-countries .view-content .views-field-field-region a:hover {
  color: #000;
}

.path-scala .views-field-field-region {
  background: rgba(124, 124, 124, 0.6);
  padding: 0 15px;
  position: absolute;
  bottom: 0;
  width: 96%;
  height: 30px;
  overflow: hidden;
  transition: height 2s;
  margin: 0 0 5px 5px;
  color: #7b18de;
}

.path-scala .views-field-field-region a {
  color: #fff;
  display: block;
  padding: 3px 0;
}

/* .path-naps-gcf  .view-scala-blocks .view-content, */
.path-scala .view-scala-blocks .view-content {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 768px) {
  .path-scala .view-scala-blocks .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .path-scala .view-scala-blocks .view-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.path-scala .view-scala-blocks .view-content .views-row {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .path-scala .view-scala-blocks .view-content .views-row {
    width: 270px;
  }
}

.path-naps-gcf .view-scala-blocks .view-content .views-row {
  position: relative;
}

/* Projects of NAP GCF and SCALA - End*/
/* Project detailed pages - start 
.page-type-project .page-title {
    display: none;
  }*/
.page-type-project .layout-tabs {
  margin-top: 20px;
  display: flex;
  gap: 5px;
  padding-left: 0;
  border-bottom: 1px solid #aaa;
  padding-bottom: 0;
}

.project-data-field .taxonomy-terms .taxonomy-term {
  padding: 0;
}

.project-banner {
  position: relative;
}

.project-banner.layout.layout--onecol .block-content .field--type-image img {
  width: 100%;
}

.tabs li {
  padding: 0;
}

.tabs li a {
  background-color: #ddd;
  padding: 10px 15px;
  color: #000;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.tabs li a.is-active {
  color: #555;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 5px 5px 0 0;
  border-bottom: 0;
  margin-bottom: -1px;
}

.tabs-left {
  padding: 0;
  border-right: 1px solid #ddd;
}

.tabs-left > li {
  margin-right: -1px;
}

.tabs-left > li > a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  display: block;
  padding: 10px 15px;
  color: #222;
}

.tabs-left > li > a:hover,
.tabs-left > a:focus {
  text-decoration: none;
  background-color: #eee;
  border-color: #eee #eee #ddd;
}

.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: #ddd;
  border-right-color: transparent;
}

.project-banner .project-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
}

.project-title span {
  font-family: "Proxima-Nova-Bold";
  color: black;
  text-align: center;
  font-size: 24px;
  width: 100%;
  display: block;
}

.project-overview {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

.project-overview .project-body {
  float: left;
  width: 65%;
  margin-right: 5%;
}

.project-section {
  padding: 10px 16px;
  margin-bottom: 10px;
}

.project-overview .project-map {
  float: left;
  width: 30%;
}

.project-map .field--name-field-project-location {
  margin-bottom: 15px;
}

.expected-outcome {
  clear: both;
  background-color: #d5edfb;
}

.col-xs-1,
.col-xs-2,
.col-xs-10,
.col-sm-6,
.col-xs-3,
.col-xs-9,
.col-sm-4,
.col-md-8,
.col-md-4 {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1,
.col-xs-2 {
  padding: 0;
}

.col-sm-4 {
  width: 100%;
}
@media (min-width: 42.5em) {
  .col-sm-4 {
    width: 32.9999%;
  }
}

.col-xs-3 {
  width: 25%;
}

.col-xs-9 {
  width: 75%;
}

.col-md-8 {
  width: 66.66666667%;
}

.col-md-4 {
  width: 33.33333333%;
}

.project-newsfeed .col-sm-4,
.details-view .col-sm-4 {
  width: 100%;
  padding: 0;
}

.project-details-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.project-data-field {
  width: 47%;
  margin-bottom: 20px;
}

.project-data-field .node-taxonomy-container {
  padding: 0;
}

.project-data-field .col-xs-2 {
  width: 16.66666667%;
  padding: 0 15px;
}

.project-data-field .col-xs-10 {
  width: 83.33333333%;
}

.project-data-field .small-label {
  margin-top: 10px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

.project-data-field .taxonomy-terms .taxonomy-term {
  display: block;
}

.project-partners .views-field-field-image {
  text-align: center;
  /*  border-bottom: solid 1px #ccc; */
  padding-bottom: 20px;
}

.project-partners .col-sm-4 {
  width: 100%;
  margin-bottom: 20px;
}

.node-project-details .nav-tabs li {
  list-style: none;
  padding: 0;
}

.node-project-details .nav-tabs li a {
  color: #222;
  font-size: 16px;
}

.node-project-details .nav-tabs li.active a {
  color: #555;
}

.tab-content > .tab-content-details {
  display: none;
}

.tab-content > .tab-content-details.active {
  display: block;
}

.project-sdg ul {
  display: flex;
  gap: 20px;
}

.project-sdg li img {
  width: 100px;
}

.tab-content-details .project-details-wrapper {
  display: flex;
  margin-top: 30px;
}

.tab-content-details .views-element-container {
  width: 100%;
}

.tab-content-details .project-details-wrapper .view {
  padding: 0;
}

.tab-content-details .project-details-wrapper .views-field {
  display: flex;
  margin-bottom: 10px;
}

.tab-content-details .project-details-wrapper .views-field span,
.tab-content-details .project-details-wrapper .views-field div {
  flex: 1;
}

.tab-content-details .project-details-wrapper .views-field ul {
  padding: 0;
}

.tab-content-details .project-details-wrapper .views-field li {
  list-style: none;
  padding: 0;
}

#tab-reports h3 {
  font-size: 1.1rem;
}

.paragraph--type--contacts .field {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .project-banner img {
    margin: 0;
  }
  .project-banner .project-title {
    padding: 7px 20px;
  }
  .project-title span {
    font-size: 12px;
  }
  .project-overview .project-map,
  .project-overview .project-body {
    width: 100%;
    margin-right: 0;
  }
  .project-data-field {
    width: 100%;
  }
  .project-data-field .col-xs-2 {
    width: 25%;
  }
  .project-data-field .col-xs-10 {
    width: 74%;
  }
  #tab-project-summary .col-md-8,
  #tab-project-summary .col-md-4 {
    width: 100%;
  }
  .node-view-mode-project-details .col-xs-3 {
    width: 100%;
    margin-right: 2%;
  }
  .node-view-mode-project-details .col-xs-3 .nav-tabs li {
    display: inline-block;
  }
  .node-view-mode-project-details .col-xs-9 {
    width: 100%;
  }
  .node-view-mode-project-details .col-sm-4 {
    width: 100%;
    margin-bottom: 15px;
  }
  .col-xs-2,
  .col-xs-10,
  .col-sm-6,
  .col-xs-3,
  .col-xs-9,
  .col-sm-4,
  .col-md-8,
  .col-md-4 {
    padding: 0;
  }
  .layout-tabs {
    margin-top: 10px;
  }
  .project-partners .col-sm-4 {
    margin-bottom: 10px;
  }
  .project-partners img {
    width: 100px;
  }
}
/* Project detailed pages - end */
/*Timeline css for Projects */
.paragraph--type--timeline-main {
  width: 840px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 50px;
  border-top: 2px dotted #dee5e6;
}

.paragraph--type--timeline-main .field-item {
  position: absolute;
  width: 60px;
  top: -32px;
  text-align: center;
  z-index: 100;
}

.bdot {
  border: 2px solid #000;
  width: 47px;
  height: 47px;
  border-radius: 50px;
  margin-top: -4px;
}

.dot {
  position: relative;
  background-color: #437cb7;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.dot:hover {
  border: 2px solid rgb(70, 166, 208);
}

.dot:hover span {
  top: 11px;
}

.dot span {
  position: absolute;
  top: 13px;
  left: 3px;
  font-size: 13px;
  font-weight: normal;
  padding: 0 5px;
}

.t_description {
  font-size: 12px;
  width: 220px;
  margin-top: 5px;
  display: none;
  background-color: #ffffff;
  padding: 4px;
  border: 2px solid #46a6d0;
  margin-left: -60px;
  font-weight: bold;
}

.dotSelected {
  border: 2px solid rgb(70, 166, 208);
}

/* Timeline responsive for Projects */
@media (max-width: 767px) {
  .paragraph--type--timeline-main {
    border-top: 0;
  }
  .paragraph--type--timeline-main .field-item {
    position: relative;
    left: 0 !important;
    width: 100%;
    margin-bottom: 25px;
    float: left;
    clear: both;
  }
  .dot {
    margin: 0;
    text-align: center;
    float: left;
  }
  .t_description {
    width: 145px;
    display: block !important;
    margin-top: 10px;
    margin-left: 10px;
    float: left;
  }
  .view-project-explorer {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .view-project-explorer .view-filters,
  .view-project-explorer .view-content {
    width: 100%;
  }
}
/*Project Explorer*/
.view-project-explorer .view-filters, .view-display-id-regional_project_explorer .view-filters,
.view-project-explorer .view-content, .view-display-id-regional_project_explorer .view-content {
  width: 100%;
}

.view-project-explorer .view-filters, .view-display-id-regional_project_explorer .view-filters {
  padding: 0;
}

.view-project-explorer .view-filters .views-exposed-widget, .view-display-id-regional_project_explorer .view-filters .views-exposed-widget {
  padding-right: 0;
}

.view-project-explorer .view-filters .views-exposed-widget.views-submit-button,
.view-display-id-regional_project_explorer .view-filters .views-exposed-widget.views-submit-button {
  padding-right: 15px;
}

.view-project-explorer .view-filters, .view-display-id-regional_project_explorer .view-filters {
  position: relative;
  float: left;
  width: 41.66666667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .view-project-explorer .view-filters, .view-display-id-regional_project_explorer .view-filters {
    width: 100%;
    padding: 0;
  }
}

.view-display-id-regional_project_explorer .view-content {
  position: relative;
  float: left;
  width: 58.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #036;
  padding: 16px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .view-display-id-regional_project_explorer .view-content {
    width: 100%;
    padding: 0;
  }
}

.view-project-explorer .view-content {
  position: relative;
  float: left;
  width: 58.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 16px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .view-project-explorer .view-content {
    width: 100%;
    padding: 0;
  }
}

.view-project-explorer .view-filters .form-item {
  width: 100%;
  float: left !important;
  margin-bottom: 10px;
}

.view-project-explorer .view-filters .form-item input,
.view-project-explorer .view-filters .form-item select {
  padding: 4px 0;
  width: 100%;
}

/* 
.path-project-maps-explorer .page-title-wrap h1.page-title {
 margin-bottom: 60px; 
  @media (max-width: 767px) {
    margin-bottom: 20px;
  }
}*/
.photo-credit {
  display: flex;
  justify-content: end;
  padding-top: 10px;
  margin-bottom: -20px;
}
.photo-credit .block-title {
  float: left;
  color: #8E8E8E;
  font-family: var(--font-text), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.9rem !important;
  font-weight: 400;
  line-height: inherit;
}
.photo-credit .block-content {
  float: left;
  margin-left: 5px;
  font-size: 16px;
}
.photo-credit .field--name-field-image-credit {
  padding: 0;
}

/* New style */
.page-type-project .node-header .field--name-field-image {
  margin: 0 !important;
}
.page-type-project .node-header .field--name-field-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.page-type-project .node-header .page-title-wrap {
  position: absolute;
  bottom: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-type-project .node-header .page-title-wrap {
    position: relative;
    padding: 10px 0 0;
    background: transparent;
  }
}
.page-type-project .node-header .page-title-wrap h1 {
  font-size: 30px;
}
.page-type-project .node-project-details .nav-tabs {
  border: 1px solid #ddd;
  border-bottom: 0;
}
.page-type-project .node-project-details .nav-tabs li {
  border-bottom: 1px solid #ddd;
  margin: 0;
}
.page-type-project .node-project-details .nav-tabs li.active {
  background-color: #ddd;
}
.page-type-project .node-project-details .nav-tabs li a {
  color: #000;
  background: transparent;
}
.page-type-project .photo-credit {
  margin-bottom: 0;
}
.page-type-project .project-content-wrapper {
  margin: 30px 0;
}
.page-type-project .project-details-wrapper,
.page-type-project .expected-outcome {
  margin-bottom: 30px;
}
.page-type-project .tab-content-details .project-details-wrapper .views-field li {
  display: block;
}
@media screen and (max-width: 767px) {
  .page-type-project .col-xs-3,
  .page-type-project .col-xs-9 {
    width: 100%;
  }
  .page-type-project .tabs-left {
    display: none;
  }
}
.page-type-project .mobile-tab-header {
  background-color: #ddd;
  padding: 10px;
  margin-bottom: 10px;
}
.page-type-project .mobile-tab-header a {
  color: #000;
  display: block;
  position: relative;
}
.page-type-project .mobile-tab-header a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-chevron-right.svg);
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.page-type-project .mobile-tab-header.active {
  margin-bottom: 0;
}
.page-type-project .mobile-tab-header.active a::after {
  transform: rotate(-90deg);
  top: 0;
}
@media screen and (min-width: 768px) {
  .page-type-project .mobile-tab-header {
    display: none;
  }
}

/* Icon of Thematic Area*/
.thematic_area .taxonomy-term--header--icon img {
  background: #dfdada;
  padding: 20px;
  border-radius: 20px;
  width: 82px;
}

/* Thematic Area pages */
.thematic-area-header h2 {
  display: none !important;
}

.thematic-area-sections h3 {
  text-align: center;
}

.thematic-area-header h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 3px;
  background-color: #fdb913;
  padding: 5px 10px;
  color: #333;
  text-align: center;
}

.thematic-area-header .image-container {
  padding: 0 !important;
  position: relative;
  min-height: 1px;
  margin-bottom: 20px;
}

.thematic-area-header .image-container .field--name-field-preview-image {
  margin: 0;
}

.thematic-area-header .image-container img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  margin: 0;
}

.thematic-area-projects .view-content,
.view-aah-events .view-content {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
@media (max-width: 767px) {
  .thematic-area-projects .view-content,
  .view-aah-events .view-content {
    flex-direction: column;
  }
}

.view-thematic-area-blocks.view-display-id-block .views-row,
.thematic-area-projects .views-row {
  flex: 0 0 32%;
  margin-bottom: 20px;
  margin-right: 20px;
  background: #F9FAFE;
}
@media (max-width: 767px) {
  .view-thematic-area-blocks.view-display-id-block .views-row,
  .thematic-area-projects .views-row {
    flex: 1;
  }
}
.view-thematic-area-blocks.view-display-id-block .views-row .views-field-title,
.thematic-area-projects .views-row .views-field-title {
  clear: both;
  padding: 10px;
}

#block-cca-views-block-aah-events-block-1 {
  margin-top: 15px;
}

.view-aah-events .views-row {
  flex: 0 0 49%;
  margin-bottom: 20px;
  margin-right: 20px;
  background: #F9FAFE;
}
@media (max-width: 767px) {
  .view-aah-events .views-row {
    flex: 1;
  }
}
.view-aah-events .views-row .views-field-title {
  clear: both;
  padding: 10px;
}

.thematic-area-projects .views-row:nth-child(3n) {
  margin-right: 0;
}

.view-aah-events .views-row:nth-child(2n) {
  margin-right: 0;
}

.views-partnerships .views-row:last-child {
  margin-right: 0;
}

.views-partnerships h2,
.view-thematic-area-sub-programmes h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.thematic-area-projects.view-thematic-area-pages .views-field-field-image,
.views-partnerships.view-thematic-area-pages .views-field-field-image {
  margin: 0;
}

.thematic-area-projects.view-thematic-area-pages .views-field-field-image img,
.views-partnerships.view-thematic-area-pages .views-field-field-image img {
  width: 100%;
}

.views-partnerships .views-row .views-field-field-page-url a {
  padding: 0px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000;
}

.views-partnerships .view-content {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  gap: 20px;
}

.views-partnerships .views-row {
  width: 540px;
  margin-bottom: 20px;
}
@media screen and (min-width: 60em) {
  .views-partnerships .views-row {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #F9FAFE;
  }
}

.views-partnerships .views-row.views-row-even {
  margin-right: 0;
}

.views-partnerships .views-row h2 {
  margin-top: 10px;
}

.views-partnerships .views-field-field-image {
  float: left;
  height: 500px;
  position: relative;
  left: -20px;
  width: 50%;
}
@media (max-width: 500px) {
  .views-partnerships .views-field-field-image {
    left: 0px;
    width: 100%;
    margin-bottom: 15px !important;
  }
}

.views-partnerships .views-field-field-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
}

.view-thematic-area-sub-programmes .view-content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.view-thematic-area-sub-programmes .views-row {
  width: 100%;
  background-color: #F9FAFE;
  margin-right: 0px;
  margin-bottom: 20px;
}
@media (min-width: 42.5em) {
  .view-thematic-area-sub-programmes .views-row {
    width: 345px;
    margin-right: 20px;
  }
}

.view-thematic-area-sub-programmes .views-field-nothing {
  padding: 10px;
}

/* Mainstreaming */
.view-thematic-area-sub-programmes h2 {
  background-color: transparent;
  text-align: left;
  padding: 0;
  /* a tag css not applying */
}
.view-thematic-area-sub-programmes h2 a {
  color: #000 !important;
  font-family: "Proxima-Nova-Bold";
  font-size: 20px;
}

.pager-show-more a,
.views-field-field-external-link a,
.views-field-field-download a,
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* New code */
.path-taxonomy .thematic-area-header .field--name-field-summary {
  width: 75%;
  margin: auto;
}
@media (max-width: 767px) {
  .path-taxonomy .thematic-area-header .field--name-field-summary {
    width: 100%;
  }
}

.path-taxonomy .thematic-area-header h1 {
  width: 75%;
  margin: auto;
  padding-top: 60px;
  font-size: 2.2rem;
  color: #000;
  font-weight: 400;
  font-family: "SoehneBreit", "Helvetica", "Arial";
  text-transform: uppercase;
}

.path-taxonomy .views-field-title a {
  color: #000;
  font-weight: 400;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 42.5em) {
  .path-taxonomy .views-field-title a {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 1.55556rem;
  }
}

/* For Projects changed from Bold to Reg on 15th Nov */
.path-taxonomy .thematic-area-projects .views-field-title a {
  color: #000;
  font-family: "Proxima-Nova-Reg", Helvetica, Arial !important;
  font-size: 18px;
}

/*   .view-projects a, .path-taxonomy .views-field-title a {
  color: #000;
  font-family:'Proxima-Nova-Bold' !important;
  font-size: 20px;
}
*/
/* Learn more of Partnership*/
.views-partnerships .views-field-field-page-url {
  margin-top: auto;
  padding-top: 1rem;
}

/*  Read more of Newsfeed */
.view-news-feed .views-field-nothing {
  margin-top: auto;
  padding-top: 1rem;
}
.view-news-feed .views-field-nothing a {
  font-weight: 600;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Proxima-Nova-Reg", Helvetica, Arial;
  transition: all 0.3s ease;
  position: relative;
}
.view-news-feed .views-field-nothing a:before {
  content: "";
  width: 0px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}
.view-news-feed .views-field-nothing a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.4em;
  position: relative;
  right: 0;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  -webkit-mask-image: url(../images/icon-chevron-right.svg);
  mask-image: url(../images/icon-chevron-right.svg);
  background-color: #000;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.3s ease;
}
.view-news-feed .views-field-nothing a:hover, .view-news-feed .views-field-nothing a:focus {
  color: #0468B1 !important;
  background-color: transparent;
}
.view-news-feed .views-field-nothing a:hover:before, .view-news-feed .views-field-nothing a:focus:before {
  right: -34px;
  width: 35px;
  background-color: #0468B1;
}
.view-news-feed .views-field-nothing a:hover:after, .view-news-feed .views-field-nothing a:focus:after {
  background-color: #0468B1;
  right: -40px !important;
}

/* Thematic Area - Human Stories*/
.views-human-stories {
  margin-top: 30px;
}
.views-human-stories .view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .views-human-stories .view-header {
    flex-direction: column;
  }
}
.views-human-stories .section-header {
  width: 25%;
}
@media (max-width: 767px) {
  .views-human-stories .section-header {
    width: 100%;
  }
}
.views-human-stories .section-header h3 {
  font-size: 2.22rem;
  line-height: 2rem;
  font-family: "SoehneBreit", "Helvetica", "Arial";
  color: #000;
  text-transform: uppercase;
  margin: 40px 0 20px;
}
@media (max-width: 767px) {
  .views-human-stories .section-header h3 {
    font-size: 30px;
    font-size: 1.66667rem;
    line-height: 1.44444rem;
    margin: 0 0 20px;
  }
}
.views-human-stories .featured-stories {
  width: 70%;
}
@media (max-width: 767px) {
  .views-human-stories .featured-stories {
    width: 100%;
  }
}
.views-human-stories .featured-stories .view-content {
  display: block;
}
.views-human-stories .featured-stories .view-content .views-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-bottom: 0;
}
.views-human-stories .featured-stories .view-content .views-row .views-field-nothing {
  padding: 0.83333rem;
  order: 0;
  width: 50%;
}
@media (max-width: 767px) {
  .views-human-stories .featured-stories .view-content .views-row .views-field-nothing {
    padding: 0 0.83333rem;
  }
}
.views-human-stories .featured-stories .view-content .views-row .views-field-field-image {
  width: 50%;
  order: 2;
  margin-right: 0;
}
.views-human-stories .featured-stories .view-content .views-row .views-field-title {
  padding: 0;
}
.views-human-stories .featured-stories .view-content .views-row .views-field-field-page-url {
  bottom: 15px;
  padding: 0;
}
@media (max-width: 767px) {
  .views-human-stories .featured-stories .view-content .views-row {
    flex-direction: column;
  }
  .views-human-stories .featured-stories .view-content .views-row .views-field-nothing,
  .views-human-stories .featured-stories .view-content .views-row .views-field-field-image {
    width: 100%;
    order: 1;
  }
  .views-human-stories .featured-stories .view-content .views-row .views-field-field-image {
    order: 0;
  }
  .views-human-stories .featured-stories .view-content .views-row .views-field-field-page-url {
    position: relative;
    padding: 0;
  }
}
.views-human-stories .view-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  clear: both;
}
.views-human-stories .view-content .views-row {
  margin-bottom: 1.66667rem;
  width: 100%;
  background-color: #F9FAFE;
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .views-human-stories .view-content .views-row {
    width: 49%;
  }
}
.views-human-stories .view-content .views-row h3 {
  line-height: 1.25;
  font-size: 20px;
  margin: 1rem 0;
}
@media (max-width: 767px) {
  .views-human-stories .view-content .views-row h3 {
    margin: 0;
  }
}
.views-human-stories .view-content .views-row .views-field-field-image {
  width: 100%;
  margin-bottom: 20px;
}
.views-human-stories .view-content .views-row .views-field-field-image img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.views-human-stories .view-content .views-row .views-field-title h3 a {
  font-weight: 400;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 42.5em) {
  .views-human-stories .view-content .views-row .views-field-title h3 a {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 1.55556rem;
  }
}
.views-human-stories .view-content .views-row .views-field-title,
.views-human-stories .view-content .views-row .views-field-body,
.views-human-stories .view-content .views-row .views-field-field-page-url {
  padding: 0 0.83333rem;
}
.views-human-stories .view-content .views-row .views-field-field-page-url {
  position: absolute;
  bottom: 0;
}

/* Thematic Areas - Human Stories end */
/* Thematic Areas - Partnership, Project title start */
#block-cca-views-block-thematic-area-pages-block-4 h3,
#block-cca-views-block-thematic-area-pages-block-2 h3,
#block-cca-views-block-thematic-area-sub-programmes-block-1 h3,
#block-cca-views-block-thematic-area-pages-block-1 h3,
#block-views-block-homepage-news-block-2 h3,
.homepage-content h3 {
  font-size: 2.22rem;
  line-height: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #block-cca-views-block-thematic-area-pages-block-4 h3,
  #block-cca-views-block-thematic-area-pages-block-2 h3,
  #block-cca-views-block-thematic-area-sub-programmes-block-1 h3,
  #block-cca-views-block-thematic-area-pages-block-1 h3,
  #block-views-block-homepage-news-block-2 h3,
  .homepage-content h3 {
    font-size: 30px;
    font-size: 1.66667rem;
    line-height: 1.44444rem;
  }
}

/* Thematic Areas - Partnership, Project title start */
@media screen and (min-width: 60em) {
  #block-cca-views-block-thematic-area-pages-block-4 h3,
  #block-cca-views-block-thematic-area-pages-block-2 h3,
  #block-cca-views-block-thematic-area-sub-programmes-block-1 h3 {
    margin-bottom: 40px;
  }
}

/* Thematic Areas - Partnership title end */
.views-field-field-page-url a {
  padding: 10px 10px 10px 0;
  font-weight: 400;
  text-decoration: none;
  background-color: transparent;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.66667rem;
  font-family: Proxima-Nova-Bold, "Helvetica", "Arial";
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 42.5em) {
  .views-field-field-page-url a {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}
.views-field-field-page-url a:before {
  content: "";
  width: 0px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 51%;
  margin-top: -1px;
  right: 24px;
  transition: all 0.3s ease;
}
.views-field-field-page-url a:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.4em;
  position: relative;
  right: 0;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 22px 1.5em;
  -webkit-mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 22px 1.5em;
  mask-position: center center;
  -webkit-mask-image: url(../images/icon-chevron-right.svg);
  mask-image: url(../images/icon-chevron-right.svg);
  background-color: #000;
  margin: -0.4em 0 -0.4em 0.7em;
  transition: all 0.3s ease;
}
.views-field-field-page-url a:hover, .views-field-field-page-url a:focus {
  color: #0468B1 !important;
  background-color: transparent;
}
.views-field-field-page-url a:hover:before, .views-field-field-page-url a:focus:before {
  right: -24px;
  width: 35px;
  background-color: #0468B1;
}
.views-field-field-page-url a:hover:after, .views-field-field-page-url a:focus:after {
  background-color: #0468B1;
  right: -40px !important;
}

.view-thematic-area-main-image img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .view-thematic-area-main-image img {
    height: 300px;
  }
}
.view-thematic-area-main-image .views-field-field-photo-credit {
  line-height: normal;
  background-color: #F9FAFE;
  display: block;
}
.view-thematic-area-main-image .views-field-field-photo-credit div {
  padding-top: 10px;
  color: #8E8E8E;
  text-align: right;
  font-size: 0.66667rem;
  display: block;
  width: 100%;
}/*# sourceMappingURL=style.css.map */