/* Color */
/* Size */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace,monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/***** Default and helpers *****/
/* Color */
/* Size */
html {
  overflow: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  overflow-x: hidden;
  color: #22262e;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

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

input[type="submit"],
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input,
textarea,
label {
  font-family: "Raleway", sans-serif;
}

a,
button,
input,
textarea,
select {
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 0.7;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 0.7;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 0.7;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.4;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0.4;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.4;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.4;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
}

a {
  color: #22262e;
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  color: #516ab7;
}

h1,
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

/***** Buttons *****/
.btn {
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
}

.btns {
  display: flex;
  flex-wrap: wrap;
}

.btns .btn {
  margin: 0 8px 4px 0;
}

.btns.btns-centered {
  justify-content: center;
}

/**** Form elements *****/
.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid #22262e;
  background: #fff;
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 10px 20px;
  line-height: 20px;
  font-size: 16px;
}

/***** Simple elements, atoms *****/
table.table tr:not(:last-child) {
  border-bottom: 1px solid #666;
}

table.table td {
  padding: 3px 10px;
  vertical-align: top;
}

/***** Components, common blocks *****/
/***** Layout *****/
body {
  display: flex;
  height: 100%;
  align-items: stretch;
  padding: 8vh 0 5vh;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}

.container.container-sm {
  max-width: 992px;
}

/***** Header *****/
.header {
  background: #c9d6ff;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  height: 8vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  .header {
    padding-right: 0;
  }
}

@media screen and (max-width: 359px) {
  .header {
    padding-left: 10px;
  }
}

.header .header-inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.header .logo {
  height: 90%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex: 0 0 20vh;
  width: 20vh;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 575px) {
  .header .logo {
    width: 8vh;
    flex: 0 0 8vh;
  }
}

.header .logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .logo a:hover {
  color: #22262e;
}

.header .logo img {
  border-radius: 50%;
  height: 100%;
  width: auto;
  margin-right: 10px;
}

.header .logo span {
  font-weight: bold;
  font-size: 2.5vh;
  line-height: 1;
}

@media screen and (max-width: 575px) {
  .header .logo span {
    display: none;
  }
}

.header .header-nav {
  margin-left: 40px;
  display: flex;
  align-items: stretch;
  z-index: 1;
  font-weight: bold;
  font-size: 18px;
  height: 100%;
}

@media screen and (max-width: 575px) {
  .header .header-nav {
    margin-left: 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 399px) {
  .header .header-nav {
    font-size: 12px;
  }
}

.header .header-nav ul.header-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  max-width: 0;
}

.header .header-nav ul.header-menu.active {
  visibility: visible;
  opacity: 1;
  max-width: auto;
}

.header .header-nav ul.header-menu li {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
}

.header .header-nav ul.header-menu li:not(:last-child) {
  margin: 0 40px 0 0;
}

@media screen and (max-width: 991px) {
  .header .header-nav ul.header-menu li:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 399px) {
  .header .header-nav ul.header-menu li:not(:last-child) {
    margin-right: 0;
  }
}

.header .header-nav ul.header-menu li a, .header .header-nav ul.header-menu li span {
  padding: 0 10px;
  line-height: 8vh;
  cursor: pointer;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .header .header-nav ul.header-menu li a, .header .header-nav ul.header-menu li span {
    white-space: normal;
    line-height: 1em;
    align-self: center;
  }
}

@media screen and (max-width: 359px) {
  .header .header-nav ul.header-menu li a, .header .header-nav ul.header-menu li span {
    padding: 0 5px;
  }
}

.header .header-nav ul.header-menu li a:hover, .header .header-nav ul.header-menu li span:hover {
  color: #516ab7;
}

.header .header-title {
  position: absolute;
  right: 0;
  left: 20vh;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12vh;
  font-weight: bold;
  opacity: .15;
  text-align: right;
  color: #448;
}

.header .header-title span.header-title-item {
  display: block;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all 0.3s;
}

.header .header-title span.header-title-item.active {
  opacity: 1;
  max-height: inherit;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  body.inner-page {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: hidden;
  }
  body.inner-page .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-7vh);
    transition: all 0.3s;
  }
  body.inner-page .header:hover {
    transform: none;
  }
  body.inner-page .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(4vh);
    transition: all 0.3s;
  }
  body.inner-page .footer:hover {
    transform: none;
  }
  body.inner-page .content-w {
    flex: 1;
  }
}

/***** Footer *****/
.footer {
  background: #c9d6ff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5vh;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 575px) {
  .footer {
    padding: 10px;
    font-size: 14px;
  }
}

