@charset "UTF-8";
@font-face {
  font-family: "PFB";
  src: url("../fonts/PFSQUARESANSPRO-BOLD.ttf");
}
@font-face {
  font-family: "PF";
  src: url("../fonts/PFSQUARESANSPRO-REGULAR.ttf");
}
@font-face {
  font-family: "PFL";
  src: url("../fonts/PFSquareSansPro-Light.otf");
}
@font-face {
  font-family: "PFT";
  src: url("../fonts/PFSquareSansPro-Thin.ttf");
}
@font-face {
  font-family: "PFM";
  src: url("../fonts/PFSquareSansPro-Medium.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PF", sans-serif;
  font-weight: 400;
  scrollbar-width: thin;
}
* ::-webkit-scrollbar {
  width: 8px;
}

h1,
h4,
h5,
h6 {
  font-family: "PFB", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 3.25rem;
  text-align: center;
}

h1.overbar {
  font-size: 1.65rem;
  text-align: center;
}

h2,
h3 {
  font-family: "PFM", sans-serif;
  font-weight: 400;
}

h2.overbar {
  font-size: 1.45rem;
  text-align: center;
}

html {
  color: white;
  font-size: 22px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
}
body article {
  background-color: rgba(255, 255, 255, 0.08);
}
body article article {
  background-color: transparent !important;
  backdrop-filter: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  background: transparent linear-gradient(240deg, #3B61A6 0%, #123160 100%) 0% 0% no-repeat padding-box;
  overflow: hidden;
  margin-left: 125px;
  min-height: 100%;
}

.no-shadow {
  box-shadow: none !important;
}

section {
  transition: 0.5s ease-in-out;
  display: none;
  width: 100%;
  height: 100%;
  padding: 4vw;
  max-width: 1440px;
}
section.hidden {
  opacity: 0;
  transform: translateY(150px);
}
section.visible {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
section.visible article {
  justify-content: center;
  align-items: center;
}

article {
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 8px rgba(26, 63, 119, 0.66), -2px -2px 8px rgba(96, 144, 162, 0.24);
  border-radius: 35px;
  backdrop-filter: blur(60px);
  padding: 20px;
  margin: 20px;
}

.regular {
  font-family: "PF", sans-serif;
  font-weight: 400;
}

.medium {
  font-family: "PFM", sans-serif;
  font-weight: 400;
}

.bold {
  font-family: "PFB", sans-serif;
  font-weight: 700;
}

.light {
  font-family: "PFL", sans-serif;
  font-weight: 300;
}

.thin {
  font-family: "PFT", sans-serif;
  font-weight: 200;
}

.grid {
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.08);
}
.grid article {
  margin: 0;
  background-color: transparent;
  backdrop-filter: none;
}

a {
  text-decoration: none;
  color: white;
}

p {
  margin: 0;
}

label img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
  padding: 20px;
}

h2 {
  font-size: 1.25rem;
}

.w-full {
  width: 100% !important;
}

.w-half {
  width: 50% !important;
}

.w-quarter {
  width: 25% !important;
}

.grid .w-quarter > div:nth-of-type(1) {
  box-shadow: 0px 0px 8px #1a3f77a8;
  z-index: 1;
}

.w-three-quarters {
  width: 75% !important;
}

.w-100 {
  width: calc(100% - 40px);
}

.w-90 {
  width: calc(90% - 40px);
}

.w-70 {
  width: calc(70% - 40px);
}

.w-75 {
  width: calc(75% - 40px);
}

.w-50 {
  width: calc(50% - 40px);
}

.w-33 {
  width: calc(33.33% - 40px);
}

.w-30 {
  width: calc(30% - 40px);
}

.w-25 {
  width: calc(25% - 40px);
}

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

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

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

.flex {
  display: flex;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

.self-strech {
  align-self: stretch;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-around {
  justify-content: space-around !important;
}

.items-baseline {
  align-items: baseline;
}

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

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.relative {
  position: relative;
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.o-0 {
  overflow: hidden;
}

.o-1 {
  overflow: visible;
}

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

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mr-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mh-1 {
  min-height: 1rem;
}

.mh-2 {
  min-height: 2rem;
}

.mh-3 {
  min-height: 3rem;
}

.mh-4 {
  min-height: 4rem;
}

.mh-5 {
  min-height: 5rem;
}

.mh-6 {
  min-height: 6rem;
}

.max-w-100 {
  max-width: 100%;
}

.inline-enlarge {
  font-size: 120%;
  font-weight: bold;
  vertical-align: bottom;
}

.enlarge {
  font-size: 120%;
  font-weight: bold;
}

.inline {
  display: inline !important;
}

.notice {
  border: 2px solid #d1e6f8;
  border-radius: 20px;
  color: #d1e6f8;
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  font-style: italic;
}

.bottom-arrow-link::after {
  content: "ᐯ";
  left: 0;
  right: 0;
  display: block;
  transform: scale(2, 1);
}

.nbsp {
  white-space: pre;
}

.pwsp {
  white-space: pre-wrap;
}

.hidden {
  display: none;
}

.data-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.data-label span {
  font-family: "PFB", sans-serif;
  font-weight: 700;
  font-size: 30px;
}
.data-label .data {
  min-height: 70px;
  padding: 10px;
  flex-wrap: nowrap;
}

.mini {
  font-size: 1rem !important;
}

.minier {
  font-size: 0.75rem !important;
}

.data {
  font-family: "PFB", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.data.shrink {
  font-size: 1.05rem !important;
}

.fake-col {
  height: calc(100% - 75px);
}

label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "PFM", sans-serif;
  font-weight: 400;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #97d700, #47b149);
  font-size: 0.9rem;
  padding: 20px 20px;
  position: relative;
  box-shadow: 0 2px 20px -2px rgba(165, 222, 243, 0.4);
}
label::after {
  content: "";
  width: 120%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  box-shadow: inset 0 2px 10px -2px rgba(0, 0, 0, 0.6);
}

.underbar {
  width: 100%;
  background: linear-gradient(90deg, #97d700, #47b149);
  min-height: 0px;
  height: 10px;
  padding: 0;
  position: static;
  box-shadow: -2px -2px 8px rgba(96, 144, 162, 0.4), -2px -2px 8px rgba(96, 144, 162, 0.4);
  overflow: hidden;
  border-radius: 30px;
}
.underbar::after {
  box-shadow: none;
}

.grid {
  box-shadow: 2px 2px 8px #1a3f77a8, -2px -2px 8px rgba(96, 144, 162, 0.24);
  border-radius: 35px;
  backdrop-filter: blur(60px);
  padding: 20px;
  margin: 20px;
}
.grid > article {
  box-shadow: inset 2px 2px 8px #1a3f77a8, inset -2px -2px 8px rgba(96, 144, 162, 0.24), 0 0 15px rgba(255, 255, 255, 0.4);
  margin: 20px auto;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}
.grid label:not(.underbar) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(#97d700, #47b149);
  width: 100%;
  min-height: 5.5rem;
  padding: 10px 20px;
  text-align: center;
}
.grid label:not(.underbar)::after {
  content: initial;
}
.grid .w-70 > div {
  width: 33.333333%;
}
.grid .w-70 > div:nth-of-type(2) {
  box-shadow: 0px 0px 8px #1a3f77a8;
  z-index: 1;
}
.grid .w-70 .w-full {
  width: 100%;
}
.grid .w-half > div:nth-of-type(1) {
  box-shadow: 0px 0px 8px #1a3f77a8;
  z-index: 1;
}
.grid .award-logo {
  height: 50px;
}

.plate-title {
  min-height: 4rem;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 40px;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.prominent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  padding: 5px 20px;
  min-height: 5.5rem;
  background-color: #3061b9;
}
.prominent.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blue {
  background-color: #0283b5;
}

.red {
  background-color: #BA1E21;
}

.green {
  background-color: #47b149;
}

[data-lang=el] .lang-en,
[data-lang=en] .lang-el,
[data-year="2020"] .year-2019,
[data-year="2019"] .year-2020 {
  opacity: 0;
}

[data-lang=el] .toggle.lang text:nth-of-type(2) {
  opacity: 0.25;
}
[data-lang=el] .logo {
  background-image: url(../images/ote-m-gr.svg);
}
[data-lang=el] .only-english {
  display: none !important;
}

[data-lang=en] .logo {
  background-image: url(../images/ote-m-en.svg);
}
[data-lang=en] .toggle.lang text:nth-of-type(1) {
  opacity: 0.25;
}
[data-lang=en] .only-greek {
  display: none !important;
}

[data-year="2019"] main {
  filter: saturate(0.4) brightness(1.1);
}
[data-year="2019"] .toggle.year text:nth-of-type(1) {
  opacity: 0.25;
}
[data-year="2020"] .toggle.year text:nth-of-type(2) {
  opacity: 0.25;
}

.standin-ul::before {
  content: "➤";
  margin-right: 10px;
}

.euro::before {
  content: "€";
}

.standin-ul.euro::before {
  content: "➤ €";
  margin-right: 0px;
}

.standin-ul.larger::before {
  content: "➤ >";
  margin-right: 0px;
}

.larger::before {
  content: ">";
}

.larger-euro::before {
  content: ">€";
}

.smaller::before {
  content: "< ";
}

.percent::after {
  content: "%";
}

.percent.asterisk::after {
  content: "%*";
}

.asterisk {
  content: "%*";
}

.hash::before {
  content: "#";
}

.approx::before {
  content: "~";
}

.approx.euro::before {
  content: "~€";
}

.mhz::after {
  content: " MHz ";
}

.ghz::after {
  content: " GHz ";
}

.gwh::after {
  content: " GWh ";
}

.plus::before {
  content: "+";
}

.minus::before {
  content: "-";
}

.x::after {
  content: "x";
}

.gb::after {
  content: "GB";
}

.asterisk::after {
  content: "*";
}

[data-lang=el] .billion::after {
  content: " δισ.";
}
[data-lang=el] .million::after {
  content: " εκατ.";
}
[data-lang=el] .thousand::after {
  content: " χιλ.";
}
[data-lang=el] .order-first::after {
  content: "η";
  font-size: 1rem;
  vertical-align: top;
}
[data-lang=el] .km::after {
  content: " χλμ.";
}

[data-lang=en] .billion::after {
  content: "bn";
}
[data-lang=en] .million::after {
  content: "mn";
}
[data-lang=en] .thousand::after {
  content: "k";
}
[data-lang=en] .order-first::after {
  content: "st";
  font-size: 0.8rem;
  vertical-align: top;
}
[data-lang=en] .km::after {
  content: " km";
}

.hide-2019 {
  transition: 0.3s ease-in-out;
}

[data-year="2020"] .only-2020 {
  display: flex !important;
}
[data-year="2020"] .only-2020.inline {
  display: inline !important;
}
[data-year="2020"] .only-2019 {
  display: none !important;
}

[data-year="2019"] .only-2020 {
  display: none !important;
}
[data-year="2019"] .only-2019 {
  display: flex !important;
}
[data-year="2019"] .only-2019.inline {
  display: inline !important;
}
[data-year="2019"] .hide-2019 {
  display: flex !important;
  opacity: 0.1 !important;
}

@media all and (min-width: 2561px) {
  .data-label span {
    font-size: 50px;
  }
}
@media all and (max-width: 1440px) {
  html {
    font-size: 21px;
  }
}
@media all and (max-width: 1220px) {
  .t-w-100 {
    width: 100%;
  }

  .t-w-50 {
    width: 44%;
  }

  .data-label span {
    font-size: 30px;
  }

  section {
    padding: 2vw;
  }
}
@media all and (max-width: 1024px) {
  html {
    font-size: 20px;
  }

  .w-100,
.m-w-100 {
    width: calc(100% - 20px);
  }

  .m-w-100 .m-w-100 {
    width: 100%;
  }
}
@media all and (min-width: 961px) {
  .animated-bar,
.animated-bar-v {
    transition: 1s 0.2s ease-in-out !important;
  }

  .pie-chart {
    transform: scale(1) rotate(0);
    transition: 1s 0.5s ease-in-out !important;
  }

  .horizontal-bar-chart-label-top,
.horizontal-bar-chart-label-bottom {
    transition: 1s 1s ease-in-out !important;
  }

  .pie-data,
.bar-compare-container,
.bar-compare.x,
.bar-compare3 {
    transition: 1s 1s ease-in-out !important;
  }

  .has-animated-bar:not(.aos-animate) .horizontal-bar-chart-label-top,
.has-animated-bar:not(.aos-animate) .horizontal-bar-chart-label-bottom {
    opacity: 0 !important;
  }
  .has-animated-bar:not(.aos-animate) .animated-bar {
    width: 0 !important;
  }
  .has-animated-bar:not(.aos-animate) .animated-bar-v {
    height: 0 !important;
  }
  .has-animated-bar:not(.aos-animate) .pie-chart {
    transform: scale(0) rotate(180deg);
  }
  .has-animated-bar:not(.aos-animate) .pie-data {
    opacity: 0;
  }
  .has-animated-bar:not(.aos-animate) + div + .bar-compare-container {
    opacity: 0;
  }
  .has-animated-bar:not(.aos-animate) .bar-compare.x,
.has-animated-bar:not(.aos-animate) .bar-compare3 {
    opacity: 0;
  }

  .mobile-only {
    display: none !important;
  }
}
@media all and (max-width: 960px) {
  [data-aos^=zoom][data-aos^=zoom],
[data-aos^=fade-out][data-aos^=fade-out] {
    opacity: 1 !important;
    transform: none !important;
    transition-property: opacity, transform;
  }

  .desktop-only {
    display: none !important;
  }

  html {
    font-size: 19px;
  }

  [data-lang=el] .logo {
    background-image: url(../images/ote-gr.svg);
  }

  [data-lang=en] .logo {
    background-image: url(../images/ote-en.svg);
  }

  main {
    padding: 15px;
    margin-left: 0;
  }
  main section {
    padding-bottom: 40px;
  }
  main section article {
    margin: 10px;
  }

  .data-label {
    min-height: 120px;
  }

  .grid .w-70 {
    flex-direction: column;
  }
  .grid .w-70 > div {
    width: 100%;
  }
  .grid .w-70 .prominent {
    min-height: 3.5rem;
  }
  .grid .w-half {
    width: 100%;
  }

  .mob-no-o {
    overflow: visible;
  }
}
@media all and (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  html {
    font-size: 16px;
  }

  section {
    padding: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  label::after {
    box-shadow: none !important;
  }

  .nbsp,
.pwsp {
    white-space: inherit;
  }

  .tritag {
    margin-top: -200px !important;
  }

  .bar-compare-container {
    border-bottom: 0 !important;
    margin: -70px 0 0 -110px;
  }

  .bar-row::after {
    border-bottom: 0 !important;
  }
}
.background {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  pointer-events: none;
}
.background #ribbon {
  position: absolute;
  width: 350vw;
  transform-origin: center center;
  animation: ribbon infinite 120s linear;
  margin-top: -90vh;
  fill: rgba(255, 255, 255, 0.2);
}
.background #ribbon2 {
  position: absolute;
  top: 0;
  width: 330vw;
  transform: rotate(50deg);
  transform-origin: center center;
  animation: ribbon2 infinite 130s linear;
  margin-top: -90vh;
  margin-left: -240vw;
  fill: rgba(86, 137, 186, 0.2);
}

@keyframes ribbon {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes ribbon2 {
  from {
    transform: rotate(50deg);
  }
  to {
    transform: rotate(-310deg);
  }
}
aside .desktop-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(-42deg, #4966a8 0, #618c8e, #537cae 90%);
  background-size: auto 100%;
  background-position: center center;
  position: fixed;
  height: 100vh;
  width: 125px;
  box-shadow: 10px 0 10px rgba(0, 31, 8, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 3;
}
aside .desktop-nav * {
  user-select: none;
}
aside .desktop-nav:hover {
  width: 450px;
}
aside .desktop-nav:hover .search, aside .desktop-nav:hover .results {
  opacity: 1;
  pointer-events: all;
}
aside .desktop-nav:hover .logo {
  background-size: 125%;
}
aside nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  transition: 0.3s ease-in-out;
  background: url(../images/nav-bar-background.png) no-repeat 20px 9px;
  width: 450px;
  min-height: 335px;
  background-position: 26px center;
  background-size: 70px 300px;
}
aside .logo {
  transition: 0.3s ease-in-out;
  min-height: 95px;
  width: 125px;
  margin: 0 auto;
  height: 125px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
aside hr {
  width: calc(100% - 30px);
  padding: 2px;
  margin: 0 15px;
  border: 0;
  background: rgba(39, 39, 39, 0.5);
}
aside #nav-bar-indicator {
  transition: 0.3s ease-in-out;
  display: block;
  width: 45px;
  height: 45px;
  background: linear-gradient(66deg, #97D700, #3B61A6);
  background: linear-gradient(90deg, #97d700, #47b149);
  border-radius: 50%;
  box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.3), 2px 2px 20px rgba(0, 0, 0, 0.5);
  margin-left: 37px;
  margin-top: 25px;
}
aside #nav-bar-indicator:hover {
  background: linear-gradient(320deg, #97D700, #3B61A6);
}
aside ul {
  margin-left: -45px;
  line-height: 34px;
  margin-top: 32px;
  list-style: none;
  z-index: 1;
}
aside ul li {
  transition: 0.3s ease-in-out;
  cursor: pointer;
  padding-left: 17px;
  opacity: 0.3;
}
aside ul li:hover {
  opacity: 0.7;
}
aside ul li span:nth-of-type(1) {
  margin-right: 60px;
}
aside .search {
  transition: 0.3s ease-in-out;
  background: url(../images/Searchbar.png);
  height: 55px;
  width: 360px;
  margin-left: -90px;
  background-size: cover;
  border: 0;
  padding-left: 60px;
  padding-right: 25px;
  outline: 0;
  opacity: 0;
  color: white;
  margin-top: 1px;
  font-size: 1rem;
  z-index: 4;
}
aside .nav-right.top p:nth-of-type(1) {
  transform: translateY(-20px);
}
aside .nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 420px;
  position: relative;
}
aside .nav-container circle, aside .nav-container .year-toggle > path {
  transition: 0.3s ease-in-out;
}
aside .nav-container .button, aside .nav-container .blur {
  transform-origin: center;
}
aside .nav-container:hover .nav-button circle {
  fill: #353535 !important;
}
aside .nav-container:hover .nav-button .nav-button-shadow {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(-2px -2px 5px rgba(255, 255, 255, 0.2));
}
aside .nav-container:hover .lang-toggle > path, aside .nav-container .year-toggle > path {
  fill: #353535 !important;
}
aside .search-container {
  align-items: flex-start;
}
aside .toggle {
  background: url(../images/toggle-background.svg);
  height: 45px;
  width: 80px;
  background-repeat: no-repeat;
  background-position: left;
  border-radius: 28px;
  margin: 15px 23px;
  cursor: pointer;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(-2px -2px 5px rgba(255, 255, 255, 0.2));
}
aside .toggle .lang-toggle, aside .toggle .year-toggle, aside .toggle g path, aside .toggle circle {
  transition: 0.3s ease-in-out;
}
aside .toggle text {
  font-size: 16px;
}
aside .lang, aside .year {
  cursor: pointer;
}
aside .nav-bar-texts text {
  transition: 0.3s ease-in-out;
}
aside .nav-button-shadow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 125px;
  pointer-events: none;
  height: 60px;
  margin: 0;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(-2px -2px 5px rgba(255, 255, 255, 0.2));
}
aside .nav-button {
  transition: 0.3s ease-in-out;
  width: 60px;
  min-height: 60px;
  margin: 0px 27px;
  transform-origin: center;
  cursor: pointer;
}
aside .search-container .nav-button-shadow {
  z-index: 5;
  pointer-events: all;
}
aside #search {
  cursor: pointer;
}
aside #search path {
  transform: translate(13px, 13px) scale(1);
  transform-origin: center;
}
aside #search:hover path {
  transition: 0.3s ease-in-out;
  transform: translate(12px, 12px) scale(0.9);
  transform-origin: center;
}
aside #download path, aside #email path, aside #linkedin path {
  transform: translate(11px, 11px) scale(1);
  transform-origin: center;
}
aside #download:hover path, aside #email:hover path, aside #linkedin:hover path {
  transition: 0.3s ease-in-out;
  transform: translate(10px, 10px) scale(0.9);
  transform-origin: center;
}
aside nav text {
  transition: 0.7s ease-in-out;
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}
aside nav rect {
  cursor: pointer;
}
aside nav rect:hover + text, aside nav rect:hover + text + text {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
aside nav #nav-bar-indicator {
  transition: 0.5s cubic-bezier(0.68, -0.4, 0.32, 1.6);
}
aside .year-toggle-container {
  transition: 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

body[data-section=nav-1] nav li:nth-of-type(1) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-1] nav #nav-bar-indicator {
  margin-top: 25px;
}

