@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;500;600;700&family=Fira+Sans:wght@400;500;600&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  user-select: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
    margin-bottom: 20px;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "Fira Sans", sans-serif;
  color: #262626;
  scroll-behavior: smooth;
}

html body {
  font-size: 16px;
}

p {
  font-family: "Fira Sans", sans-serif;
  line-height: 150%;
  font-size: 16px;
  margin-bottom: 20px;
}

p + figure {
  margin-top: 0 !important;
}

a {
  color: #262626;
}

a:active {
  color: #262626;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

header .wrapper {
    width: 100%;
    max-height: 100%;
    max-width: 1024px;
    padding: 0 15px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
}

.top-ribbon {
    background-color: #f5f5f5;
    height: 40px;
    line-height: 40px;
    border-bottom: 2px solid #d6d6d9;
    position: relative;
}

@media (max-width: 1024px) {
    header .top-ribbon::after {
        position: absolute;
        content: '';
        display: block;
        width: 36px;
        height: 100%;
        right: 0;
        top: 0;
        z-index: 20;
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(#f5f5f5));
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #f5f5f5 100%);
    }
}

.top-ribbon .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    header .top-ribbon .wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: #fa6300 transparent;
    }
}
  
header .top-ribbon .wrapper::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
  
header .top-ribbon .wrapper::-webkit-scrollbar-track {
    background: transparent;
}
  
header .top-ribbon .wrapper::-webkit-scrollbar-thumb {
    background-color: #fa6300;
    border-radius: 2px;
    border: none;
}

header .top-ribbon .right-menu {
    font-size: 14px;
    color: #8e9098;
    white-space: nowrap;
    margin-left: 36px;
}
  
@media (max-width: 1024px) {
    header .top-ribbon .right-menu {
        margin-right: 38px;
        margin-left: 0;
    }
}
  
header .top-ribbon .right-menu a {
    color: inherit;
    text-decoration: none;
    margin-left: 14px;
    position: relative;
    padding-left: 23px;
}
  
@media (max-width: 539px) {
    header .top-ribbon .right-menu a {
        margin-left: 0;
    }
}
  
header .top-ribbon .right-menu a::before {
    content: '';
    display: block;
    position: absolute;
    background-position: top left;
    background-size: 18px;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 22px;
    height: 18px;
}
  
header .top-ribbon .right-menu a.weather {
    color: #1d89c9;
}
  
header .top-ribbon .right-menu a.weather::before {
    background-image: url("img/sun.svg");
}
  
header .top-ribbon .right-menu a.water-temp {
    color: #1d89c9;
}
  
header .top-ribbon .right-menu a.water-temp::before {
    background-image: url("img/hot.svg");
}
  
header .top-ribbon .right-menu a.water-temp .show-on-phone {
    font-style: normal;
    display: none;
}
  
@media (max-width: 539px) {
    header .top-ribbon .right-menu a.water-temp .show-on-phone {
      display: inline;
    }
}
  
header .top-ribbon .right-menu a.water-temp .hide-on-phone {
    font-style: normal;
    display: none;
}
  
