/*
 * Hoisin.scss
 * CSS responsive framework boilerplate
 * Create easy grid layouts, plugin anything
 * Version: 2.0.3
 * Created by: Cyber-Duck Ltd <info@cyber-duck.co.uk>,
 *             Ramon Lapenta <me@ramonlapenta.com>
 *
 */
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 0 auto;
  box-sizing: border-box;
  justify-items: stretch;
}

.span {
  box-sizing: border-box;
  display: flex;
  padding: 0;
  max-width: 100%;
  min-width: 0;
}
.span.span-middle {
  align-items: center;
}

@media (min-width: 720px) {
  .grid.grid-reverse > *:nth-child(1) {
    order: 6;
  }
  .grid.grid-reverse > *:nth-child(2) {
    order: 5;
  }
  .grid.grid-reverse > *:nth-child(3) {
    order: 4;
  }
  .grid.grid-reverse > *:nth-child(4) {
    order: 3;
  }
  .grid.grid-reverse > *:nth-child(5) {
    order: 2;
  }
  .grid.grid-reverse > *:nth-child(6) {
    order: 1;
  }
}
@media (min-width: 1180px) {
  .grid {
    width: 1000px;
    gap: 24px;
  }
  .grid.grid-tight {
    gap: 0;
  }
  .grid.grid-narrow {
    width: 820px;
  }
  .grid.grid-wide {
    width: 1160px;
  }
  .grid.lg-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.lg-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.lg-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.lg-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.lg-6 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.lg-wide-sidebar-right {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
  .grid.lg-wide-sidebar-left {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }
  .grid.lg-sidebar-right {
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
  }
  .grid.lg-sidebar-left {
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
  }
}
@media (min-width: 1480px) {
  .grid {
    width: 1180px;
    gap: 36px;
  }
  .grid.grid-tight {
    gap: 0;
  }
  .grid.grid-narrow {
    width: 980px;
  }
  .grid.grid-wide {
    width: 1460px;
  }
}
@media (min-width: 720px) and (max-width: 1179px) {
  .grid {
    width: 90%;
    gap: 0 12px;
  }
  .grid.grid-tight {
    gap: 0;
  }
  .grid.md-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.md-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.md-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.md-5 {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.md-6 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.grid-narrow {
    width: 80%;
  }
  .grid.grid-wide {
    width: 100%;
  }
  .grid.md-wide-sidebar-right {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
  .grid.md-wide-sidebar-left {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }
  .grid.md-sidebar-right {
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
  }
  .grid.md-sidebar-left {
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
  }
}
@media (max-width: 720px) {
  .grid {
    width: 92%;
    gap: 0 12px;
  }
  .grid.grid-tight {
    gap: 0;
  }
  .grid.grid-narrow {
    width: 80%;
  }
  .grid.grid-wide {
    width: 100%;
  }
  .grid.sm-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.sm-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
body {
  line-height: 1.5;
  font-family: "effra", sans-serif;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "effra", sans-serif;
  color: #25317a;
  font-weight: 400;
}

h1 {
  font-style: normal;
  margin-bottom: 24px;
  line-height: 1.2;
}

h2 {
  margin: 1em 0 0.5em 0;
  line-height: 1.2;
}

h3 {
  margin: 0;
  margin: 1em 0 0.5em 0;
}

p {
  font-family: "effra", sans-serif;
  margin: 0 0 1em 0;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #25317a;
  word-break: break-word;
}

.txt-pink {
  color: #c83c87;
}

.no-display {
  display: none;
}

.bg-white {
  background-color: #ffffff;
}

.no-wrap {
  white-space: nowrap;
}

.txtc {
  text-align: center;
}

.skip {
  top: 0;
  left: 0;
  z-index: 1000;
  display: block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #25317a;
  text-decoration: none;
  position: absolute;
  margin-top: -200px;
  outline: none;
}
.skip:focus {
  margin-top: 0;
}

@media (min-width: 1180px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 3.1em;
  }

  h2 {
    font-size: 2.778em;
  }

  h3 {
    font-size: 1.389em;
  }
}
@media (min-width: 720px) and (max-width: 1179px) {
  h1 {
    font-size: 3.1em;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.25em;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #010101;
  overflow-x: hidden;
  font-family: "effra", sans-serif;
}

.logo-lnk img {
  width: 300px;
}

figure {
  padding: 0;
  margin: 0;
}

.content-box {
  max-width: 100%;
  min-width: 0;
}

.table-wrap {
  max-width: 100%;
  overflow: auto;
}

table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  background-color: #ffffff;
  margin: 0 0 24px 0;
}
table th,
table td {
  padding: 10px;
  border: 1px solid #ccc;
}
table th {
  background-color: #c83c87;
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  padding: 24px 0;
  margin-bottom: 24px;
  background-color: #c83c87;
  color: #ffffff;
  position: relative;
}
figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2800px;
  transform: translateX(-50%);
  z-index: -1;
  background-color: #c83c87;
}
figure img {
  box-sizing: border-box;
  padding: 6px;
  background-color: #ffffff;
}

.boxed-text {
  background-color: #e2e5f0;
  padding: 12px;
  margin-bottom: 24px;
}
.boxed-text figure {
  padding: 12px;
}
.boxed-text figure::before {
  display: none;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

@media (max-width: 720px) {
  .logo-lnk img {
    width: 230px;
  }
}
.main-foot {
  background-color: #e2e5f0;
  padding: 40px;
  z-index: 100;
}
.main-foot ul {
  list-style-type: none;
}
.main-foot .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-foot .social-links {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-left: 0;
}
.main-foot .social-links svg {
  height: 22px;
  fill: #25317a;
}
.main-foot .social-links svg:hover {
  fill: #5566a8;
}
.main-foot .footer-list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0;
  padding-left: 0;
}
.main-foot .footer-list .footer-item {
  padding: 5px;
}
.main-foot .footer-list a {
  color: #25317a;
  text-decoration: none;
}
.main-foot .footer-list a:hover {
  color: #5566a8;
}
@media (max-width: 720px) {
  .main-foot {
    padding: 30px 20px;
  }
  .main-foot .footer-list .footer-item {
    padding: 0;
  }
  .main-foot .footer-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 90vw;
    gap: 20px;
    font-size: 14px;
  }
}

.main-head .toggle-menu {
  display: none;
}
.main-head .header-top {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 20px 10px;
  align-items: center;
}
.main-head ul {
  list-style: none;
}
.main-head a {
  text-decoration: none;
  color: #25317a;
}
.main-head a:hover {
  cursor: pointer;
}
.main-head .website-lnk-icon {
  margin-left: 10px;
}
.main-head .navs {
  position: relative;
}
.main-head .main-nav {
  background-color: #f3f6f8;
}
.main-head .main-nav a {
  color: #25317a;
}
.main-head .nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  height: 55px;
  padding: 0;
}
.main-head .nav-item {
  height: 100%;
}
.main-head .nav-item a {
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.main-head .nav-item a:hover {
  background-color: #ffffff;
}
.main-head .nav-item .expand-icon {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  background-image: url("/assets/images/expand.svg");
}
.main-head .nav-item .expand-less {
  background-image: url("/assets/images/expand-less.svg");
}
@media (min-width: 720px) and (max-width: 1179px) {
  .main-head .nav-lnk {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .main-head .toggle-menu {
    border: none;
    display: inline-block;
    height: 25px;
    width: 25px;
    background: url("/assets/images/hamburger.svg") center/cover no-repeat;
    cursor: pointer;
  }
  .main-head .close {
    display: inline-block;
    height: 15px;
    width: 15px;
    background: url("/assets/images/close.svg") center/cover no-repeat;
    transform: translate(-5px, -1px);
  }
  .main-head .navs {
    display: none;
  }
  .main-head .main-nav {
    background-color: #ffffff;
  }
  .main-head .website-lnk {
    display: none;
  }
  .main-head .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding: 10px;
  }
  .main-head .nav-lnk {
    margin-bottom: 5px;
  }
  .main-head .sub-nav {
    display: block !important;
    position: relative;
    box-shadow: none;
    transform: none;
    padding: 10px 0;
  }
  .main-head .sub-nav ul {
    width: 100%;
    padding-left: 15px;
  }
  .main-head .sub-nav-item {
    margin-bottom: 10px;
  }
  .main-head .expand-icon {
    display: none;
    pointer-events: none;
  }
}

.btn {
  color: white !important;
  background-color: #c83c87 !important;
  border: none !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  display: inline-block !important;
  text-decoration: none !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  font-size: 18px !important;
}
.btn:hover {
  background-color: #a81865 !important;
}
.btn svg.launch {
  margin-left: 10px;
  transform: translateY(2px);
}

.intro-btn {
  text-align: center;
}

.btn-anchor {
  color: white;
  background-color: #0069b4;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 18px;
}
.btn-anchor:hover {
  background-color: #00598a;
}

@media (max-width: 720px) {
  .intro-btn {
    text-align: left;
    margin-top: 15px;
  }
}
.page-title {
  display: flex;
  align-items: center;
  -webkit-clip-path: polygon(0% 0%, 90% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 90% 0%, 95% 100%, 0% 100%);
  background-color: #e2e5f0;
}
.page-title h1 {
  color: #25317a;
  margin: 0;
  padding: 0 20px 0;
}
@media (max-width: 720px) {
  .page-title.page-title {
    -webkit-clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  }
}

.section {
  padding: 48px 0;
}

.section-blue {
  background-color: #f3f6f8;
}

.section-download {
  position: relative;
  background-color: #f3f6f8;
  padding: 50px 20px 0;
}
.section-download .flex {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.section-supporters .supporters--inner-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 720px) {
  .section-supporters .supporters--inner-container {
    flex-direction: row;
  }
}
.section-supporters .supporters--inner-container .logo-container {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 720px) {
  .content-narrow {
    padding: 0 55px;
  }
}

.section-banner {
  position: relative;
  height: 75vh;
}

@media (min-width: 720px) and (max-width: 1179px) {
  .section-download {
    padding: 50px 20px;
  }
  .section-download .flex {
    display: block;
  }
}
@media (max-width: 720px) {
  .section-download {
    padding: 50px 20px;
  }
  .section-download .flex {
    display: block;
  }
}
.banner {
  height: 100%;
  width: 100%;
  background: url("/assets/images/SG-with-youth.jpg") center/cover no-repeat;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 250px 100%, 0% 100px);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 250px 100%, 0% 100px);
  background-color: #d7ecf5;
}