.footer .footer-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer .footer-menu ul li {
  list-style: none;
  margin: 0;
}

.footer .footer-menu ul li:not(:last-child) {
  margin-right: 30px;
}

@media screen and (max-width: 575px) {
  .footer .footer-menu ul li:not(:last-child) {
    margin-right: 15px;
  }
}

/***** Homepage *****/
.navmenu {
  background: #99ccff;
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow-x: hidden !important;
}

.navmenu .navmenu-level {
  display: flex;
  align-items: stretch;
  position: relative;
  transition: transform 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  transform: translateX(0%);
  overflow: hidden;
}

.navmenu .navmenu-level.active {
  opacity: 1;
  visibility: visible;
  transition: transform 0s;
  z-index: 1;
}

.navmenu .navmenu-level.hiding {
  transition: transform 0.5s;
  z-index: 2;
}

.navmenu .navmenu-level.navmenu-level-1 .navmenu-inner .tab:first-child {
  width: 33.3334%;
  flex: 0 0 33.3334%;
}

@media screen and (max-width: 575px) {
  .navmenu .navmenu-level.navmenu-level-1 .navmenu-inner .tab:first-child {
    width: 100%;
    flex: 0 0 100%;
  }
}

.navmenu .navmenu-level.navmenu-level-1 .navmenu-inner .tab:not(:first-child) {
  width: 33.3333%;
  flex: 0 0 33.3333%;
}

@media screen and (max-width: 575px) {
  .navmenu .navmenu-level.navmenu-level-1 .navmenu-inner .tab:not(:first-child) {
    width: 100%;
    flex: 0 0 100%;
  }
}

.navmenu .navmenu-level.navmenu-level-1.hiding {
  transform: translateX(-100%);
}

.navmenu .navmenu-level.navmenu-level-2 .navmenu-inner {
  padding-left: 0;
}

.navmenu .navmenu-level.navmenu-level-2 .navmenu-inner .tab:first-child {
  padding-left: 7vw;
  width: 38%;
  flex: 0 0 38%;
}

@media screen and (max-width: 991px) {
  .navmenu .navmenu-level.navmenu-level-2 .navmenu-inner .tab:first-child {
    padding-left: 10vw;
    width: 40%;
    flex: 0 0 40%;
  }
}

@media screen and (max-width: 575px) {
  .navmenu .navmenu-level.navmenu-level-2 .navmenu-inner .tab:first-child {
    padding-left: 15vw;
    width: 100%;
    flex: 0 0 100%;
  }
}

.navmenu .navmenu-level.navmenu-level-2 .navmenu-inner .tab:not(:first-child) {
  width: 31%;
  flex: 0 0 31%;
}

@media screen and (max-width: 991px) {
  .navmenu .navmenu-level.navmenu-level-2 .navmenu-inner .tab:not(:first-child) {
    width: 30%;
    flex: 0 0 30%;
  }
}

@media screen and (max-width: 575px) {
  .navmenu .navmenu-level.navmenu-level-2 .navmenu-inner .tab:not(:first-child) {
    width: 100%;
    flex: 0 0 100%;
  }
}

.navmenu .navmenu-level.navmenu-level-2.hiding {
  transform: translateX(100%);
}

.navmenu .navmenu-level.navmenu-level-2.hiding .navmenu-back {
  opacity: 0;
  visibility: hidden;
}

.navmenu .navmenu-inner {
  min-width: 100vw;
  display: flex;
  align-items: stretch;
  height: 87vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.navmenu .navmenu-inner .tabs {
  display: flex;
  align-items: stretch;
  height: 87vh;
  position: relative;
  min-width: 100vw;
}

.navmenu .navmenu-back {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7vw;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}

@media screen and (max-width: 991px) {
  .navmenu .navmenu-back {
    width: 10vw;
  }
}

@media screen and (max-width: 575px) {
  .navmenu .navmenu-back {
    width: 15vw;
  }
}

.navmenu .navmenu-back:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 400vh;
  width: 400vh;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
  background: #ff7700;
  transition: all 0.5s;
}

.navmenu .navmenu-back:hover:before {
  background: #ff8811;
}

.navmenu .navmenu-back .navmenu-back-inner {
  width: 7vw;
  height: 7vw;
  position: absolute;
  top: 50%;
  margin-top: -50%;
  line-height: 7vw;
  color: #fff;
  font-size: 5vh;
  font-weight: bold;
  text-align: center;
  transform: rotate(90deg) translateX(-2vh);
}

