body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff url("img/background.jpg") no-repeat bottom right;
  background-size: contain;
  font-family: "Barlow Condensed", sans-serif;
  color: #2a3759;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  font-size: 2vh;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 40px;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

footer .logo {
  width: 135px;
  margin-left: 20px;
}

footer .title {
  z-index: 1;
  line-height: 36px;
  background: url(img/border-title.svg) no-repeat top right;
  padding-right: 20px;
  font-size: 38px;
  line-height: 34px;
  letter-spacing: -1px;
  text-align: right;
  margin: 0 10px 0 0;
}

footer .title .light {
  font-weight: 400;
}

main {
  position: relative;
}

main img {
  max-width: 100%;
}

main .chart {
  width: 100%;
  height: 85vh;
  margin: 0 auto;
}

main .info {
  position: absolute;
  top: 0;
  left: 60px;
  width: 30vw;
  text-align: left;
}

main .info p::before {
  content: "i";
  display: block;
  width: 20px;
  height: 20px;
  background: #ff5050;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  position: absolute;
  top: 18px;
  left: -31px;
  font-size: 14px;
}

main .info .reference {
  font-weight: bold;
  padding-top: 10px;
  margin: 0;
  display: inline-block;
  border-top: 1px solid #ff5050;
}

main .info .reference span {
  padding-left: 23px;
}

main .info .reference .icon-bubble {
  background: url("img/icon-bubble.svg") no-repeat 0 0;
}

main .info .reference .icon-point {
  background: url("img/icon-point.svg") no-repeat 0 0;
}

main .info.russia .reference {
  border-color: #219af4;
}

main .info.russia p::before {
  background-color: #219af4;
}

.border-top-gray {
  border-top: 2px solid #dddddd;
}

.border-right-gray {
  border-right: 2px solid #dddddd;
}

nav {
  background-clip: padding-box;
  -webkit-filter: drop-shadow(0 5px 4px #0000001f);
          filter: drop-shadow(0 5px 4px #0000001f);
}

nav ul {
  background-clip: padding-box;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border: 1px solid #d3d3d3;
  height: auto;
}

nav ul li {
  display: block;
  border-top: 1px solid #d3d3d3;
}

nav ul li.china a::before {
  background: #ff5050;
}

nav ul li.russia a::before {
  background: #219af4;
}

nav ul li:first-child {
  display: block;
  border-top: none;
}

nav ul li a {
  color: #2a3759;
  text-decoration: none;
  display: block;
  padding: 2vh 1vh 2vh 4vh;
  position: relative;
  font-weight: 500;
}

nav ul li a.active {
  background-color: #2a3759;
  color: #fff;
}

nav ul li a.active::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -20px;
  width: 0px;
  height: 0px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #2a3759;
}

nav ul li a.active:hover {
  background-color: #2a3759;
}

nav ul li a:hover {
  background: #f4f5f8;
}

nav ul li a::before {
  content: "";
  display: block;
  width: 1vh;
  height: 1vh;
  background: #2a3759;
  position: absolute;
  top: 50%;
  left: 15px;
  border-radius: 50%;
  margin-top: -5px;
}

/* Colors */
.red {
  color: #ff5050;
}

.blue {
  color: #219af4;
}

.light-gray {
  color: #d3d3d3;
}

.dark-blue {
  color: #2a3759;
}

/* Text  */
.text-center {
  text-align: center;
}

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

.uppercase {
  text-transform: uppercase;
}

.fw-500 {
  font-weight: 500;
}

.font-size-xs {
  font-size: 12px;
}

.font-size-md {
  font-size: 20px;
}

.line-heigt-1 {
  line-height: 1;
}

/* Responsive */
@media (min-width: 1024px) {
  main {
    width: 76%;
  }
  nav {
    width: 24%;
  }
  nav ul {
    width: 94%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body,
  html {
    overflow: hidden;
  }
  nav {
    overflow-y: scroll;
  }
  nav ul {
    height: auto;
  }
  footer .logo {
    width: 90px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow: initial;
  }
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    height: auto;
  }
  nav {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 100%;
    overflow: inherit;
  }
  nav ul {
    height: auto;
    width: 100%;
  }
  nav ul li a.active::after {
    display: none;
  }
  main {
    width: 100%;
    text-align: center;
  }
  main .info {
    position: inherit;
    left: 30px;
    width: 93%;
  }
  main .chart {
    height: auto;
    width: 90%;
  }
  footer {
    position: inherit;
  }
  footer .title {
    font-size: 5vw;
    line-height: 5vw;
  }
  footer .logo {
    width: 15vw;
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */