/* static fonts */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../webfonts/Inter-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../webfonts/Inter-ThinItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../webfonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../webfonts/Inter-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/Inter-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../webfonts/Inter-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../webfonts/Inter-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../webfonts/Inter-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../webfonts/Inter-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/Inter-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/Inter-BlackItalic.woff2") format("woff2");
}
html, body {
  height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #151515;
}

a {
  color: #151515;
  text-decoration: underline;
  transition: all 0.3s ease;
}
a:not(.btn-primary):not(.btn-outline-light):hover {
  color: #0041D7;
}
a:focus {
  outline: 1px solid #000;
}

img {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 0 !important;
}

.text-green {
  color: #00E8C6;
}

h2.subheading {
  font-size: 1.5rem;
}
h2 a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.notBold {
  font-weight: normal;
}

.linear-gradient {
  background-color: #0041D7;
  background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  color: #fff;
}
.linear-gradient a {
  color: #fff;
}

.sep {
  height: 1px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0041D7, #20BDFF, #00E8C6);
}

.map-background {
  background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  background-image: url(../images/DSI_map_graphic.svg), linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  background-size: auto 100%;
  background-position: center left 10%;
  background-repeat: no-repeat;
}

.linear-gradient-half {
  position: relative;
}
.linear-gradient-half .col-md-6 {
  position: relative;
  z-index: 1;
}
.linear-gradient-half .col-md-6:first-child {
  padding-right: 7rem !important;
}
@media screen and (max-width: 768px) {
  .linear-gradient-half .col-md-6:first-child {
    padding-bottom: 3rem;
  }
}
.linear-gradient-half .col-md-6:last-child {
  padding-left: 7rem !important;
}
@media screen and (max-width: 768px) {
  .linear-gradient-half .col-md-6:last-child {
    padding-top: 3rem;
  }
}
.linear-gradient-half:after {
  content: "";
  width: 50%;
  position: absolute;
  background-image: url(../images/DSI_map_graphic.svg);
  background-size: clamp(100px, 100%, 600px) auto;
  background-position: top center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .linear-gradient-half:before {
    content: "";
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #0041D7;
    background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .linear-gradient-half:before {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background-color: #0041D7;
    background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  }
  .linear-gradient-half:after {
    width: 100%;
  }
}

.rounded {
  border-radius: 8px;
}

.gradient-icon {
  background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dsi-alert {
  background: rgba(32, 189, 255, 0.2392156863);
  color: #151515;
  border: none;
}

.btn {
  border-radius: 8px;
  padding: 6px 24px;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  border: 0;
  background-color: #0041D7;
  background-image: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
}
.btn.btn-primary:hover {
  background-size: 200% 100%;
  background-position: 0% 0px, 100% 0px;
}
.btn.btn-secondary {
  background-color: #00E8C6;
  color: #000;
  border: 1px solid #00E8C6;
}
.btn.btn-secondary:hover {
  border-color: #fff;
  background: none;
  color: #fff;
}
.btn:focus {
  outline: 1px solid #000;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.top_four.diagonal_design {
  counter-reset: rowNumberTopFour;
  font-size: 2.5rem;
  max-width: 600px;
  margin: auto;
}
ul.top_four.diagonal_design li {
  counter-increment: rowNumberTopFour;
  color: #fff;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
ul.top_four.diagonal_design li > * {
  background: #000;
  padding: 7px 25px;
}
ul.top_four.diagonal_design li > .title {
  flex-grow: 1.5;
}
@media screen and (max-width: 800px) {
  ul.top_four.diagonal_design li > .title {
    text-align: center;
  }
}
ul.top_four.diagonal_design li > .score {
  flex-grow: 1;
  text-align: center;
}
@media screen and (min-width: 800px) {
  ul.top_four.diagonal_design li > .score {
    max-width: 31%;
  }
}
ul.top_four.diagonal_design li::before {
  padding: 7px 13px;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  content: counter(rowNumberTopFour);
  background: #000;
}
@media screen and (min-width: 800px) {
  ul.top_four.diagonal_design li:nth-child(2) {
    transform: translateX(40px);
  }
  ul.top_four.diagonal_design li:nth-child(3) {
    transform: translateX(80px);
  }
  ul.top_four.diagonal_design li:nth-child(4) {
    transform: translateX(120px);
  }
  ul.top_four.diagonal_design li::before {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 800px) {
  ul.top_four.diagonal_design {
    font-size: 1.5rem;
  }
  ul.top_four.diagonal_design li {
    counter-increment: rowNumberTopFour;
    color: #fff;
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 600px) {
  ul.top_four.diagonal_design li {
    flex-direction: column;
  }
}

ul.checkbox-list {
  list-style: none;
  padding-left: 0;
}
ul.checkbox-list li:not(:last-child) {
  margin-bottom: 15px;
}
ul.checkbox-list li:before {
  content: "\f058"; /* Unicode for fa-check-square */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* Needed for solid icons */
  margin-right: 3px;
  background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img {
  height: 70px;
}

.logo-separator {
  text-align: center;
  margin-bottom: 15px;
}
.logo-separator.left {
  text-align: left;
}
.logo-separator img {
  max-width: 30px;
}

section.bg_floating_dots {
  background-image: url(../images/DSI_featured_image_floatingdots.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.accordion-item h3 .accordion-button:not(.collapsed) {
  background-color: #fff !important;
}

.leaflet-container {
  max-width: 100%;
  max-height: 100%;
}
.leaflet-container .leaflet-top {
  pointer-events: all !important;
  top: 10px;
}

#map {
  width: 100%;
  height: 600px;
  margin: auto;
}

.leaflet-container {
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.info {
  padding: 15px 16px;
  background: white;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  max-width: 360px;
}
.info .title {
  margin: 10px 0;
  font-size: 1.5rem;
}
.info .dsi_score {
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  margin: 19px 0;
  position: relative;
}
.info .dsi_score .score {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 2rem;
  margin-top: 8px;
}
.info .dsi_score .country_name {
  margin: 0;
}
.info .dsi_score .formal_en {
  display: block;
  font-size: 15px;
}
.info .no_data {
  font-weight: bold;
  display: block;
  margin: 15px 0;
}
.info ul.country_infos {
  list-style: none;
  padding: 0;
}
.info ul.country_infos li {
  margin: 2px 0;
}
.info ul.country_infos li i {
  min-width: 31px;
  text-align: center;
}

.legend {
  text-align: left;
  line-height: 18px;
}
.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
  opacity: 0.7;
}

.caveats-list {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.caveats-list li {
  box-sizing: border-box;
  flex: 0 0 48%;
}
@media screen and (max-width: 576px) {
  .caveats-list li {
    flex: 0 0 100%;
  }
}

footer {
  color: #bbb !important;
}
footer .footer-menu li a {
  padding: 5px 0;
  display: block;
  text-decoration: none;
}
footer .footer-menu li a:focus, footer .footer-menu li a:hover {
  text-decoration: underline;
}
footer .bottom_section {
  border-top: 1px solid #585858;
}

form label .info-icon {
  font-size: 0.8em;
  border: none;
  background: none;
  color: #0041D7;
  font-weight: bold;
  cursor: pointer;
}
form .note {
  font-size: 0.8em;
  line-height: 1.5;
  margin-top: 10px;
}
form .note:not(.visible) {
  display: none;
}
form .note[style*="display: inline"] {
  display: block !important;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
  border-radius: 8px;
}
.cookie-banner p {
  margin-bottom: 12px;
}
.cookie-banner .button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner .button-group button {
  padding: 6px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-banner .button-group button:not(#customize-toggle) {
  background-image: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  color: white;
}
.cookie-banner .button-group button#customize-toggle {
  background: none;
}
.cookie-banner .button-group button:hover {
  background-size: 200% 100%;
  background-position: 0% 0px, 100% 0px;
}
.cookie-banner .button-group button:focus {
  outline: 1px solid #000;
}
.cookie-banner #cookie-details {
  font-size: 13px;
  margin-bottom: 12px;
  padding-top: 10px;
}
.cookie-banner #cookie-details .cookie-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding: 6px 0;
  font-size: 13px;
}
.cookie-banner #cookie-details .cookie-row > div {
  flex: 1;
  min-width: 100px;
  padding: 0 5px;
  overflow-wrap: break-word;
}
.cookie-banner #cookie-details .cookie-header {
  font-weight: bold;
  border-bottom: 2px solid #999;
  padding-bottom: 6px;
}

.hidden {
  display: none;
}

.blackBG {
  background-color: #000;
  color: #fff;
}
.blackBG .line {
  background-color: #fff !important;
}
.blackBG a {
  color: #fff !important;
}

.heading-number {
  font-size: 2.5rem;
}

.score-cards {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .score-cards {
    flex-direction: column;
  }
}
.score-cards .score-card {
  min-height: 14rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-content: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .score-cards .score-card {
    width: 49%;
  }
}
.score-cards .score-card .score {
  font-size: 7rem;
  font-weight: 500;
  display: block;
  text-align: center;
}
.score-cards .score-card .title {
  text-align: left;
  display: block;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .score-cards .score-card.usa {
    margin-top: 7rem !important;
  }
}

.line {
  width: 50%;
  height: 2px;
  display: block;
  margin: 15px 0;
  background-color: #151515;
}

.arrow {
  display: inline-block;
  font-size: 1.2em;
  margin-right: 15px;
}

.two_columns {
  -moz-column-count: 2;
       column-count: 2;
}

ul.key-findings-list {
  counter-reset: rowNumber;
  padding: 0;
  margin: 0;
}
ul.key-findings-list li {
  display: inline-block;
  padding-right: 10px;
  margin: 10px 0;
  counter-increment: rowNumber;
}
@media screen and (min-width: 600px) {
  ul.key-findings-list li {
    width: 49%;
  }
}
ul.key-findings-list li:before {
  content: counter(rowNumber);
  font-size: 2rem;
  display: block;
}
ul.key-findings-list li .line {
  width: 50%;
  height: 2px;
  display: block;
  margin: 15px 0;
  margin-top: 10px;
  background-color: #fff;
}

.img-credit {
  text-align: right;
  margin-top: 9px;
  font-size: 0.8em;
  font-weight: 500;
}

.row.table-count {
  counter-reset: rowNumber;
}

table {
  border-collapse: collapse;
  display: block;
  width: 100%;
  table-layout: fixed;
}
table tbody {
  display: block;
  width: 100%;
}
table tbody tr {
  display: block;
  width: 100%;
  counter-increment: rowNumber;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  width: 100%;
  display: flex;
}
table tbody tr:not(:last-child) {
  border-bottom: 2px solid #929292;
}
table tbody tr td {
  padding: 8px 12px;
  box-sizing: border-box;
}
table tbody tr td:first-child {
  width: 75%;
  text-align: left;
}
table tbody tr td:first-child:before {
  content: counter(rowNumber) ". ";
  font-weight: bold;
  margin-right: 7px;
  min-width: 30px;
  display: inline-block;
}
table tbody tr td:last-child {
  width: 20%;
}

.testimonial {
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  display: flex;
  gap: 20px;
}
.testimonial .testimonial-img {
  aspect-ratio: 4/6;
  overflow: hidden;
  align-self: self-end;
  min-width: 14%;
  max-height: 150px;
  position: relative;
}
.testimonial .testimonial-img.blueOverlay:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: #0041D7;
  z-index: 1;
  border-radius: 8px;
  mix-blend-mode: overlay;
}
.testimonial .testimonial-img.blueOverlay img {
  filter: grayscale(100%);
}
.testimonial .testimonial-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .testimonial-text {
  position: relative;
}
.testimonial .testimonial-text:before {
  position: absolute;
  left: -67px;
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: rotate(180deg);
  font-size: 3rem;
  top: -7px;
  color: #0041D7;
}
.testimonial .testimonial-text blockquote {
  margin: 0 0 1.5rem;
}
.testimonial .testimonial-text figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial .testimonial-text figcaption .testimonial-info strong {
  display: block;
  font-style: normal;
}
.testimonial .testimonial-text figcaption .testimonial-info span {
  font-size: 0.9rem;
}

.globeBG {
  background: linear-gradient(15deg, #0041D7 10%, #20BDFF 70%, #00E8C6 100%);
  color: #fff;
}
.globeBG .testimonial .testimonial-text::before {
  color: #fff;
}/*# sourceMappingURL=style.css.map */