@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto.eot');
  src: url('../fonts/roboto.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto.woff2') format('woff2'),
       url('../fonts/roboto.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('../fonts/roboto_bold.eot');
  src: url('../fonts/roboto_bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto_bold.woff2') format('woff2'),
       url('../fonts/roboto_bold.woff') format('woff');
        font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

ul {
  list-style: none;
}

body {
  min-width: 330px;
  font-family: 'Roboto';
  font-weight: 100;
  background-color: #ebe7dd;
  -webkit-font-smoothing: antialised;
}

.map {
  height: 100vh;
  height: -webkit-fill-available;
  height: calc(var(--vh, 1vh) * 100);
}

.map__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

strong {
  font-family: 'Roboto-Bold';
}

img {
  display: block;
  max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 100;
  -webkit-font-smoothing: antialised;
}

.map__container {
  position: relative;
  width: 100%;
  padding: 0 2%;
  margin: 0 auto;
  box-sizing: border-box;
}

#worldmap {
  max-width: 100%; 
  max-height: 85%;   
  display: block;
  overflow: visible;
}

#us, #it, #tk, #az {
  cursor: pointer;
  transition: .1s;
}

#us:hover, #it:hover, #tk:hover, #az:hover,
#us.hover, #it.hover, #tk.hover, #az.hover {
  fill: #000;
  transition: .1s;
}

.country-name {
  font-family: 'Roboto';
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.percent {
  font-family: 'Roboto-Bold';
}

.map__title, .percent {
  transition: .1s;
}

.map__title image, .map__title text, .map__title circle {
  cursor: pointer;
}

.title1 .map__circle, .title1 .percent {
  fill: #c8b788;
}

.title2 .map__circle, .title2 .percent {
  fill: #8e7358;
}

.title3 .map__circle, .title3 .percent {
  fill: #42270d;
}

.map__title.hover .map__circle,
.map__title.hover .percent {
  fill: #000;
  transition: .1s;
}




