* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}
:root {
  --blue: #0065BD;
  --blue2: #4280c7;
  --blueLight: #cedff1;
  --blue5: var(--blueLight);
  --green: #01A872;
  --greenLight: #d9f0ee;
  --greenB: #27A863;
  --greenBLight: #d7ecd8;
  --red: #E42320;
  --redLight: #f6d5d2;
  --orange: #FF5915;
  --orangeLight: #FFDED0;
  --teal: #00949D;
  --tealLight: #d0e9eb;
  --teal5: var(--tealLight);


  --pageColor: var(--blue);
  --pageColor2: var(--blue2);
  --pageColor5: var(--teal5);

  --pageColorBg: var(--blueLight);
}
.dw-pageColor {
  color: var(--pageColor);
}

.dw-pageColorBg {
  background-color: var(--pageColorBg);
  border-radius: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1160px) {
  .dw-pageColorBg {
    border-radius: 20px 0 0 20px;
  }
}

@media screen and (max-width: 680px) {
  .dw-pageColorBg {
    border-radius: 0;
  }
}

h1, h2, h3, h4, h5 {
  margin-top: 0 !important;
  margin-bottom: 1rem;
  font-weight: 400;
}

h1 {
  font-size: 4.7rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
  margin: 2rem 0 !important;
}

h4 {
  font-size: 2.2rem;
}

h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

p, li, button {
  /*font-family: "Montserrat", "Montserrat-Regular", Arial, sans-serif !important;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;*/
}

.dw-callout h5 {
  color: #ffffff;
}

.dw-mainContainer a {
  color: #404040;
  text-decoration: underline;
}

.dw-section p:last-child {
  margin-bottom: 0;
}

.dw-chapterNumber {
  font-size: 15rem;
  display: block;
  line-height: normal;
}

.dw-borderTop {
  border-top: 1px solid var(--pageColor);
  padding-top: 1rem;
}

@media screen and (max-width: 1160px) {
  h1 {
    font-size: 4.1vw;
    line-height: normal;
  }

  .dw-chapterNumber {
    font-size: 13.8vw;
  }
}

@media screen and (max-width: 680px) {
  h2 {
    font-size: 3.8rem;
  }

  h3 {
    font-size: 2.8rem;
  }

  h4 {
    font-size: 2.2rem;
  }

  p, li {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 680px) {
  .dw-container {
    padding: 0 20px;
  }
}

.dw-headerBg {
  background-color: var(--pageColor);
}


.dw-mainContainer {
  width: 100%;
  max-width: 1160px;
  padding: 0 0 0 40px;
  margin: auto;
  /* background: #f9f9f9; */
  min-height: 500px;
  display: flex;
}

@media screen and (max-width: 680px) {
  .dw-mainContainer {
    padding: 0;
  }
}

.dw-header {
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
  color: #ffffff !important;
  background-color: var(--pageColor);
}

.dw-headerLeft {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  width: calc(60% - 50px);
}

.dw-headerRight {
  width: 40%;
  margin-bottom: 40px;
}

.dw-headerRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 680px) {
  .dw-header {
    flex-direction: column-reverse !important;
    padding: 0;
    gap: 0;
  }

  .dw-headerLeft {
    width: 100%;
    min-height: 224px;
    padding: 0 20px 0 20px;
  }

  .dw-headerRight {
    width: 100%;
    height: 170px;
    margin: 0;
  }

  .dw-headerRight.dw-headerRight-06 img {
    object-position: 50% 5%;
  }

  .dw-headerRight img {
    object-position: 50% 30%;
  }

  .dw-chapterNumber {
    margin-top: auto;
  }
}


.dw-headerAlt .dw-headerLeft {
  margin-top: 0;
  justify-content: space-between;
}

.dw-headerIntro {
  margin-top: 44px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.dw-chapterTitle button {
  display: flex;
  align-items: center;
  color: var(--blue);
  background: #ffffff;
  border: 0;
  margin-bottom: 40px;
  padding: 5px 8px;
  box-shadow: 0;
  transition: all 0.3s ease;
}

.dw-chapterTitle button:hover, .dw-button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  opacity: 0.9;
}

.dw-chapterTitle a {
  text-decoration: none;
  display: inline-block;
}

.dw-chapterTitle p a:first-of-type button {
  margin: 0 20px 10px 0;
}

.dw-chapterTitle button svg {
  padding: 0 2px;
  margin: 0 0 0 15px;
}

.dw-chapterPage .dw-chapterTitle {
  margin-bottom: 15px;
}

@media (max-width: 1160px) {
  .dw-headerIntro {
    font-size: 2.08vw;
  }
}

