@main_font_medium: "Montserrat-Medium";
@main_font_bold: "Montserrat-Bold";
@decore_font_bold: "InformBold";
@sub_font_regular: "PTSansNarrow-Regular";
@main_color: #FFA201;
// @main_color: lightblue;



/*reset styles*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
  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;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Common */
body {
  // background-color: #fff;
  min-width: 320px;
  font-family: @main_font_medium;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Main layout */
html,
body {
  height: 100%;
}

body {
    background: #fff url(../img/main_bg.jpg) center / auto repeat;
  &.popup-opened {
    overflow: hidden;
  }
}

.layout-box {
  height: 100%;
  >.content {
    box-sizing: border-box;
    // min-height: 100%;
    // padding-bottom: 872px;
  }
  >.footer {
    box-sizing: border-box;
    width: 100%;
    // height: 872px;
    // margin-top: -872px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.cols-box {
  font-size: 0;
}

.col {
  box-sizing: border-box;
  display: inline-block;
}

/*Header*/
.header-wrap {
  padding-top: 15px;
}
.header-box {
  position: relative;
  >.col {
    vertical-align: middle;
  }
  .header-menu {
    padding: 0 20px;
  }
  .header-menu-itm {
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -47.5px;
    padding: 24px 40px;
    width: 33%;
    &.-left {
      left: 2%;
      text-align: right;
    }
    &.-right {
      right: 2%;
    }
  }
  >.logo-box {
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    width: 27%;
  }
}
@media (max-width: 992px) {
  .header-box {
    .header-menu-itm {
      width: 29%;
      &:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        top: 0;
      }
        &.-left {
        left: 4%;
        &:after {
          border-width: 44px 20px 47px 0;
          border-color: transparent @main_color transparent transparent;
          left: -20px;
        }
      }
      &.-right {
        right: 4%;
        &:after {
          border-width: 44px 0 47px 20px;
          border-color: transparent transparent transparent @main_color;
          right: -20px;
        }
      }
    }
  }
}
@media (max-width: 768px) {
  .header-box {
    text-align: center;
    >.logo-box {
      width: 400px;
    }
    .header-menu-itm {
      position: relative;
      margin-top: 15px;
      width: 200px;
      &.-left {
        left: initial;
        margin-right: 20px;
      }
      &.-right {
        right: initial;
      }
    }
  }
}
@media (max-width: 500px) {
  .header-box {
    padding: 0 10px;
    >.logo-box {
      width: 100%;
    }
    .header-menu-itm {
      padding: 24px 15px;
      width: 48%;
      &.-left {
        margin-right: 4%;
      }
    }
  }
}
@media (max-width: 400px) {
  .header-box {
    .header-menu-itm {
      &.-left {
        &:after {
          border-width: 43px 20px 38px 0;
        }
      }
      &.-right {
        &:after {
          border-width: 43px 0 38px 20px;
        }
      }
    }
  }
}

.header-menu-itm {
  color: #fff;
  >.title-top {
    display: block;
    font-size: 18px;
  }
  >.title-bottom {
    font-size: 24px;
    display: block;
    padding-top: 5px;
    text-transform: uppercase;
  }
  &.-left {
    background: url(../img/header-itm-left.png) center right / contain no-repeat;
    text-align: right;
  }
  &.-right {
    background: url(../img/header-itm-right.png) center left / contain no-repeat;
  }
}
@media (max-width: 992px) {
  .header-menu-itm {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    >.title-bottom {
      font-size: 20px;
    }
    &.-left,
    &.-right {
      background: @main_color;
    }
  }
}
@media (max-width: 400px) {
  .header-box {
    .header-menu-itm {
      >.title-top {
        font-size: 14px;
      }
      >.title-bottom {
        font-size: 14px;
      }
    }
  }
}

.logo-box {
  border: 5px solid @main_color;
  background-color: #FFF9D8;
  text-align: center;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 10px;
  >.img {
    display: inline-block;
    max-width: 100%;
  }
}

.top-slider {
  .itm {
    width: 100%;
  }
}

.bottom-slider {
  display: none;
  margin-top: 10px;
  .itm {
    background-repeat: no-repeat;
    background-position: center;
    margin: 5px;
    height: 165px;
    width: 33.3333%;
  }
}
@media (max-width: 992px) {
  .bottom-slider {
    display: block;
  }
}
@media (max-width: 768px) {
  .bottom-slider {
    .itm {
      height: 120px;
    }
  }
}
@media (max-width: 550px) {
  .bottom-slider {
    .itm {
      height: 100px;
    }
  }
}
@media (max-width: 450px) {
  .bottom-slider {
    .itm {
      margin: 3px;
      height: 70px;
    }
  }
}

.inform-box {
  padding: 60px 50px;
  >.col {
    vertical-align: top;
  }
  >.desc {
    width: 50%;
  }
  >.img {
    text-align: center;
    width: 45%;
  }

  .title {
    color: @main_color;
    font-size: 28px;
    line-height: 33px;
    font-family: @decore_font_bold;
  }
  .simple-text {
    margin-top: 20px;
  }
  &.-img-right {
    >.desc {
      margin-right: 5%;
    }
  }
  &.-img-left {
    >.desc {
      margin-left: 5%;
    }
  }
}

.circle-img {
  box-sizing: border-box;
  height: 320px;
  width: 320px;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid #AECBD6;
  >.img {
    display: block;
    height: 100%;
    border-radius: 50%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  &.-small {
    height: 170px;
    width: 170px;
  }
}
@media (max-width: 992px) {
  .intro-box {
    >.img {
      display: none;
    }
  }
  .inform-box {
    padding: 40px 30px;
    >.desc {
      width: 100%;
    }
    .simple-text {
      font-size: 16px;
      line-height: 24px;
    }
    .title {
      text-align: center;
    }
    &.-img-right {
      >.desc {
        margin-right: 0;
      }
    }
    &.-img-left {
      >.desc {
        margin-left: 0;
      }
    }
  }
}
@media (max-width: 550px) {
  .intro-box {
    .title {
      font-size: 24px;
      line-height: 30px;
    }
  }
  .inform-box {
    padding: 30px 15px;
  }
}

.simple-text {
  font-size: 16px;
  line-height: 26px;
  p {
    padding: 5px 0;
  }
}

/*Product*/
.recreation-itm {
  position: relative;
  padding-bottom: 150px;
  >.img {
    display: none;
    width: 100%;
  }
  .submenu-box {
    padding: 40px 0 30px 0;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
  }
}

.recreation-title {
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 24px 5px;
  &.-green {
    background-color: #008300;
  }
  &.-blue {
    background-color: #3694B7;
  }
  >.top {
    color: #FFF9D8;
  }
  >.bottom {
    text-transform: uppercase;
  }
}
@media (max-width: 992px) {
  .recreation-itm {
    padding-bottom: 0;
    >.img {
      display: block;
    }
    .inform-box {
      .circle-img {
        display: none;
      }
    }
    .submenu-box {
      position: static;
    }
  }
}
@media (max-width: 768px) {
  .recreation-title {
    padding: 12px 5px;
    width: 280px;
    position: relative;
    &:after {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      position: absolute;
      top: 0;
    }
    &.-left {
      &:after {
        border-width: 36px 0 36px 20px;
        right: -20px;
      }
      &.-green {
        &:after {
          border-color: transparent transparent transparent #008300;
        }
      }
    }
    &.-right {
      margin-right: 0;
      margin-left: auto;
      &:after {
        border-width: 36px 20px 36px 0;
        left: -20px;
      }
      &.-blue {
        &:after {
          border-color: transparent #3694B7 transparent transparent;
        }
      }
    }
    >.top,
    >.bottom {
      display: block;
    }
  }
}

.submenu-box {
  text-align: center;
  >.col {
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: top;
  }
}
.submenu-itm {
  width: 93px;
  text-align: center;
  >.title {
    font-size: 14px;
    line-height: 16px;
    font-family: @sub_font_regular;
  }
  &:before {
    content: "";
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    height: 55px;
    margin: 5px auto;
    width: 55px;
  }
  &.-green {
    color: #008300;
    &.-tour {
      &:before {
        background-image: url(../img/iz-tur.png);
      }
    }
    &.-rooms {
      &:before {
        background-image: url(../img/iz-nomera.png);
      }
    }
    &.-photo {
      &:before {
        background-image: url(../img/iz-foto.png);
      }
    }
    &.-address {
      &:before {
        background-image: url(../img/iz-contact.png);
      }
    }
    &.-rules {
      &:before {
        background-image: url(../img/iz-pravila.png);
      }
    }
    &.-price {
      &:before {
        background-image: url(../img/iz-cenu.png);
      }
    }
  }
  &.-blue {
    color: #3694b7;
    &.-tour {
      &:before {
        background-image: url(../img/pr-tur.png);
      }
    }
    &.-rooms {
      &:before {
        background-image: url(../img/pr-nomera.png);
      }
    }
    &.-photo {
      &:before {
        background-image: url(../img/pr-foto.png);
      }
    }
    &.-address {
      &:before {
        background-image: url(../img/pr-contact.png);
      }
    }
    &.-rules {
      &:before {
        background-image: url(../img/pr-pravila.png);
      }
    }
    &.-price {
      &:before {
        background-image: url(../img/pr-cenu.png);
      }
    }
  }
  &:hover,
  &.active {
    &.-green,
    &.-blue {
      color: #eeb919;
    }
    &:before {
      background-position: 0px -54px;
    }
  }
}
@media (max-width: 992px) {
  .submenu-itm {
    &:before {
      width: 50px;
      height: 50px;
    }
    &:hover,
    &.active {
      &:before {
        background-position: 0px -49px;
      }
    }
  }
  .submenu-box {
    >.col {
      margin-right: 0;
    }
    .-tour {
      display: none;
    }
  }
}

/*Map*/
.map-frame {
  height: 400px;
}

/*footer*/
.footer-menu {
  padding: 50px 0;
  position: relative;
  background-color: #fff;
  .logo {
    box-sizing: border-box;
    text-align: center;
    padding: 0 33.333333%;
  }
  .izumrud {
    .link-list {
      text-align: right;
      padding-right: 15px;
    }
  }
  .primore {
    right: 0;
    .link-list {
      padding-left: 15px;
    }
  }
  .izumrud,
  .primore {
    position: absolute;
    top: 50px;
    width: 33.33333%;
  }

  .header-menu-itm {
    padding: 24px 40px;
    width: 100%;
  }
  .logo-box {
    display: inline-block;
    width: 260px;
    max-width: 85%;
  }
  .link-list {
    margin-top: 20px;
    .review {
      margin-bottom: 10px;
      >.link-itm {
        font-size: 20px;
      }
    }
  }
  .social-box {
    margin-top: 10px;
  }
}
@media(max-width: 768px) {
  .footer-menu {
    .logo-box {
      width: 160px;
    }
  }
}
@media (max-width: 600px) {
  .footer-menu {
    padding: 10px 0;
    .logo {
      padding: 0;
    }
    .izumrud,
    .primore {
      position: static;
      width: 100%;
      margin-top: 20px;
      .header-menu-itm {
        display: block;
        position: relative;
        width: 200px;
        &:after {
          content: "";
          width: 0;
          height: 0;
          border-style: solid;
          position: absolute;
          top: 0;
        }
        &.-left {
          margin-left: auto;
          margin-right: 0;
          &:after {
            border-width: 44px 20px 47px 0;
            border-color: transparent @main_color transparent transparent;
            left: -20px;
          }
        }
        &.-right {
          &:after {
            border-width: 44px 0 47px 20px;
            border-color: transparent transparent transparent @main_color;
            right: -20px;
          }
        }
      }
      .link-list {
        text-align: center;
        padding: 0;
      }
    }
  }
}

.copyright-box {
  background-color: #FFF9D8;
  color: @main_color;
  font-family: @main_font_bold;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  padding: 20px 10px;
  >.line {
    padding-bottom: 5px;
    &:last-child {
      padding-bottom: 0;
    }
  }
}
@media (max-width: 600px) {
  .copyright-box {
    padding: 10px;
  }
}

.link-list {
  >.itm {
    display: block;
    >.link-itm {
      color: #000;
      font-family: @main_font_bold;
      display: inline-block;
      font-size: 14px;
      line-height: 16px;
      padding: 5px 0;
    }
  }
  &.-orange {
    >.itm {
      >.link-itm {
        color: @main_color;
      }
    }
  }
}

.social-box {
  >.itm {
    width: 42px;
    height: 42px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    &.-facebook {
      background-image: url(../img/fb.png);
      margin-right: 5px;
    }
    &.-instagram {
      background-image: url(../img/ins.png);
    }
  }
}

.recreation-content {
  .img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
}

.section-title {
  text-align: center;
  font-size: 36px;
  line-height: 40px;
  font-family: @main_font_bold;
}

.recreation-book {
  .desc {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: @main_color;
    font-family: @main_font_bold;
    margin: 20px auto 0 auto;
  }

  .accordion-box {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    line-height: 30px;
    padding: 0 15px;
  }
  .recreation-book {
    .desc {
      font-size: 14px;
      line-height: 22px;
      padding: 0 15px;
    }
  }
}

.room-desc {
  >.desc {
    text-align: center;
    font-size: 20px;
    color: #008300;
    font-family: @main_font_bold;
    line-height: 26px;
    margin-bottom: 10px;
  }
  >.price-list {
    margin-top: 60px;
  }
  .room-actions {
    margin-top: 60px;
  }
  .message {
    font-size: 18px;
    line-height: 22px;
    font-family: @main_font_bold;
    color: #008300;
    text-align: center;
    margin-top: 20px;
    display: none;
  }
}
@media (max-width: 768px) {
  .room-desc {
    .message {
      display: block;
    }
    >.desc {
      font-size: 18px;
    }
    >.price-list {
      margin-top: 20px;
    }
  }
}

.room-actions {
  >.col {
    text-align: center;
    vertical-align: top;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .room-actions {
    >.col {
      width: 100%;
      &:first-child {
        margin-bottom: 10px;
      }
    }
  }
}

.simple-list {
  >li {
    font-size: 18px;
    line-height: 26px;
    padding: 5px 0 5px 10px;
    position: relative;
    &:before {
      content: "-";
      position: absolute;
      left: 0;
    }
  }
}

.price-list {
  >.price-itm {
    margin: 0 auto 0 auto;
    max-width: 100%;
    width: 500px;
    border-bottom: 1px solid #E5E5E5;
    padding: 10px 0 15px 0;
    &:last-child {
      border-bottom: none;
    }
  }
}

.btn-box {
  display: inline-block;
  font-family: @main_font_bold;
  font-size: 18px;
  max-width: 100%;
  text-align: center;
  padding: 24px 10px;
  border-radius: 50px;
  width: 250px;
}
.btn-primary {
  color: #fff;
  background-color: @main_color;
  border: 4px solid transparent;
  &:hover {
    background-color: #fff;
    border-color: @main_color;
    color: @main_color;
    box-shadow: 0 10px 10px rgba(0,0,0,.20);
  }
}
.btn-outline {
  color: @main_color;
  background-color: #fff;
  border: 4px solid @main_color;
  &:hover {
    border-color: transparent;
    background-color: @main_color;
    color: #fff;
    box-shadow: 0 10px 10px rgba(0,0,0,.20);
  }
}

.price-itm {
  >.col {
    width: 50%;
    font-family: @main_font_bold;
  }
  >.date {
    font-size: 18px;
  }
  .mark {
    color: #008300;
    font-size: 18px;
  }
  .currentcy {
    padding-left: 5px;
  }
  .currentcy,
  .val {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .price-itm {
    text-align: center;
    .val {
      display: none;
    }
  }
}

/*
  Accordion
*/
.accordion-box {
  >.accordion-itm {
    margin-bottom: 10px;
    &:last-child {
      margin-bottom: 0;
    }
  }
}
.accordion-itm {
  .accordion-body {
    display: none;
    padding: 20px 60px;
    &.-opened {
      display: block;
    }
  }
}
.accordion-title {
  display: block;
  background-color: #008300;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  font-family: @main_font_bold;
  padding: 20px 50px 20px 20px;
  position: relative;
  &:after {
    content: "";
    display: block;
    width: 18px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/arrow.png);
    transform: rotate(180deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -9px;
  }
}
@media (max-width: 992px) {
  .accordion-itm {
    .accordion-body {
      padding: 20px 15px;
    }
  }
  .accordion-title {
    text-align: left;
  }
}

.dropdown-box {
  >.dropdown-list {
    display: none;
  }
}

.dropdown-list {
  >.itm {
    border-bottom: 1px solid #e2dfdf;
    &:last-child {
      border-bottom: none;
    }
  }
  .itm-link {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
    line-height: 18px;
  }
}

.dropdown-title {
  .accordion-title;
}

/*
  Popups
*/
.popup-box {
  position: fixed;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  overflow: auto;
  display: none;
  z-index: 202;
}
.popup-itm {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  background-color: #fff;
  padding: 45px 40px 25px 40px;
  margin: 30px auto;
  width: 1000px;
  max-width: 95%;
  position: relative;
  display: none;
  >.icon-close {
    position: absolute;
    right: 20px;
    top: 15px;
  }
  >.popup-title {
    margin-bottom: 15px;
    text-align: center;
  }
  >.popup-footer {
    margin-top: 20px;
  }

  &.-small {
    max-width: 95%;
    width: 500px;
  }
}

.popup-title {
  >.title {
    font-size: 30px;
    font-family: @sub_font_regular;
    line-height: 36px;
  }
}

.popup-message {
  .simple-text {
    text-align: center;
  }
}

@media(max-width: 550px) {
  .popup-itm {
    padding: 45px 10px 25px 10px;
  }
}

.icon-close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  &:hover {
    opacity: 1;
  }
  &:before,
  &:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
  }
  &:before {
    transform: rotate(45deg);
  }
  &:after {
    transform: rotate(-45deg);
  }
}

/*Forms*/
.field-box {
  display: block;
  >.label {
    font-size: 20px;
    font-family: @sub_font_regular;
    display: block;
  }
  >.field {
    display: block;
    width: 100%;
    padding: 7px 5px;
    margin-top: 5px;
    font-size: 16px;
    resize: none;
    background-color: #fff;
    box-sizing: border-box;
  }
  &.-checkbox {
    position: relative;
    padding-left: 25px;
    >.field {
      display: inline-block;
      position: absolute;
      left: 0;
      width: auto;
    }
    a {
      color: blue;
      text-decoration: underline;
    }
  }
}

.submit-box {
  border: none;
  background-color: #f34937;
  border: 2px solid transparent;
  display: inline-block;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-family: @main_font_bold;
  padding: 15px 5px;
  width: 100%;
  &:hover {
    color: #f34937;
    background-color: #fff;
    border: 2px solid #f34937;
  }
}

form {
  .error {
    font-size: 12px;
    color: red;
    line-height: 14px;
    padding: 3px;
  }
}
.book-form,
.review-form {
  .field-box {
    margin-bottom: 15px;
  }
}

.review-form {
  margin: 40px auto 0 auto;
  max-width: 100%;
  width: 700px;
}

.date-group {
  >.col {
    display: inline-block;
    vertical-align: top;
    &:first-child {
      width: 33%;
      margin-right: 2%;
    }
    &:last-child {
      width: 65%;
    }
  }
}

.tile-menu {
  display: flex;
  >.tile-itm {
    margin-right: 1.5%;
    height: 87px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 23.875%;
    &:last-child {
      margin-right: 0;
    }
  }
}

@media (max-width: 768px) {
  .tile-menu {
    flex-wrap: wrap;
    max-width: 100%;
    width: 372px;
    margin-right: auto;
    margin-left: auto;
    >.tile-itm {
      margin-bottom: 10px;
      width: 170px;
    }
  }
}
@media (max-width: 450px) {
  .tile-menu {
    flex-direction: column;
    width: auto;
    align-items: center;
  }
}

.tile-itm {
  display: inline-block;
  background-color: #008300;
  >.title {
    color: #fff;
    font-family: @main_font_bold;
    font-size: 18px;
    line-height: 18px;
  }
  &:hover,
  &.active {
    background-color: @main_color;
  }
}

/*Pages*/
.recreation-menu {
  background-color: #fff;
  .submenu-box {
    margin-top: 20px;
    padding: 30px 0;
  }
}
.recreation-container {
  padding: 20px 30px;
  background-color: #fff;
}

.main-page-wrap {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  margin-top: 20px;
}

.room-page {
  .section-title {
    margin-bottom: 35px;
  }
  .dropdown-box {
    display: none;
  }

  .simple-text {
    margin-bottom: 20px;
  }

  .list-links-box {
    margin-top: 40px;
    display: none;
  }

  .btn-wrap {
    margin: 60px 0;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .room-page {
    .tile-menu {
      &.first {
        display: none;
      }
    }
    .dropdown-box {
      display: block;
    }
    .list-links-box {
      display: block;
    }
  }
}

.room-gallery {
  margin: 20px auto 30px auto;
  width: 600px;
  max-width: 100%;
  position: relative;
  >.col {
    vertical-align: top;
  }
  >.room-gallery-top {
    margin-right: 4%;
    width: 70%;
  }
  >.room-gallery-sub {
    width: 26%;
  }
}

.room-gallery-sub {
  .itm {
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    &:last-child {
      margin-bottom: 0;
    }
  }
}
@media (max-width: 992px) {
  .room-gallery {
    >.room-gallery-top {
        margin-right: 0;
        width: 100%;
      }
      >.room-gallery-sub {
        margin-top: 20px;
        width: 100%;
      }
  }

  .room-gallery-sub {
    .itm {
      margin: 5px;
    }
  }
}

.recreation-gallery {
  .recreation-gallery-itm {
    margin-bottom: 60px;
  }
  .section-title {
    margin-top: 15px;
    margin-bottom: 40px;
  }
  .circle-img {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

.review-list {
  margin-top: 50px;
  >.review-itm {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    margin: 0 auto 35px auto;
    padding: 20px;
    // width: 98%;
  }
}
.review-itm {
  >.name {
    font-size: 24px;
    line-height: 32px;
    font-family: @main_font_bold;
  }
  >.text {
    margin-top: 10px;
    font-size: 18px;
    line-height: 22px;
  }
}

.review-page {
  margin-top: 20px;
  >.section-title {
    margin-top: 40px;
  }
  >.desc {
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
  }
}

.list-links-box {
  font-family: @main_font_bold;
  >.title {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
  }
}

.list-links {
  .link {
    display: inline-block;
    padding: 15px 5px;
    color: #008300;
    text-decoration: underline;
  }
}