body[data-section=nav-2] nav li:nth-of-type(2) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-2] nav #nav-bar-indicator {
  margin-top: 57px;
}

body[data-section=nav-3] nav li:nth-of-type(3) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-3] nav #nav-bar-indicator {
  margin-top: 91px;
}

body[data-section=nav-4] nav li:nth-of-type(4) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-4] nav #nav-bar-indicator {
  margin-top: 126px;
}

body[data-section=nav-5] nav li:nth-of-type(5) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-5] nav #nav-bar-indicator {
  margin-top: 160px;
}

body[data-section=nav-6] nav li:nth-of-type(6) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-6] nav #nav-bar-indicator {
  margin-top: 194px;
}

body[data-section=nav-7] nav li:nth-of-type(7) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-7] nav #nav-bar-indicator {
  margin-top: 228px;
}

body[data-section=nav-8] nav li:nth-of-type(8) {
  font-size: 25px;
  opacity: 1;
  margin-left: -1px;
}
body[data-section=nav-8] nav #nav-bar-indicator {
  margin-top: 262px;
}

aside .mobile-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(-42deg, #4966a8 0, #618c8e, #537cae 90%);
  box-shadow: 0px 10px 10px rgba(0, 31, 8, 0.3);
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
}
aside .mobile-nav .logo {
  min-height: 50px;
  height: 50px;
  width: 190px;
  margin: 0;
  margin-left: 0;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 180px;
}
aside .mobile-nav .burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
  height: 17px;
  margin-right: 10px;
  width: 25px;
  cursor: pointer;
}
aside .mobile-nav .burger span {
  background: white;
  height: 3px;
  width: 100%;
  background-size: cover;
  border-radius: 5px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(-2px -2px 5px rgba(255, 255, 255, 0.2));
}
aside .mobile-nav .burger:hover {
  filter: brightness(1.3);
}