@media (max-width: 680px) {
  .dw-headerIntro {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .dw-chapterTitle a {
    text-decoration: none;
    display: block;
    width: 100%;
  }

  .dw-chapterTitle button {
    margin-bottom: 20px;
    font-size: 1.4rem;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .dw-headerIntro {
    font-size: 3vw;
  }
}


.dw-button {
  display: flex;
  align-items: center;
  color: white;
  background: var(--pageColor);
  border: 0;
  margin-bottom: 40px;
  padding: 5px 8px;
  box-shadow: 0;
  transition: all 0.3s ease;
}

.dw-buttonLink {
  text-decoration: none;
  display: inline-block;
}

button.dw-buttonOutline {
  color: #ffffff;
  background: var(--pageColor);
  border: 1px solid #ffffff;
}

@media (max-width: 680px) {
  .dw-buttonLink {
    display: block;
    text-align: center;
  }

  .dw-bodyButton {
    width: 100%;
    min-height: 50px;
  }

  .dw-bodyButton span {
    width: 100%;
  }
}


#dw-sidebar {
  width: 19%;
  padding: 30px 20px 0 0;
  /* background-color: #f6f6f6; */
  position: relative;

}

#dw-sidebar p, #dw-sidebar a {
  font-size: 1.3rem;
  line-height: normal;
}

#dw-sidebar p {
  font-weight: 700;
}

#dw-mainContent {
  width: 81%;
}


#dw-sidebarNav {
  position: relative;
  transition: position 0.3s ease;
}

#dw-sidebarNav.sticky {
  position: fixed !important;
  left: unset;
  top: 130px;
  width: calc(19% - 20px);
  max-width: 200px;
  /* background: #f6f6f6; */
}

#dw-sidebarNav li {
  list-style: none;
  transition: all 0.3s ease;
  border-left: 4px solid #DBDCE0;
  margin-bottom: 0;
  min-height: unset;
  display: flex;
  align-items: center;
}

#dw-sidebarNav li a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #5F5F5F;
  display: block;
  margin-left: 10px;
  padding: 5px 0;
}

#dw-sidebarNav li.active a {
  color: var(--pageColor);
}

#dw-sidebarNav li:hover a {
  color: var(--pageColor);
}

#dw-sidebarNav li:hover,
#dw-sidebarNav li.active {
  border-left-color: var(--pageColor);
}

#dw-mobileNav {
  width: 100%;
  display: none;
}

@media (max-width: 960px) {

  #dw-headerContainer {
    margin-top: 0;
  }

  #dw-sidebar {
    display: none;
  }

  #dw-mainContent {
    width: 100%;
  }

  #dw-mobileNav {
    width: 100%;
    /* position: fixed; */
    z-index: 999;
    background: #ffffff;
    /* margin-top: -30px; */
    margin-bottom: 0;
    cursor: pointer;
    display: block;
  }

  #dw-mobileNavTitle {
    font-weight: 700;
    color: #404040;
    display:flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DBDCE0;
    border-right: 0;
    border-left: 0;
    padding: 10px 30px;
    font-size: 1.2rem;
    position: relative;
  }

  #dw-pageContainer {
    margin-top: 0;
  }

  #dw-mobileNavTitle img {
    width: 15px;
    transition: all 0.3s ease;
  }

  #dw-mobileNav.active img {
    transform: rotate(180deg);
  }

  #dw-mobileNav.active #dw-mobileNavTitle::after {
    transform: translateY(-50%) rotate(-135deg);
  }

  #dw-mobileNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    z-index: 999;
    background: #ffffff;
    width: 100%;
  }

  #dw-mobileNav.active ul {
    max-height: 1000px;
    opacity: 1;
    padding: 20px;
    border-bottom: 1px solid #DBDCE0;

  }

  #dw-mobileNav li {
    border-left: 4px solid #DBDCE0;
    margin-bottom: 0;
    min-height: unset;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  #dw-mobileNav li a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #5F5F5F;
    display: block;
    margin-left: 10px;
    width: 100%;
    padding: 15px 0;
  }

  #dw-mobileNav li:hover a,
  #dw-mobileNav li.active a {
    color: var(--pageColor);
  }

  #dw-mobileNav li:hover,
  #dw-mobileNav li.active {
    border-left-color: var(--pageColor);
  }

  #dw-sidebarNav.sticky {
    display: none;
  }
}


.dw-section.dw-menuSection.dw-pageColorBg {
  padding: 30px 50px;
}

@media (max-width: 680px) {
  section.dw-section {
    padding: 20px;
  }
}

