@import "../fonts/Avenir/Avenir-Black-min.css";
@import "../fonts/Avenir/Avenir-Medium-min.css";
@import "../fonts/DIN/DIN-Bold-min.css";
:root {
  --font-family: "Avenir", sans-serif;
  --font-family--heading: "DIN";
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid inherit;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: inherit;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3b83d5;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem inherit;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::-webkit-input-placeholder, [type=date]::-webkit-input-placeholder, [type=datetime]::-webkit-input-placeholder, [type=datetime-local]::-webkit-input-placeholder, [type=email]::-webkit-input-placeholder, [type=month]::-webkit-input-placeholder, [type=number]::-webkit-input-placeholder, [type=password]::-webkit-input-placeholder, [type=search]::-webkit-input-placeholder, [type=tel]::-webkit-input-placeholder, [type=text]::-webkit-input-placeholder, [type=time]::-webkit-input-placeholder, [type=url]::-webkit-input-placeholder, [type=week]::-webkit-input-placeholder, input:not([type])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #333;
  opacity: 0.25;
}
[type=color]::-moz-placeholder, [type=date]::-moz-placeholder, [type=datetime]::-moz-placeholder, [type=datetime-local]::-moz-placeholder, [type=email]::-moz-placeholder, [type=month]::-moz-placeholder, [type=number]::-moz-placeholder, [type=password]::-moz-placeholder, [type=search]::-moz-placeholder, [type=tel]::-moz-placeholder, [type=text]::-moz-placeholder, [type=time]::-moz-placeholder, [type=url]::-moz-placeholder, [type=week]::-moz-placeholder, input:not([type])::-moz-placeholder, textarea::-moz-placeholder {
  color: #333;
  opacity: 0.25;
}
[type=color]:-ms-input-placeholder, [type=date]:-ms-input-placeholder, [type=datetime]:-ms-input-placeholder, [type=datetime-local]:-ms-input-placeholder, [type=email]:-ms-input-placeholder, [type=month]:-ms-input-placeholder, [type=number]:-ms-input-placeholder, [type=password]:-ms-input-placeholder, [type=search]:-ms-input-placeholder, [type=tel]:-ms-input-placeholder, [type=text]:-ms-input-placeholder, [type=time]:-ms-input-placeholder, [type=url]:-ms-input-placeholder, [type=week]:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #333;
  opacity: 0.25;
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #333;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: inherit;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3b83d5;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.jqvmap-label {
  background-color: #fff;
  color: #583D72;
  border-radius: 10px;
  font-size: 12px;
  padding: 5px 5px 0;
}
.jqvmap-label h3 {
  margin: 0 0 5px;
  font-size: 14px;
}
.jqvmap-label p {
  margin-bottom: 5px;
}