aside .mobile-nav-navigator {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(-42deg, #4966a8 0, #618c8e, #537cae 90%);
  height: 50px;
  transition: 0.3s ease-in-out;
  height: 50px;
  box-shadow: 0px 10px 10px rgba(0, 31, 8, 0.3);
  pointer-events: none;
  /* position: fixed; */
  /* bottom: 0; */
  /* z-index: 2; */
  /* width: 100%; */
  z-index: 3;
  position: fixed;
  top: 49px;
  width: 100%;
}
aside .mobile-nav-navigator h3 {
  padding-top: 10px;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
aside .mobile-nav-navigator .mobile-progress-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: 8px;
  background: #50729b;
  pointer-events: none;
}
aside .mobile-nav-navigator .mobile-progress-container .mobile-progress {
  transition: 0.3s ease-in-out;
  display: block;
  height: 6px;
  width: 12.5%;
  border-radius: 0 50px 50px 0;
  background: linear-gradient(to left, #03b138, #006dd5);
}

aside .mobile-nav-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-image: linear-gradient(-42deg, #4966a8 0, #618c8e, #537cae 90%);
  box-shadow: 0px -10px 10px rgba(0, 31, 8, 0.3);
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
}
aside .mobile-nav-bottom .dummy {
  display: block;
  width: 60px;
  height: 66px;
}
aside .mobile-nav-bottom .toggle {
  margin: 0;
  transform: scale(0.75);
  width: 80px;
}
aside .mobile-nav-bottom .nav-button {
  width: 50px;
  min-height: 50px;
  margin: 0;
}

.has-year aside .desktop-nav .year-toggle-container {
  pointer-events: all;
  opacity: 1;
}

@media all and (max-height: 890px) {
  ::-webkit-scrollbar-track, main::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: rgba(245, 245, 245, 0.2);
  }

  ::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(245, 245, 245, 0.2);
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(5, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.7);
  }

  .desktop-nav {
    justify-content: flex-start;
  }
}
@media all and (min-width: 961px) {
  aside .mobile-nav {
    display: none;
  }

  aside .mobile-nav-navigator {
    display: none;
  }

  aside .mobile-nav-bottom {
    display: none;
  }
}
@media all and (max-width: 960px) {
  aside .desktop-nav:hover {
    width: 100%;
  }

  aside .desktop-nav {
    display: none;
    height: 812px;
    width: 100%;
    padding: 60px 0;
  }
  aside .desktop-nav .logo {
    display: none;
  }
  aside .desktop-nav hr {
    display: none;
  }
  aside .desktop-nav #nav-bar-indicator {
    margin-left: 20px;
  }
  aside .desktop-nav .nav-button {
    margin: -5px 0px -2px;
  }
  aside .desktop-nav nav {
    background-position: 8px center;
  }
  aside .desktop-nav .nav-button-shadow {
    width: 95px;
  }
  aside .desktop-nav .toggle {
    margin: 15px 10px;
  }
  aside .desktop-nav .search {
    opacity: 1;
    margin-left: -70px;
    width: 300px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  aside .desktop-nav.open {
    display: flex;
  }

  element.style {
    background: #2d68ff !important;
  }

  html body .uwy.userway_p3 .uai {
    bottom: 6px !important;
    left: 9px !important;
  }

  html body .uwy.userway_p3 .uhd {
    top: -10px !important;
    left: 0 !important;
    right: 0 !important;
  }

  html .uwy .uai .uhd > span, html body .uwy .uai .uhd > span {
    border-radius: 4px 4px !important;
  }

  .uwy.userway_p1.userway_hidden .uai, .uwy.userway_p2.userway_hidden .uai, .uwy.userway_p3.userway_hidden .uai {
    transform: none !important;
  }

  section, section.hidden, section.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
    min-height: 100%;
    overflow: auto;
    min-width: 100vw;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    z-index: 1;
    transform: none;
    flex-wrap: nowrap;
  }

  main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 100px;
    flex-wrap: nowrap;
    flex-direction: row;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    width: 100%;
    min-height: auto;
    height: 100vh;
    overflow-y: hidden;
  }
}
body[data-section=nav-1] .mobile-nav-bottom .toggle.year, body[data-section=nav-2] .mobile-nav-bottom .toggle.year, body[data-section=nav-4] .mobile-nav-bottom .toggle.year {
  opacity: 0;
  pointer-events: none;
}

