@charset "UTF-8";
/* 

1. Variables
	- imports
	- colours
	- gradients
	- media queries
	- fonts
	- times
2. General
	2.1 Layout
	2.2 Forms
3. Banner
	3.1 Breadcrumbs
	3.2 Title banner
4. Main Content
	4.1 Home / Carousel
5. Modules
6. News
7. Events
8. Footer
*/
/*
	1. Variables
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Bricolage";
  src: url("../fonts/BricolageGrotVar.ttf");
  font-weight: 100 1000;
  font-stretch: 75% 125%;
  font-style: normal;
}
@font-face {
  font-family: "KnockoutL";
  src: url("../fonts/KnockoutLightweight.otf");
  font-stretch: 49;
  font-style: normal;
}
@font-face {
  font-family: "Knockout";
  src: url("../fonts/KnockoutBantam.otf");
  font-stretch: 47;
  font-style: normal;
}
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Red Hat Text", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  overflow-x: hidden;
}
body.modal {
  overflow: hidden;
  height: 100vh;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open a {
  color: white;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

sup {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0 0.2rem;
  transform: translateY(-0.75rem);
  color: #0a6647;
}

p, ul {
  letter-spacing: -0.02rem;
  margin-bottom: 2rem;
  color: #404240;
}
p.small, ul.small {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
p.small li, ul.small li {
  line-height: 1.4rem;
  margin-bottom: 0.7rem;
}
p a, ul a {
  color: #0a6647;
}

h1, h2, h3, h4 {
  font-family: "Red Hat Display", serif;
  font-weight: 800;
}

h1 {
  color: #0a6647;
  font-size: 7rem;
  line-height: 8rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
h1.two-line span {
  color: #18a04a;
}

h2 {
  color: #0a6647;
  font-weight: 800;
  font-size: 4.4rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.5rem;
}

h5 {
  color: #0a6647;
  font-weight: 600;
  font-size: 2rem;
}

/* 2. GENERAL */
.large-button-link {
  display: block;
  margin: 4rem 0;
}
.large-button-link a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  transition-duration: 0.3s;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.6rem;
  height: 1.6rem;
  border-radius: 1.4rem;
  text-decoration: none !important;
}
.large-button-link.download-button-link {
  height: 36px;
  position: relative;
  padding-left: 44px;
}
.large-button-link.download-button-link:before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 36px;
  height: 36px;
  background-image: url("../images/download.svg");
  background-repeat: no-repeat;
}

.outer {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.outer .inner {
  position: relative;
  width: calc(100vw - 88px);
  max-width: 1352px;
  margin: 0 auto;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  .outer .inner {
    width: calc(100vw - 36px);
  }
}
.outer .inner.narrow {
  max-width: 890px;
}
.outer.dark-green {
  background-color: #0a6647;
}
.outer.bright-green {
  background-color: #18a04a;
}
.outer.pale-green {
  background-color: #6bf09e;
}

/* 3. BANNER */
#menu-modal {
  position: fixed;
  background: #18a04a;
  top: -100vh;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transition-duration: 0.2s;
  display: none;
  overflow: scroll;
}
#menu-modal .close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
  text-indent: -9999px;
}
#menu-modal .close:before, #menu-modal .close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4rem;
  height: 3px;
  background-color: white;
}
#menu-modal .close:after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.menu-open #menu-modal {
  display: block;
  top: 0;
}
#menu-modal #mobile-navigation {
  padding-top: 12rem;
}
#menu-modal #mobile-navigation ul li {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.4rem;
}