.wrapper {
  font-size: 14px;
  line-height: 1.4em;
}
.wrapper .inner {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
.wrapper h2 {
  font-size: 2.2em;
  line-height: 1em;
  text-align: center;
  margin: var(--spacing--small) 0 var(--spacing);
}
.wrapper .cols {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
@media screen and (min-width: 701px) {
  .wrapper .cols {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-rule: 1px solid #fff;
       -moz-column-rule: 1px solid #fff;
            column-rule: 1px solid #fff;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    widows: 7;
    orphans: 7;
  }
}
.wrapper .top img {
  max-width: 200px;
}
.wrapper .header {
  background-color: #583D72;
  position: relative;
  color: #fff;
}
.wrapper .header:before {
  content: "";
  display: block;
  width: 100%;
  height: 64.1237113402vw;
  background-image: url(../img/header.svg);
  background-size: cover;
}
.wrapper .header .text {
  text-align: center;
}
.wrapper .header .text h1 {
  margin: var(--spacing--small) 0 var(--spacing);
}
@media screen and (min-width: 701px) {
  .wrapper .header:before {
    position: absolute;
    left: 50%;
    width: 50%;
    height: 100%;
    background-position: left center;
  }
  .wrapper .header .text {
    width: 50%;
    padding-right: 40px;
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .wrapper .header:before {
    background-position: center center;
  }
}
.wrapper .stats {
  color: #583D72;
}
.wrapper .stats .blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  text-align: center;
  margin: 20px 0;
}
.wrapper .stats .blocks .block {
  padding: 20px 20px 0;
}
.wrapper .stats .blocks .block:nth-child(2n+2) {
  border-left: 1px solid #ac9eb9;
}
.wrapper .stats .blocks .block:nth-last-child(1) {
  grid-column: 1/-1;
  border-top: 1px solid #ac9eb9;
}
.wrapper .stats .blocks .block img {
  height: 100px;
}
.wrapper .stats .blocks .block p.b {
  font-family: var(--font-family--heading);
  font-size: 2em;
  margin: var(--spacing--small) 0;
}
@media screen and (min-width: 851px) {
  .wrapper .stats .blocks {
    display: flex;
    justify-content: center;
  }
  .wrapper .stats .blocks .block {
    width: 190px;
    border-left: 1px solid #ac9eb9;
  }
  .wrapper .stats .blocks .block:nth-child(1) {
    border-left: 0;
  }
  .wrapper .stats .blocks .block:nth-last-child(1) {
    grid-column: auto;
    border-top: 0;
  }
}
.wrapper .expensive {
  background-color: #ac9eb9;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 701px) {
  .wrapper .expensive {
    text-align: left;
  }
}
.wrapper .map_wrap #map {
  height: 76.5252983729vw;
  background-color: #DDF9FC;
  background-image: url(../img/map_bg.svg);
  background-size: cover;
}
.wrapper .map_wrap #map #jqvmap1_gl {
  display: none;
}
.wrapper .map_wrap #map .cur {
  position: absolute;
  top: 10px;
  left: 10px;
}
.wrapper .map_wrap #map .cur span {
  display: block;
  color: #583D72;
}
.wrapper .map_wrap #map .cur .pill {
  display: inline-flex;
  border: 1px solid #C3BCBC;
  background-color: #fff;
  border-radius: 100px;
  padding: 0 5px;
  font-size: 1.2em;
}
.wrapper .map_wrap #map .cur .pill span {
  display: block;
  margin: 3px 5px;
  color: #C3BCBC;
  font-weight: 700;
  cursor: pointer;
}
.wrapper .map_wrap #map .cur .pill span.active {
  color: #583D72;
}
.wrapper .map_wrap .table_wrap {
  color: #583D72;
  padding: 10px;
  height: 100%;
  overflow: auto;
}
.wrapper .map_wrap .table_wrap .row {
  display: grid;
  grid-template-columns: 25px minmax(78px, 1fr) minmax(102px, 1fr) minmax(50px, 70px);
  grid-gap: 10px;
}
.wrapper .map_wrap .table_wrap .thead {
  border-bottom: 1px solid #ac9eb9;
  font-family: var(--font-family--heading);
}
.wrapper .map_wrap .table_wrap .thead .th {
  display: flex;
  align-items: flex-end;
  line-height: 1em;
}
.wrapper .map_wrap .table_wrap .tbody .row {
  border-bottom: 1px solid #eeecf1;
  padding: 5px 0;
}
.wrapper .map_wrap .table_wrap .tbody .row .td {
  display: flex;
  align-items: center;
}
.wrapper .map_wrap .table_wrap .tbody .row .td .num {
  height: 22px;
  width: 22px;
  color: #fff;
  font-family: var(--font-family--heading);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  border-radius: 100px;
}
@media screen and (min-width: 701px) {
  .wrapper .map_wrap {
    display: flex;
    flex-direction: row-reverse;
  }
  .wrapper .map_wrap #map {
    height: calc(76.5252983729vw * 0.7);
    width: 70%;
  }
  .wrapper .map_wrap .table_wrap {
    flex: 1;
    min-width: 320px;
    height: calc(76.5252983729vw * 0.7);
  }
}
.wrapper .most_expensive {
  background-color: #9F5F80;
  color: #fff;
}
.wrapper .most_expensive .table_wrap {
  color: #583D72;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px 0 40px;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.25);
  line-height: 1.2em;
}
.wrapper .most_expensive .table_wrap .row {
  display: grid;
  grid-template-columns: 30px 1fr 1fr 1fr 90px;
  grid-gap: 10px;
  padding: 5px 10px;
  min-height: 30px;
}
@media screen and (max-width: 700px) {
  .wrapper .most_expensive .table_wrap .row {
    font-size: 0.9em;
    grid-template-columns: 30px minmax(72px, 1fr) minmax(100px, 1fr) minmax(50px, 90px);
    grid-gap: 5px;
  }
  .wrapper .most_expensive .table_wrap .row > div:nth-child(3) {
    display: none !important;
  }
}
.wrapper .most_expensive .table_wrap .thead {
  border-bottom: 1px solid #ac9eb9;
  font-family: var(--font-family--heading);
  background-color: #583D72;
  color: #fff;
  padding: 5px 0;
}
.wrapper .most_expensive .table_wrap .thead .th {
  display: flex;
  align-items: flex-end;
  line-height: 1em;
}
.wrapper .most_expensive .table_wrap .tbody {
  background-color: #fff;
}
.wrapper .most_expensive .table_wrap .tbody .row .td {
  display: flex;
  align-items: center;
}
.wrapper .most_expensive .table_wrap .tbody .row .td:nth-child(1) {
  font-weight: 700;
}
.wrapper .most_expensive .table_wrap .tbody .row:nth-child(2n+1) {
  background-color: #EDEDED;
}
.wrapper .method {
  background-color: #583D72;
  color: #fff;
  font-size: 0.8em;
  line-height: 1.2em;
}
.wrapper .outro {
  text-align: center;
  font-size: 1.1em;
  margin: 60px 0 40px;
}
.wrapper .footer {
  text-align: center;
  font-size: 0.9em;
}
.wrapper .footer .logo {
  margin-bottom: 20px;
}
.wrapper .footer .logo img {
  max-width: 150px;
}