@media (min-width: 540px) {
    header .top-ribbon .right-menu a.water-temp .hide-on-phone {
      display: inline;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

header .main {
    background-color: #ffffff;
}

header .main .wrapper .logo {
    margin-right: auto;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 1;
    height: 100%;
    margin: 10px 0;
}

@media (max-width: 1024px) {
    header .main .wrapper .logo {
        margin-right: 20px;
    }
}

header .main .wrapper .logo img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    height: 68px;
    -o-object-fit: contain;
        object-fit: contain;
}

@media (max-width: 539px) {
    header .main .wrapper .logo img {
        max-width: 180px;
    }
}

header a#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 4px solid #1f92d0;
    background-image: url(img/chevron.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 99991;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
}

section h1 {
    font-family: "Fira Sans", sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    position: relative;
    border-left: 7px solid #fa6300;
    padding: 10px 26px;
    margin-bottom: 32px;
  }
  
  @media (max-width: 767px) {
    section h1 {
      padding-right: 0;
      font-size: 30px;
      line-height: 34px;
      padding: 10px 0 10px 24px;
      margin-bottom: 24px;
    }
  }
  
  @media (max-width: 895px) {
    section h1 span {
      margin-top: 10px;
      font-size: 20px;
      line-height: 21px;
      display: block;
      clear: both;
    }
  }
  
  section h2 {
    font-family: "Fira Sans", sans-serif;
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    padding: 0 0 10px;
    margin-bottom: 32px;
    border-bottom: 4px solid #1f92d0;
  }
  
  section h2.grey, section h2.gray {
    border-bottom: 4px solid #dadada;
  }
  
  section h2[id] {
    padding-top: 82px;
    margin-top: -68px;
    pointer-events: none;
  }
  
  @media (max-width: 767px) {
    section h2[id] {
      padding-top: 82px;
      margin-top: -68px;
    }
  }
  
  @media (max-width: 767px) {
    section h2 {
      font-size: 22px;
      line-height: 24px;
      margin-bottom: 24px;
      margin-top: 10px;
    }
  }
  
  section h3 {
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
    padding: 32px 0 10px;
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
  }
  
  section h3[id] {
    padding-top: 82px;
    margin-top: -68px;
    pointer-events: none;
  }
  
  @media (max-width: 767px) {
    section h3[id] {
      padding-top: 82px;
      margin-top: -68px;
    }
  }
  
  section h3:first-child {
    margin-top: 0;
  }
  
  section h3.grey, section h3.gray {
    border-bottom: 4px solid #dadada;
  }
  
  @media (max-width: 767px) {
    section h3 {
      padding-top: 32px;
      font-size: 20px;
      line-height: 130%;
    }
  }
  
  section h4 {
    font-family: "Fira Sans", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  section ul, section ol {
    list-style: none;
    font-family: "Fira Sans", sans-serif;
  }
  
  section ul > li, section ol > li {
    font-size: 16px;
    line-height: 1.4em;
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px;
  }
  
  section ul > li::before, section ol > li::before {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #7f9fcc;
    left: 3px;
    top: 3px;
  }
  
  section article > ul, section ol {
    margin-bottom: 32px;
  }
  
  section article > ul a, section ol a {
    text-decoration: none;
    border-bottom: 1px solid #1d89c9;
  }
  
  section article > ul a:hover, section ol a:hover {
    border-bottom: 1px solid #444444;
  }
  
  section ul.yellow > li::before {
    background-color: #fddf5d;
  }
  
  section ul.triangles > li {
    padding-left: 18px;
  }
  
  section ul.triangles > li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #1d89c9;
    position: absolute;
    left: 0;
    top: 4px;
    background-color: transparent;
    border-radius: 0;
  }
  
  section ul.rooms li::before {
    width: 1px;
    bottom: -12px;
    content: "";
    left: 13px;
    top: 13px;
    background-color: transparent;
    border-radius: 0;
    background-image: linear-gradient(#9A9697 1px, #ffffff 1px);
    background-position: right;
    background-size: 1px 4px;
    background-repeat: repeat-y;
    height: 100%;
  }
  
  section ul.rooms li::after {
    content: "";
    left: 3px;
    top: 4px;
    background: #ffffff url(../img/grey/bed.svg);
    border-radius: 0;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    display: block;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  
  section ul.rooms li:last-child::before {
    display: none;
  }
  
  section ul.rooms li a {
    text-decoration: none;
    border-bottom: 1px dashed #262626;
    white-space: normal;
    color: #3f2e00;
  }
  
  section ul.rooms li a .room-price {
    display: none;
    padding: 0 4px;
    background-color: #ffe788;
    font-size: 100%;
    line-height: 22px;
    position: relative;
    left: 24px;
  }
  
  section ul.rooms li a .room-price::before {
    content: '\2192';
    display: inline-block;
    position: absolute;
    left: -24px;
    background-color: #ffffff;
    padding: 0 4px;
  }
  
  section ul.rooms li:hover a {
    border-bottom: 1px dashed #9d0c19;
  }
  
  section ul.rooms li:hover a .room-price {
    display: inline-block;
  }
  
  section ul.rooms li:hover::after {
    background: #ffffff url(../img/orange-bed.svg);
  }
  
  section ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
  }
  
  section ol li {
    counter-increment: item;
    padding-left: 42px;
  }
  
  section ol li::before {
    content: counters(item, ". ") " ";
    background-color: #1d89c9;
    color: #ffffff;
    font-weight: 600;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 27px;
    font-size: 14px;
    top: -2px;
  }

  section ol li li:before {
    content: counters(item, ".") " ";
    display: block;
  }
  
  section article {
    /*& > ul, & > ol {
              padding-left: 28px;
          }*/
  }
  
  section article p a {
    text-decoration: none;
    border-bottom: 1px solid #1d89c9;
  }
  
  section article p a:hover {
    border-bottom: 1px solid #444444;
  }
  
  section article h2 + figure {
    margin-top: 0 !important;
  }
  
  section article .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 20px;
  }
  
  section article .buttons.centered {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  section article .buttons a {
    margin: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  section article .buttons a.percent-25 {
    min-width: 25%;
    white-space: nowrap;
  }
  
  @media (max-width: 539px) {
    section article .buttons a.percent-25 {
      min-width: 50%;
    }
  }
  
  section article .buttons a.percent-30 {
    min-width: 30%;
    white-space: nowrap;
  }
  
  @media (max-width: 539px) {
    section article .buttons a.percent-30 {
      width: 100%;
    }
  }
  
  
  section article .buttons a.percent-50 {
    min-width: 50%;
    white-space: nowrap;
  }
  
  @media (max-width: 539px) {
    section article .buttons a.percent-50 {
      width: 100%;
    }
  }
  
  section article .buttons a.percent-75 {
    min-width: 75%;
    white-space: nowrap;
  }
  
  @media (max-width: 539px) {
    section article .buttons a.percent-75 {
      width: 100%;
    }
  }
  
  section article .buttons a .chevron {
    background-image: url("../img/chevron-white.svg");
    right: 0;
    width: 16px;
    height: 16px;
    background-position: top center;
    background-size: 18px;
    display: inline-block;
    /*transform: rotate(90deg) translateX(3px);*/
    margin-left: 3px;
    top: -1px;
    position: relative;
  }
  
  section article .buttons + h2, section article .buttons + h2 {
    padding-top: 32px;
  }
  
  section article abbr {
    cursor: help;
    border-bottom: 1px dotted #888;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  
  @media (max-width: 1366px) {
    section article abbr:hover {
      border-bottom-color: transparent;
      color: transparent;
      line-height: 0;
      font-size: 13px;
    }
  }
  
  @media (min-width: 1025px) {
    section article abbr:hover[title]:after {
      content: attr(title);
      display: block;
      position: absolute;
      left: -10px;
      top: -10px;
      background: #ffffff;
      border: 1px solid #fa6300;
      padding: 4px 8px;
      z-index: 1;
      max-width: 350px;
      white-space: normal;
      font-size: 14px;
    }
  }
  
  @media (max-width: 1366px) {
    section article abbr:hover[title]:after {
      color: #262626;
      content: attr(title);
      line-height: 16px;
      font-size: 14px;
      display: block;
      padding: 2px 0;
      top: 29px;
      white-space: normal;
    }
}

hr {
    border: 0;
    border-top: 1px dotted #920;
  }
  
  sup {
    font-size: 12px;
    top: -5px;
    position: relative;
  }
  
  sub {
    font-size: 12px;
    bottom: -5px;
    position: relative;
  }
  
  table {
    border: 2px solid #043b8c;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    margin-bottom: 42px;
  }
  
  @media (max-width: 895px) {
    table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      border-left: 2px solid #eaeaea;
      border-bottom: 2px solid #eaeaea;
      position: relative;
    }
    table::-webkit-scrollbar {
      width: 3px;
      height: 3px;
    }
    table::-webkit-scrollbar-track {
      background: transparent;
    }
    table::-webkit-scrollbar-thumb {
      background-color: #043b8c;
      border-radius: 2px;
      border: none;
    }
  }
  
  table tr th {
    background-color: #043b8c;
    color: #fff;
    text-align: center;
    padding: 10px;
    vertical-align: middle;
    border-left: 2px solid #7f9fcc;
  }
  
  @media (max-width: 539px) {
    table tr th {
      width: 100%;
    }
  }
  
  table tr th:first-child {
    border-left-color: #043b8c;
  }
  
  table tr td {
    text-align: center;
    padding: 10px;
    background-color: #d1dff3;
    vertical-align: middle;
    border-left: 2px solid #043b8c;
  }
  
  table tr td:first-child {
    text-align: left;
  }
  
  table tr:nth-child(even) td {
    background-color: #dff0f8;
  }
  
  table tr:hover td {
    background-color: #a0c7e2;
  }
  
  table tr.clickable {
    cursor: pointer;
  }
  
  table.orange {
    border: 2px solid #1d89c9;
    position: relative;
  }
  
  table.orange::after {
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: calc(100% + 1px);
    background-color: #1d89c9;
  }
  
  table.orange tr th {
    background-color: #1d89c9;
    text-align: center;
    padding: 10px;
    vertical-align: middle;
    border-left: 2px solid #eca79d;
    border-top: 2px solid #1d89c9;
    color: #ffffff;
  }
  
  table.orange tr th:first-child {
    border-left-color: #1d89c9;
  }
  
  table.orange tr th:last-child {
    border-right: 2px solid #1d89c9;
  }
  
  table.orange tr td {
    text-align: center;
    padding: 10px;
    background-color: #ffcbc2;
    vertical-align: middle;
    border-left: 2px solid #ffcbc2;
  }
  
  table.orange tr td:first-child {
    border-left-color: #1d89c9;
  }
  
  table.orange tr:nth-child(even) td {
    background-color: #f8fbff;
  }
  
  table.orange tr:hover td {
    cursor: pointer;
    background-color: #fba293;
  }
  
  table.full {
    width: 100%;
  }
  
  .float-left {
    display: block;
    float: left;
    clear: left;
    margin: 0 20px 20px 0;
  }
  
  article span.intro {
    display: inline-block;
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    iframe {
      border-left: 1px solid #d6d6d9  !important;
      border-right: 1px solid #d6d6d9  !important;
    }
  }
  
  body {
    background-color: #f3f3f3;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  section {
    padding: 0 15px;
    position: relative;
  }
  
  @media (max-width: 767px) {
    section {
      padding: 0;
      max-width: 100vw;
      overflow: hidden;
    }
  }
  
  @media (max-width: 539px) {
    section.hidden {
      display: none !important;
    }
  }
  
  @media (min-width: 896px) {
    section:first-child .wrapper {
      margin-top: 32px;
    }
  }
  
  section::after {
    content: '';
    display: table;
  }
  
  section .wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1024px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
    padding: 0 15px;
  }
  
  @media (max-width: 895px) {
    section .wrapper {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }
  
  @media (max-width: 767px) {
    section .wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0;
    }
  }
  
  @media (min-width: 896px) {
    section .wrapper:first-child {
      margin-top: 42px;
    }
  }
  
  section .wrapper .container {
    width: 100%;
  }
  
  @media (max-width: 767px) {
    section .wrapper .container {
      padding: 15px 3px;
    }
  }
  
  section .wrapper .container.has-sidebar {
    float: left;
    width: calc(100% - 323px);
  }
  
  @media (max-width: 1024px) {
    section .wrapper .container.has-sidebar {
      padding: 20px;
      padding: 20px 3px;
    }
  }
  
  @media (max-width: 895px) {
    section .wrapper .container.has-sidebar {
      width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    section .wrapper .container.has-sidebar {
      width: 100%;
    }
  }
  
  @media (min-width: 1025px) {
    section .wrapper .container.has-sidebar .featured {
      margin: 0 -20px;
    }
  }
  
  @media (min-width: 1025px) {
    section .wrapper .container.has-sidebar .featured {
      margin: 0 -20px;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
    }
  }
  
  @media (min-width: 896px) and (max-width: 1024px) {
    section .wrapper .container.has-sidebar .featured {
      margin: 0 -3px 0;
    }
  }
  
  @media (min-width: 768px) and (max-width: 895px) {
    section .wrapper .container.has-sidebar .featured {
      margin: 0 -3px 0;
    }
  }
  
  section .wrapper .container.has-sidebar .featured > div {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 10px;
  }
  
  @media (min-width: 1025px) {
    section .wrapper .container.has-sidebar .featured > div {
      margin: 7px 7px 27px;
      width: calc(100% / 3 - 14px);
      max-width: 268px;
    }
  }
  
  @media (min-width: 1025px) and (max-width: 1366px) {
    section .wrapper .container.has-sidebar .featured > div {
      /*max-width: 210px;*/
      max-width: calc(100% / 4 - 20px);
      margin: 7px 7px 27px;
    }
  }
  
  @media (min-width: 1367px) {
    section .wrapper .container.has-sidebar .featured > div {
      width: calc(100% / 4 - 14px);
    }
  }
  
  @media (min-width: 896px) and (max-width: 1024px) {
    section .wrapper .container.has-sidebar .featured > div {
      width: calc(100% / 3 - 14px);
      max-width: 268px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 895px) {
    section .wrapper .container.has-sidebar .featured > div {
      max-width: 268px;
    }
  }
  
  @media (max-width: 767px) {
    section .wrapper .container.has-sidebar .featured > div {
      width: calc(50% - 20px);
      max-width: 50%;
    }
  }
  
  @media (max-width: 539px) {
    section .wrapper .container.has-sidebar .featured > div {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 100%;
              flex: 1 1 100%;
      max-width: 100%;
    }
  }
  
  @media (max-width: 1366px) and (hover: none) and (pointer: coarse) {
    section .wrapper .container.has-sidebar .featured > div {
      width: calc(50% - 20px);
      max-width: 50%;
      height: 190px;
    }
  }
  
  @media (min-width: 896px) and (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    section .wrapper .container.has-sidebar .featured > div {
      width: 100%;
      max-width: 100%;
    }
  }
  
  @media (max-width: 895px) and (hover: none) and (pointer: coarse) {
    section .wrapper .container.has-sidebar .featured > div {
      width: calc(50% - 20px);
      max-width: 50%;
      height: 190px;
    }
  }
  
  @media (max-width: 539px) and (hover: none) and (pointer: coarse) {
    section .wrapper .container.has-sidebar .featured > div {
      width: 100%;
      max-width: 100%;
      height: 190px;
    }
  }
  
  section .wrapper .container.has-sidebar .featured > div .features > a {
    min-width: 25%;
    max-width: 25%;
  }
  
  @media (max-width: 767px) {
    section .wrapper .container.has-sidebar .featured > div .features > a {
      min-width: 20%;
      max-width: 20%;
    }
  }
  
  @media (max-width: 1366px) and (hover: none) and (pointer: coarse) {
    section .wrapper .container.has-sidebar .featured > div .features > a {
      min-width: 20%;
      max-width: 20%;
    }
  }
  
  section .wrapper .container.has-sidebar .featured > div:hover .features > a {
    min-width: 20%;
    max-width: 20%;
  }
  
  section .wrapper .container article {
    padding: 32px;
    width: 100%;
    margin-bottom: 32px;
    background-color: #ffffff;
    float: left;
  }
  
  @media (max-width: 767px) {
    section .wrapper .container article {
      padding: 32px 20px;
    }
  }
  
  section .wrapper .container article:last-of-type {
    margin-bottom: 0;
  }
  
  section .wrapper .container article .contents {
    border: 2px solid #7f9fcc;
    background-color: rgba(29, 137, 201, 0.07);
    display: inline-block;
    width: 100%;
    padding: 48px 56px 16px;
    margin-bottom: 36px;
    position: relative;
    font-family: "Fira Sans", sans-serif;
  }
  
  @media (max-width: 767px) {
    section .wrapper .container article .contents {
      padding: 52px 16px 0 12px;
      border-radius: 5px;
      border-style: dotted;
      max-height: 52px;
      overflow: hidden;
      -webkit-transition: max-height .2s ease-out;
      transition: max-height .2s ease-out;
      will-change: max-height;
      will-change: max-height;
      margin-bottom: 20px;
    }
  }
  
  @media (min-width: 768px) {
    section .wrapper .container article .contents:not(.active) {
      max-height: 54px;
      overflow: hidden;
      background: transparent;
      border-color: transparent;
      padding: 47px 56px 16px;
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 768px) {
    section .wrapper .container article .contents:not(.active) h4 {
      border-bottom: 1px dotted #262626;
      cursor: pointer;
      font-size: 15px;
      line-height: 15px;
      right: 10px;
      left: auto;
      font-style: normal;
      color: #262626;
    }
  }
  
  @media (min-width: 768px) {
    section .wrapper .container article .contents:not(.active) h4::before {
      content: '[';
      margin-right: 2px;
      text-decoration: none;
      display: block;
      position: absolute;
      left: -6px;
      top: 0;
    }
  }
  
  @media (min-width: 768px) {
    section .wrapper .container article .contents:not(.active) h4::after {
      content: ']';
      margin-right: 2px;
      text-decoration: none;
      display: block;
      position: absolute;
      right: -9px;
      top: 0;
    }
  }
  
  @media (min-width: 768px) {
    section .wrapper .container article .contents:not(.active) a.close {
      display: none !important;
    }
  }
  
  @media (min-width: 768px) {
    section .wrapper .container article .contents:not(.active) ol {
      opacity: 0;
      margin-top: 20px;
    }
  }
  
  section .wrapper .container article .contents a.close {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
  }
  
  @media (max-width: 767px) {
    section .wrapper .container article .contents a.close {
      display: none;
      position: absolute;
      top: 14px;
      right: 20px;
      width: 20px;
      height: 20px;
    }
  }
  
  section .wrapper .container article .contents a.close::before {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background-color: #262626;
    left: -8px;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(45deg) translateX(12px) translateY(-12px);
            transform: rotate(45deg) translateX(12px) translateY(-12px);
  }
  
  section .wrapper .container article .contents a.close::after {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background-color: #262626;
    left: -8px;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(-45deg) translateX(12px) translateY(12px);
            transform: rotate(-45deg) translateX(12px) translateY(12px);
  }
  
  @media (max-width: 767px) {
    section .wrapper .container article .contents.active {
      max-height: 2000px;
    }
  }
  
  section .wrapper .container article .contents.active h4 {
    border-bottom: none;
  }
  
  @media (max-width: 895px) {
    section .wrapper .container article .contents.active h4::after {
      content: '';
    }
  }
  
  @media (max-width: 767px) {
    section .wrapper .container article .contents.active li {
      opacity: 1;
    }
  }
  
  section .wrapper .container article .contents.active a.close {
    display: block;
  }
  
  section .wrapper .container article .contents h4 {
    position: absolute;
    display: block;
    top: 20px;
    left: 24px;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
  }
  
  @media (max-width: 895px) {
    section .wrapper .container article .contents h4 {
      left: 50%;
      top: 12px;
      width: auto;
      font-style: normal;
      text-align: center;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  
  @media (max-width: 895px) {
    section .wrapper .container article .contents h4::after {
      content: '\2193';
      display: inline-block;
      margin-left: 3px;
      top: 1px;
      position: relative;
    }
  }
  
  section .wrapper .container article .contents ol {
    list-style: none;
    counter-reset: item;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  
  section .wrapper .container article .contents ol > li {
    padding-left: 32px;
    color: #262626;
  }
  
  @media (max-width: 767px) {
    section .wrapper .container article .contents ol > li {
      opacity: 0;
      -webkit-transition: opacity 0.2s ease-in;
      transition: opacity 0.2s ease-in;
    }
  }
  
  section .wrapper .container article .contents ol > li::before {
    display: block;
    background: transparent;
    color: inherit;
    left: 0;
    top: 0;
    font-size: inherit;
    font-weight: inherit;
  }
  
  section .wrapper .container article .contents ol > li a {
    color: #262626;
    text-decoration: none;
    border-bottom: 1px dotted #262626;
    white-space: normal;
  }
  
  section .wrapper .container article .contents ol > li ul {
    margin-top: 10px;
  }
  
  section .wrapper .container article .contents ol > li ul li {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
  }
  
  section .wrapper .container article .contents ol > li ul li::before {
    width: 8px;
    height: 8px;
    top: 6px;
    background-color: #787878;
  }
  .region article {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
  
  .region article:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  
  .region article:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  
  .region article h2 {
    padding-top: 32px;
  }
  
  .region article h2[id] {
    padding-top: 68px;
    pointer-events: none;
  }
  
  .region article .all-hotels {
    top: 0;
  }
  
  .region .subtitle, p.subtitle {
    font-size: 20px;
    font-weight: normal;
    line-height: 150%;
    font-style: italic;
    padding-left: 16px;
    border-left: 1px solid #f3f3f3;
    display: inline-block;
  }
  
  .region .webcam-cover {
    display: block;
    float: left;
    margin: 0 20px 20px 0;
    max-width: 400px;
    position: relative;
  }
  
  @media (max-width: 767px) {
    .region .webcam-cover {
      float: none;
      margin: 0 auto 32px;
    }
  }
  
  .region .webcam-cover::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url('img/play.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 78px;
  }
  
  .region .webcam-cover::after {
    content: attr(title);
    display: block;
    position: absolute;
    width: 100%;
    color: #1d89c9;
    background-color: rgba(245, 245, 245, 0.91);
    bottom: 0;
    left: 0;
    padding: 14px 0;
    line-height: 24px;
    text-align: center;
    font-size: 15px;
    font-family: "Fira Sans Condensed", sans-serif;
    z-index: 4;
  }
  
  .region .webcam-cover img {
    width: 100%;
    display: block;
  }
  
  .region .entertainment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  
  .region .entertainment a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% / 6);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 15px 0;
    text-decoration: none;
    font-family: "Fira Sans Condensed", sans-serif;
  }
  
  @media (min-width: 1025px) and (max-width: 1366px) {
    .region .entertainment a {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: calc(100% / 5);
      min-width: 140px;
    }
  }
  
  @media (max-width: 1024px) {
    .region .entertainment a {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: calc(100% / 3);
    }
  }
  
  @media (max-width: 895px) {
    .region .entertainment a {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      width: calc(100% / 5);
      min-width: 140px;
    }
  }
  
  .region .entertainment a:hover img {
    border-color: #fa6300;
  }
  
  .region .entertainment a img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border: 5px solid #dfdfdf;
    margin-bottom: 8px;
  }
  
  .region .entertainment a span {
    color: #1d89c9;
    font-size: 15px;
    line-height: 20px;
  }

  article .webcam-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #f3f3f3;
    margin: 0 -42px;
    padding: 20px 0;
  }
  
  @media (max-width: 539px) {
    article .webcam-list {
      margin: 0 -20px;
      padding: 20px 0;
    }
  }
  
  article .webcam-list .webcam {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% / 4 - 20px);
    background-color: #ffffff;
    margin: 10px 10px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 2px solid #ddd;
  }
  
  @media (max-width: 768px) {
    article .webcam-list .webcam {
        width: calc(100% / 3 - 20px);
    }
  }

  @media (max-width: 640px) {
    article .webcam-list .webcam {
        width: calc(100% / 2 - 20px);
    }
  }
  
  article .webcam-list .webcam:hover .camera::after {
    bottom: -6px;
    height: 6px;
  }
  
  article .webcam-list .webcam:hover .camera a::before {
    background-size: 80px;
  }
  
  article .webcam-list .webcam .camera {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    width: 100%;
    border-bottom: 3px solid #1f92d0;
    border-top: 3px solid #ffffff;
    position: relative;
  }
  
  @media (max-width: 767px) {
    article .webcam-list .webcam .camera {
      padding: 0;
      margin-bottom: 15px;
      max-width: 100%;
    }
  }
  
  article .webcam-list .webcam .camera::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #fa6300;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    bottom: 0;
  }
  
  article .webcam-list .webcam .camera a {
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 3px solid #fff;
  }
  
  article .webcam-list .webcam .camera a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("img/play.svg");
    background-position: center;
    background-size: 96px;
    background-repeat: no-repeat;
    -webkit-transition: all ease-out .15s;
    transition: all ease-out .15s;
  }
  
  @media (max-width: 539px) {
    article .webcam-list .webcam .camera a::before {
      background-size: 68px;
    }
  }
  
  article .webcam-list .webcam .camera a img {
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 142px;
  }

  @media (max-width: 539px) {
    article .webcam-list .webcam .camera a img {
      height: 135px;
    }
  }
  
  article .webcam-list .webcam > a {
    text-align: center;
    text-decoration: none;
    margin: 8px 0 0;
    padding: 10px 10px 20px;
  }
  
  @media (max-width: 539px) {
    article .webcam-list .webcam > a {
      margin: 0;
      padding: 0 10px 20px;
    }
  }
  
  article .webcam-list .webcam > a span {
    display: inline;
    line-height: 25px;
    font-size: 18px;
    text-decoration: none;
    /*border-bottom: 1px solid #bfbfbf;*/
    font-weight: 500;
    font-family: "Fira Sans Condensed", sans-serif;
    padding-bottom: 0;
  }
  
  article .webcam-list .webcam .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  
  @media (max-width: 767px) {
    article .webcam-list .webcam .text {
      max-width: 100%;
      padding: 0;
    }
  }
  
  article .webcam-list .webcam .text p {
    font-size: 15px;
  }
  
  article .webcam-list .webcam .text .button {
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
  }
  
  article .webcam-list .webcam .text .button .chevron {
    background-image: url("img/chevron-white.svg");
    right: 0;
    width: 13px;
    top: -1px;
    position: relative;
    height: 16px;
    background-position: top center;
    background-size: 18px;
    display: inline-block;
    margin-left: 1px;
  }
  
  article .webcam-list .webcam:last-child {
    border-bottom: 2px solid #ddd;
  }
  
  article .webcam-list + p {
    margin-top: 32px !important;
  }
  
  article .webcam-list + h2 {
    margin-top: 32px !important;
  }
  
  article .webcam-list + h3 {
    margin-top: 32px !important;
  }

  
  footer {
    background-color: #1d1d1d;
    width: 100%;
  }
  
  @media (max-width: 539px) {
    footer {
      padding-bottom: 36px;
    }
  }
  
  @media (max-width: 539px) {
    footer.hidden {
      display: none !important;
    }
  }
  
  footer .wrapper {
    width: 100%;
    max-width: 1024px;
    padding: 36px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  
  @media (max-width: 767px) {
    footer .wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  
  footer .wrapper .copy {
    width: 100%;
    max-width: 280px;
    padding-right: 32px;
  }
  
  @media (max-width: 767px) {
    footer .wrapper .copy {
      max-width: 294px;
      width: 100%;
      padding: 0;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
    }
  }
  
  footer .wrapper .copy a.logo {
    margin-bottom: 32px;
    display: inline-block;
    max-width: 230px;
  }
  
  footer .wrapper .copy a.logo img {
    width: 100%;
    height: auto;
  }

  footer .wrapper .contacts {
    max-width: 280px;
    width: 100%;
    font-size: 25px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    footer .wrapper .contacts {
      text-align: center;
      max-width: 290px;
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
    }
  }
  
  footer .wrapper .contacts a {
    color: inherit;
    text-decoration: none;
  }
  
  footer .wrapper p {
    color: #ffffff;
    margin-bottom: 32px;
  }

  div#webcaminner {
    margin: 40px auto;
    width: 100% !important;
  }
  .wp-caption {
    max-width: 100%;
    position: relative;
    margin-bottom: 20px;
  }

  .wp-caption.alignnone {
    width: 100% !important;
    text-align: center;
  }

  .wp-caption a {
    display: block;
  }

  .wp-caption a img {
    width: 100% !important;
    height: auto  !important;
  }

  .wp-caption-text {
    font-style: italic;
    color: #888;
    margin-top: 8px;
  }

.main-menu {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
}


.main-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-menu li a {
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    line-height: 56px;
    padding: 0 10px;
}

.main-menu li:hover ul {
  display: flex;
}

.main-menu li ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 82px;
  background-color: #fff;
  padding: 10px 0;
  border: 1px solid #f3f3f3;
}

.menu-item-has-children {
  padding-right: 16px;
}

.menu-item-has-children::after {
  content: '...';
  color: #fa6300;
  font-size: 24px;
  position: absolute;
  transform: rotate(90deg) translateX(-1px);
  right: 0;
}

.main-menu li ul li {

}

.main-menu li ul li a{
  font-size: 14px;
  text-transform: none;
  line-height: 20px;
  padding: 6px 20px;
  white-space: nowrap;
  width: 100%;
}


@media (max-width: 1024px) {
  #burger-menu {
    display: block;
    width: 36px;
    height: 26px;
    right: 20px;
    margin: 0;
    transform: rotate(0deg);
    transition: .2s ease-in-out;
    cursor: pointer;
    position: absolute;
    margin-right: 10px;
    top: 28px;
  }
  #burger-menu span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #8d8f98;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .2s ease-in-out;
  }
  #burger-menu span:nth-child(1) {
    top: 20px;
  }
  #burger-menu span:nth-child(2) {
    top: 10px;
  }
  #burger-menu span:nth-child(4) {
    top: 20px;
  }

  #burger-menu.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
  }
  #burger-menu.active span:nth-child(2) {
    transform: rotate(45deg);
  }
  #burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  #burger-menu.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
  }

  
 .menu-container {
  display: flex;
  flex-direction: column;
  width: 100vw !important;
  justify-content: flex-end;
  position: fixed;
  left: 100vw;
  top: 61px;
  height: calc(100vh - 61px);
  transition: left 0.2s ease-in-out;
  background-color: #fff;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
}