#banner {
  position: fixed;
  height: 16rem;
  z-index: 10;
  transition-duration: 0.3s;
}
.banner-small #banner {
  height: 12rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #banner {
    height: 12rem;
    position: relative;
  }
}
#banner #website-title {
  width: 28rem;
  height: 16rem;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.3s;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #banner #website-title {
    width: 18rem;
    height: 10rem;
  }
}
#banner #website-title a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-image: url("../images/foodpolicy-draftlogo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.banner-small #banner #website-title {
  width: 20rem;
  height: 12rem;
}
#banner #primary-navigation {
  position: absolute;
  top: 7rem;
  right: 0;
}
@media only screen and (min-width: 801px) and (max-width: 1130px), only screen and (min-width: 1px) and (max-width: 800px) {
  #banner #primary-navigation {
    display: none;
  }
}
.banner-small #banner #primary-navigation {
  top: 3rem;
}
#banner #primary-navigation ul {
  vertical-align: top !important;
  display: flex;
}
#banner #primary-navigation li {
  display: block;
  margin-left: 4.5rem;
  font-weight: 700;
  text-align: center;
}
#banner #primary-navigation li a {
  display: block;
  color: white;
  padding: 1rem 0;
  position: relative;
  transition-duration: 0.2s;
  max-width: 240px;
  font-size: 1.6rem;
}
#banner #primary-navigation li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100%;
  height: 4px;
  transform: translateX(-50%);
  background-color: #fff0de;
  opacity: 0;
  transition-duration: 0.4s;
}
#banner #primary-navigation li a:hover {
  transform: translateY(-4px);
}
#banner #primary-navigation li a:hover:after {
  bottom: 4px;
  opacity: 1;
}
#banner #mobile-menu-button {
  display: none;
  position: absolute;
  right: 4rem;
  top: 4rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #banner #mobile-menu-button {
    display: block;
  }
}
#banner #mobile-menu-button a {
  display: block;
  width: 32px;
  height: 20px;
  padding: 0;
  text-indent: -9999px;
  position: relative;
}
#banner #mobile-menu-button a:before {
  opacity: 1;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 100%;
  border-top: 3px solid white;
  border-bottom: 3px solid white;
}
#banner #mobile-menu-button a:after {
  opacity: 1;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 3px;
  background-color: white;
}

hr.banner-separator {
  background-color: #0a6647;
  margin: 0;
  border: none;
  height: 16rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  hr.banner-separator {
    display: none;
  }
}

#back-to-top {
  position: fixed;
  bottom: -8rem;
  right: 4rem;
  z-index: 999;
  transition-duration: 0.3s;
}
#back-to-top a {
  display: block;
  text-indent: -9999px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #18a04a;
  position: relative;
}
#back-to-top a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 4px)) rotate(45deg);
  width: 16px;
  height: 16px;
  border-top: 3px solid white;
  border-left: 3px solid white;
}
#back-to-top a:hover {
  background-color: #0a6647;
}
.banner-small #back-to-top {
  bottom: 4rem;
}

/* 3.1 Breadcrumbs */
#breadcrumbs-outer {
  font-size: 1.4rem;
  line-height: 130%;
  font-weight: 500;
  text-transform: uppercase;
  color: #0a6647;
  padding: 0.5rem 0;
}
#breadcrumbs-outer p {
  color: #fff0de;
  margin-bottom: 0;
}
#breadcrumbs-outer a {
  color: white;
}

/* 3.2 Title Banner */
#image-banner img {
  width: 100%;
  height: auto;
}

#title-banner {
  margin-top: 8rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #title-banner {
    margin-top: 4rem;
  }
}

/* MAIN CONTENT */
#main-wrapper {
  padding: 6rem 0 0 0;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #main-wrapper {
    padding: 6rem 0 0 0;
  }
}