@media screen and (max-width: 991px) {
  .navmenu .navmenu-back .navmenu-back-inner {
    width: 10vw;
    height: 10vw;
    line-height: 10vw;
  }
}

@media screen and (max-width: 575px) {
  .navmenu .navmenu-back .navmenu-back-inner {
    width: 15vw;
    height: 15vw;
    line-height: 15vw;
  }
}

.navmenu .tab {
  width: 33.3333%;
  height: 87vh;
  flex: 0 0 33.3333%;
  float: left;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.navmenu .tab:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 400vh;
  width: 400vh;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
}

.navmenu .tab .tab-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 20px;
  display: block;
}

.navmenu .tab .tab-h {
  text-align: center;
  font-size: 5vh;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: bold;
  transition: all 0.2s;
  height: 10vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .navmenu .tab .tab-h {
    font-size: 20px;
  }
}

.navmenu .tab .tab-content {
  width: 100%;
  height: 33vh;
  position: relative;
  display: block;
}

.navmenu .tab .tab-content .tab-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0px;
  line-height: 0;
  background: #fff;
  display: block;
}

.navmenu .tab .tab-content .tab-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s;
}

.navmenu .tab .tab-content .tab-txt {
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  display: block;
}

.navmenu .tab .tab-content .tab-txt:hover{
  background: rgba(255, 255, 255, 0.4);
}
.navmenu .tab:nth-child(3n+1) {
  background: #777777;
}

.navmenu .tab:nth-child(3n+1):before {
  background: #99ccff;
}

.navmenu .tab:nth-child(3n+2) {
  background: #ccffcc;
}

.navmenu .tab:nth-child(3n+2):before {
  background: #777777;
}

.navmenu .tab:nth-child(3n+3) {
  background: #99ccff;
}

.navmenu .tab:nth-child(3n+3):before {
  background: #ccffcc;
}

.navmenu .tab.last:before {
  border-radius: 0;
}

.navmenu .tab:hover .tab-h {
  opacity: 0.7;
}

.navmenu .tab:hover .tab-img img {
  opacity: 0.9;
}

.navmenu a.tab {
  color: #22262e;
}

.navmenu a.tab:hover {
  color: #22262e;
}

/***** Inner Page *****/
.content-w {
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  margin: 1vh 0;
}

@media screen and (max-width: 991px) {
  .content-w {
    margin: 0;
  }
}

.content-w .content-back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7vw;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .content-w .content-back {
    display: none;
  }
}

.content-w .content-back a {
  position: relative;
  width: 100%;
  display: block;
}

.content-w .content-back a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 400vh;
  width: 400vh;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
  background: #ff7700;
  transition: all 0.5s;
}

.content-w .content-back a:hover:before {
  background: #ff8811;
}

.content-w .content-back a .content-back-inner {
  width: 7vw;
  height: 7vw;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -50%;
  line-height: 7vw;
  color: #fff;
  font-size: 5vh;
  font-weight: bold;
  text-align: center;
  transform: rotate(90deg) translateX(-2vh);
}

@media screen and (max-width: 991px) {
  .content-w .content-back a .content-back-inner {
    width: 10vw;
    height: 10vw;
    line-height: 10vw;
  }
}

@media screen and (max-width: 575px) {
  .content-w .content-back a .content-back-inner {
    width: 15vw;
    height: 15vw;
    line-height: 15vw;
  }
}

.content-w .content {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: stretch;
  padding-left: 7vw;
}

@media screen and (max-width: 991px) {
  .content-w .content {
    padding: 0;
  }
}

.content-w .content-back {
  background: #666;
}

.content-w .content {
  display: flex;
  justify-content: stretch;
}

.content-w .chapters {
  width: 140px;
  flex: 0 0 140px;
  background: #666;
  padding-top: 30px;
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 991px) {
  .content-w .chapters {
    width: 100px;
    flex: 0 0 100px;
    padding-top: 5px;
  }
}

@media screen and (max-width: 399px) {
  .content-w .chapters {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0;
  }
}

.content-w .chapters .toggler {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  z-index: 10;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.2s;
  background: #666;
}

@media screen and (max-width: 399px) {
  .content-w .chapters .toggler {
    display: block;
  }
}

.content-w .chapters .toggler:hover {
  background: #6a6a6a;
}

.content-w .chapters .toggler span,
.content-w .chapters .toggler span:before,
.content-w .chapters .toggler span:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #ccc;
}

.content-w .chapters .toggler span {
  top: 9px;
  left: 5px;
  width: 14px;
}