.banner-cont {
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0% 0%, 87% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 87% 0%, 100% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 65px;
}
.banner-cont .content {
  padding: 40px 200px 40px 0;
}
.banner-cont h1 {
  color: #25317a;
  margin: 0;
}
.banner-cont p {
  color: #141414;
  font-size: 14px;
}

@media (max-width: 720px) {
  .section-banner {
    height: 80vh;
  }

  .banner {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 25%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 25%);
  }

  .banner-cont {
    -webkit-clip-path: none;
    clip-path: none;
    padding: 20px 10px;
    width: 100%;
  }
  .banner-cont .content {
    padding: 0;
  }
  .banner-cont .content h1 {
    font-size: 1.5em !important;
  }
}
.section-download .doc-element {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.section-download .section-download--message {
  padding-bottom: 48px;
}
@media (min-width: 720px) {
  .section-download .section-download--message {
    margin-left: 35px;
  }
}
.section-download .section-download--message .download-btn {
  display: flex;
  padding-left: 25px;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s;
}
@media (max-width: 720px) {
  .section-download .section-download--message .download-btn {
    padding-left: 0;
  }
}
.section-download .section-download--message .download-btn:hover {
  transform: translateY(-4px);
}
.section-download .section-download--message .download-btn .pdf-icon {
  width: 25px;
  height: 32px;
  background: url("/assets/images/pdf-icon.svg") center/contain no-repeat;
}
.section-download .section-download--message .download-btn .download-icon {
  width: 12px;
  height: 14px;
  background: url("/assets/images/arrow-down-icon.svg") center/contain no-repeat;
}
.section-download .section-download--message .download-btn span {
  display: inline-block;
  margin: 0 5px 0 18px;
  color: #c83c87;
  font-size: 16px;
}

.linked-box {
  margin-bottom: 33px;
  padding: 32px;
  border-radius: 8px;
  background-color: #f3f6f8;
}
.linked-box .icon {
  border-radius: 6px;
  width: 100px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 68px;
}
.linked-box .icon.icon-education {
  background-color: rgba(231, 200, 216, 0.35);
  background-image: url("/assets/images/icon-education.svg");
}
.linked-box .icon.icon-employment {
  background-color: rgba(194, 227, 225, 0.35);
  background-image: url("/assets/images/icon-employment.svg");
}
.linked-box .icon.icon-health {
  background-color: rgba(242, 225, 212, 0.35);
  background-image: url("/assets/images/icon-health.svg");
}
.linked-box .icon.icon-equality {
  background-color: rgba(194, 216, 227, 0.35);
  background-image: url("/assets/images/icon-equality.svg");
}
.linked-box .icon.icon-political {
  background-color: rgba(215, 230, 209, 0.35);
  background-image: url("/assets/images/icon-political.svg");
}
.linked-box .icon.icon-peace {
  background-color: rgba(226, 229, 240, 0.35);
  background-image: url("/assets/images/icon-peace.svg");
}
.linked-box a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  color: #c83c87;
}
.linked-box a:hover {
  text-decoration: underline;
}
.linked-box .icon-arrow-next {
  margin-left: 13px;
  width: 14px;
  height: 12px;
  background: url("/assets/images/icon-arrow-next.svg") center/contain no-repeat;
}