body[data-section=nav-1] .prev-section, body[data-section=nav-8] .next-section {
  opacity: 0.3;
  pointer-events: none;
}

.results {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background-color: #2d2d2d;
  color: white;
  width: 300px;
  left: 20px;
  right: 0;
  margin: auto;
  transform: translateY(45px);
  z-index: 2;
  padding: 1rem 10px 10px;
  border-radius: 15px;
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.6);
  visibility: hidden;
}
.results.visible {
  visibility: visible;
}
.results .result {
  transition: 0.3s ease-in-out;
  width: 100%;
  cursor: pointer;
}
.results .result:hover {
  background-color: #414141;
}

.home article {
  width: calc(100% - 5vw);
  height: calc(100% - 5vw);
}
.home .section1-inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 620px;
  max-height: 100%;
}
.home .section1-inner-container .logo {
  background-image: url(../images/ote-gr.svg);
  width: 16rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  height: 3rem;
}
.home .section1-inner-container .section1-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.home .section1-inner-container .section1-welcome span:nth-child(1) {
  font-family: "PFB", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin: 2% auto;
}
.home .section1-inner-container .section1-welcome span:nth-child(2) {
  font-family: "PF", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin: 2% auto;
}
.home .section1-inner-container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media all and (max-width: 960px) {
  .home .data-outer-container .section1-inner-container .section1-welcome span:nth-child(1) {
    font-size: 3rem;
  }

  .home .section1-inner-container a {
    visibility: hidden;
    pointer-events: none;
  }
}
@media all and (max-width: 640px) {
  section.home article {
    height: 500px;
  }

  .home .section1-inner-container {
    min-height: initial;
  }
}
[data-lang=en] .home .logo {
  background-image: url(../images/ote-en.svg) !important;
}