.menu-container.active { 
  left: 0;
}

.main-menu {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.main-menu li {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.main-menu li a {
  line-height: 42px;
  width: 100%;
}

.main-menu li.menu-item-has-children::after {
  display: none;
}
.main-menu li ul {
  display: flex;
  width: 100%;
  padding: 0;
  position: relative;
  top: auto;
  border: none;
}

header .main .wrapper .logo {
  margin: 5px 0;
}
}

header a#scroll-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

p.message, blockquote {
  border: 2px dashed #7f9fcc;
  border-left: 7px solid #7f9fcc;
  padding: 20px;
  background:rgba(29,137,201,.07);
  font-size: 120%;
  font-style: italic;
  line-height: 150%;
  
}

p.alert, blockquote.alert {
  border: 2px dashed #ffae00;
  border-left: 7px solid #fa6300;
  padding: 20px;
  background:#fff9e0;
  font-size: 120%;
  font-style: italic;
}


p.message strong, blockquote strong {
  background-color: #e97024a1;
  padding: 4px 6px;
}

p.error {
  border: 2px dashed #ff0000;
  border-left: 7px solid #ff0000;
  padding: 20px;
  background: rgb(201 29 29 / 7%);
  font-size: 120%;
  font-style: italic;
}

.buttons {
  display: flex;
}
.buttons.centered {
  justify-content: center;
}
.buttons .button {
  display: flex;
  line-height: 16px;
  padding: 15px 60px;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  width: auto;
  border-radius: 4px;
  color: #ffffff;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
  background-color: #1f92d0;
}
.buttons a {
  margin: unset;
  justify-content: center;
  display: flex;
  line-height: 16px;
  padding: 15px 60px;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  width: auto;
  border-radius: 4px;
  color: #ffffff;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
  background-color: #1f92d0;
}


.camera-cover {
  max-width: 100%;
  display: flex;
  flex: 1 0 100%;
  padding: 15px 15px 30px 0;
}
@media (max-width: 767px) {
  .camera-cover {
    padding: 0 0 15px;
    max-width: 100%;
  }
}
.camera-cover a {
  position: relative;
}
.camera-cover a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  background-image: url("img/play.svg");
  background-position: center;
  background-size: 96px;
  background-repeat: no-repeat;
  transition: background-color ease-out 0.15s;
}
.camera-cover a:hover::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.camera-cover a img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-icon {
  aspect-ratio: 3/2;
}
.gallery-icon a {
  display: block;
}