blockquote.dw-quote {
  display: flex;
  max-width: 580px;
  font-weight: 600;
  border: none;
  padding: 2rem 0 0 0;
}

.dw-quoteContent p {
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 2.1rem;
}

.dw-quoteContent svg {
  margin-bottom: 16px;
}

.dw-mainContainer a.dw-buttonLink {
  text-decoration: none;
}

.dw-quote img {
  margin: 0 !important;
  width: 80px !important;
  height: 80px !important;
  margin-right: 20px !important;
  border-radius: 40px !important;
  max-width: unset;
}

.dw-quote footer {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
}

.dw-quote footer span {
  font-weight: normal;
}

#dw-mainContent img {
  width: 100%;
  border-radius: 20px;
  margin: 1rem 0 1.5rem 0;
}

.dw-authorInfo {
  width: 71%;
}

.dw-author img{
  border-radius: 70px;
}

#dw-mainContent figure {
  margin: 0 0 1.5rem 0;
}

#dw-mainContent figure figcaption {
  margin-top: -1rem;
  font-size: 1.2rem;
}

@media (max-width: 680px) {
  #dw-mainContent figure figcaption {
    font-size: 1.1rem;
  }
}

#dw-mainContent ul, #dw-mainContent ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

#dw-mainContent ul li, #dw-mainContent ol li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

#dw-mainContent ul li::before {
  content: "•";
  position: absolute;
  left: 0;
}

#dw-mainContent ol {
  list-style-type: decimal; /* Ensures numbers are used */
  list-style-position: inside;
}


section#dw-qa {
  padding: 0;
}

.dw-qa-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dw-qa-container h3 {
  margin: 0 !important;
}

.dw-qa-q, .dw-qa-a {
  max-width: 90%;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--pageColor);
  color: var(--pageColor);
}

.dw-qa-a {
  align-self: flex-end;
}

.dw-qa-q h3 {
  padding-right: 50px;
  color: var(--pageColor);
}

.dw-qa-a h3 {
  padding-left: 50px;
  text-align: right;
  color: var(--pageColor);
}

@media (max-width: 680px) {
  .dw-qa-container h3 {
    font-size: 1.2rem;
  }

  .dw-qa-q h3 {
    padding-right: 0;
  }

  .dw-qa-a h3 {
    padding-left: 0;
    text-align: right;
  }
}


.dw-resources {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dw-resources-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.dw-resources-row div {
  width: 50%;
}

.dw-callout h4 {
  color: #ffffff;
}

.dw-resources h4 {
  font-size: 1.2rem;
  display: inline-block;
  color: #ffffff;
  background-color: var(--pageColor);
  padding: 5px 10px;
  min-width: 150px;
  text-align: center;
}

@media (max-width: 680px) {
  .dw-resources-row {
    flex-direction: column;
  }

  .dw-resources-row div {
    width: 100%;
  }
}


.dw-authorRow {
  display: flex;
  gap: 20px;
}

.dw-authors {
  margin: 30px 0;
}

.dw-author {
  width: 50%;
  display: flex;
  align-items: center;
}

.dw-author img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
  border-radius: 40px !important;
  position: relative;
  margin: 0 !important;
}

.authorInfo {
  width: calc(100% - 80px);
}

.dw-authorInfo p {
  padding: 0 0 0 20px;
  font-size: 1.4rem;
  line-height: 2rem;
}

@media (max-width: 680px) {
  .dw-authorRow {
    flex-direction: column;
  }

  .dw-author {
    width: 100%;
  }
}


.dw-row {
  display: flex;
  gap: 40px;
}

.dw-row.dw-row2Col > * {
  width: 50%;
}

@media (max-width: 680px) {
  .dw-row {
    flex-direction: column;
  }

  .dw-row.dw-row2Col > * {
    width: 100%;
  }
}


.dw-callout {
  color: #ffffff;
  background-color: var(--pageColor);
  border-radius: 10px;
  padding: 30px 50px;
}

.dw-callout2 {
  background-color: var(--pageColor2);
}

.dw-callout5 {
  background-color: var(--pageColor5);
  border-radius: 20px;
  padding: 20px;
}

.dw-callout5 figure {
  margin: 0 !important;
}

.dw-callout5 figure, .dw-callout5 figure img {
  margin-top: 0 !important;
}

.dw-callout h3 {
  margin-top: 0 !important;
  color: #fff;
}

.dw-callout a {
  color: #ffffff;
}

@media (max-width: 680px) {
  .dw-callout {
    padding: 20px;
  }
}