/* 5. MODULES */
#modules .module.divider hr {
  border: none;
  height: 2px;
  background-color: #0a6647;
}
#modules .module.introduction {
  margin-bottom: 8rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.introduction {
    margin-bottom: 4rem;
  }
}
#modules .module.introduction .text {
  width: 66.666%;
}
@media only screen and (min-width: 801px) and (max-width: 1130px), only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.introduction .text {
    width: 100%;
  }
}
#modules .module.introduction p {
  font-size: 3.4rem;
  line-height: 5rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.introduction p {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
#modules .module.columns .title, #modules .module.topic-columns .title {
  margin: 6rem auto 3rem auto;
}
#modules .module.columns .title h3, #modules .module.topic-columns .title h3 {
  color: #0a6647;
  font-size: 3.8rem;
  line-height: 4.8rem;
}
#modules .module.columns a, #modules .module.topic-columns a {
  color: #404240;
  border-bottom: 1px solid #18a04a;
}
#modules .module.columns a:hover, #modules .module.topic-columns a:hover {
  border-bottom: 1px solid #0a6647;
}
#modules .module.columns a:has(sup), #modules .module.topic-columns a:has(sup) {
  border-bottom: none;
}
#modules .module.columns p, #modules .module.topic-columns p {
  color: #404240;
}
#modules .module.columns ol li, #modules .module.topic-columns ol li {
  margin: 0 0 2rem 0;
  list-style: decimal;
}
#modules .module.columns ul li, #modules .module.topic-columns ul li {
  margin: 0 0 2rem 0;
}
#modules .module.columns ul li:before, #modules .module.topic-columns ul li:before {
  color: #18a04a;
  content: "– ";
}
#modules .module.columns .column-group {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.columns .column-group {
    display: block;
  }
}
#modules .module.columns .column-group.two-columns .column {
  width: calc(50% - 3.2rem);
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.columns .column-group.two-columns .column {
    width: 100%;
  }
}
#modules .module.topic-columns .title {
  margin-bottom: 4rem;
}
#modules .module.topic-columns .title h3 {
  color: #0a6647;
  padding-bottom: 2rem;
  border-bottom: 4px solid #18a04a;
}
#modules .module.topic-columns .topic-section {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 0;
  border-bottom: 2px solid #18a04a;
}
#modules .module.topic-columns .topic-section:last-child {
  border-bottom: none;
  padding-bottom: 6rem;
}
#modules .module.topic-columns .topic-section .section-title {
  width: 320px;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.topic-columns .topic-section .section-title {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#modules .module.topic-columns .topic-section .section-title h4 {
  color: #0a6647;
}
#modules .module.topic-columns .topic-section .section-content {
  width: calc(100% - 320px);
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.topic-columns .topic-section .section-content {
    width: 100%;
  }
}
#modules .module.topic-columns .topic-section .section-content p {
  word-break: break-word;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.topic-columns .topic-section .section-content ol li {
    margin-left: 2.5rem;
  }
}
#modules .module.topic-columns .topic-section .section-content.objectives ul, #modules .module.topic-columns .topic-section .section-content.planning ul {
  display: flex;
  flex-wrap: wrap;
}
#modules .module.topic-columns .topic-section .section-content.objectives ul li, #modules .module.topic-columns .topic-section .section-content.planning ul li {
  min-width: 115px;
  min-height: 115px;
  box-sizing: border-box;
  display: block;
  list-style: none;
  width: 10%;
  font-size: 1.2rem;
  line-height: 1.3rem;
  padding: 3rem 0;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid white;
  margin-left: -1px;
  margin-bottom: -1px;
  text-align: center;
  background-color: rgba(10, 102, 71, 0.25);
  color: white;
}
#modules .module.topic-columns .topic-section .section-content.objectives ul li:before, #modules .module.topic-columns .topic-section .section-content.planning ul li:before {
  display: none;
}
#modules .module.topic-columns .topic-section .section-content.objectives ul li.checked, #modules .module.topic-columns .topic-section .section-content.planning ul li.checked {
  background-color: #0a6647;
}
#modules .module.topic-columns .topic-section .section-content.objectives ul li.checked:last-child, #modules .module.topic-columns .topic-section .section-content.planning ul li.checked:last-child {
  border-right: none !important;
}
#modules .module.topic-columns .topic-section .section-content.planning ul li {
  background-color: rgba(58, 148, 187, 0.25);
  color: white;
}
#modules .module.topic-columns .topic-section .section-content.planning ul li.checked {
  color: white;
  background-color: #3a94bb;
}
#modules .module.tiles {
  padding: 5rem 0;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.tiles {
    padding: 2rem 0;
  }
}
#modules .module.tiles .tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1.6rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.tiles .tile-group {
    display: block;
  }
}
#modules .module.tiles .tile-group:hover .tile-col:not(:hover) {
  opacity: 0.5;
}
#modules .module.tiles .tile-group .tile-col {
  box-sizing: border-box;
  padding: 1.6rem;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
  transition-duration: 0.8s;
  transition-timing-function: ease-in;
}
@media only screen and (min-width: 801px) and (max-width: 1130px) {
  #modules .module.tiles .tile-group .tile-col {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module.tiles .tile-group .tile-col {
    flex-basis: auto;
    max-width: 100%;
  }
}
#modules .module.tiles .tile-group .tile-col .tile {
  min-height: 40rem;
  background-color: #fff0de;
  border-radius: 1.2rem;
  box-shadow: 0px 4px 4px 10px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