.gallery-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
/*
.wp-caption-text {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  padding: 12px;
}
/*
div.gallery {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

div.gallery .gallery-item {
  float: none;
  margin-top: 0;
  text-align: center;
  position: relative;
  flex-basis: calc(100% / 3 - 10px);
  aspect-ratio: 3/2;
  overflow: hidden;
}

div.gallery .gallery-item a {
  display: block;
} 

div.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none !important;
} */


figure {
  display: block;
  position: relative;
}

figure.left {
  float: left;
  margin: 30px 30px 0 0;
}

figure.right {
  float: right;
  margin: 30px 0 0 30px;
}

figure.full {
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  figure.full {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

figure img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}

figure figcaption {
  display: block;
  position: absolute;
  bottom: 46px;
  left: 0;
  padding: 15px 30px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  background-color: rgba(66, 69, 255, 0.397);
}

section article .gallery {
  margin: 0 -5px 0;
  width: calc(100% + 10px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  section article .gallery {
    margin: 0 -20px 0;
    width: calc(100% + 40px);
  }
}

@media (max-width: 767px) {
  section article .gallery {
    margin: 0 -5px 12px;
    width: calc(100% + 10px);
  }
}

section article .gallery figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 10px);
          flex: 0 1 calc(20% - 10px);
  margin: 5px;
  border-top: 4px solid #ddd;
  border-bottom: 4px solid #ddd;
}

section article .gallery figure > a {
  display: block;
  width: 100%;
}

section article .gallery figure > a img {
  max-width: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

section article .gallery figure.hidden {
  display: none;
}

section article .gallery figure > figcaption {
  display: none;
}

section article .gallery.default-gallery span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  top: -4px;
  bottom: -4px;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: normal;
  border-top: 4px solid #1f92d0;
  border-bottom: 4px solid #1f92d0;
  font-family: "Fira Sans", sans-serif;
  font-size: 18px;
}

@media (max-width: 895px) {
  section .wrapper .container article .gallery.default-gallery span {
    font-size: 14px;
    font-family: "Fira Sans Condensed", sans-serif;
  }
}

@media (max-width: 539px) {
  section .wrapper .container article .gallery.default-gallery span {
    padding: 10px;
  }
}