.dw-figureBox {
  border: 1px solid #404040;
  border-radius: 10px;
  padding: 30px 50px;
}

.dw-figureBox figure {
  margin-bottom: 0 !important;
}

.dw-figureBox figcaption {
  margin-top: 20px !important;
  border-top: 1px solid #404040;
}

@media (max-width: 680px) {
  .dw-figureBox {
    padding: 20px;
  }
}


.dw-mt10 {
  margin-top: 10px !important;
}

.dw-mt20 {
  margin-top: 20px !important;
}

.dw-mt40 {
  margin-top: 40px !important;
}

@media (max-width: 680px) {
  .dw-mt40 {
    margin-top: 20px !important;
  }
}


#dw-impactAreas {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin: 40px 0;
  text-align: center;
}

#dw-impactAreas img {
  padding: 0 20px;
}

#dw-impactAreas a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: normal;
}

a.dw-impactArea1 {
  color: var(--green);
}

a.dw-impactArea2 {
  color: var(--greenB);
}

a.dw-impactArea3 {
  color: var(--red);
}

a.dw-impactArea4 {
  color: var(--orange);
}

a.dw-impactArea5 {
  color: var(--teal);
}

@media (max-width: 680px) {
  #dw-impactAreas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }

  #dw-impactAreas > :nth-child(odd):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 50%;
  }

  #dw-impactAreas img {
    padding: 0 40px;
  }
}


.dw-challengesImg {
  max-width: 70%;
}

@media (max-width: 680px) {
  .dw-challengesImg {
    max-width: 100%;
  }
}


.dw-prevNext {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #404040;
  padding-top: 10px;
}

.dw-prevNext a {
  display: flex;
  text-decoration: none;
  align-items: center;
  transition: all 0.3s;
}

.dw-prevNext a:hover {
  color: #000000;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 0px 1px;
}

.dw-prevNext span {
  margin: 0 10px;
  font-size: 1.4rem;
}

a.dw-prevNext-next {
  flex-direction: row-reverse;
}

.dw-prevNext-next svg {
  transform: rotate(180deg);
}

@media (max-width: 680px) {
  .dw-prevNext span {
    font-size: 1.4rem;
  }
}


.dw-chapterNav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dw-chapterNav a {
  display: flex;
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 1.9rem;
  min-height: 122px;
  transition: all 0.3s;
  line-height: 2.5rem;
}

.dw-chapterNav a:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.dw-chapterNav1 {
  background-color: var(--green);
}

.dw-chapterNav2 {
  background-color: var(--greenB);
}

.dw-chapterNav3 {
  background-color: var(--red);
}

.dw-chapterNav4 {
  background-color: var(--orange);
}

.dw-chapterNav5 {
  background-color: var(--teal);
}

.dw-chapterNav6 {
  background-color: var(--blue);
}


/* Mobile styles */
@media (max-width: 768px) {
  .dw-chapterNav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dw-chapterNav a {
    font-size: 1.4rem;
    min-height: 50px;
    align-items: center;
  }

  .JumpToChapter {
    font-size: 0.8rem;
  }
}


.dw-iframeVid {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  margin-bottom: 1.8rem;
  border-radius: 20px;
  overflow: hidden;
}

.dw-iframeVid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dw-chapterTitle h1 {
  color: #ffffff;
}

.page-template-flagship-report .site-header,
.page-template-flagship-report .header-placeholder {
  display: none;
}