.spacer {
  padding: 15px 0;
  display: block;
  clear: both;
}
@media (min-width: 720px) {
  .spacer {
    padding: 30px 0;
  }
}

.spacer-half {
  padding: 7.5px 0;
  display: block;
  clear: both;
}
@media (min-width: 720px) {
  .spacer-half {
    padding: 15px 0;
  }
}

.country-list-container {
  text-align: center;
}
@media (max-width: 720px) {
  .country-list-container {
    text-align: left;
  }
}

.country-list {
  display: inline-block;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 200px;
  column-gap: 200px;
  list-style: none;
  margin: 20px auto;
  padding-left: 0;
}
@media (max-width: 720px) {
  .country-list {
    display: block;
    -moz-columns: 1;
    columns: 1;
    margin-left: 20px;
    margin-right: initial;
  }
}
.country-list li {
  margin-bottom: 10px;
  padding: 5px 5px 5px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.country-list li:last-child .rank, .country-list li:nth-child(10) .rank {
  margin-left: -11px;
}
.country-list li .li-inner {
  display: flex;
  align-items: center;
  padding-left: 0px;
}
.country-list li .li-inner .rank {
  font-weight: 700;
  color: #25317a;
  font-size: 20px;
  margin-right: 26px;
}
.country-list li .li-inner .flag {
  width: 42px;
  height: 28px;
  margin-right: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.country-list li .li-inner .flag.flag-singapore {
  background-image: url("/assets/images/singapore-flag.png");
}
.country-list li .li-inner .flag.flag-slovenia {
  background-image: url("/assets/images/slovenia-flag.png");
}
.country-list li .li-inner .flag.flag-norway {
  background-image: url("/assets/images/norway-flag.png");
}
.country-list li .li-inner .flag.flag-malta {
  background-image: url("/assets/images/malta-flag.png");
}
.country-list li .li-inner .flag.flag-sweden {
  background-image: url("/assets/images/sweden-flag.png");
}
.country-list li .li-inner .flag.flag-denmark {
  background-image: url("/assets/images/denmark-flag.png");
}
.country-list li .li-inner .flag.flag-ireland {
  background-image: url("/assets/images/ireland-flag.png");
}
.country-list li .li-inner .flag.flag-switzerland {
  background-image: url("/assets/images/switzerland-flag.png");
}
.country-list li .li-inner .flag.flag-luxembourg {
  background-image: url("/assets/images/luxembourg-flag.png");
}
.country-list li .li-inner .flag.flag-netherlands {
  background-image: url("/assets/images/netherlands-flag.png");
}
.country-list li .li-inner .flag.flag-portugal {
  background-image: url("/assets/images/portugal-flag.png");
}

.graph {
  height: 800px;
  width: 100%;
  overflow: hidden;
}

iframe {
  width: 101.5%;
  height: 101.2%;
}

@media (max-width: 720px) {
  .graph {
    height: 1200px;
  }

  iframe {
    width: 102%;
  }
}
.ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c83c87;
  padding: 10px;
}
.ribbon svg {
  vertical-align: middle;
  margin-right: 10px;
}
.ribbon a {
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}
.ribbon a:hover {
  opacity: 0.9;
}

.privacy h1,
.terms-conditions h1,
.cookies h1 {
  margin-top: 0;
}
.privacy h2,
.terms-conditions h2,
.cookies h2 {
  font-size: 1.6em;
}
.privacy .content,
.terms-conditions .content,
.cookies .content {
  padding: 50px 0;
}

@media (max-width: 720px) {
  .privacy h2,
.terms-conditions h2,
.cookies h2 {
    font-size: 1.3em;
  }
  .privacy .content,
.terms-conditions .content,
.cookies .content {
    padding: 30px 0;
  }
}
.page--the-results .region-list a,
.page--the-results .region-list li {
  color: #25317a;
  cursor: pointer;
}
.page--the-results .region-list a:hover,
.page--the-results .region-list li:hover {
  color: #5566a8;
}

.country_view .container,
.region_view .container {
  margin-top: 30px;
}

.region_view footer {
  width: 100%;
}

#region_div,
#country_div {
  max-width: 1200px;
  margin: auto !important;
  float: none;
}

.page--what-is-the-youth-development-index .wide-img {
  background: url("/assets/images/woman-monitors-data.jpg") top/cover no-repeat;
  height: 600px;
}

@media (min-width: 1180px) {
  .page--what-is-the-youth-development-index .wide-img {
    height: 700px;
  }
}
/* 
/* This is just Hoisin's sample page styles
/* You can remove this and delete the _sample.scss
/* file for your project.
*/
/*# sourceMappingURL=maps/style.css.map */
