/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
            This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
            calculation of the height of the owl-item that breaks page layouts
         */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url('../../images/owlcarousel/owl.video.play.png') no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*
 *  Owl Carousel - Nav & Dots
 */
.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-nav [class*="owl-"] {
  display: inline-block;
  margin: auto;
  padding: 0.9rem 0;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s;
}
.owl-nav [class*="owl-"]:hover {
  text-decoration: none;
}
.owl-nav.disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-nav .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-nav .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-nav .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-nav .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 0.3125rem;
  background: #365dff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 15px;
}
.owl-nav .owl-dots .owl-dot.active span, .owl-nav .owl-dots .owl-dot:hover span {
  background: #ffffff;
}
.etl-owl-h550 .owl-carousel .owl-item img {
  max-height: 550px;
}
.g-owlcarousel {
  color: #eceeef;
}
.g-owlcarousel .g-owlcarousel-item-wrapper {
  position: relative;
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-img {
  position: relative;
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-img:after {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
}
@media only all and (min-width: 70rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 70rem;
  }
}
@media only all and (min-width: 55rem) and (max-width: 69.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 55rem;
  }
}
@media only all and (min-width: 43rem) and (max-width: 54.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 35rem;
  }
}
@media only all and (min-width: 25.01rem) and (max-width: 42.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 25rem;
  }
}
@media only all and (max-width: 25rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 100%;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only all and (min-width: 55rem) and (max-width: 69.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper {
    padding-top: 2.5rem;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content {
  margin: 1.25rem 0.625rem 0.625rem;
  padding: 0.938rem;
  text-align: center;
}
@media only all and (min-width: 43rem) and (max-width: 54.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content {
    padding-top: 2.5rem;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
  font-family: "Ubuntu";
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 500;
  margin: 1.25rem 1.25rem 0.625rem;
}
@media only all and (min-width: 55rem) and (max-width: 69.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    font-size: 3rem;
    line-height: 3.875rem;
  }
}
@media only all and (min-width: 43rem) and (max-width: 54.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    font-size: 2rem;
    line-height: 2.875rem;
    margin-top: 3.125rem;
  }
}
@media only all and (min-width: 25.01rem) and (max-width: 42.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    margin-top: 0;
    font-size: 2rem;
    line-height: 2.875rem;
  }
}
@media only all and (max-width: 25rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  padding-bottom: 1.407rem;
  margin-top: 0.3125rem;
  margin-bottom: 0.625rem;
}
@media only all and (min-width: 55rem) and (max-width: 69.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
@media only all and (min-width: 43rem) and (max-width: 54.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    font-size: 1rem;
    line-height: 1.875rem;
    padding-bottom: 0;
  }
}
@media only all and (max-width: 42.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    display: none;
  }
}
@media only all and (min-width: 43rem) and (max-width: 54.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-button {
    padding: 1rem 2.625rem;
    font-size: 0.6rem;
  }
}
@media only all and (max-width: 42.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-button {
    display: none;
  }
}
.g-owlcarousel .owl-nav {
  margin: 0;
}
.g-owlcarousel .owl-nav button.owl-prev, .g-owlcarousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}
.g-owlcarousel .owl-nav button.owl-prev .fa, .g-owlcarousel .owl-nav button.owl-next .fa {
  position: relative;
}
.g-owlcarousel .owl-nav button.owl-prev:hover, .g-owlcarousel .owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.g-owlcarousel .owl-nav .owl-prev {
  left: 3rem;
}
@media only all and (max-width: 42.99rem) {
  .g-owlcarousel .owl-nav .owl-prev {
    left: 2rem;
  }
}
.g-owlcarousel .owl-nav .owl-prev .fa {
  left: -1px;
  top: 1px;
}
.g-owlcarousel .owl-nav .owl-next {
  right: 3rem;
}
@media only all and (max-width: 42.99rem) {
  .g-owlcarousel .owl-nav .owl-next {
    right: 2rem;
  }
}
.g-owlcarousel .owl-nav .owl-next .fa {
  left: 1px;
  top: 1px;
}
.g-owlcarousel .owl-dots {
  position: absolute;
  bottom: 12%;
  width: 100%;
  text-align: center;
}
@media only all and (min-width: 55rem) and (max-width: 69.99rem) {
  .g-owlcarousel .owl-dots {
    bottom: 5%;
  }
}
@media only all and (min-width: 43rem) and (max-width: 54.99rem) {
  .g-owlcarousel .owl-dots {
    bottom: 1rem;
  }
}
@media only all and (max-width: 42.99rem) {
  .g-owlcarousel .owl-dots {
    bottom: 0.5rem;
  }
}
.g-owlcarousel .owl-dots .owl-dot {
  display: inline-block;
  background: #365dff;
  margin: 0 0.3125rem;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  opacity: 0.75;
  transition: all 0.2s;
}
.g-owlcarousel .owl-dots .owl-dot.active, .g-owlcarousel .owl-dots .owl-dot:hover {
  opacity: 1;
  background: #ffffff;
}
.g-owlcarousel.has-color-overlay .owl-stage > .owl-item:nth-child(even) .g-owlcarousel-item-img:after {
  background-color: #439a86;
  background: linear-gradient(40deg, #439a86, #8f4dae);
  opacity: 0.85;
}
.g-owlcarousel.has-color-overlay .owl-stage > .owl-item:nth-child(odd) .g-owlcarousel-item-img:after {
  background-color: #8f4dae;
  background: linear-gradient(140deg, #8f4dae, #439a86);
  opacity: 0.85;
}
#g-feature, #g-main {
  padding: 0;
}
#g-footer {
  border: none;
}
.body-hotel .col {
  padding: 0;
}
.logo-top .g-content {
  padding: 2px 0 2px 10px;
}
.social-top .g-content {
  padding: 2px 0 2px 0;
  line-height: 50px;
}
.phone-top {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
.phone-top .g-content {
  padding: 2px 10px 2px 0;
  line-height: 52px;
}
.slader-top .g-owlcarousel-item-title, .slader-top .g-owlcarousel-item-desc {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding-left: 5px;
  padding-right: 5px;
}
.slader-top .g-owlcarousel-item-desc {
  padding-bottom: 0 !important;
}
.slader-top .slide {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
}
.g-owlcarousel-item-button {
  display: block !important;
}
#g-navigation .main-menu .g-main-nav {
  margin: 0;
}
.main-menu .g-content {
  padding: 5px 0 0 0;
}
.main-menu ul {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.main-menu ul .active {
  background-image: linear-gradient(180deg, #A2A2A2 0%, #EDEDED 100%) !important;
  border: 2px solid #f31111;
}
.main-menu ul .active a span {
  color: #F31111;
}
.main-menu ul li {
  background-image: linear-gradient(180deg, #EDEDED 0%, #A2A2A2 100%);
  border: 2px solid #0e66ad;
  margin: 5px 0 0 5px;
  width: 183px;
  text-align: center;
  border-radius: 5px;
  height: 60px;
}
.main-menu ul li a {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 54px;
  color: #0e66ad !important;
  padding: 0 !important;
}
.main-menu ul li a span {
  padding-left: 3%;
  padding-right: 3%;
}
.main-menu ul li:hover {
  background-image: linear-gradient(180deg, #A2A2A2 0%, #EDEDED 100%) !important;
  border: 2px solid #f31111;
}
.main-menu ul li:hover a span {
  color: #F31111;
}
.main-menu_module li {
  line-height: 54px;
  padding: 0;
}
.main-menu_module li a {
  line-height: normal !important;
  display: inline-block;
  vertical-align: middle;
}
.main-menu_module li a:hover {
  color: #F31111 !important;
  text-decoration: none;
}
.home-hotel_name .hotel-cart_page {
  padding-bottom: 5px;
}
.home-hotel_name .hotel-cart_page .mod-articlesnews {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.home-hotel_name .hotel-cart_page .mod-articlesnews .mod-articlesnews__item {
  background-image: linear-gradient(to top, #dcae28, #ffe081);
  border: 2px solid #0E66AD;
  border-radius: 5px;
  padding: 5px;
  height: 60px;
  margin-bottom: 0;
  line-height: 50px;
  justify-content: center;
}
.home-hotel_name .hotel-cart_page .mod-articlesnews .mod-articlesnews__item:hover {
  background: linear-gradient(to top, #41f11d, #42a818);
  border: 2px solid #f31111 !important;
}
.home-hotel_name .hotel-cart_page .mod-articlesnews .mod-articlesnews__item:hover h4 a {
  color: #f31111 !important;
}
.home-hotel_name .g-content {
  padding: 10px 0 0 0;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .home-hotel_name .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .home-hotel_name .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .home-hotel_name .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only all and (max-width: 30rem) {
  .home-hotel_name .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hotel-cart_page {
  margin-bottom: 5px;
}
.hotel-cart_page .mod-articlesnews {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.hotel-cart_page .mod-articlesnews .mod-articlesnews__item {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFB400;
  border: 2px solid #5D5D5D;
  border-radius: 10px;
  padding: 5px;
}
.hotel-cart_page .mod-articlesnews .mod-articlesnews__item figure, .hotel-cart_page .mod-articlesnews .mod-articlesnews__item h4 {
  margin: 0;
  text-align: center;
  line-height: normal;
}
.hotel-cart_page .mod-articlesnews .mod-articlesnews__item a {
  color: #0E66AD;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
}
.hotel-cart_page .mod-articlesnews .mod-articlesnews__item img {
  border: 2px solid #fff;
  border-radius: 10px;
  min-width: 120px;
  width: 100%;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(3, 1fr);
  }
  .hotel-cart_page .mod-articlesnews .mod-articlesnews__item a {
    font-size: 18px;
    font-weight: 600;
  }
}
@media only all and (max-width: 30rem) {
  .hotel-cart_page .mod-articlesnews {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-cart_page .mod-articlesnews .mod-articlesnews__item a {
    font-size: 16px;
    font-weight: bold;
  }
}
.block-title, .hotels-list .category-desc {
  margin: 0 0 10px 0;
  background-image: linear-gradient(180deg, #EDEDED 0%, #A2A2A2 100%);
  border: 2px solid #0E66AD;
  border-radius: 5px 5px 5px 5px;
  color: #0e66ad;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.block-title p, .hotels-list .category-desc p {
  margin: 0;
  padding: 0;
}
.block-title_green, .hotels-list .category-desc_green {
  color: #359901;
}
.block-title a {
  display: block;
  width: 100%;
  color: #0e66ad;
}
.home-intro {
  background-color: #F1FFBB;
  border-radius: 10px 10px 10px 10px;
  border: 3px solid #0E66AD;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 5px;
  margin-bottom: 10px;
}
.home-intro h2 {
  font-size: 48px;
  margin: 0;
  animation: fadeInUp;
  animation-duration: 1.5s;
}
.home-intro p {
  font-size: 24px;
  margin: 0;
  line-height: normal;
  animation: fadeInUp;
  animation-duration: 1.5s;
}
.header-hotel {
  position: relative;
}
.header-hotel_image img {
  width: 100%;
}
.header-hotel_text {
  position: absolute;
  text-align: center;
  padding-top: 3%;
  color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.header-hotel_text p {
  margin: 0;
}
.header-hotel_name {
  font-size: 3rem;
}
.header-hotel_phone {
  font-size: 2rem;
  line-height: normal;
}
.hotel-text {
  padding: 16px 15px;
  background: #F1FFBB;
  border-radius: 12px;
  margin-bottom: 5px;
  color: #0a3da6;
  font-size: 22px;
  border: 3px solid #0E66AD;
  text-align: justify;
}
.hotel-text p {
  padding: 5px 0;
  margin: 0;
}
.hotel-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.hotel-container .main-menu ul {
  margin: 5px 0 10px 0;
}
.mod-image-gallery::after {
  display: block;
  content: "";
  clear: both;
}
.mod-image-gallery .slick-initialized .slick-slide {
  justify-content: center;
}
.body-hotel .col {
  padding: 0;
}
.prise td {
  border-color: #ffa621;
}
@media only all and (max-width: 30rem) {
  .page-site .col {
    padding: 0;
  }
  .page-site .ba-gallery {
    padding: 0;
  }
}
.footer-copyright .g-content {
  padding-right: 5px;
}
.footer-brand .g-content {
  padding-left: 0;
}
/*Media Gantry*/
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .hotel-container {
    width: 60rem;
  }
  .header-hotel_text {
    padding-top: 2%;
  }
  .header-hotel_text p {
    margin: 0;
  }
  .header-hotel_name {
    font-size: 3rem;
  }
  .header-hotel_phone {
    font-size: 2rem;
    line-height: normal;
  }
  .phone-top {
    font-size: 38px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .slader-top .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title, .slader-top .g-owlcarousel-item-desc {
    font-size: 2rem;
  }
  .slader-top .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    font-size: 1rem;
  }
  .slader-top .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content {
    padding-top: 0;
  }
  .hotel-container {
    width: 48rem;
  }
  .header-hotel_text {
    padding-top: 1%;
  }
  .header-hotel_text p {
    margin: 0;
  }
  .header-hotel_name {
    font-size: 2rem;
  }
  .header-hotel_phone {
    font-size: 1.5rem;
    line-height: normal;
  }
  .phone-top {
    font-size: 30px;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-container {
    padding: 0;
    width: 100%;
  }
  .hotel-container {
    width: 100%;
  }
  .header-hotel_text {
    padding-top: 1%;
  }
  .header-hotel_text p {
    margin: 0;
  }
  .header-hotel_name {
    font-size: 1rem;
  }
  .header-hotel_phone {
    font-size: 1rem;
    line-height: normal;
  }
  .hotel-text table {
    font-size: 12px;
  }
}
@media only all and (max-width: 47.99rem) {
  #g-navigation .g-main-nav {
    margin: 0;
  }
  #g-feature {
    padding: 0;
  }
  .container {
    padding: 0;
  }
  .g-content {
    padding: 0;
  }
  .row {
    margin-right: 0;
  }
  #g-header .g-grid {
    flex-flow: nowrap;
  }
  .logo-top {
    max-width: 30% !important;
  }
  .logo-top img {
    max-height: 40px !important;
  }
  .social-top {
    display: none;
  }
  .phone-top {
    max-width: 70% !important;
    font-size: 26px;
    text-align: right !important;
  }
  .phone-top .g-content {
    line-height: 40px;
  }
  .slader-top .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    font-size: 1rem;
  }
  .slader-top .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    display: block;
    font-size: 1rem;
  }
  .home-menu ul {
    margin-top: 5px;
  }
  .home-menu li a:first-child span {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .main-menu_module li {
    line-height: 36px;
  }
  .region-menu-width li {
    width: 49%;
  }
  .home-intro h2 {
    font-size: 35px;
  }
  .home-intro p {
    font-size: 18px;
  }
  .main-menu .g-content {
    margin: 0;
    padding: 0;
  }
  .main-menu ul {
    margin-bottom: 5px;
  }
  .main-menu ul li {
    width: 49% !important;
    height: 44px !important;
  }
  .main-menu ul li:nth-child(even) {
    margin-left: 5px;
  }
  .main-menu ul li:nth-child(odd) {
    margin-left: 0;
  }
  .main-menu ul li a {
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
  }
  .block-title, .hotels-list .category-desc {
    font-size: 16px;
  }
  .hotels-list .row > * {
    padding: 0;
  }
  .blog-items[class*=" masonry-"] .blog-item {
    margin-bottom: 5px;
  }
  .hotel-cart {
    margin-bottom: 5px;
    text-align: center;
  }
  .hotel-cart_page > div {
    text-align: center;
  }
  .page-content .col {
    padding: 0;
  }
  #g-footer .g-content {
    padding: 2px;
  }
}
@media only all and (max-width: 30rem) {
  .hotel-container {
    width: 100%;
  }
  .header-hotel_text {
    padding-top: 1%;
  }
  .header-hotel_text p {
    margin: 0;
  }
  .header-hotel_name {
    font-size: 1rem;
  }
  .header-hotel_phone {
    font-size: 0.5rem;
    line-height: normal;
  }
  .hotel-text {
    font-size: 17px;
  }
  .hotel-text table {
    font-size: 9px;
  }
}
.font-size {
  font-size: 19px;
}
/*Media Gantry----------------------------------

.g-container {
  width: 75rem;
}
desktop-range
@media only all and (min-width: 60rem) and (max-width: 74.99rem)
.g-container {
  width: 60rem;
}
tablet-range
@media only all and (min-width: 48rem) and (max-width: 59.99rem)
.g-container {
  width: 48rem;
}
large-mobile-range
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem)
.g-container {
    width: 30rem;
}
- small-mobile-range -
@media only all and (max-width: 30rem)
.g-container {
    width: 100%;
}

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