.flagship-report-menu-wrapper {
  background-color: #f2f3f4;
  padding: 15px 0;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

ul.flagship-report-menu {
  display: grid;
  grid-template-rows: repeat(3, auto); /* 3 rows */
  grid-auto-flow: column; /* Flow items into columns */
  grid-auto-columns: inherit; /* Equal column width */
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: normal;
  margin: 0;
}

ul.flagship-report-menu li {
  text-align: left;
  border-left: 1px solid #000;
  padding-left: 16px;
}

ul.flagship-report-menu li:nth-child(3n + 2) {
  padding-bottom: 4px;
  padding-top: 4px;
}

ul.flagship-report-menu li a {
  display: block;
}

ul.flagship-report-menu li a:hover {
  color: #b6b6b6;
}

ul.flagship-report-menu li.current-menu-item a {
  color: #007bff;
}

ul.flagship-report-menu li.current-menu-item a {
color: {{ page.page_config.color_theme }};
}

.flagship-report-layout {
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

main.main {
  flex-shrink: 1;
  flex-basis: 80%;
  max-width: 80%;
  padding-top: 32px;
}

.sidebar {
  flex-shrink: 0;
  position: sticky;
  left: 0;
  padding-top: 38px;
  top: 80px;
  flex-basis: 20%;
  max-width: 280px;
  height: auto;
  overflow-y: auto;
  z-index: 99;
  line-height: 1;
}

.sidebar-title {
  margin-bottom: 32px;
  font-weight: bold;
}

.flagship-report-menu-wrapper .cgiar-logo {
  width: 80%;
}

.sidebar a {
  display: block;
  text-decoration: none;
  color: #333;
  border-left: 3px solid rgba(0, 0, 0, 0.3);
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  font-weight: 100;
  transition: all 0.3s linear;
}

.sidebar a.active {
  color: #007bff;
  border-left: 3px solid #007bff;
}

.sidebar a.active {
color: {{ page.page_config.color_theme }};
border-left: 3px solid{{ page.page_config.color_theme }};
}

.fr-hero {
  width: 100%;
  position: relative;
  background-color: #0165bd;
  color: #fff;
  padding-bottom: 80px;
}

.fr-hero h1,
.fr-hero h2,
.fr-hero h3,
.fr-hero h4,
.fr-hero h5 {
  color: #fff;
}

.fr-hero__wrapper {
  display: flex;
}

.flex-grow-1 {
  flex-grow: 1;
}

.fr-hero__chapter-number {
  font-size: 122px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.fr-hero__wrapper-content {
  display: flex;
  flex-direction: column;
  padding-top: 42px;
}

.fr-hero__title,
.fr-hero__subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: normal;
}

.fr-hero__title {
  font-weight: bold;
}

.fr-hero__brief {
  font-size: 36px;
  line-height: normal;
  margin-top: 42px;
}

.fr-hero__image img {
  display: block;
}

.fr-hero__image,
.fr-hero__image img {
  line-height: 1;
}

.fr-button {
  color: #0165bd;
  padding: 8px 16px;
  background-color: #fff;
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
}

.fr-button:hover {
  color: #fff;
  background-color: #0165bd;
  border: 1px solid #fff;
}

.fr-button__icon {
  width: 16px;
  display: inline-block;
  fill: #0165bd;
}

.fr-button:hover .fr-button__icon {
  fill: #fff;
}

.show-mobile {
  display: none;
}

.flagship-report-menu-trigger {
  background-color: #f2f3f4;
  padding: 8px 0;
  font-weight: bold;
  font-size: 1.4rem;
}

.sidebar-trigger {
  background-color: #fff;
}

.flagship-report-menu-trigger > div,
.sidebar-trigger > div {
  display: flex;
  justify-content: space-between;
}

.flagship-report-section {
  margin-bottom: 42px;
  scroll-margin-top: 280px;
}

.flagship-report-section__title {
  margin-top: 0;
  margin-bottom: 24px;
}

.mce-content-body, .wysiwyg, [class*='wysiwyg--'] {
  padding: 0 0 0 0;
}

@media screen and (max-width: 1024px) {
  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  #dw-pageContainer {
    margin-top: 0;
  }

  .nav-top-wrapper {
    /* position: sticky; */
    /* top: 106px; */
    z-index: 99;
  }

  .fr-hero__wrapper {
    flex-direction: column;
  }

  ul.flagship-report-menu {
    display: block;
  }

  ul.flagship-report-menu li {
    border-left: none !important;
    padding-left: 0;
  }

  ul.flagship-report-menu li a {
    justify-content: space-between;
  }

  #sidebar {
    display: none;
    position: fixed;
    top: 170px;
    padding-top: 12px;
    left: 0;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
  }

  #sidebar a {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.dw-footer {
  padding: 31px 0;
  color: #ffffff;
  background: #2d2d2d;
  font-size: 1.2rem;
  line-height: normal;
}

.f-site-title {
  font-family: 'Montserrat';
  font-weight: bold;
  margin-bottom: 7px;
  font-size: 1.2rem;
}

footer.site-footer.footer {
  display: none;
}

.dw-footer ul.flagship-report-menu {
  /* border-top: 1px solid #ffffff; */
  /* margin-top: 10px; */
  /* padding-top: 10px; */
}

.dw-footer ul.flagship-report-menu li {
  border: none;
  padding: 0;
}

.dw-footer img.cgiar-logo {
  max-width: 73%;
}

.dw-footer button {
  color: #000;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 0;
  margin-bottom: 0;
  padding: 5px 8px;
  box-shadow: 0;
  transition: all 0.3s ease;
  font-weight: bold;
  justify-content: space-between;
  font-family: 'Montserrat';
}

.columns-12 {}

.f-site-title span {
  font-weight: 300;
}