.content-w .chapters .toggler span:before {
  top: 5px;
  left: 0;
}

.content-w .chapters .toggler span:after {
  top: 10px;
  left: 0;
}

.content-w .chapters ul.chapters-list {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
  overflow-y: auto;
}

.content-w .chapters ul.chapters-list li {
  display: block;
  margin: 0;
  padding: 0;
}

.content-w .chapters ul.chapters-list li a {
  display: block;
  padding: 8px 20px 8px 10px;
  line-height: 22px;
  color: #6bbaff;
  text-align: right;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .content-w .chapters ul.chapters-list li a {
    padding: 7px 10px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
  }
}

@media screen and (max-width: 575px) {
  .content-w .chapters ul.chapters-list li a {
    font-size: 12px;
  }
}

@media screen and (max-width: 399px) {
  .content-w .chapters ul.chapters-list li a {
    display: none;
    text-align: left;
    font-size: 13px;
    line-height: 16px;
  }
}

.content-w .chapters ul.chapters-list li a:hover {
  background: linear-gradient(to right, rgba(85, 85, 85, 0) 0%, #555 20%);
}

.content-w .chapters ul.chapters-list li a.label-default {
  background: linear-gradient(to right, rgba(79, 79, 79, 0) 0%, #4f4f4f 20%);
  color: #b4dcff;
}

@media screen and (max-width: 399px) {
  .content-w .chapters ul.chapters-list li a.label-default {
    display: block;
  }
}

.content-w .chapters ul.chapters-list li:not(:last-child) a {
  position: relative;
}

.content-w .chapters ul.chapters-list li:not(:last-child) a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.05) 50%);
  z-index: 1;
}

.content-w .chapters.expanded {
  height: auto;
  bottom: 0;
}

@media screen and (max-width: 399px) {
  .content-w .chapters.expanded ul.chapters-list li a {
    display: block;
  }
}

.content-w .galleria-w {
  flex: 1;
  display: flex;
  align-items: stretch;
  z-index: 0;
  position: relative;
  background-color: #000000;
}

@media screen and (max-width: 1399px) {
  .content-w .galleria-w {
    flex-direction: column;
  }
}

@media screen and (max-width: 399px) {
  .content-w .galleria-w {
    padding-top: 30px;
  }
}

.content-w .galleria {
  flex: 2;
  background: #000;
}

.content-w .galleria .galleria-theme-classic .galleria-stage {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 575px) {
  .content-w .galleria .galleria-theme-classic .galleria-stage .galleria-image img {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.content-w.content-w-gallery .map {
  width: 30%;
  flex: 0 0 30%;
}

@media screen and (max-width: 1399px) {
  .content-w.content-w-gallery .map {
    width: 100%;
    height: 30%;
  }
}

.content-w.content-w-map .map {
  width: 100%;
  flex: 1;
}

@media screen and (max-width: 991px) {
  .content-w.content-w-map .leaflet-touch .leaflet-bar.leaflet-bar-timecontrol {
    display: flex;
    flex-wrap: wrap;
  }
  .content-w.content-w-map .leaflet-bar a {
    border-bottom: none !important;
  }
  .content-w.content-w-map .leaflet-left {
    right: 0;
  }
  .content-w.content-w-map .leaflet-left .leaflet-control.leaflet-bar.leaflet-bar-timecontrol {
    margin-left: 0;
    width: 100%;
  }
  .content-w.content-w-map .leaflet-touch .leaflet-bar-timecontrol .leaflet-control-timecontrol {
    line-height: 42px;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-backward {
    width: 44px;
    height: 44px;
    order: 2;
    background: #eee;
    border: 1px solid #fff;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-play {
    width: 44px;
    height: 44px;
    order: 3;
    background: #eee;
    border: 1px solid #fff;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-forward {
    width: 44px;
    height: 44px;
    order: 4;
    background: #eee;
    border: 1px solid #fff;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-date {
    order: 5;
    margin-left: auto;
    min-width: 0;
    overflow: hidden;
    padding: 0 5px;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-slider.timecontrol-speed {
    order: 1;
    margin-right: auto;
    padding: 0 3px;
    border: none;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-slider.timecontrol-speed:before {
    display: none;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-slider.timecontrol-speed .speed {
    width: auto;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-dateslider {
    width: 100%;
    height: 26px;
    margin-top: 10px;
    order: 6;
  }
  .content-w.content-w-map .leaflet-control-timecontrol.timecontrol-dateslider .slider {
    margin: 5px 2%;
    width: 96%;
  }
}

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