#modules .module.tiles .tile-group .tile-col .tile .image-outer {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
#modules .module.tiles .tile-group .tile-col .tile .image-outer .image {
  width: 100%;
  aspect-ratio: 2/1;
  background-position: center;
  background-size: cover;
  transition-duration: 0.4s;
}
#modules .module.tiles .tile-group .tile-col .tile .text {
  padding: 3rem;
}
#modules .module.tiles .tile-group .tile-col .tile .text h4 {
  text-transform: uppercase;
}
#modules .module.tiles .tile-group .tile-col .tile a {
  color: #404240;
}
#modules .module.tiles .tile-group .tile-col .tile:hover {
  transform: translateY(-1rem);
  box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.04);
}
#modules .module.tiles .tile-group .tile-col .tile:hover .image {
  transform: scale(1.1);
}
#modules .module#footnotes {
  background: #fff0de;
  padding: 5rem 0;
}
#modules .module#footnotes .title {
  margin-bottom: 2rem !important;
}
#modules .module#footnotes .title h3 {
  color: #0a6647;
}
#modules .module#footnotes p, #modules .module#footnotes ol, #modules .module#footnotes ul {
  font-size: 1.4rem;
  line-height: 2rem;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#modules .module#footnotes p a, #modules .module#footnotes ol a, #modules .module#footnotes ul a {
  color: #404240;
  text-decoration: underline;
}
#modules .module#footnotes ol {
  list-style: decimal;
}
#modules .module#footnotes .inner {
  column-count: 3;
  column-gap: 4rem;
}
@media only screen and (min-width: 1px) and (max-width: 800px) {
  #modules .module#footnotes .inner {
    column-count: 1;
    padding: 0 6rem;
  }
}

#pagination {
  padding-bottom: 10rem;
}
#pagination .sibling-pagination li {
  display: inline-block;
}
#pagination .sibling-pagination li:first-child {
  margin-right: 1rem;
}
#pagination .sibling-pagination li a {
  padding: 1rem 2rem;
  background-color: #18a04a;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: white;
  border-radius: 1.7rem;
  display: block;
  font-weight: bold;
  transition-duration: 0.3s;
}
#pagination .sibling-pagination li a:hover {
  background-color: #0a6647;
}
#pagination .parent {
  margin-top: 4rem;
  display: inline-block;
}
#pagination .parent:first-child {
  margin-right: 1rem;
}
#pagination .parent a {
  padding: 1rem 2rem;
  background-color: #3a94bb;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: white;
  border-radius: 1.7rem;
  display: block;
  font-weight: bold;
  transition-duration: 0.3s;
}
#pagination .parent a:hover {
  background-color: #0a6647;
}

#footer {
  padding: 6rem 0 18rem 0;
  background-color: rgba(107, 240, 158, 0.2);
}
#footer #footer-columns {
  display: flex;
  justify-content: space-between;
}
#footer #footer-columns .column {
  width: calc(50% - 3.2rem);
}
#footer #footer-columns .column img {
  margin-right: 3rem;
}
#footer #footer-columns .column h4 {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}
#footer #footer-columns .column p {
  font-size: 1.6rem;
  font-weight: bold;
}

/* END */