section.message {
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
}
section.message .w-30 {
  opacity: 1 !important;
  transform: none !important;
  width: calc(30vw - 165px);
  height: calc(30vw - 165px);
  min-width: 190px;
  min-height: 190px;
  padding: 10px;
  position: fixed;
  max-width: 300px;
  background-repeat: no-repeat;
  max-height: 300px;
}
section.message .w-30 .desktop-message-photo {
  width: 97%;
  height: 97%;
  border-radius: 25px;
  background: url("../images/tsamaz.jpg");
  background-size: 100%;
}
section.message .w-70 {
  margin-left: calc(30% - 0px);
}
section.message blockquote {
  line-height: 2rem;
  margin: 3rem 0 2rem;
}
section.message p {
  width: 100%;
  margin: 1rem 0 3rem;
}
section.message a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.message a span:nth-of-type(2) {
  display: none;
}
section.message .the-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 2rem;
  letter-spacing: 0.5px;
  display: none;
}
section.message.open .the-message {
  display: flex;
}
section.message.open .message-control {
  display: none;
}
section.message.open a {
  width: 100%;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
section.message.open a span:nth-of-type(2) {
  display: inline;
}
section.message.open a span:nth-of-type(1) {
  display: none;
}
section.message.open a:after {
  content: "ᐯ";
  left: 0;
  right: 0;
  transform: scale(2, 1) rotateX(180deg);
  margin-right: 20px;
}

@media all and (max-width: 768px) {
  section.message .w-70 {
    margin-left: 20px;
  }
}
@media all and (max-width: 960px) {
  section.message .w-30 {
    max-width: 250px;
    position: static;
  }
  section.message .w-70 {
    margin-left: 10px;
  }
}
.horizontal-bar-chart-label-top {
  margin: 30px auto -10px -100px;
  z-index: 2;
  position: relative;
}
.horizontal-bar-chart-label-top:after {
  content: "";
  display: flex;
  width: 4px;
  height: 30px;
  background: linear-gradient(#4eb444, #70c425);
  margin: auto;
}
.horizontal-bar-chart-label-top h2 {
  margin-bottom: 6px;
}

.horizontal-bar-chart-label-bottom {
  margin: -10px auto 30px -13px;
  z-index: 2;
  position: relative;
}
.horizontal-bar-chart-label-bottom:before {
  content: "";
  display: flex;
  width: 4px;
  height: 30px;
  background: linear-gradient(#0283b5, #00A0DC);
  margin: auto;
}
.horizontal-bar-chart-label-bottom h2 {
  margin-top: 6px;
}

.horizontal-bar-chart-label-bottom span {
  padding: 6px 15px;
  /* margin-top: 10px; */
  background: linear-gradient(to right, #0283b5, #00A0DC);
  border-radius: 50px;
}

.horizontal-bar-chart-label-top span {
  padding: 6px 15px;
  /* margin-top: 10px; */
  background: linear-gradient(90deg, #97d700, #47b149);
  border-radius: 50px;
}

.horizontal-bar-chart {
  height: 70px;
  width: 750px;
  max-width: 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 5px 5px 16px 7px rgba(26, 63, 119, 0.3);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  margin: auto;
}
.horizontal-bar-chart .bar-chart-part-1 {
  transition: 0.3s ease-in-out;
  height: 100%;
  width: 46.9%;
  background: linear-gradient(90deg, #97d700, #47b149);
  border-radius: 10px 0 0 10px;
}
.horizontal-bar-chart .bar-chart-part-2 {
  height: 100%;
  width: 5.5%;
  background: linear-gradient(to right, #0283b5, #00A0DC);
  border-radius: 0 10px 10px 0;
}

.pie {
  position: relative;
  margin: 2rem auto;
}
.pie h2 {
  margin: -0.5rem auto;
}
.pie .pie-chart {
  width: 300px;
  height: 300px;
  max-width: 69vw;
  max-height: 69vw;
  border-radius: 50%;
  background: linear-gradient(90deg, #97d700, #47b149);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.pie .pie-chart .pie-border-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
}
.pie .pie-chart .pie-border-2 {
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: transparent;
  transform-origin: bottom left;
}
.pie .pie-chart .pie-center-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background-color: #EAEBF3;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.pie .pie-chart .pie-part {
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  border-style: solid;
  border-color: transparent transparent #00A0DC transparent;
  transition: 0.5s ease-in-out;
}
.pie .pie-data {
  background-color: #EAEBF3 !important;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 95px;
  font-family: "PFB", sans-serif;
  font-weight: 700;
}
.pie .pie-data:nth-of-type(1) {
  top: -6%;
  color: #509e2f;
}
.pie .pie-data:nth-of-type(2) {
  bottom: -6%;
  color: #00A0DC;
}

.pie-1 .pie-chart .pie-part {
  border-width: 0 50px 150px 50px;
}
.pie-1 .pie-chart .pie-border-2 {
  transform: translate(0, -16%) rotate(135deg) skew(-25deg, -25deg);
}

.pie-2 .pie-chart .pie-part {
  border-width: 0 20px 150px 20px;
}
.pie-2 .pie-chart .pie-border-2 {
  transform: translate(0, -16%) rotate(135deg) skew(-35deg, -35deg);
}
[data-year="2019"] .horizontal-bar-chart .bar-chart-part-1 {
  width: 46%;
}
[data-year="2019"] .pie-1 .pie-chart .pie-part {
  border-width: 0 150px 150px 150px;
}
[data-year="2019"] .pie-2 .pie-chart .pie-part {
  border-width: 0 50px 150px 50px;
}

.legend {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  border-radius: 50%;
}

.green-legend {
  background: #509e2f;
}

.blue-legend {
  margin-left: 15px;
  background: #00A0DC;
}

.article-combo-title {
  margin: 20px 0;
  width: 365px;
  height: 375px;
  padding: 20px;
  z-index: 2;
  text-align: center;
  font-size: 1.2rem;
}

.article-combo-body {
  margin: 40px 0;
  width: calc(100% - 370px);
  padding: 20px;
  border-radius: 0 35px 35px 0;
  z-index: 1;
  background: linear-gradient(to left, #03b138, #006dd5);
  box-shadow: none;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left;
}

.article-combo-body h3 {
  margin-bottom: 15px;
}

.article-combo-body h3:last-of-type {
  margin-bottom: 0px;
}

@media all and (max-width: 900px) {
  .article-combo-title {
    width: 100%;
    height: auto;
    margin-bottom: -4rem;
  }

  .article-combo-body {
    width: 100%;
    border-radius: 0 0 35px 35px;
    padding-top: 4rem;
  }
}
.tritag {
  border-radius: 50% 35px 50% 50%;
  transform: rotate(45deg) scale(0.9) !important;
  position: absolute;
  left: 0;
  background-color: #3061b9 !important;
}

.tritag > * {
  transform: rotate(-45deg) !important;
}

.tritag span {
  font-size: 1.1rem;
}

.article-combo-title {
  font-size: inherit;
}

.acb-6 {
  padding: 20px;
  z-index: 1;
  background: linear-gradient(to left, #03b138, #006dd5);
  box-shadow: none;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left;
  width: 90%;
  border-radius: 150px 35px 35px 150px;
  padding-left: 380px;
}

.increase {
  opacity: 0.2;
  transform: translateY(280px);
  animation: arrow-up 1.5s ease-out infinite;
}

.increase::before {
  content: "";
  width: 400px;
  height: 400px;
  border-top: 40px solid white;
  border-left: 40px solid white;
  filter: blur(5px);
  position: absolute;
  transform-origin: top left;
  transform: rotate(45deg);
}

.money-up {
  position: relative;
  transform: scaleX(1.5);
  margin: auto 10px;
}
.money-up .money-caret {
  position: absolute;
  font-family: sans-serif;
  color: white;
  animation: money-caret 1s ease-in-out infinite;
}
.money-up .money-caret:nth-child(2) {
  animation-delay: 0.5s;
}
.money-up .money-caret:nth-child(3) {
  animation-delay: 1s;
}

.money-double {
  position: absolute !important;
  bottom: 0px !important;
}

@keyframes arrow-up {
  0% {
    transform: translateY(280px);
  }
  100% {
    transform: translateY(-280px);
  }
}
@keyframes money-caret {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}
.bar-container {
  border-radius: 50px;
  padding: 20px;
  position: relative;
  min-height: 400px;
  margin: auto;
  justify-content: flex-end;
}

.tooltip-hover {
  font-family: "PFB", sans-serif;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #EAEBF3;
  color: #123160;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.4), 4px 4px 10px rgba(255, 255, 255, 0.4);
}

.tooltip-hover::after {
  content: "i";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.bar-tooltip {
  visibility: hidden;
  opacity: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  width: 80%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  border: 2px solid white;
  border-radius: 10px;
  background: linear-gradient(to right, #0283b5, #00A0DC);
  color: white;
  transition: 0.5s ease-in-out;
  z-index: 3;
}

.tooltip-hover:hover {
  background-color: #123160;
  color: #EAEBF3;
}

.tooltip-hover:hover + .bar-tooltip {
  visibility: visible;
  opacity: 1;
}

.bar-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 50px;
}

.bar-row::after {
  content: "";
  position: absolute;
  top: 97%;
  height: 0px;
  width: 100%;
  border-bottom: 6px solid #EAEBF3;
  z-index: 10;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.bar-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
}

.bar {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 50px;
  min-width: 50px;
  max-width: 100px;
  position: relative;
  border-radius: 5px 5px 0 0;
  border: 5px solid #EAEBF3;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.bar::before {
  content: "";
  width: 50px;
  height: 220px;
  position: absolute;
  z-index: -1;
  border-radius: 25px;
}

.bar-2018 {
  background: linear-gradient(to top, #acacac, #dbdbdb);
  filter: saturate(0.4) brightness(1.1);
  z-index: 0;
}

.bar-2018::after {
  content: "2018";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 40px;
  bottom: -50px;
  left: -54px;
  right: 0;
}

.bar-2019 {
  background: linear-gradient(to top, #03b138, #97d700);
  filter: saturate(0.4) brightness(1.1);
  z-index: 0;
}

.bar-2019::after {
  content: "2019";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 40px;
  bottom: -50px;
  left: -54px;
  right: 0;
}

.bar-2020 {
  background: linear-gradient(to top, #03b138, #97d700);
}

.bar-2020::after {
  content: "2020";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 150px;
  height: 40px;
  bottom: -50px;
  left: -54px;
  right: 0;
}

.bar-data {
  text-align: center;
}

.bar-title {
  min-height: 3rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.bar-compare-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;
  width: 150px;
  height: 0px;
  border-bottom: 8px solid #EAEBF3;
  transform-origin: bottom;
  z-index: 0;
  box-shadow: 2px 2px 8px rgba(26, 63, 119, 0.659), -2px -2px 8px rgba(96, 144, 162, 0.24);
}

.bar-compare {
  font-family: "PFB", sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 75px;
  height: 60px;
  border-radius: 25px;
  background-color: #EAEBF3;
  color: #00A0DC;
  z-index: 2;
  box-shadow: 2px 2px 8px rgba(26, 63, 119, 0.659), -2px -2px 8px rgba(96, 144, 162, 0.24);
}

.bar-compare3 {
  font-family: "PFB", sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;
  height: 60px;
  border-radius: 25px;
  background-color: #EAEBF3;
  color: #00A0DC;
  z-index: 2;
  padding: 0 20px;
  box-shadow: 2px 2px 8px rgba(26, 63, 119, 0.659), -2px -2px 8px rgba(96, 144, 162, 0.24);
}

.graph-img {
  transform-origin: left center;
  transform: scaleX(0.92);
}

.graph-label {
  border: 2px solid #d1e6f8;
  text-align: center;
  border-radius: 20px;
  color: #d1e6f8;
  margin: 20px auto;
  text-transform: uppercase;
  padding: 20px;
  font-style: italic;
}

span.graph-indi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  min-width: 90px;
  height: 40px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  right: 0;
  z-index: 5;
}
span.graph-indi.blue {
  transform: translateY(-120px);
}
span.graph-indi.red {
  transform: translateY(-70px);
}
span.graph-indi.green {
  transform: translateY(-20px);
}

.legend.blue + span,
.legend.red + span,
.legend.green + span {
  margin-right: 15px;
}

.graph-dates {
  margin-top: 20px;
  border-top: 3px solid white;
}
.graph-dates * {
  font-size: 0.8rem;
  font-family: "PF", sans-serif;
  font-weight: 400;
}

.h-bar-graph {
  width: 680px;
  height: 400px;
  display: flex;
}
.h-bar-graph .row {
  width: 100%;
  height: 100px;
}
.h-bar-graph .row .bar-label {
  display: flex;
  width: 120px;
  height: 100%;
  padding-right: 5px;
  border-right: 2px solid white;
}
.h-bar-graph .row .bar-blue {
  display: flex;
  height: 50px;
  background-color: #0283b5;
  font-size: 0.8rem;
  font-family: "PF", sans-serif;
  font-weight: 400;
}
.h-bar-graph .row .bar-green {
  display: flex;
  height: 50px;
  background: #47b149;
  font-size: 0.8rem;
  font-family: "PF", sans-serif;
  font-weight: 400;
}

.bar-container {
  box-shadow: none !important;
  justify-content: flex-end !important;
}

@media all and (max-width: 960px) {
  .tritag {
    border-radius: 35px;
    width: 100%;
    height: 2rem;
    position: relative;
    margin-bottom: -0.7rem;
  }

  .tritag + article {
    padding: 20px;
    border-radius: 35px;
    width: 100%;
  }

  .tritag > * {
    transform: none !important;
  }
}
@media all and (max-width: 680px) {
  .h-bar-graph {
    transform: scale(0.5);
  }
}
.bm,
.bw {
  position: relative;
  margin: 10px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  background-image: radial-gradient(at left top, #EAEBF3, #828285);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: bottom center;
  box-shadow: 2px 2px 8px rgba(26, 63, 119, 0.66), -2px -2px 8px rgba(96, 144, 162, 0.24);
  overflow: hidden;
}

.bm::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url("../images/bm.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 90%;
  object-fit: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-filter: drop-shadow(-2px -2px 5px #EAEBF3);
  filter: drop-shadow(-2px -2px 5px #EAEBF3);
}

.bw::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url("../images/bw.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 90%;
  object-fit: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-filter: drop-shadow(-2px -2px 5px #EAEBF3);
  filter: drop-shadow(-2px -2px 5px #EAEBF3);
}

.blue-to-green::after {
  filter: hue-rotate(-90deg);
}

.blue-to-teal::after {
  filter: hue-rotate(340deg);
}

.table {
  display: flex;
  width: 100%;
  border-radius: 35px;
  background-color: rgba(26, 63, 119, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #EAEBF3;
}
.table .table-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 3.5rem;
  width: 100%;
}
.table .table-row .table-cell {
  min-height: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}
.table .table-row .table-cell:nth-of-type(1) {
  font-size: 1.1rem;
}
.table .table-row .table-cell:nth-of-type(1), .table .table-row .table-cell:nth-of-type(4) {
  width: 20%;
}
.table .table-row .table-cell:nth-of-type(2), .table .table-row .table-cell:nth-of-type(3) {
  width: 30%;
}
.table .table-row:nth-of-type(1) {
  border-bottom: 1px solid #EAEBF3;
  background-color: #123160 !important;
  width: 100%;
}
.table .table-row:nth-of-type(1) .table-cell {
  align-items: center;
}
.table .table-row:nth-of-type(2n+1) {
  background-color: #3B61A6;
}

.bod-blue::before {
  content: "";
  width: 35px;
  height: 20px;
  margin-right: 15px;
  background-color: #00A0DC;
  display: block;
}

.bod-green::before {
  content: "";
  width: 35px;
  height: 20px;
  margin-right: 15px;
  background-color: #47b149;
  display: block;
}

.link {
  display: inline;
  text-decoration: underline;
  color: #00A0DC;
}

.footnote {
  font-size: 0.8rem !important;
}

/*# sourceMappingURL=style.css.map */
